From 5ac5c9b171b04639d3a4b689a91b14515b88eb98 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Tue, 30 Jul 2024 12:33:09 -0400 Subject: [PATCH] Revert "EpochRecover service event and transaction" --- .github/workflows/ci.yml | 2 +- contracts/epochs/FlowClusterQC.cdc | 15 - contracts/epochs/FlowEpoch.cdc | 316 +-------------------- lib/go/contracts/internal/assets/assets.go | 12 +- lib/go/templates/epoch_templates.go | 7 - lib/go/templates/internal/assets/assets.go | 23 -- lib/go/test/epoch_test_helpers.go | 187 +----------- lib/go/test/flow_epoch_test.go | 180 ------------ transactions/epoch/admin/recover_epoch.cdc | 51 ---- 9 files changed, 23 insertions(+), 770 deletions(-) delete mode 100644 transactions/epoch/admin/recover_epoch.cdc diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5578ab842..8503ce34d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 \ No newline at end of file + run: export GOPATH=$HOME/go && make ci diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index ec8c84888..b4d85d4ac 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -258,21 +258,6 @@ access(all) contract FlowClusterQC { } } - /// Represents the quorum certificate vote data for a signer - /// 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 aggregatedSignature: String - - /// The node IDs that contributed their vote to the aggregated signature - access(all) let voterIDs: [String] - - init(aggregatedSignature: String, voterIDs: [String]) { - self.aggregatedSignature = aggregatedSignature - 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 084d4232a..d7919f307 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -147,58 +147,6 @@ 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. - access(all) 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. - clusterAssignments: [[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. - /// 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], - ) - /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently access(all) struct EpochMetadata { @@ -385,6 +333,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 || @@ -403,20 +352,6 @@ 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 @@ -497,234 +432,6 @@ access(all) contract FlowEpoch { FlowEpoch.account.storage.load(from: /storage/flowAutomaticRewardsEnabled) FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } - - access(self) fun emitEpochRecoverEvent(epochCounter: UInt64, - startView: UInt64, - stakingEndView: UInt64, - endView: UInt64, - numViewsInStakingAuction: UInt64, - numViewsInDKGPhase: UInt64, - nodeIDs: [String], - clusterAssignments: [[String]], - randomSource: String, - targetDuration: UInt64, - targetEndTime: UInt64, - clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - dkgPubKeys: [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 FlowEpoch.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. - access(self) fun recoverEpochPreChecks(startView: UInt64, - stakingEndView: UInt64, - endView: UInt64, - nodeIDs: [String], - numOfClusterAssignments: Int, - numOfClusterQCVoteData: Int) - { - pre { - 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" - ) - } - - // 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" - ) - } - - /// 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(self) 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() - } else { - /// force reset the QC and DKG - 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 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(recoveryEpochCounter: UInt64, - 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, - 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" - ) - self.stopEpochComponents() - let randomSource = FlowEpoch.generateRandomSource() - - let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction - let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase - - /// Create new EpochMetadata for the recovery epoch with the new values - let newEpochMetadata = EpochMetadata( - /// 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 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, - targetEndTime: UInt64, - clusterAssignments: [[String]], - clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - dkgPubKeys: [String], - nodeIDs: [String]) - { - self.recoverEpochPreChecks( - startView: startView, - stakingEndView: stakingEndView, - endView: endView, - nodeIDs: nodeIDs, - numOfClusterAssignments: clusterAssignments.length, - numOfClusterQCVoteData: clusterQCVoteData.length, - ) - self.stopEpochComponents() - 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: currentEpochMetadata!.seed, - startView: startView, - endView: endView, - stakingEndView: stakingEndView, - 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(epochMetadata) - - /// 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: currentEpochMetadata!.seed, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - ) - } /// Ends the currently active epoch and starts a new one with the provided configuration. /// The new epoch, after resetEpoch completes, has `counter = currentEpochCounter + 1`. @@ -785,10 +492,13 @@ 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() { + switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: let currentBlock = getCurrentBlock() @@ -828,7 +538,11 @@ 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) - let randomSource = FlowEpoch.generateRandomSource() + 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) } @@ -1022,18 +736,15 @@ 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: dkgPhase1FinalView, - DKGPhase2FinalView: dkgPhase2FinalView, - DKGPhase3FinalView: dkgPhase3FinalView, + 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) } @@ -1176,8 +887,7 @@ access(all) contract FlowEpoch { while i > 0 { // Pick a random index from 0 to i - var randomNum = revertibleRandom() - var randomIndex = randomNum % UInt64(i + 1) + var randomIndex = revertibleRandom(modulo: UInt32(i + 1)) // Swap arr[i] with the element at random index var temp = array[i] diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index db1fec833..6f319ab2a 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 (19.005kB) +// epochs/FlowClusterQC.cdc (18.379kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (60.955kB) +// epochs/FlowEpoch.cdc (47.051kB) // 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\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" +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" 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{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}} + 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}} 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\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" +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" 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{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}} + 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}} return a, nil } diff --git a/lib/go/templates/epoch_templates.go b/lib/go/templates/epoch_templates.go index 404b1cc20..0ac963f32 100644 --- a/lib/go/templates/epoch_templates.go +++ b/lib/go/templates/epoch_templates.go @@ -17,7 +17,6 @@ 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" @@ -115,12 +114,6 @@ 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 5fde48e73..383dfea4c 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -48,7 +48,6 @@ // 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.278kB) // epoch/admin/reset_epoch.cdc (1.666kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1325,26 +1324,6 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -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( - _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{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 -} - 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) { @@ -6444,7 +6423,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, @@ -6803,7 +6781,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{}}, diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index 25c844703..2853b6055 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -7,8 +7,6 @@ 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" @@ -132,82 +130,6 @@ 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 cadence.SearchFieldByName(evt.Value, "counter").(cadence.UInt64) -} - -// NodeInfo returns nodeInfo field in EpochRecover event. -func (evt EpochRecoverEvent) NodeInfo() cadence.Array { - return cadence.SearchFieldByName(evt.Value, "nodeInfo").(cadence.Array) -} - -// FirstView returns firstView field in EpochRecover event. -func (evt EpochRecoverEvent) FirstView() cadence.UInt64 { - return cadence.SearchFieldByName(evt.Value, "firstView").(cadence.UInt64) -} - -// FinalView returns finalView field in EpochRecover event. -func (evt EpochRecoverEvent) FinalView() cadence.UInt64 { - return cadence.SearchFieldByName(evt.Value, "finalView").(cadence.UInt64) -} - -// CollectorClusters returns clusterAssignments field in EpochRecover event. -func (evt EpochRecoverEvent) CollectorClusters() cadence.Array { - return cadence.SearchFieldByName(evt.Value, "clusterAssignments").(cadence.Array) -} - -// RandomSource returns randomSource field in EpochRecover event. -func (evt EpochRecoverEvent) RandomSource() 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) { - 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 cadence.SearchFieldByName(evt.Value, "targetDuration").(cadence.UInt64) -} - -// TargetEndTime returns targetEndTime field in EpochRecover event. -func (evt EpochRecoverEvent) TargetEndTime() cadence.UInt64 { - return cadence.SearchFieldByName(evt.Value, "targetEndTime").(cadence.UInt64) -} - -// ClusterQCVoteData returns clusterQCVoteData field in EpochRecover event. -func (evt EpochRecoverEvent) ClusterQCVoteData() cadence.Array { - return cadence.SearchFieldByName(evt.Value, "clusterQCVoteData").(cadence.Array) -} - -// DKGPubKeys returns dkgPubKeys field in EpochRecover event. -func (evt EpochRecoverEvent) DKGPubKeys() cadence.Array { - return cadence.SearchFieldByName(evt.Value, "dkgPubKeys").(cadence.Array) -} - // Go event definitions for the epoch events // Can be used with the SDK to retreive and parse epoch events @@ -573,9 +495,10 @@ func verifyEpochMetadata( env templates.Environment, expectedMetadata EpochMetadata) { - metadataFields := getEpochMetadata(t, b, env, cadence.UInt64(expectedMetadata.counter)) - counter := metadataFields["counter"] + result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(expectedMetadata.counter))}) + metadataFields := cadence.FieldsMappedByName(result.(cadence.Struct)) + counter := metadataFields["counter"] assertEqual(t, cadence.NewUInt64(expectedMetadata.counter), counter) if len(expectedMetadata.seed) != 0 { @@ -791,15 +714,6 @@ 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 { @@ -810,98 +724,3 @@ func expectedTargetEndTime(timingConfig cadence.Value, targetEpoch uint64) uint6 return refTimestamp + duration*(targetEpoch-refCounter) } - -// 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, -) { - var emittedEvent EpochRecoverEvent - addrLocation := common.NewAddressLocation(nil, common.Address(epochAddress), "FlowEpoch") - evtTypeID := string(addrLocation.TypeID(nil, "FlowEpoch.EpochRecover")) - for i := uint64(0); i < 1000; i++ { - results, _ := adapter.GetEventsForHeightRange(context.Background(), evtTypeID, i, i) - - for _, result := range results { - for _, event := range result.Events { - - if event.Type == evtTypeID { - emittedEvent = EpochRecoverEvent(event) - } - } - } - } - - 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)) -} - -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)) -} - -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 { - - // 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 97466ab5d..15b47dee7 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -4,7 +4,6 @@ import ( "encoding/hex" "fmt" "math/rand" - "strings" "testing" "time" @@ -1517,182 +1516,3 @@ func TestEpochReset(t *testing.T) { assertEqual(t, CadenceUFix64("249999.99300000"), result) }) } - -// 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 - 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) - - // 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) - - var ( - startView uint64 = 100 - stakingEndView uint64 = 120 - endView uint64 = 160 - targetDuration uint64 = numEpochViews - targetEndTime uint64 = expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1) - ) - - 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")}) - - dkgPubKeys := []string{"pubkey_1"} - dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) - for i, key := range dkgPubKeys { - dkgPubKeysCdc[i], _ = cadence.NewString(key) - } - - nodeIDs := make([]cadence.Value, len(ids)) - for i, id := range ids { - nodeIDs[i], _ = cadence.NewString(id) - } - - clusterQcVoteData := convertClusterQcsCdc(env, collectorClusters) - args := []cadence.Value{ - cadence.NewUInt64(startEpochCounter + 1), - cadence.NewUInt64(startView), - cadence.NewUInt64(stakingEndView), - cadence.NewUInt64(endView), - cadence.NewUInt64(targetDuration), - cadence.NewUInt64(targetEndTime), - cadence.NewArray(collectorClusters), // collectorClusters - cadence.NewArray(clusterQcVoteData), // 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, - []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, - false, - ) - - advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "BLOCK", false) - - // 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["seed"].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) - assertEqual(t, getCurrentEpochCounter(t, b, env), cadence.NewUInt64(startEpochCounter+1)) - - expectedRecoverEvent := EpochRecover{ - counter: startEpochCounter + 1, - nodeInfoLength: len(nodeIDs), - firstView: startView, - finalView: endView, - collectorClusters: collectorClusters, - randomSource: seed, - dkgPhase1FinalView: startView + numStakingViews + numDKGViews - 1, - dkgPhase2FinalView: startView + numStakingViews + (2 * numDKGViews) - 1, - dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterQCVoteDataLength: len(clusterQcVoteData), - 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 startView and endView - newStartView := startView + 1 - args[1] = CadenceUInt64(newStartView) - - newEndView := endView + 1 - args[3] = CadenceUInt64(newEndView) - - // 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.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 - 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)) - }) -} diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc deleted file mode 100644 index 424110ef0..000000000 --- a/transactions/epoch/admin/recover_epoch.cdc +++ /dev/null @@ -1,51 +0,0 @@ -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 -// 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(recoveryEpochCounter: UInt64, - startView: UInt64, - stakingEndView: UInt64, - endView: UInt64, - targetDuration: UInt64, - targetEndTime: UInt64, - clusterAssignments: [[String]], - clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - dkgPubKeys: [String], - nodeIDs: [String], - 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 unsafeAllowOverwrite { - epochAdmin.recoverNewEpoch( - recoveryEpochCounter: recoveryEpochCounter, - startView: startView, - stakingEndView: stakingEndView, - endView: endView, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterAssignments: clusterAssignments, - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - nodeIDs: nodeIDs) - } else { - epochAdmin.recoverCurrentEpoch(startView: startView, - stakingEndView: stakingEndView, - endView: endView, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterAssignments: clusterAssignments , - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - nodeIDs: nodeIDs) - } - } -}