diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21bed91..e299973 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)" + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" - name: Flow CLI Version run: flow-c1 version - name: Update PATH diff --git a/contracts/DependencyAudit.cdc b/contracts/DependencyAudit.cdc index 39d5598..0ee435a 100644 --- a/contracts/DependencyAudit.cdc +++ b/contracts/DependencyAudit.cdc @@ -19,6 +19,8 @@ access(all) contract DependencyAudit { access(all) event PanicOnUnstagedDependenciesChanged(shouldPanic: Bool) + access(all) event BlockBoundariesChanged(start: UInt64?, end: UInt64?) + // checkDependencies is called from the FlowServiceAccount contract access(account) fun checkDependencies(_ dependenciesAddresses: [Address], _ dependenciesNames: [String], _ authorizers: [Address]) { var unstagedDependencies: [Dependency] = [] @@ -41,27 +43,128 @@ access(all) contract DependencyAudit { } if unstagedDependencies.length > 0 { - if DependencyAudit.panicOnUnstaged { - // If `panicOnUnstaged` is set to true, the transaction will panic if there are any unstaged dependencies - // the panic message will include the unstaged dependencies - var unstagedDependenciesString = "" - var numUnstagedDependencies = unstagedDependencies.length - var j = 0 - while j < numUnstagedDependencies { - if j > 0 { - unstagedDependenciesString = unstagedDependenciesString.concat(", ") - } - unstagedDependenciesString = unstagedDependenciesString.concat(unstagedDependencies[j].toString()) - - j = j + 1 - } - - // the transactions will fail with a message that looks like this: `error: panic: Found unstaged dependencies: A.2ceae959ed1a7e7a.MigrationContractStaging, A.2ceae959ed1a7e7a.DependencyAudit` - panic("This transaction is using dependencies not staged for Crescendo upgrade coming soon! Learn more: https://bit.ly/FLOWCRESCENDO. Dependencies not staged: ".concat(unstagedDependenciesString)) - } else { - emit UnstagedDependencies(dependencies: unstagedDependencies) + self.maybePanicOnUnstagedDependencies(unstagedDependencies) + + emit UnstagedDependencies(dependencies: unstagedDependencies) + } + } + + access(self) fun maybePanicOnUnstagedDependencies(_ unstagedDependencies: [Dependency]) { + // If `panicOnUnstaged` is set to false, the function will return without panicking + // Then check if we should panic randomly + if !DependencyAudit.panicOnUnstaged || !self.shouldPanicRandomly() { + return + } + + var unstagedDependenciesString = "" + var numUnstagedDependencies = unstagedDependencies.length + var j = 0 + while j < numUnstagedDependencies { + if j > 0 { + unstagedDependenciesString = unstagedDependenciesString.concat(", ") } + unstagedDependenciesString = unstagedDependenciesString.concat(unstagedDependencies[j].toString()) + + j = j + 1 + } + + // the transactions will fail with a message that looks like this: `error: panic: Found unstaged dependencies: A.2ceae959ed1a7e7a.MigrationContractStaging, A.2ceae959ed1a7e7a.DependencyAudit` + panic("This transaction is using dependencies not staged for Crescendo upgrade coming soon! Learn more: https://bit.ly/FLOWCRESCENDO. Dependencies not staged: ".concat(unstagedDependenciesString)) + } + + // shouldPanicRandomly is used to randomly panic on unstaged dependencies + // The probability of panicking is based on the current block height and the start and end block heights + // If the start block height is greater than or equal to the end block height, the function will return true + // The function will always return true if the current block is more than the end block height + // The function will always return false if the current block is less than the start block height + // The function will return true if a random number between the start and end block heights is less than the current block height + // This means the probability of panicking increases linearly as the current block height approaches the end block height + access(self) fun shouldPanicRandomly(): Bool { + // get start block height or true + // get end block height or true + // get current block height + // get random number between start and end + // if random number is less than current block return true + // else return false + + let maybeBoundaries = self.getBoundaries() + if maybeBoundaries == nil { + // if settings are invalid use default behaviour: panic true + return true + } + let boundaries = maybeBoundaries! + + let startBlock: UInt64 = boundaries.start + let endBlock: UInt64 = boundaries.end + let currentBlock: UInt64 = getCurrentBlock().height + + if startBlock >= endBlock { + // this should never happen becuse we validate the boundaries when setting them + // if settings are invalid use default behaviour: panic true + return true + } + + let dif = endBlock - startBlock + var rnd = revertibleRandom() % dif + rnd = rnd + startBlock + + // fail if the random number is less than the current block + return rnd < currentBlock + } + + access(all) struct Boundaries { + access(all) let start: UInt64 + access(all) let end: UInt64 + + init(start: UInt64, end: UInt64) { + self.start = start + self.end = end + } + } + + access(all) fun getBoundaries(): Boundaries? { + return self.account.storage.copy(from: /storage/flowDependencyAuditBoundaries) + } + + access(all) fun getCurrentFailureProbability(): UFix64 { + if !DependencyAudit.panicOnUnstaged { + return 0.0 as UFix64 + } + + let maybeBoundaries = self.getBoundaries() + if maybeBoundaries == nil { + return 1.0 as UFix64 + } + + let boundaries = maybeBoundaries! + + let startBlock: UInt64 = boundaries.start + let endBlock: UInt64 = boundaries.end + let currentBlock: UInt64 = getCurrentBlock().height + + if startBlock >= endBlock { + return 1.0 as UFix64 } + if currentBlock >= endBlock { + return 1.0 as UFix64 + } + if currentBlock < startBlock { + return 0.0 as UFix64 + } + + let dif = endBlock - startBlock + let currentDif = currentBlock - startBlock + + return UFix64(currentDif) / UFix64(dif) + } + + access(self) fun setBoundaries(boundaries: Boundaries) { + self.account.storage.load(from: /storage/flowDependencyAuditBoundaries) + self.account.storage.save(boundaries, to: /storage/flowDependencyAuditBoundaries) + } + + access(self) fun unsetBoundaries() { + self.account.storage.load(from: /storage/flowDependencyAuditBoundaries) } // The Administrator resorce can be used to add or remove addresses from the excludedAddresses dictionary @@ -87,6 +190,23 @@ access(all) contract DependencyAudit { emit PanicOnUnstagedDependenciesChanged(shouldPanic: shouldPanic) } + // setStartEndBlock sets the start and end block heights for the `shouldPanicRandomly` function + access(all) fun setStartEndBlock(start: UInt64, end: UInt64) { + pre { + start < end: "Start block height must be less than end block height" + } + + let boundaries = Boundaries(start: start, end: end) + DependencyAudit.setBoundaries(boundaries: boundaries) + emit BlockBoundariesChanged(start: start, end: end) + } + + // unsetStartEndBlock unsets the start and end block heights for the `shouldPanicRandomly` function + access(all) fun unsetStartEndBlock() { + DependencyAudit.unsetBoundaries() + emit BlockBoundariesChanged(start: nil, end: nil) + } + // testCheckDependencies is used for testing purposes // It will call the `checkDependencies` function with the provided dependencies // `checkDependencies` is otherwise not callable from the outside diff --git a/contracts/MigrationContractStaging.cdc b/contracts/MigrationContractStaging.cdc index 6324d0f..5193787 100644 --- a/contracts/MigrationContractStaging.cdc +++ b/contracts/MigrationContractStaging.cdc @@ -32,7 +32,7 @@ access(all) contract MigrationContractStaging { access(all) event StagingStatusUpdated( capsuleUUID: UInt64, address: Address, - code: String, + codeHash: [UInt8], contractIdentifier: String, action: String ) @@ -112,7 +112,7 @@ access(all) contract MigrationContractStaging { emit StagingStatusUpdated( capsuleUUID: capsuleUUID, address: address, - code: "", + codeHash: [], contractIdentifier: name, action: "unstage" ) @@ -156,6 +156,15 @@ access(all) contract MigrationContractStaging { return self.getStagedContractUpdate(address: address, name: name)?.code } + /// Returns the staged contract code hash for the given address and name or nil if it's not staged + /// + access(all) view fun getStagedContractCodeHash(address: Address, name: String): [UInt8]? { + if let update = self.getStagedContractUpdate(address: address, name: name) { + return self.getCodeHash(update.code) + } + return nil + } + /// Returns the ContractUpdate struct for the given contract if it's been staged. /// access(all) view fun getStagedContractUpdate(address: Address, name: String): ContractUpdate? { @@ -207,6 +216,14 @@ access(all) contract MigrationContractStaging { ?? panic("Could not derive Capsule StoragePath for given address") } + /* --- Util --- */ + + /// Returns the hash of the given code, hashing with SHA3-256 + /// + access(all) view fun getCodeHash(_ code: String): [UInt8] { + return HashAlgorithm.SHA3_256.hash(code.utf8) + } + /* ------------------------------------------------------------------------------------------------------------ */ /* ------------------------------------------------ Constructs ------------------------------------------------ */ /* ------------------------------------------------------------------------------------------------------------ */ @@ -352,7 +369,7 @@ access(all) contract MigrationContractStaging { emit StagingStatusUpdated( capsuleUUID: self.uuid, address: self.update.address, - code: code, + codeHash: MigrationContractStaging.getCodeHash(code), contractIdentifier: self.update.name, action: "replace" ) @@ -406,7 +423,7 @@ access(all) contract MigrationContractStaging { emit StagingStatusUpdated( capsuleUUID: capsule.uuid, address: host.address(), - code: code, + codeHash: MigrationContractStaging.getCodeHash(code), contractIdentifier: name, action: "stage" ) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 642747c..0d13c21 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// DependencyAudit.cdc (6.098kB) -// MigrationContractStaging.cdc (19.536kB) +// DependencyAudit.cdc (10.575kB) +// MigrationContractStaging.cdc (20.228kB) package assets @@ -70,7 +70,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _dependencyauditCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x6d\x6f\xdb\xb6\x13\x7f\xef\x4f\x71\xf5\x2b\x0b\x7f\x57\x6e\x0b\xfc\x51\x54\xa8\x57\x64\x69\x0a\x0c\xe8\x13\x96\x6e\x7b\x61\x04\x33\x23\x9d\x6d\x26\x32\x69\x90\x94\x53\x2f\xc8\x77\x1f\x8e\x94\x25\x52\xa2\x9c\x0c\x05\x2a\x04\x81\x64\x1e\xef\x8e\xbf\x7b\xe0\x8f\xe4\xdb\x9d\x54\x06\xc6\x9f\xf8\x5a\x31\xc3\xa5\x38\x97\xc2\x28\x96\x9b\x4b\xc3\xd6\x5c\xac\xc7\xa3\xd1\x6c\x06\xdf\x36\x5c\x43\x5e\x8f\x00\xd7\xf4\x57\x69\x2c\xe0\xfa\x00\x66\x83\xf0\xe1\xcf\x4f\x90\xb3\xb2\xe4\x62\x6d\xbf\x97\xf9\x06\xf3\xdb\xf7\xb8\x43\x51\xa0\xc8\x39\xea\x25\xac\x2a\x91\x93\x01\x58\x29\xb9\x05\xd6\x7e\xcb\x95\x9d\xa3\xd9\x16\x41\xd0\x3f\x26\x0a\xd0\x5c\xac\x05\x33\x95\x42\xe0\xc2\xd9\x28\xe5\xdd\x25\xaa\x3d\xcf\xf1\x2c\xcf\x65\x25\x4c\xe3\xd1\x94\x7c\x64\xc6\x8a\xa1\x28\x48\x23\xee\x51\x1d\xc0\x28\x26\x34\xb3\x66\x52\xb7\x0e\x84\x65\xe1\xb9\x75\x56\x14\x0a\xb5\x26\xff\xc8\x6a\x30\xf6\x99\x6d\xe9\xf7\x3b\x5e\x96\x70\x8d\xc0\xca\xd2\x1a\xf0\x45\x40\x20\x16\x05\x16\x60\x24\xa8\x8a\xfc\x24\x2f\x42\xa3\x8d\xdd\x53\x98\x58\x23\x56\x00\xf8\x0a\x98\x38\x1c\x51\x09\xac\x31\x85\x20\xa4\x01\x6d\xd8\x1a\x8b\x23\x30\x43\xa1\x6b\xe0\xb1\x4b\xff\xed\xa9\x6a\xa7\x56\x20\xf4\x0c\xb7\xdc\x00\x13\x84\xaa\x30\x70\xc7\xcd\xc6\x0a\x55\xa2\xf6\xc4\x57\x37\x05\xa9\x60\xc7\x04\xcf\x69\x29\x4b\xfb\xf6\x45\xfc\x51\x8b\x2e\x29\x75\x34\x1a\x42\xcc\xa8\x0a\xd3\x11\xcb\x73\xd4\x7a\xc2\xca\x32\x69\x53\xac\x81\xe9\x70\x56\x15\xdc\xc0\xfd\x68\x04\x00\xe0\xcb\x96\x68\xe0\xac\xd8\x72\xc1\xb5\x51\xcc\x48\x75\x69\xa4\x62\x6b\xfc\xca\xcc\x26\x03\xef\xc3\x4d\xad\xa3\xa0\x0f\xda\xe0\x16\xd8\x31\xee\xb0\x61\x7b\x6c\xec\x6a\x17\x41\xbb\x66\x42\xe4\x1a\x1d\x28\x1a\xf6\x9c\xd9\x25\x6f\x8f\x60\xb7\xbe\x6a\x09\x77\x08\xf8\x3d\x2f\xab\x02\x49\x68\xeb\x52\x3c\xc0\xf9\x40\xd1\xbd\xcd\xb5\xbf\x0c\x8d\xe5\x2a\x81\x3d\x53\xc7\xc9\x45\x93\x8e\x19\xdc\xd7\xef\x19\xfc\x2a\x65\xf9\xd0\x5f\x3f\xcd\xeb\x80\xeb\x64\xfb\xa2\x2e\x6c\x47\x29\x3f\x05\x27\x7e\xe4\x32\x58\xb4\xb8\x5f\x25\x43\x7a\xbe\x86\x46\x7d\x75\xe7\x1b\x26\xd6\x58\x4c\xf4\x46\x56\x65\x61\x05\x9d\x4f\x49\x13\x84\x5e\x15\x50\x42\x50\xef\xc0\xa2\x85\xed\x44\xad\x07\x4e\xb9\xb1\x84\xb2\xb5\xaf\x78\xf2\x37\x44\x4b\x3d\x83\x45\xfd\x7e\x35\x85\x50\xc6\x96\x7c\x06\x8b\x4b\xa3\xb8\x58\xdb\x61\x56\x99\x8d\x54\xfc\x1f\x54\xfe\xc4\x04\xee\xad\x23\xf4\x50\x20\xaa\x08\x18\x21\x9c\x30\x87\xc5\xd5\x28\x98\x24\xaa\x6d\x00\xc4\x3c\xee\x6f\x5a\xa2\x58\x9b\x4d\x30\x95\xc3\x1c\x5e\x34\xbf\xdc\x6d\x78\x89\xc0\xe1\x6d\x4f\x65\xeb\x25\x3d\x54\x32\x5c\x5f\xd4\xc9\x06\xf3\x6e\x99\xa5\xbd\x3c\x5c\x44\x3d\x5a\xf0\xab\x2b\x78\xf7\x0e\x56\xac\xd4\x18\x58\xe0\x2b\xdf\x40\x68\xdd\x8e\xc3\x1c\x38\xfc\x0f\x5e\xf6\x46\x28\xbe\x5c\x54\xa1\xba\x87\x51\xcf\xff\xba\xe3\xcc\x07\xdb\x5e\xca\xf5\xa5\x95\x99\xb0\x63\x05\x0d\x2d\x62\x6a\xf7\x9b\xac\x9f\x02\x0b\x7e\x95\x74\xd7\xf5\xac\xb6\xdc\x5f\x54\x2c\xf8\x29\xdb\xd1\xc7\xa4\x45\xf8\x07\xdd\x49\x4e\x01\xd3\x87\xd5\x13\xe0\xab\xb8\x87\x2e\xad\xe0\x17\x78\xd1\x59\x13\x5f\xf5\x12\xa3\xd3\x68\x22\x20\xb8\x2d\xe6\xb1\x76\xef\x36\x17\x6f\x87\x74\xbd\xb6\xd9\x2e\xcc\x06\x15\xda\x0d\x89\x36\xab\xe8\xfe\x12\xb3\x4c\x4a\x9d\x8e\x2d\x6a\xcd\xd6\xe8\xd4\x72\xd1\xf4\xe4\x27\xea\x1a\xaa\x65\xd7\x10\x60\x0e\xe3\x71\x74\x8e\xa8\xb6\xb1\x7e\x08\xf3\x53\xd0\x47\x35\xdd\x04\x95\x7d\x7c\x5c\x85\xdf\xb8\x0a\x8f\x5a\xea\x47\xa4\x0e\xe5\x4d\x24\xc2\xfe\x73\x72\xb9\xc3\x83\x69\x2e\x45\xce\xcc\x64\x3c\x85\x71\x12\x55\xfe\x10\xfd\xf5\x07\xcd\xc5\x24\x16\x37\x57\xa9\x91\x4e\x6e\x92\x24\xa3\xa8\x5d\xc2\xf5\x26\xda\x79\x1e\xfa\x13\xea\x94\xf2\xf2\x54\xbb\x8c\x5a\x31\x5e\x3a\xfe\xc3\x9a\x54\xb3\x94\xa1\x94\xf2\x56\x43\xc9\x6f\xe9\x9b\xeb\x0c\x96\xa8\x94\x54\x99\x4b\xcb\x0c\x3e\xc8\x4a\x14\xf1\x24\xcc\xe0\x2c\x7d\x95\x23\xc3\x37\xff\x7f\x83\xc5\x4b\xf6\x1a\x5f\xb3\x74\xa8\xbb\x4d\x63\xc2\x9d\x6a\x5d\xf6\xd6\x63\x9d\x98\x8c\x2d\x8d\xf7\x8b\xcf\xd2\x78\x82\x3e\x24\xb5\x2d\xc5\x5c\x49\x05\xe7\x0a\x75\x8e\xa2\x90\x50\xed\xd6\x8a\x15\x44\x97\xb6\x34\x49\x4b\x29\x9e\xc1\x47\x64\x4a\xc0\x56\x2a\xcc\x60\x63\xcc\x4e\x67\xb3\xd9\x35\x37\x69\x79\x98\x7d\xf8\xf8\xe5\xaf\xf3\xdf\x2f\x2e\xcf\x2f\x3e\xbf\xff\x92\xc2\xfb\xb8\x91\x0c\xc6\xa7\xa2\xeb\xe2\xda\xed\x7f\x80\xa5\xc6\x48\x56\x5b\xa6\xfa\x04\xa6\x13\xb3\xd4\x6d\xb1\xe1\xdb\x43\xc0\x23\x03\xe6\x09\x0a\xb5\x54\x39\x42\xce\x04\x71\x46\x7b\x34\x32\x92\x58\x26\xd8\xd1\xad\xdc\xa3\xc7\x39\x1b\x9e\xd3\xdb\x6f\xa1\xe0\x36\x32\x4c\x1d\x6a\x6b\x3d\x12\x46\xb6\x2a\x32\x16\xba\xd0\x42\x41\x67\xa1\xa2\xb8\xe8\xa9\x26\x6f\xc8\x68\xeb\x07\x35\xe5\xa7\x78\xd1\x75\x81\xe8\x56\xcc\xc4\x84\x45\x38\x56\xd2\x89\x12\xa5\x54\x2d\x47\x27\x98\xd6\x9b\x7e\x30\x1f\xa7\x27\xf5\x6c\x62\x57\xb4\xbd\x0c\x06\xd0\x07\xc7\x85\xa3\x8f\x4f\x1d\xa6\x10\xa2\xa7\x87\x2a\x06\xd2\x80\xa9\x9f\x8e\x53\xea\x1c\x99\xdc\xe2\x21\x3b\x6a\x1a\xce\x76\x1f\x2c\x8d\xe6\x04\xdf\xa7\x61\xed\x4e\xfc\xbd\x8d\x7f\xcf\x14\x67\xd7\x25\x1e\xb3\x6c\xcf\xca\x0a\xe9\xfc\xb9\xf4\x4e\x07\xcb\x41\xe8\x4e\x1b\x8e\x9c\x30\x3a\xb8\x3c\xc6\x60\xe6\xe0\xa9\x08\x66\xda\x16\xf2\x5f\x0f\x39\xde\x47\x32\x00\xa5\x41\x6d\xce\x63\xa7\x1f\xdb\x2e\x28\xdc\x24\x41\x8d\x75\x57\xa9\x9d\xd4\x1e\x3d\x21\x72\x55\x1f\x4b\xf3\xe3\x3d\xc4\x23\xf7\x09\xf5\x11\x7d\xa7\xe4\x9e\x17\x43\xb4\x67\x36\x8b\xaa\xe1\x1a\x24\x31\xb1\x3b\xae\xdd\xcd\x00\x19\xb5\xb1\x6c\xca\x41\x56\x46\xf3\x02\x07\xc3\x17\x5d\xec\xcf\x3a\x91\xd1\xa3\xd0\x54\x4a\xf4\xd2\xa0\x7f\x4a\x8c\x7a\x34\xed\x3b\x31\xf5\x0d\x27\xf1\xcd\xc1\x47\x41\x1b\x55\x05\x37\x19\x9e\x83\xdd\x7b\x8c\xe6\x68\x50\x3b\x30\x28\xe8\x0e\x08\x0e\x0c\x8f\xe1\x0b\x6e\x26\x5d\x1d\xd3\x40\xb8\x0b\x8f\xc6\x72\x95\x1e\xdb\xcb\xfc\xe8\x40\x5f\xc4\x5e\xc8\xcd\xad\xaa\x58\x5a\xf7\xc2\xde\xd0\xb0\xa3\xe1\x8e\x5d\xa2\xb8\xb5\xb1\x86\xf5\xf9\xbe\x78\x44\x2e\x98\xd7\xf4\x6d\x78\xf1\x1d\x76\x0a\x57\xfc\x7b\x30\xde\xd5\x19\x7c\xa7\xba\xe4\x39\x4e\x28\x79\x33\x78\x35\x85\x6a\xf7\x4d\x66\x1d\x11\x47\xc9\x93\x58\x0e\x8d\xcf\xd2\x86\xa1\x04\x93\x92\x86\x04\xa7\xe3\xe6\xbd\x81\x6d\x20\x47\x6a\x02\xc1\x68\xf7\x6e\x37\x73\x3a\x26\xb1\xbd\xa3\x0d\xf6\x36\xd4\xdd\x5f\x81\x96\xf5\xa5\x62\x33\xa5\xe6\x18\x0e\xf9\xf6\x0a\x56\xbb\xeb\x12\xa8\xef\x44\x7c\x53\xcb\xde\x7e\xd0\xde\x6a\x86\xbb\x5d\xd3\x36\xea\x6b\xb2\xe6\x5e\x2c\x1d\x35\x79\x16\xb9\xab\x8a\x16\xa1\xc5\xa1\xbf\x6b\xce\xe1\xfe\x21\x94\xe9\x77\x66\x77\xaf\x10\x4a\x0d\x5d\xf5\xc1\x1c\x66\x35\x58\xb3\x55\x29\xef\x3a\x05\x6f\xa7\xb5\xaa\x3a\x9b\x6a\xdf\xbd\x48\x95\x3c\x9d\x75\x78\x85\xe1\xaa\x9a\xe2\xf5\xf6\x39\xe4\x0a\x99\xe9\x10\x36\x2f\xbf\x5d\xfe\xbb\xb8\xa5\xf5\x5a\x52\xca\x86\xc9\xdb\xe7\x56\xc7\x14\x8c\xcc\x4e\xc3\x90\xd4\x29\xf6\x30\xfa\x37\x00\x00\xff\xff\xa1\x1e\x0f\x3b\xd2\x17\x00\x00" +var _dependencyauditCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5a\x6d\x8f\xdb\x36\xf2\x7f\xbf\x9f\x62\x62\xe0\x0f\x58\xa8\xa3\x4d\x8a\xfe\x5b\xd4\x58\x27\xd8\x6c\x12\x20\x40\xdb\x04\xdd\xe4\xee\xc5\x62\xd1\xa5\xa5\xb1\xcd\x2c\x4d\xfa\x48\xca\x8e\x2f\xdd\xef\x7e\xe0\x83\x24\x52\xa2\xb4\x9b\x4b\x9b\x37\xb7\x28\x1a\x4b\x1a\xce\xfc\xe6\x81\xc3\x19\x92\x74\xbb\x13\x52\xc3\xe4\x57\xba\x96\x44\x53\xc1\x2f\x04\xd7\x92\x14\xfa\x52\x93\x35\xe5\xeb\xc9\xc9\xc9\xe9\x29\xbc\xdf\x50\x05\x85\xff\x02\x54\x99\xff\x2a\x85\x25\x2c\x8f\xa0\x37\x08\xaf\xff\xf1\x2b\x14\x84\x31\xca\xd7\xf6\xf9\xa6\xd8\x60\x71\xfb\x12\x77\xc8\x4b\xe4\x05\x45\x75\x03\xab\x8a\x17\x46\x00\xac\xa4\xd8\x02\x69\x9f\xc5\xca\x8e\x51\x64\x8b\xc0\xcd\xff\x08\x2f\x41\x51\xbe\xe6\x44\x57\x12\x81\x72\x27\x83\x89\xc3\x25\xca\x3d\x2d\xf0\xbc\x28\x44\xc5\x75\x83\x68\x66\x30\x12\x6d\xc9\x90\x97\x86\x23\xee\x51\x1e\x41\x4b\xc2\x15\xb1\x62\x72\xa7\x07\xc2\x4d\x19\xc0\x3a\x2f\x4b\x89\x4a\x19\x7c\x46\x6a\xf4\xed\x37\xb2\x35\xef\x0f\x94\x31\x58\x22\x10\xc6\xac\x80\x90\x04\x38\x62\x59\x62\x09\x5a\x80\xac\x0c\x4e\x83\x22\x16\xda\xc8\x1d\xb3\x89\x15\x62\x09\x80\xae\x80\xf0\x63\x6d\x95\x48\x1a\x91\x08\x5c\x68\x50\x9a\xac\xb1\xac\x0d\x33\xe4\xba\xc6\x3c\x56\xf5\x37\x0f\x65\x3b\xb3\x04\x31\x32\xdc\x52\x0d\x84\x1b\xab\x72\x0d\x07\xaa\x37\x96\xa8\xe2\x1e\x49\xc8\x6e\x06\x42\xc2\x8e\x70\x5a\x18\x55\x6e\xec\xaf\xb7\xfc\x83\x27\xbd\x31\xa1\xa3\x50\x1b\x8b\x69\x59\x61\x7e\x42\x8a\x02\x95\x9a\x12\xc6\xb2\x36\xc4\x1a\x33\x1d\xcf\xab\x92\x6a\xf8\x7c\x72\x02\x00\x10\xd2\x32\xd4\x70\x5e\x6e\x29\xa7\x4a\x4b\xa2\x85\xbc\xd4\x42\x92\x35\xbe\x23\x7a\x33\x87\xe0\xc1\x0d\xf5\x5e\x50\x47\xa5\x71\x0b\xa4\xf6\x3b\x6c\xc8\x1e\x1b\xb9\xca\x79\xd0\xea\x6c\x2c\xb2\x44\x67\x14\x05\x7b\x4a\xac\xca\xdb\xda\xd8\x2d\x56\x25\xe0\x80\x80\x9f\x0a\x56\x95\x68\x88\xb6\x2e\xc4\x23\x3b\x1f\x8d\x77\x6f\x0b\x15\xaa\xa1\x90\xad\x32\xd8\x13\x59\x0f\x2e\x9b\x70\x9c\xc3\x67\xff\x7b\x0e\x2f\x84\x60\x77\x7d\xfd\xcd\xb8\x8e\x71\x1d\x6d\x9f\xd4\xb9\xad\xa6\x0a\x43\x70\x1a\x7a\x6e\x0e\x57\xad\xdd\xaf\xb3\x21\x3e\xef\x62\xa1\x21\xbb\x8b\x0d\xe1\x6b\x2c\xa7\x6a\x23\x2a\x56\x5a\x42\x87\x69\x90\xd9\x0b\x26\x8a\xdb\x17\xa2\xe2\x25\x91\x21\x03\x4d\xa4\x9e\xc3\x87\x37\x5c\xff\xf8\xc3\xf3\x99\x99\xd5\xcd\x53\xd6\x38\xb4\x37\xa3\x4c\x70\x99\x3c\x84\x65\xeb\x82\x91\xbc\x11\x61\x72\xdf\x32\x13\xf9\x7d\xc6\xd3\x3f\x20\x99\x36\xe6\x70\xe5\x7f\x5f\xcf\x20\xa6\xb1\xe9\x63\x0e\x57\x97\x5a\x52\xbe\xb6\x9f\x49\xa5\x37\x42\xd2\x7f\xa3\x0c\x07\x66\xf0\xd9\x02\x31\x7f\xc6\xa9\x55\xc2\xb0\xb1\x6b\x60\x01\x57\xd7\x27\xd1\x20\x5e\x6d\x23\x43\x2c\xd2\x78\x73\x86\x7c\xad\x37\xd1\x50\x0a\x0b\x78\xd2\xbc\x39\x6c\x28\x43\xa0\x70\xd6\x63\xd9\xa2\x34\x7f\x66\xfa\x51\xf5\xca\x07\x2e\x2c\xba\x53\x36\xef\xc5\xf4\x55\x12\xd1\x15\xbd\xbe\x86\xe7\xcf\x61\x45\x98\xc2\x48\x02\x5d\x85\x02\x62\xe9\xf6\x3b\x2c\x80\xc2\x77\xf0\xb4\xf7\xc5\xf8\x97\xf2\x2a\x66\x77\x77\xd2\xc3\xef\xb3\xd7\x62\x30\x85\xe6\x54\x5d\x5a\x9a\x29\xa9\x67\xe3\x90\x12\x33\xbb\x76\xcd\xfb\x21\x70\x45\xaf\xb3\xae\x5e\x8f\xbc\xe4\xbe\x52\x29\xe7\xe7\x64\x67\x1e\xa6\xad\x85\xbf\x12\x4e\x36\x66\x98\xbe\x59\x03\x02\xba\x4a\x23\x74\x61\x05\xcf\xe0\x49\x47\x27\x93\xe3\xf2\x2d\x39\x2e\x71\x24\x6d\x4c\x53\x3c\xb3\x18\x96\x5d\x82\x1e\x90\xc2\xd2\xac\x5a\x55\x02\x85\xa2\x34\x6c\xa6\xfd\xbd\x38\xff\x78\xc0\xe4\x0c\xa7\xb3\x5b\x77\xc7\xd6\x40\x1b\xf6\xa9\x25\x57\xa2\xae\x24\xb7\x6b\xad\xa8\xb4\xcb\xf4\xb7\x94\xaf\x43\xde\xef\x37\xc8\xdb\xaa\xe1\x80\xe0\xf2\xae\x5f\x7d\x25\xe1\xa5\xd8\xb2\x63\xe8\xbc\x47\xdd\x59\xda\x81\x06\x7f\xfe\x09\x8f\xac\xcf\x82\x14\xfe\xbb\x67\x34\xcd\x3a\xce\x75\x18\x53\x71\x32\x94\xc7\x5c\x32\x84\x05\x4c\x26\xdd\xf4\x95\x32\x38\x2c\xc6\xc2\x2d\xe2\xf0\x31\x91\xc5\x3e\xba\x2c\x96\xe4\xfc\xb9\x3b\x27\x3f\x26\xa2\x77\x68\x46\x36\x6a\x0c\x7f\xcc\x0b\xc1\x0b\xa2\xa7\x93\x19\x4c\xba\xf3\xed\x2f\x64\x9f\xa2\xb8\xfa\x78\x9d\x6b\xe1\xe8\xa6\x59\x67\x1e\x19\x3b\x7d\x1c\x9a\xde\xa7\xa7\x36\x12\x83\x0a\x56\xb9\x68\x5c\x11\xca\x5c\xdd\x47\x60\x8b\x4a\x91\x35\xba\x52\x89\x09\x71\xab\x80\xd1\x5b\xf3\x4c\xd5\x1c\x6e\x50\x4a\x21\xe7\x2e\x06\xe7\xf0\xda\x2c\xed\xe9\x42\x71\x0e\xe7\xf9\xf7\x05\x12\xfc\xf9\xff\x7f\xc6\xf2\x29\xf9\x09\x7f\x22\xf9\x50\x26\x9e\xa5\x88\x3b\xc1\x7c\xd3\xe8\x61\x85\x4f\x27\xb6\x6d\x09\x94\x71\x6d\x8b\x31\x6d\x5c\xc4\xb7\x25\xf5\x4a\x48\xb8\x90\xa8\x0a\xe4\xa5\x80\x6a\xb7\x96\xa4\x34\xe5\xe1\xd6\x0c\x52\x42\xf0\x47\xf0\x0b\x12\xc9\x61\x2b\x24\xce\x61\xa3\xf5\x4e\xcd\x4f\x4f\x97\x54\xe7\xec\x78\xfa\xfa\x97\xb7\xff\xbc\xf8\xfd\xd5\xe5\xc5\xab\xdf\x5e\xbe\xcd\xe1\x65\x5a\xc8\x1c\x26\x63\xde\x73\x7e\xf3\x39\xfa\xae\xa9\x75\x12\xf3\xb1\xe9\xc2\x4c\xf7\x51\xbf\x73\x73\x5f\xf0\xb4\xcd\xc3\x52\x78\x27\xc5\x92\x2c\x29\xa3\xda\xb6\x05\x4d\x86\x31\x6c\x97\xc4\xf0\x15\xae\xc1\x28\x2a\x29\x4d\xad\xb6\x34\xb5\x1a\x6c\x90\xae\x37\xda\xb6\x4b\xb6\x6d\x33\x95\x9a\x7d\x32\x9d\x57\x48\xd2\x08\x7b\xb3\x0a\x28\x23\x26\x54\xc1\x5a\x22\xd1\x28\x4d\x34\x71\xd3\x39\xe0\xbf\x2a\xc2\x6c\x77\xe0\x9b\xb9\x70\xc0\x48\xa2\x34\xcd\x44\xa8\x5d\x4c\x44\xd8\x81\x1c\x55\x48\x6b\xa6\x7c\x5f\x39\xaa\xac\x67\x1d\x9a\x14\x82\x87\x8a\xb0\x79\x7d\x50\x06\x43\xa5\x5a\x19\x7d\xc3\x0c\x4b\xe9\x68\x40\xbc\xe3\x4d\x9a\x5b\xa2\x84\x25\xea\x03\x22\xbf\xcf\x33\x7d\x0c\x29\x1f\xb7\x28\x8c\x59\x90\x70\x65\x49\x87\xe3\x86\x17\x12\x89\x69\xaa\x18\xe5\x48\x24\x3b\x02\x51\x23\x11\xb4\xdb\x49\x41\x8a\x0d\xaa\x61\x4b\xf7\x96\xe8\xe4\xb2\xe4\x7a\x8c\x78\xdd\x5d\xbb\xfa\xae\x1b\x71\x42\xb6\x91\x12\x50\x76\x85\x0f\xd1\x0d\x9a\x29\xa0\x49\x7b\x24\xf2\x46\x38\x84\xae\x3a\x23\x22\xdf\xc4\x02\xbb\xb1\xee\x59\xa0\x89\xb5\x30\xf0\xda\x8c\x6e\xca\x5c\x5b\xd6\xb4\x3d\x16\x2c\x5c\x55\xb6\x46\xdd\xbe\x9c\x66\x61\x99\xd0\x1b\xb1\x00\x4e\x59\x67\x71\x74\xd8\x15\x6a\x4d\xf9\xda\xed\x22\x50\xbe\x27\x8c\x96\x26\x2b\x41\x89\x2b\x52\x31\xd3\x43\x6f\xc8\x9e\x8a\xaa\x5e\x13\x62\xf4\xd0\x94\x11\xf1\xfb\xbb\x48\x83\x65\x08\xbe\x03\xee\x51\xac\xac\xb5\xb3\xed\x2a\xeb\x86\x11\x16\xc1\xf8\xdc\x7e\x8f\x46\x20\x2f\x47\xe8\x43\x6f\xb1\x36\x02\xba\x23\xd6\xa8\x2f\x82\x2f\xd3\x2c\xf7\xc1\x11\x9a\xb5\xc5\x06\xcf\x16\x8d\xdc\xbe\x59\xcd\x4a\x5a\xd7\x72\x1c\xf7\x28\x61\x63\x5b\x00\x58\x62\x61\x4c\x7b\x40\xb0\x76\x26\xda\xee\x37\x84\xe6\x39\x98\x92\xd0\xfb\xc4\xee\x45\x7c\x4b\x97\x45\x86\x2a\xe9\x0a\x02\x25\x1f\x07\xda\x47\x85\x9b\xe4\xa6\x03\x93\x46\x4d\x4d\x97\x0c\xdd\xb4\x3e\x73\x96\x7d\x36\xcd\xe0\xff\x0c\xab\x66\x88\x27\xe7\x25\x7c\x17\x72\x0c\xa7\x83\x2d\x56\x7c\xea\x1d\x99\x5a\xbd\xc4\x74\xd2\xd1\xce\x08\x39\x8b\x1c\x9e\xe8\x1e\xec\x5e\x86\xd2\xb2\x2a\x34\x04\x33\xa6\xf5\x69\x77\xcf\x2a\xda\xda\x18\xa4\x0a\x36\x3c\x82\x10\xe2\x54\xc7\x5b\x23\xd1\xce\x48\xb7\x3c\x77\x75\xbc\xcd\x3b\x0b\x88\xe3\xbe\xf9\x8c\xd6\x9c\x61\x90\xa7\x5a\x24\x0b\xcb\xa4\xdf\x4e\xce\x98\x07\x2a\x3f\x0f\xa4\x7b\x03\x5a\x09\x7e\x63\x25\x57\x6e\x47\x2e\x2f\xc4\xee\x78\xd6\x0e\x7b\x36\x5d\x49\xb1\x9d\xc3\xa9\xff\x7e\xba\x62\xe2\xd0\x29\xec\x5a\xea\xec\x1e\x70\x7e\x0e\xbe\x26\x94\x55\x12\xdf\xb5\x2b\x95\xc1\xfa\xe1\x35\xfd\xf4\xe3\x0f\x01\xcc\x87\x34\x44\xa9\x8e\x07\x9e\xe4\x4f\xcc\xd2\xe6\x18\x0e\x4d\x80\xbf\x29\xed\x7a\x08\x4f\x1f\x02\xe1\x7f\x29\x6f\xde\x63\x97\x80\x5d\x08\xe5\xaf\x67\x78\x16\xc2\xfd\xef\xa3\xe7\x21\xe9\x33\xb0\xeb\x4b\x4b\x1e\x01\x79\x9c\xcc\x8f\x1e\x83\x13\x3e\x6d\x47\x67\x70\x5a\xbf\x2c\xe9\x2a\x35\xcf\x82\x22\x2c\x0a\xe1\xd6\xe9\x61\x3a\x08\x93\x51\x32\x0f\x30\x41\xca\xaf\xcc\x03\x83\xbc\x15\xd9\x63\x80\x6b\x06\x5a\x7c\x4d\x86\x69\x35\xaf\x78\xac\xfb\xb7\xd0\xf2\x2e\x3a\xc0\x88\x8e\x3c\x40\xa2\x12\xb2\x40\x28\x88\x29\x0e\x9a\x6e\x90\x94\x25\xd8\xaf\x5b\xb1\xc7\xe0\xb0\xa3\xd9\x14\xef\x6d\xce\x42\x49\x6d\x97\x41\xe4\xd1\x4b\xeb\xa5\x58\x23\xab\x32\xc2\x62\x08\x51\xd5\x4d\xca\xf2\x55\x8f\xb5\x41\x63\x84\xb6\x38\xea\xf6\xee\x3e\x14\x5d\x08\xc6\x05\x29\x11\x53\x92\xd8\x90\xef\x2e\x87\xa6\xb7\xf7\x74\x40\x79\x80\xa6\xbf\xe7\x73\xff\x5e\xb6\x1f\x7d\x0d\x8b\x7e\x71\x74\x37\xb0\xb5\xe2\xdc\xd1\xb7\x8f\x77\x53\x6c\xa2\x87\xbb\x2a\x65\xa4\x01\x51\xdf\xdc\x4e\xb9\x03\x32\xbd\xc5\xe3\xbc\xe6\x34\xb4\x1b\x16\x1b\x4b\xa1\x1e\xd9\x89\x35\x9f\x5d\xdb\xd8\xdf\x5c\xdd\x13\x49\xc9\x92\x61\x1d\x65\x7b\xc2\x2a\x34\x9d\xea\x4d\xd0\x3c\xde\x0c\x9a\x6e\x5c\x70\xe2\x68\xab\x63\x97\xfb\x0a\x8a\x45\xd8\xc3\xf6\xb7\xb8\xbf\xf4\x74\x2d\x78\xc8\x86\x4d\x79\x69\x56\x82\x57\xf5\x62\xd2\x18\x6f\x6c\x8b\xc0\x84\x81\x35\x70\xa2\xe5\x6e\x4f\xae\xc7\xcc\x18\x09\xfd\x82\xba\x75\x27\x31\x11\x6b\x0e\xeb\x99\x1b\x38\xb9\xec\xb7\xf6\xdb\x4a\xd9\x13\xdb\xb6\xc2\xef\x2a\x35\x19\x3b\xf7\xe8\xd5\x4b\x41\x9a\xf7\xd8\xed\x3f\x1e\x3a\xf2\x32\x1b\xf5\xfb\xf0\x22\xb9\x4c\x2c\x63\x8d\xff\xc7\x0f\x44\x07\x11\xc4\x1e\xb7\xcb\x54\xec\x73\xfb\xea\x6f\xf7\x7a\x5f\x70\xef\xd0\xa0\x6b\xa7\xde\x92\xfa\xa5\x36\xe1\x94\x79\x8b\x70\xca\x86\x2c\xa2\x51\xe9\x8b\xd4\x71\xb1\x5d\x32\xad\xd6\xa8\x6c\xd3\xbc\xab\xe4\x4e\x28\xbf\x55\xea\x47\xbf\xf1\x77\x02\x8a\xfa\x12\xc8\x3d\x97\x39\xfc\xfd\x88\x9d\x14\x7b\x5a\xa6\xb6\x60\x3d\xdf\x14\x1b\xaa\x40\xe8\x0d\xca\x03\x55\xee\x5a\x86\x11\x6a\xf3\x59\xb3\x24\x88\x4a\x2b\x5a\xe2\xa0\x17\x92\xca\x7e\xab\x23\x6c\x68\x8b\xcc\xae\xab\xfb\xc7\xea\x49\x44\xb3\x3e\x88\x59\x28\x78\xfc\x38\x2f\x6c\xc8\x5b\x00\x23\x0d\x79\x73\x96\xea\x01\x0c\x12\xba\x13\x55\x67\x8c\x4e\x53\xde\xe5\x31\x8b\x88\x93\x8d\x79\xbd\xc4\x2e\x6a\x00\x7d\x12\x7b\x1b\x6a\x61\x59\xa5\xc2\xba\xe7\xf6\xe6\xcc\xa7\x16\xdc\x91\xbb\x27\xcd\xca\xde\x1c\x31\x85\x58\x82\x53\xa3\xee\xb6\x91\xaf\x51\x9e\x7c\x32\xd9\x79\x45\x3f\x45\xdf\xbb\x3c\xa3\xe7\x5c\x31\x5a\xa0\xaf\x7b\xbf\x9f\x41\xb5\x7b\x2f\xe6\x1d\x12\x77\x9e\x97\xa5\x62\x68\x72\x9e\x37\xc7\x25\xd1\xa0\xac\x39\x61\xcb\x27\xcd\xef\xc6\x6c\x03\x31\xe2\x8b\x68\x62\x2a\xd8\xb6\xa0\xa5\x0a\x4c\xc7\x50\xd6\x15\x83\x2f\xce\x41\x09\x7f\xa3\xab\x19\xe2\xeb\x6c\x67\xf9\xf6\xfe\x9b\x72\xf7\x4b\xc0\x57\xff\xa1\xa8\x9b\x5e\x4d\xd4\x5e\x29\x8b\x2b\xbe\x26\x6d\xf8\x3b\x4a\xcd\xa5\xa4\xfc\xa4\x89\xb3\xc4\x45\xa1\xe4\x24\x74\x7b\x3b\xbd\xca\x71\x01\x9f\xef\x62\x9a\x7e\x75\xd2\xd9\x40\xb6\x54\x43\xf7\xac\x60\x31\xda\xc9\xd8\x61\x2d\xab\x4e\x61\xd9\x87\x97\x98\x25\x0f\xaf\xbc\x3b\xfd\xb3\xf3\xd7\xd9\x63\x28\xec\x01\x53\xdc\xb4\x4c\x1f\xd2\x3f\x9e\x3d\xb6\x3c\x5c\xf3\x38\x6a\x86\xba\x4f\xbb\x3b\xf9\x4f\x00\x00\x00\xff\xff\x64\x62\x52\xbe\x4f\x29\x00\x00" func dependencyauditCdcBytes() ([]byte, error) { return bindataRead( @@ -86,11 +86,11 @@ func dependencyauditCdc() (*asset, error) { } info := bindataFileInfo{name: "DependencyAudit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xab, 0xe2, 0x21, 0xa8, 0xaf, 0xb2, 0x59, 0x7e, 0x4f, 0xf3, 0xbe, 0x36, 0x9e, 0x17, 0xa2, 0x8b, 0x4d, 0x59, 0x42, 0xe1, 0xde, 0xd2, 0x9f, 0xa7, 0xec, 0x5a, 0xfd, 0xef, 0x9e, 0x29, 0x45}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x36, 0x1f, 0x54, 0xf3, 0x47, 0xcd, 0x80, 0x5c, 0x6d, 0xbd, 0xe, 0x53, 0xc0, 0x79, 0xdb, 0xad, 0x2e, 0xd5, 0xd0, 0xba, 0xd8, 0xc8, 0xa2, 0xd9, 0x15, 0x15, 0x54, 0xee, 0x1e, 0x60, 0x94}} return a, nil } -var _migrationcontractstagingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\xcb\x6e\x5b\xc9\x95\x7b\x7f\xc5\x11\x17\x36\x39\xa0\xa8\x4e\x63\x30\x0b\xc1\x8c\x5b\x91\xdd\xd3\x5e\xd8\x6d\x58\x72\xb2\x30\x8c\x4e\xe9\xde\x43\xb2\xe0\xcb\x2a\xa2\xaa\xae\x68\x8d\xe3\x7d\xbe\x73\xbe\x24\xa8\xf7\xe3\xde\x22\x69\x75\xa3\x89\x24\xb6\xc9\x7a\x9c\x73\xea\xbc\x1f\xb9\xb8\xb8\x80\xdb\x0d\x95\xd0\x70\xa6\x04\x69\x14\x50\x09\x94\x29\x64\x2d\xb6\xb0\xe2\x02\x7a\x89\x40\x19\xa8\x0d\xc2\x35\x69\x91\x35\x08\x7f\x59\xfc\x10\xd7\x6f\xe9\x5a\x10\x45\x39\x03\xd2\x08\x2e\xa5\x59\xf9\x73\xc7\xf7\xc0\x50\xed\xb9\xf8\xbc\x78\x72\x71\x71\xa1\xff\x0b\xaf\x19\xec\x04\xee\x88\x5b\xaf\x4f\x57\xfa\xee\x2d\xed\x50\x2a\xce\x70\x0e\x0f\xbc\x17\xf1\xec\x3d\xed\x3a\x78\xfb\xea\xd5\x4b\x50\x1c\xee\x10\xfa\x5d\x4b\x14\xb6\x67\xf0\xab\x06\xe3\x81\xf7\xcf\xee\xc3\x97\x7e\x6b\x8b\xfa\x60\x73\x5f\x02\xaf\x39\x19\xde\x7c\xb8\xb9\x05\xa9\xc8\x1a\x8b\x8b\xcc\x36\x83\x65\x4a\x0a\xc9\x41\x6d\x88\x32\x18\xd9\x5b\xa0\x21\x4c\x03\x82\x5f\xb0\xe9\xf5\xa5\x44\x02\x81\x1d\x11\x0a\xf8\x4a\xaf\x33\xf7\x3a\xc4\xcf\xf7\xb4\x45\x7d\x9d\xc2\x48\xa5\x48\x8d\x5b\x3e\x0a\x8a\xbd\xe8\xd2\x2c\xf9\xcb\x02\x1a\x81\x7a\x3f\x81\x5f\xb8\x54\xf0\x14\x24\xb9\x37\x90\x66\x9b\xce\x37\x5c\x2a\xca\xd6\x40\x9a\x86\xf7\x4c\x99\xcd\x3f\x2e\xa0\x21\x5d\x67\x2f\xb9\x76\x2b\xa7\x33\xd8\x11\x29\xcd\x5a\x10\xb8\x42\x61\x28\xa4\xb8\xa1\x8f\xbe\x63\x6e\xd0\x0d\xe0\x30\xb2\xc5\x39\x10\xd6\x26\x54\x68\x03\x65\x35\xdd\x22\x42\x86\x78\x96\x40\x2d\x67\x06\x4c\x02\xfa\xae\x0e\x41\x09\xc2\x24\x69\x34\x09\xce\xe0\x67\x2e\x60\xcb\x85\xdd\x6f\xee\xc2\x2f\x6a\x0e\x12\x11\x36\x4a\xed\xe4\xe5\xc5\xc5\x9a\xaa\x4d\x7f\xb7\x68\xf8\xf6\x82\xb3\x55\xc7\xf7\x17\x01\x59\x0b\x84\x79\xe2\x27\xa4\x69\x50\xca\x29\xe9\xba\x59\x84\xf9\x8d\x27\xb6\xc7\xfa\x46\x91\xb5\x46\xf9\xeb\x93\x27\x00\x00\x17\x17\xf0\x8e\xa8\x8d\xde\x20\x15\x61\x4a\xba\x6f\xcd\x1f\xee\x44\x89\xdd\x6a\x06\x1d\x2a\x68\xb1\xa3\x5b\xaa\x50\x5c\xc2\x8d\x12\x94\xad\xc7\x97\x35\x64\x27\xfb\x0e\xf5\xc1\xef\x04\xae\xe8\x97\xb1\xe5\x06\x4e\xbd\x5a\x53\xfa\x46\x71\x41\xd6\x66\x87\x5e\x1b\xfe\x31\xba\xe1\xaa\xdd\x52\x76\x70\x87\x7e\x82\x37\x64\x97\xf0\x2f\x69\x5b\x81\x52\xa2\xd4\xef\x4b\x18\x10\x21\xc8\x83\x66\x54\xc3\x12\x6d\xfe\xc8\x72\x1c\x2d\xbb\xd4\x13\x52\x5e\xc2\xd7\x2b\x7b\xea\x25\x7c\xb4\xf8\x7d\xfa\x16\xae\xbf\xdd\x20\xdc\x75\xbc\xf9\x0c\x1b\xa4\xeb\x8d\x02\xa2\x60\xbf\xa1\xcd\xc6\x31\x8e\x65\x0f\xc6\xf5\x7f\x3a\xce\xd6\x28\x34\xaf\xd8\x2b\x16\xf0\x7a\x05\x8c\x76\xf3\x6c\x6d\xf8\x19\x28\x6b\x71\x45\x19\x55\xd8\x3d\x40\xcf\x14\xed\xc2\xb5\x86\x61\x7b\xc5\x57\x2b\xb8\x27\x5d\x8f\x5a\x87\x49\x54\x8b\x21\x46\xf7\x44\x98\xf3\x28\x5b\x5f\x9b\x0d\x97\xf0\xe1\x35\x53\xff\xf3\xdf\x2f\xc2\x61\xef\x51\xf6\x9d\x92\x4e\x9e\xa1\x23\x52\x01\x6e\xfb\xce\xf0\xfd\x50\xeb\xcd\xa1\xe1\xdb\x2d\x55\xfa\xd7\xbb\x07\xb3\x85\xe8\xa7\x02\xb2\x52\x28\x80\xaf\x56\xcd\x86\x50\x36\xb2\x73\xf0\xcc\x1a\x38\x7d\xdd\x2b\x77\x5b\x60\x63\x0b\xd2\x25\x54\x7e\x78\xf1\x24\x00\xff\xea\x1e\x99\x06\xd7\xc2\xb3\xdf\xa0\x96\x40\x7f\xf5\x33\xe9\xf4\x9c\x74\x34\x9d\x83\xc0\x5d\x47\x1a\x6c\x41\x2b\x7a\x66\xbf\x0d\x87\xfd\xd3\x8a\xeb\x3f\xe1\xff\xff\xfd\x6f\xf8\x3a\x31\xbf\x4e\xe6\x30\x71\x9b\xf4\x5f\xdd\x9e\xc9\x37\x40\xd2\x6c\xa0\x45\xc6\x8d\x1e\x32\x64\x30\xbb\xe1\x0e\xcd\x17\xe4\x33\x32\xe0\xd6\x8e\x14\xec\x17\x2e\x7c\xfb\xeb\xed\xab\x4b\x78\xc9\x51\x02\xe3\x0a\xd6\x3d\x11\x84\x29\xc4\xa8\x85\x0b\x85\x2d\xf5\x7b\xd3\xa0\x8e\x06\x14\x45\x43\x0e\x27\xfd\x37\x8a\xa8\x5e\x7e\xb0\x1a\x6c\x6a\xd6\xea\x8f\x93\xdb\x0f\x1f\x5e\xbf\xf4\xcc\x30\x0f\x3f\x12\xcf\xeb\x8e\xe9\xe3\x2f\x1a\x00\x2f\xe1\xe9\xb7\x16\xbe\xd7\x2d\x32\x45\x57\x34\x2a\x8d\xe4\x4c\x43\x97\x4c\x3b\xcc\xe2\x03\xa6\x4f\x77\x80\xed\x24\x6c\xb4\x21\xb8\x43\xd4\xac\xb5\xdd\x75\xa8\xf4\x7b\xee\x37\x28\x10\x56\x84\x76\x89\xcc\x02\x11\x68\x44\xdc\x73\x28\x15\xe1\xbe\x68\xf6\x03\xc4\x70\x0e\x57\x8b\xab\x97\x2f\xdf\xbf\xba\xb9\x59\xbc\xbd\x7a\xf3\xca\x9d\xea\xbe\xd2\x54\xd7\x4f\xa1\x4d\x8e\xa7\x0f\xec\xa9\xda\xf0\x5e\xc1\x0f\x5f\x2a\x6f\x50\x61\xdd\x6b\x2f\x3b\xf1\x3d\x24\x23\x3b\xb9\xe1\xea\x96\x6e\x51\x2a\xb2\xdd\x5d\xc2\x87\x9f\xe9\x97\xf4\x55\x82\xc4\x1d\x58\x53\xd0\x20\x6a\xab\x43\x04\xf7\xcc\x19\xd4\x43\xd4\x27\xce\xf2\x1d\x66\x31\xbb\xc9\xb3\x18\xef\xda\xa0\x5e\xe6\xc0\x70\x1f\xfe\x35\x7b\xe2\x44\xf6\xbf\x46\x3e\x01\x85\x77\xfd\x5d\x47\x1b\x78\x83\x6a\xc3\x5b\xab\x9e\x61\x6c\xc3\x85\x3f\x0c\xce\xcf\xcf\x3d\x28\x7e\x9b\xf9\x2e\x2c\xd1\x3e\x05\x9c\xc3\xb5\x77\x2a\xec\x23\xb2\xd6\xb9\x15\xea\xa8\x67\xa1\x35\x7a\xcd\xbc\x2e\x0a\xa3\xe6\xaf\x0c\x57\xdb\x6b\xa5\x77\x66\x24\x8a\x7b\x73\xb4\x0c\xdc\xd7\xa4\x9e\x61\x22\xee\xee\xf6\x05\xbc\x4f\x5d\x16\xe3\xad\x09\x94\xbc\x17\x0d\x46\x0e\x36\xfc\x19\x39\x9c\x74\x9d\xb9\xc5\xb1\xaa\xe4\x1a\xcf\x6d\x2f\x95\x31\x2e\xe4\xde\xd8\x96\x80\x9f\xb4\xf0\xc3\x1d\xae\xb4\x83\x62\xb5\x57\x2f\xb1\xd5\x17\x5a\x7f\x8d\x94\xce\xda\x22\xc3\x34\xe5\x8e\x55\xcf\x9c\x07\xa7\x31\x9e\xce\x2e\xe1\x27\x83\xfa\xd7\xf0\xc8\x02\x55\x2f\x18\x3c\x3f\xf7\x9e\x9e\x5d\x68\x7e\xff\x16\x5f\xed\x47\xfd\x6a\x63\xde\x9c\x96\xbc\x28\x8f\xd1\xa3\xd3\x8f\x9a\xd9\xf7\xfc\x1b\xa3\x3f\xb5\xcb\xb7\xa7\x72\x13\x50\x1b\xbc\x98\x7e\x59\x4b\xcf\x62\xab\x7f\xa1\x35\xbd\x47\x56\x5e\xa4\x06\x0a\xc2\x18\xf7\xec\x14\x2a\x81\x74\x02\x49\xfb\xe0\x8d\x51\x6e\xce\xf5\x25\xc6\xfd\xbf\xc3\x60\xa5\x16\x85\xa5\xd8\x92\xcf\xe6\x75\x9c\xbf\xe0\xb1\x68\xed\x6e\x81\x12\x95\xb3\x10\x96\xad\xa4\xb1\x00\x0e\x76\xa2\x02\x30\x87\xdf\x2f\xa7\xb8\xc6\xea\x12\x9e\x5a\x4f\x59\xa3\x1b\x14\x7c\x66\x12\x66\xc9\x13\xef\x04\x26\xff\x32\x3a\x0e\xbb\xd5\x82\x4a\x27\x37\xef\x50\x50\xde\x5e\x35\x8a\xde\xa3\x66\x91\x89\x17\xe1\x9d\xf9\x01\x36\x44\x82\x89\xc7\x26\xe1\x90\x6f\xe1\x6f\x85\xeb\x09\x4b\x7b\x78\x8b\x82\xde\xe3\xb5\xfd\x21\x91\xc9\xa9\xc7\x39\x78\x71\x1a\xa1\x85\x7b\xa6\xe9\x6c\x1e\x88\xf2\xd6\xe0\xa6\x31\x9c\x85\xcb\xe8\xca\x9e\x5e\x38\x85\x1f\xf3\x33\x3e\xc1\x72\xa9\x3d\xb9\x02\xe9\x8b\x0b\xf8\x99\x0a\xa9\x40\xd1\x2d\xc2\x1e\x9f\x09\xd4\x1e\xbf\x46\xb4\x09\xa6\x6a\x25\xf8\xd6\xca\xb5\x97\xd7\x73\xa0\x4c\xa2\x50\xce\xb5\xb2\x5f\x0e\xb8\x7b\x48\xde\x02\xc6\x85\x3d\x65\xfa\x19\x1f\x86\x38\x7f\xd4\x47\x7c\x9a\x95\xe0\x06\x35\xc9\x70\x0f\x8e\x96\x96\xcb\xb4\x6a\xc8\x3c\x99\x36\x87\x20\x79\x15\x2d\xda\x06\x20\x2b\xdf\xee\x18\xc7\x47\x9b\x84\x8d\x6c\xa4\x65\x99\x48\xff\xef\x6c\x88\x93\x57\x83\x4e\x49\x2d\xb4\xf6\x9a\x3e\x3f\x77\x37\xcd\x41\xf1\xcb\x94\x19\xf2\x13\xac\xa6\x19\x61\xa1\x8b\x0b\xf8\x07\xea\x48\x5a\x62\x22\xcb\xe9\x5b\x64\xb6\xde\x69\xc6\x73\x68\x36\xd8\x7c\xd6\x3c\x71\x58\xb0\x53\xee\x31\x74\xf1\x3e\x12\x6b\xf1\x8b\xe7\xd7\x23\x1c\x75\xb6\x58\x69\xd6\x31\x5b\xa6\x7c\xe5\xf8\x72\xc8\x60\xb7\x07\x21\x81\x73\xaf\x4a\x82\x8e\xa9\xbe\xda\x72\x9c\xe2\x77\x5c\x08\xbe\x7f\xfe\xd4\x3d\xe3\x5f\xa7\x9a\x48\x07\x88\xae\x3f\x2f\x5e\xc0\x8e\x30\xda\x4c\x27\xd7\xbc\xef\x5a\xe3\xdb\xda\x73\x00\xbf\x50\x6b\x5e\x3d\x77\x19\x9a\x7b\x1b\xa4\x15\x55\xe1\x2b\x4f\xf2\xe3\xdd\xbd\x0b\x87\xd6\x35\x6f\x71\x5a\xe3\xa0\x43\xef\x9f\x08\xa6\xf3\x7f\x8a\x54\xc8\xb9\x7e\xfe\x61\x66\xc0\x5a\x61\x84\x8e\x4a\x93\x01\x89\xcc\xe3\xe0\xd6\x28\xe8\xb7\x7c\x72\x48\x36\x87\xaf\x4d\x76\x3b\x64\xed\x34\xd7\x3e\x87\x44\xe0\x71\x12\x56\x91\x98\xc4\xee\xbe\xc7\x2d\xbf\x77\x16\xb0\x8c\x9a\xad\x21\xb4\x42\x12\xe9\x86\xec\x9e\x0a\xce\xb6\xc8\x8e\xd8\x15\x17\x3b\x1d\xb7\x2c\x7f\x9a\x2d\xd9\xe5\xae\x89\xfe\x9c\x25\xc7\x63\x3b\x25\x35\xab\x11\x09\xac\x2f\xbd\x4e\x44\x50\x2a\xea\xdd\x96\xaa\x01\xf3\xaa\x65\x59\x9c\x7b\xd4\xf0\xb8\x95\x15\x8b\x53\xe5\xf8\x44\xd0\x75\xdc\xe7\x85\x5d\x98\xc7\xbe\xc9\xee\x88\x28\xbb\xbf\x64\xb8\x3e\x19\x97\xf3\x77\x82\xdf\x75\xb8\x85\x16\xa5\x12\xfc\x21\x3a\x29\x5e\xce\x13\x31\xd6\xc1\xfa\x91\x10\x15\xca\x30\x35\xf9\xc7\x3c\x5b\x35\x00\x36\x3f\xc3\x70\xfe\x64\x52\x7e\x3b\x8c\x59\x8d\xa4\xe4\x27\xbb\xa8\x35\x84\xfc\xe1\xd7\x5c\x66\x6c\x10\xe2\x42\x97\xff\x45\xa5\x50\x0c\x63\x90\xf7\xe6\x61\x64\x4c\xb0\x1c\x4f\x1a\x85\x44\x50\x55\xa6\xee\x29\xee\x8d\x60\xad\x51\x65\xf1\x98\x96\x03\x17\x78\x0d\x1d\xef\xc0\x56\x61\xf9\x50\x05\x58\x60\xf7\x1b\x54\x1b\x14\x99\xb0\x3b\xa9\xd2\x9a\xb2\x17\x02\x99\xea\x1e\x0c\xa5\xee\xf1\x38\x98\x55\x99\xfd\x1b\xe7\xdd\x29\x80\x7a\xa6\xff\xd7\xbf\x34\xca\xd7\x16\x80\xbf\x69\x4a\x4e\x67\x0b\x47\xcb\xe7\xcb\x91\x8d\x67\x35\x14\x95\xd0\xc1\xee\xd0\xa0\x47\xe4\x5c\xae\xee\x54\xec\x52\x95\x71\x95\xcb\x8f\xd3\x6d\x47\xd1\x1d\x13\xf7\x17\x0b\x0d\x1d\xa1\x4c\x5a\x13\xa1\x45\x6f\x45\x3a\x89\x8f\x47\xcc\x85\x09\xd8\x1a\xdf\x52\x93\x95\xae\x80\xaa\x67\x36\x15\xf5\x1d\x68\xff\xdd\x1f\x74\x1a\xe6\x35\x96\x74\x4c\x1c\xb1\xb7\x5a\xe1\xb0\x3a\x7a\xb1\x48\xef\x37\x64\x61\x2e\x4f\x3a\x46\x94\x8d\x4d\x0b\x99\x5c\x67\x88\x2d\xdb\xd4\x03\xcc\xa2\x3c\x1f\xcb\x9d\x2c\x81\x11\x78\x1d\x4c\xc8\xe9\x8a\x8b\xab\x82\x26\xb3\x98\x98\x39\x91\x07\xe2\x21\x9f\x34\x7e\x1f\x3f\x1d\x42\xaf\x34\xd9\x69\xdd\x62\x1c\x3b\xfb\xfc\x64\x7b\x20\xa8\xaf\xa3\x69\xfc\xaf\xa3\xcf\x6e\xff\xf2\x07\x3f\x7c\x70\x66\x2b\x94\xc8\x4f\x03\xa9\x44\xdf\xa8\x5a\x18\xef\x59\xdf\xa4\x17\x4f\xe6\xfd\xa3\x90\xd7\x08\x92\xaf\x4f\x09\xf3\xbb\xa3\xdb\x40\xac\x23\x61\xed\x1f\xe3\xfa\x8f\xfa\x1f\xc1\x49\xd7\x4a\x3a\xa7\x4c\x04\xe1\x1b\x60\x27\x4b\xd7\xce\xed\xf7\x22\x0c\xc1\x87\x19\x79\xe3\xb4\xbc\x33\x22\xcb\x59\x08\x87\x27\xca\xf0\x55\xd7\xe5\x0f\xaa\x7d\x53\xa9\x4d\xd4\xc7\x20\x82\x27\x09\xed\xe2\x33\x3e\xc8\x2a\xe4\xd0\x52\xe3\x5c\x10\x51\x85\xbe\x2e\xaf\x8f\xc4\xc4\x48\xea\xb8\x3e\xfa\x6a\xf9\xd2\xf3\xe7\xb7\x92\x1d\x53\x95\x56\x0b\x5f\x13\x25\x95\x72\x59\xb1\xb7\xee\xb3\xc2\xd7\x6f\x15\xb7\xd5\xdf\xa4\x3d\xb9\x01\xa4\xcb\x74\x9f\x26\x97\x89\xd1\x92\xea\x93\xb9\xf8\xac\xb8\xd2\xb1\xbf\xf3\x50\x97\x27\xaa\xa1\x88\x62\xa6\x89\x8a\xb3\xf5\x27\x82\xfc\xd1\xe5\x4b\x4d\xba\x05\x96\x3e\x7d\x3a\x08\xc4\xc7\x90\xf7\xec\x15\x0e\xab\xf2\xd3\x98\x25\x33\x75\xfa\x2d\xd9\xed\xb4\xd7\xa6\x99\xcc\x69\xfb\xa2\x30\x3a\x52\x11\xfd\x6e\xd6\x32\x02\x32\x52\x25\x3d\x4d\x54\xea\x52\x92\xe8\xb9\x3c\x09\xe5\x73\x07\xae\x62\xb9\xe2\x62\x7b\x19\xf6\x9b\x3f\x9d\x0a\xbb\xb0\x51\x72\x59\xa8\xfe\xcd\x55\x76\x7e\x7b\x7b\xf5\xe6\x55\x1d\xd7\xd3\x95\xee\xd5\xb8\xd2\x4d\x0c\x60\xc4\x24\x17\xae\xa4\x0a\xe5\xf8\x70\x00\x6d\xc6\x28\xda\x0f\x6c\x88\x9a\x3a\xab\xe0\x0a\xf5\xb3\xd1\x35\x05\x98\x0b\xc5\x2d\x40\xd3\xd9\xf8\xfa\xef\x39\xf3\x6d\x66\x4f\xdc\xf3\xa6\x34\xa2\x49\x70\x15\xff\x5e\x8b\x1f\x63\x9e\xc8\x12\x3d\x3c\x71\x4a\x39\x2d\xdf\x99\x2a\x9c\x8c\x44\x62\x7f\xda\x47\xc7\x77\x8f\xbc\x56\xdb\x7f\xeb\x8f\xc8\xef\xdf\xfb\xf8\x6b\x7f\xcf\xc7\x44\xb3\xee\xe2\xc3\x9f\xf0\xc2\x95\x0a\xa8\xfd\xfd\xc8\x21\x59\xe8\xbc\x13\x28\x91\x29\xeb\xd6\x89\xd8\xad\x40\x0e\x16\x8c\xad\x30\x12\xca\x7c\x79\x5e\x2a\x22\x14\x3c\x4d\xda\x17\x4c\xfa\x4f\xbb\xbf\x84\x3d\xb8\xfa\x69\xb8\x36\x57\x8c\xa6\x9c\x93\x94\xc1\xf6\x24\x24\xfc\x5c\x0f\x84\x3d\x3d\x9c\x48\x6d\x18\xd5\x51\xa9\x6c\xb9\xad\x28\xcf\xce\x81\x2a\x59\xb4\x46\xd8\xe2\x9d\x89\xfc\x1b\xce\x24\x6d\x51\x60\x0b\xb2\x37\xba\x69\xd5\x77\x55\xed\xec\x7c\xdb\x0a\xc1\x13\x8d\x63\x5a\x56\x7c\x09\x39\x36\x19\xc4\x8e\x36\x5f\x8b\x36\x08\x9a\x16\x86\xb0\xb7\xec\xcf\xf1\x4b\x7d\x25\xfa\xf4\x4b\xfc\x13\xee\xd1\x34\x44\xb9\xd7\xa8\x5e\x14\x56\x8c\xde\x14\x93\x38\xa1\x83\x25\x1a\x41\x73\xb9\xa5\x7c\x5a\x16\x6b\x7b\xe1\x99\x22\x30\x50\xfe\x14\x63\x70\xd4\x0b\xec\xd1\xe3\x61\x54\x4d\x4b\xc2\xcc\xeb\x3b\x4b\xe7\x61\x24\x1f\x09\x21\x85\xec\x9f\xe6\xb9\xb3\x13\x91\x2c\x93\x1b\xff\x9b\xaf\xf2\xba\xfe\xc5\x1d\x91\x6a\x52\x71\x34\x86\x07\x2f\xc3\x9b\x0e\x17\x45\xa1\x59\x8e\xe4\x5e\x94\x7f\xee\xe1\xc6\xb2\x35\x63\x59\x52\xa3\xe2\xe9\x1f\x54\x2d\xb9\x8b\x56\xd7\x28\xe3\x6a\x24\x16\xd9\xb5\xa0\x9a\x2f\x84\x40\xb9\xe3\xac\xb5\xb5\xb9\xf6\x40\x2c\xec\x64\xad\x88\x2e\x73\x11\x73\x06\xb7\xe4\xc7\xbc\x2e\x50\xb2\x57\x19\x34\x66\x27\x6a\x73\x5b\x1e\x57\x3d\x29\x0d\x36\x73\xa9\x1c\x69\x68\xb4\xad\xad\x89\x3b\x5a\x36\x68\xa5\x45\xde\xaa\x8c\xfb\xfa\x35\x91\x36\xbd\x99\x36\x8f\x8c\x1d\xaa\x17\xb9\xac\x6f\x90\xea\x5c\x8a\x0e\xc7\xd0\xf5\xda\x73\x60\xbc\x98\x62\x27\x05\x41\xc3\x12\x13\x2c\x2c\x2b\xe5\x54\x83\xd0\x72\x58\x33\x33\x3f\x26\xf0\x9f\x28\x10\xdf\x9e\x64\xc4\xf3\x49\x2b\x19\x15\xa4\x6d\x58\x0a\xcc\x62\x2a\x65\xd2\xf7\x16\x28\x22\xd6\x91\x49\x16\xe9\x59\xe3\x44\xf6\x4e\xac\x3d\x66\x24\xcb\x0a\xd1\x6f\xd3\x4e\xbd\x8d\xfd\xa7\x29\xe9\x66\x8b\xa0\x49\x17\xd6\x0a\x86\x24\x64\x20\xdf\xac\x86\xe0\x0d\x0a\x4a\x3a\xfa\x7f\xae\x94\x54\x26\x9b\x80\x32\x1d\x89\x68\x71\x72\x01\x8a\xf7\xe4\xe1\x87\x2f\x69\x2f\xd6\xe9\x98\x46\xf7\xd6\xf3\xc5\x38\xb6\x29\x8a\x89\x4f\xec\x3d\xdc\xc9\x62\x32\xcb\x3c\xe2\x53\xd1\x34\xc4\x69\x94\xc5\x8c\x9a\x8a\xa0\x01\x22\x71\xf1\x53\x34\x8f\xb5\x9c\x75\xa4\xf9\x2c\x7d\x7f\xd9\x49\x04\x88\x17\x55\x49\x60\x0c\x37\x61\xf2\x87\x50\x87\x1e\x21\x84\xec\x68\x83\x2e\xd9\xf3\xe3\x1c\xfa\xdd\x2d\xbf\xac\x2e\xee\x90\xad\xcb\x1a\xb0\xbe\x65\x67\x62\x17\x58\xc2\xe4\x6a\x32\x4a\x5a\x03\x45\x46\xf5\xb1\xc7\xb2\xc7\x9c\xfe\x1e\xc3\xda\x45\x5a\xd4\x75\x11\xff\x8e\x48\xd3\xdf\x34\xe8\x76\x4d\x9c\x47\xef\x2e\x38\x3f\xc1\x71\xbe\x6b\x7d\x58\xe4\xca\xd9\xf4\xe6\x98\x74\x3c\x34\x26\x90\xd9\x22\x61\xa9\xc3\xb1\x21\x92\x3d\xd3\x86\x79\xdd\xb3\x79\xa6\x2e\xf5\xd7\x94\x35\x5d\xdf\x5a\x37\xd1\x82\x62\x20\xe0\x22\x3d\x22\x71\x4f\x4f\x63\x86\x34\x2f\x3e\x2a\xfc\x71\x10\xc2\x69\xee\x88\xa3\x73\x1f\x2a\xc4\x31\x42\xdc\xd2\x56\xc3\xae\xc1\x1a\xcb\xad\x1c\x68\xeb\x85\x65\xbd\xa1\xee\xd0\xb6\xa1\x5f\x94\x0a\x74\xaa\x91\x9f\x1f\xba\x3e\xfa\x3b\x83\xf3\xf4\xe7\xe9\x53\x38\x3b\xb4\xbb\xf0\x5e\x0a\x95\x98\x8a\xe0\xec\x80\xe3\xe5\x20\x8f\x25\x9c\x51\x56\x36\x2d\x0e\xa3\xd9\x6c\xd7\x2d\x66\x3a\xe1\x88\x16\x36\x7e\x4f\x5b\x9f\xb3\xae\xf0\x87\x97\x02\x5b\x8c\x4f\x1b\x28\x7e\x3b\x6e\x4d\xff\x70\x6b\x08\xa7\xfa\x7a\xfa\xf3\x4b\x70\x9c\x8e\x78\x79\x37\x28\xee\x51\x56\x1a\x2c\x89\x69\x8d\x44\xf1\x4c\x0e\x72\xa9\x4e\x86\x6f\x36\x46\x7c\xd3\x36\x49\xdf\x9a\x62\xc2\x44\x43\x48\x90\x64\x85\xeb\x9e\x88\xd6\x8e\xc3\xc4\x16\xc4\xb5\x20\xda\xbf\x74\xcb\x14\x4f\x06\x6b\x1c\x7f\x9b\x30\x72\x18\x63\x9a\x5c\xf5\x9e\xca\x8d\x6d\xea\x6b\xb1\xc3\xb5\x2d\x5a\xb8\xd6\x14\x0e\x84\x71\xa3\xd0\x7c\xdb\xe6\x14\x17\xeb\x05\x6c\xfb\x4e\x51\x49\x63\xb7\xaa\x44\xd5\xef\x00\x19\xb9\xb3\x3d\xa0\xd0\xe2\x3d\x76\x7c\x87\xb1\x03\x3a\xb4\x75\x72\x66\xcc\xd4\x1d\x6e\x48\xb7\x9a\xe9\x88\x14\xa4\x25\x40\x98\xc1\x79\xf7\xfe\xf5\xdf\xaf\x6e\x5f\xd9\xf6\xd5\x86\xec\xc8\x1d\xed\xa8\x7a\x30\xd4\xd8\xf5\x77\x1d\x95\x1b\xbd\xcd\x35\xc5\x08\x6c\x90\xde\x27\xcd\xb3\x75\x37\x3a\x34\xb1\x16\xdd\xa1\x65\x15\x27\xac\xe3\x7b\x96\xbe\xdc\xe9\x8a\x30\xf4\x56\x04\x57\xf2\x80\x5b\x60\x6e\x79\x11\x7c\xc7\x98\xa0\x32\x60\x52\x09\x3d\xd3\x4b\xda\xb3\xc9\xec\xb1\xbc\xec\x32\x5b\x27\x06\x2d\x0e\x7b\x23\xe5\x26\x01\x2a\x61\x87\x3e\x4e\xc9\xac\x9a\xb4\xd3\x47\xa3\x65\xaf\x05\xfc\xca\x02\x33\x0d\xba\x79\x7d\x9d\x21\x5c\xbb\x0a\xcd\x51\x73\x7d\xa2\x4b\xc5\xf9\xe6\x54\xcb\x1c\xb6\x6c\x6c\x40\x6a\x87\x83\x64\xa1\x7d\xf9\x8a\x3d\xb8\xa4\xc8\xa0\x91\xd7\xcc\x6a\xd1\x90\x73\x86\x2d\x69\x11\xc8\x9a\xd0\xd8\x0e\x2d\xb5\xa7\xe8\x0f\x4d\x0c\x67\x18\xcf\xcb\x21\x0b\x6d\xb3\x70\x25\x4d\xaf\xaf\x44\x9c\x67\x2b\xa9\x84\x2d\x0a\xec\x1e\xc2\xad\x61\xf4\x2f\xcb\x30\xeb\x5b\xe6\x40\x06\xae\x83\x0c\x77\x85\x81\xb8\xbb\x87\x72\xe2\x2d\x9d\x0b\x74\x93\x71\xce\x8d\x0f\xb7\xa6\xd1\x57\x18\x06\x3c\x41\x5a\x3c\x1e\x5f\x07\x71\x5d\x56\x24\x75\xed\xa2\xed\x20\x66\xb4\x8c\xe4\x71\x70\x51\xda\xa2\x14\xa0\x38\x0c\xe5\x66\xf3\xca\x80\x3b\x0f\xd5\xc6\x17\x0d\x72\x1b\x83\x46\x2e\xfd\x71\x05\x91\x18\xa5\x4c\x6e\x6d\xa4\x13\x20\x6e\xfd\x74\x8c\x59\x73\x34\x9b\x11\x8a\x3a\x7d\x92\x1b\xa8\xfb\x89\x63\x35\x73\x77\x84\x63\x32\xe3\xac\xf3\x55\x55\xb4\x4e\xd7\x44\x23\xe5\xd0\x92\x68\x07\x54\xd3\x31\x7c\x12\x67\x61\xb4\x98\x18\xfa\xe6\x6d\x0a\x7d\x6c\xb0\xf1\x91\xee\xc3\x51\xe7\xc1\x3d\x72\xb9\x27\x77\x90\x4e\x6c\x0b\x83\xb2\x35\xcc\xde\xd0\xd3\x76\x3e\x58\x17\x72\x08\x29\x14\xa3\x8d\x62\x10\x9a\xc5\x8c\xe4\x8f\xfc\x36\x6c\x19\x4b\x0f\x1d\xb6\x8f\x41\xda\x42\xe6\x07\xc8\xb2\x15\x8f\xb6\x20\x66\x32\xf2\x24\xfb\x61\x56\x46\xed\x61\xa6\x9b\x77\x49\x54\x33\x32\xfa\x73\x5c\x07\xd9\x43\xbf\x96\x71\xb0\xcb\xcf\x9f\x34\x0d\x59\x8e\x42\x1e\x95\x21\x33\x96\x50\x76\xb9\x11\xe5\xee\x89\x63\x46\x27\xe9\x1c\x07\x5c\x6c\x26\xb3\x5f\x9c\xc1\x5f\xab\x6d\x65\x97\xa3\xb1\xc2\xe4\x17\x7b\x92\xcf\xba\xea\xe3\xb8\x80\xb5\x31\x90\x66\xe4\x82\xf9\x86\xab\x8c\x2e\x87\x94\x58\x2a\x06\x23\xd3\x55\xd5\xc8\x29\x7b\x4a\x37\x7c\x65\x6f\xcb\xc5\xec\xb4\x03\x60\xe9\x36\xd7\xf4\x8d\x9d\x63\xfb\xce\x92\xcc\x49\xcf\x6c\x33\xcd\x45\xd8\x25\xab\x59\xf5\x7a\x32\xfd\x51\x41\xe6\xb2\x56\x45\x19\x6a\xa1\x08\x91\xff\xdb\x50\x03\x0c\x32\xff\x45\x18\x0f\x99\x1e\x08\xef\x7f\xfa\xf0\x60\x09\x4c\x32\x20\x58\x87\x6a\x6c\x9c\xf0\x31\xd4\x3a\x8b\x65\x81\xdf\x8b\xfa\x71\x15\x18\x75\xe0\x6b\xa6\x50\x30\xd2\x1d\x1f\x14\x4c\x75\x61\x9c\xc5\xf3\x4e\x54\xd0\x68\x85\x69\xfc\xc5\xcf\x08\xe6\xb6\x79\x01\xff\x70\x7e\x93\xf3\x7a\x5d\x6a\xd6\x56\xac\x5b\xd8\x11\xb5\xf1\x9e\xf0\x20\xc4\x7b\x26\xcb\x81\xbb\x51\x6f\xcf\x7a\x5e\x71\x88\x2e\x6f\xed\x3f\x3e\x84\x75\x09\x3f\x0d\x5d\xc4\xac\xd7\xa5\xd6\xdd\x52\xef\x6f\x1f\x1f\xd1\x29\x06\x7e\x5c\xc4\xe8\xe1\xf5\x2e\xa1\xfd\xf3\x0f\xe9\xfd\x1e\xb1\xf1\x35\xe0\xf3\xb3\x2a\x66\xfd\x3b\xbb\xc0\x47\x7b\xc0\x21\x9f\x67\x4c\x22\xbb\xc3\x13\x15\x96\x2c\xcf\xe4\xf8\x14\x8c\x66\x3d\x91\xf8\xa7\xa6\x63\xdf\x39\xf2\xb6\x63\xbf\x8d\x2d\x30\x22\xb6\xee\x86\x1b\x5d\x5e\x71\xc5\x7b\xa6\x63\xa1\x4e\x72\xb7\x4f\x8e\x0c\xb4\x64\xf3\x1c\x69\xa5\xce\x35\x0f\x1d\xe1\xd3\xc3\x23\x04\xb5\x06\xc8\x61\x77\xfa\xc9\x83\x52\xbe\x25\x7a\x7c\x42\xea\x2c\x1c\x78\x64\xb3\x85\x7b\x4a\xd4\x65\x7e\xed\x2c\x31\x52\xee\xe9\x0c\x75\x7c\xee\xe0\x18\xb9\xec\x53\x98\xb1\x13\xc6\x87\x6d\x59\x02\xb7\x69\x80\x9b\x36\x29\xc6\xa0\xea\xc8\xec\xc7\x99\x4b\xba\x6b\x0f\xe6\x87\x31\x7f\xbb\x6c\x46\x74\xb8\x9a\x49\x40\x5f\xdb\x29\x34\x2f\x14\xd1\x86\x1b\xe4\xf0\xf2\x7c\x7c\x26\x24\x61\xf8\x97\x76\xaf\xcc\x22\xef\xa0\x6c\x0f\x68\xcd\x03\xda\xb2\x26\x14\x31\xab\x65\xce\x34\x17\x27\xe2\x61\x1f\xc3\x44\x8e\x95\x8e\xde\xc8\xc9\x35\x94\xbf\x93\x87\xff\xec\xe6\x5d\x3f\x6d\x59\x76\xef\x76\x9c\xb4\xcf\x7f\x3a\xbd\x77\x77\x38\x22\x94\x2a\xde\x6c\xa9\xa3\x54\xa6\xf0\x0a\x26\x4a\x4e\xaa\x73\x5a\xd1\xaa\x6f\x92\x09\x29\x58\x79\x43\x1a\x2c\x61\xf2\xdb\x24\xff\xb1\x18\xc0\x87\x65\xd6\x83\x36\xf0\x49\xd2\xa6\xb4\x49\xcd\xe3\xd1\x67\x4e\x2a\x3d\x71\xd9\xd7\x9e\xe2\xc3\xaa\x58\xee\xd2\xcd\x0e\x35\xba\x19\x67\x23\x01\x7a\x52\x8c\xff\x95\xff\x37\x38\xb0\x8c\xdd\x8d\x35\x0c\x92\x00\x31\xe4\xef\xcb\xae\x42\x4d\xcd\xda\x7e\x3f\xb3\x95\x61\xf1\x3d\x5d\x82\x27\x93\x67\x4c\x5d\xe5\x4d\xbd\x63\x53\x40\x59\x83\x78\xa8\x40\xd4\x5d\x7a\xbd\x3c\x5f\x5f\x9b\x2b\xb6\x5e\x8c\xa1\xdf\xd4\x0d\x4b\x8e\xbe\x82\xd7\x79\xdf\x9e\xfc\x27\x00\x00\xff\xff\x90\x8a\xac\x96\x50\x4c\x00\x00" +var _migrationcontractstagingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x5d\x73\x13\x49\x92\xef\xfe\x15\x69\x3d\x80\x74\x21\xcb\xb3\xdc\xed\xc4\x86\x03\x2d\xe3\x35\xcc\xc1\x03\x0c\x81\xcd\xee\x03\x41\xb0\xe5\xee\x94\xba\x82\x56\x95\xa2\xaa\xda\xc2\xc7\xf2\xbe\xbf\xf3\x7e\xc9\x46\x7d\x7f\x74\xb7\x24\xcc\xc4\x28\xee\x16\x90\xaa\x2a\xbf\xb3\x32\xb3\x32\xe7\xfc\xfc\x1c\x6e\x1a\x2a\xa1\xe2\x4c\x09\x52\x29\xa0\x12\x28\x53\xc8\x6a\xac\x61\xc5\x05\x74\x12\x81\x32\x50\x0d\xc2\x15\xa9\x91\x55\x08\x7f\x5a\xfc\x14\xd7\x6f\xe8\x5a\x10\x45\x39\x03\x52\x09\x2e\xa5\x59\xf9\x6b\xcb\x77\xc0\x50\xed\xb8\xf8\xbc\x38\x39\x3f\x3f\xd7\xff\x0f\xaf\x18\x6c\x05\x6e\x89\x5b\xaf\x4f\x57\x1a\xf6\x86\xb6\x28\x15\x67\x38\x87\x7b\xde\x89\x78\xf6\x8e\xb6\x2d\xbc\x79\xf1\xe2\x39\x28\x0e\xb7\x08\xdd\xb6\x26\x0a\xeb\x53\xf8\x4d\xa3\x71\xcf\xbb\xc7\x77\xe1\x4b\xbf\xb5\x46\x7d\xb0\x81\x97\xe0\x6b\x4e\x86\xd7\xef\xaf\x6f\x40\x2a\xb2\xc6\x02\x90\xd9\x66\xa8\x4c\x59\x21\x39\xa8\x86\x28\x43\x91\x85\x02\x15\x61\x1a\x11\xfc\x82\x55\xa7\x81\x12\x09\x04\xb6\x44\x28\xe0\x2b\xbd\xce\xc0\x75\x84\x9f\xed\x68\x8d\x1a\x9c\xc2\xc8\xa5\xc8\x8d\x1b\x3e\x88\x8a\x05\x74\x61\x96\xfc\x69\x01\x95\x40\xbd\x9f\xc0\x4b\x2e\x15\x3c\x02\x49\xee\x0c\xa6\xd9\xa6\xb3\x86\x4b\x45\xd9\x1a\x48\x55\xf1\x8e\x29\xb3\xf9\xc9\x02\x2a\xd2\xb6\x16\xc8\x95\x5b\x39\x9d\xc1\x96\x48\x69\xd6\x82\xc0\x15\x0a\xc3\x21\xc5\x0d\x7f\x34\x8c\xb9\x21\x37\xa0\xc3\xc8\x06\xe7\x40\x58\x9d\x70\xa1\x0e\x9c\xd5\x7c\x8b\x04\x19\xe6\x59\x06\xd5\x9c\x19\x34\x09\x68\x58\x2d\x82\x12\x84\x49\x52\x69\x16\x9c\xc2\xaf\x5c\xc0\x86\x0b\xbb\xdf\xc0\xc2\x2f\x6a\x0e\x12\x11\x1a\xa5\xb6\xf2\xe2\xfc\x7c\x4d\x55\xd3\xdd\x2e\x2a\xbe\x39\xe7\x6c\xd5\xf2\xdd\x79\x20\xd6\x22\x61\x44\x7c\x42\xaa\x0a\xa5\x9c\x92\xb6\x9d\x45\x9c\x5f\x7b\x66\x7b\xaa\xaf\x15\x59\x6b\x92\xbf\x9e\x9c\x00\x00\x9c\x9f\xc3\x5b\xa2\x1a\xbd\x41\x2a\xc2\x94\x74\xdf\x9a\x3f\xdc\x89\x12\xdb\xd5\x0c\x5a\x54\x50\x63\x4b\x37\x54\xa1\xb8\x80\x6b\x25\x28\x5b\x0f\x2f\xab\xc8\x56\x76\x2d\xea\x83\xdf\x0a\x5c\xd1\x2f\x43\xcb\x0d\x9e\x7a\xb5\xe6\xf4\xb5\xe2\x82\xac\xcd\x0e\xbd\x36\xfc\x63\x70\xc3\x65\xbd\xa1\x6c\xef\x0e\x2d\x82\xd7\x64\x9b\xe8\x2f\xa9\x6b\x81\x52\xa2\xd4\xf2\x25\x0c\x88\x10\xe4\x5e\x2b\xaa\x51\x89\x3a\x17\xb2\x1c\x26\xcb\x2e\xf5\x8c\x94\x17\xf0\xf5\xd2\x9e\x7a\x01\x1f\x2c\x7d\x1f\xbf\x05\xf0\x37\x0d\xc2\x6d\xcb\xab\xcf\xd0\x20\x5d\x37\x0a\x88\x82\x5d\x43\xab\xc6\x29\x8e\x55\x0f\xc6\xf5\xff\xb5\x9c\xad\x51\x68\x5d\xb1\x20\x16\xf0\x6a\x05\x8c\xb6\xf3\x6c\x6d\xf8\x19\x28\xab\x71\x45\x19\x55\xd8\xde\x43\xc7\x14\x6d\x03\x58\xa3\xb0\x9d\xe2\xab\x15\xdc\x91\xb6\x43\xed\xc3\x24\xaa\x45\x9f\xa2\x3b\x22\xcc\x79\x94\xad\xaf\xcc\x86\x0b\x78\xff\x8a\xa9\x9f\xff\xe7\x59\x38\xec\x1d\xca\xae\x55\xd2\xd9\x33\xb4\x44\x2a\xc0\x4d\xd7\x1a\xbd\xef\x7b\xbd\x39\x54\x7c\xb3\xa1\x4a\xff\x7a\x7b\x6f\xb6\x10\x2d\x2a\x20\x2b\x85\x02\xf8\x6a\x55\x35\x84\xb2\x81\x9d\x3d\x31\x6b\xe4\x34\xb8\x17\x0e\x5a\x50\x63\x8b\xd2\x05\x8c\xfc\xf0\xec\x24\x20\xff\xe2\x0e\x99\x46\xd7\xe2\xb3\x6b\x50\x5b\xa0\x07\xfd\x58\x3a\x3f\x27\x1d\x4f\xe7\x20\x70\xdb\x92\x0a\x6b\xd0\x8e\x9e\xd9\x6f\xc3\x61\xff\xb4\xe6\xfa\x4f\xf8\xff\x7f\xff\x1b\xbe\x4e\xcc\xaf\x93\x39\x4c\xdc\x26\xfd\x57\xb7\x67\xf2\x0d\x90\x54\x0d\xd4\xc8\xb8\xf1\x43\x86\x0d\x66\x37\xdc\xa2\xf9\x82\x7c\x46\x06\xdc\xde\x23\x85\xfa\x05\x80\x6f\x7e\xbb\x79\x71\x01\xcf\x39\x4a\x60\x5c\xc1\xba\x23\x82\x30\x85\x18\xbd\x70\xe1\xb0\xa5\x96\x37\x0d\xee\xa8\xc7\x51\x34\xec\x70\xd6\x7f\xad\x88\xea\xe4\x7b\xeb\xc1\xa6\x66\xad\xfe\x38\xbb\x7d\xff\xfe\xd5\x73\xaf\x0c\xf3\xf0\x23\xf1\xba\xee\x94\x3e\xfe\xa2\x11\x78\x49\x64\x73\x01\x1f\xf4\xa6\xbf\x7c\x4c\x7f\xb2\x48\xbe\xaa\x91\x29\xba\xa2\xd1\x73\x24\x07\x1b\xe6\x64\x2e\x62\x16\xa5\x98\xca\x6f\x8f\xee\x49\x68\xf4\x6d\x70\x8b\xa8\xf5\x6b\xb3\x6d\x51\x69\xa1\xee\x1a\x14\x08\x2b\x42\xdb\xc4\x70\x81\x08\x34\x76\xee\xd5\x94\x8a\x00\x2f\xde\xfd\x01\x63\x38\x83\xcb\xc5\xe5\xf3\xe7\xef\x5e\x5c\x5f\x2f\xde\x5c\xbe\x7e\xe1\x4e\x75\x5f\x69\xd6\x6b\x79\xe8\x7b\xc7\x33\x09\x76\x54\x35\xbc\x53\xf0\xd3\x97\x11\x41\x8c\xe8\xef\x95\x37\xa0\x28\x14\xc9\xc8\x56\x36\x5c\xdd\xd0\x0d\x4a\x45\x36\xdb\x0b\x78\xff\x2b\xfd\x92\x8a\x26\x98\xdd\x9e\x35\x05\x0f\xa2\xcb\xda\xc7\x70\xaf\xa1\xc1\x47\x44\xa7\xe2\xae\xbf\xfd\x7a\x66\x37\x79\x3d\xe3\x6d\x1d\x7c\xcc\x1c\x18\xee\xc2\xbf\x66\x27\xce\x6e\xff\x6b\xe0\x13\x48\x78\xdb\xdd\xb6\xb4\x82\xd7\xa8\x1a\x5e\x5b\x1f\x0d\x43\x1b\xce\xfd\x61\x70\x76\x76\xe6\x51\xf1\xdb\xcc\x77\x61\x89\x0e\x2c\xe0\x0c\xae\x7c\x64\x61\x85\xc8\x6a\x17\x5b\xa8\x83\xe1\x85\x76\xeb\x63\x77\xec\xa2\xb8\xd9\x3c\xc8\x00\xda\x82\x95\x3e\xa2\x91\x28\xee\xcc\xd1\x32\x68\x5f\x95\x86\x87\x89\xcd\x3b\xe8\x0b\x78\x97\xc6\x2d\x26\x64\x13\x28\x79\x27\x2a\x8c\x1a\x6c\xf4\x33\x6a\x38\x69\x5b\x03\xc5\xa9\xaa\xe4\x9a\xce\x4d\x27\x95\xb9\x61\xc8\x9d\xb9\x60\x02\x7d\xd2\xe2\x0f\xb7\xb8\xd2\x51\x8a\x75\x61\x9d\xc4\x5a\x03\xb4\x41\x1b\x29\x23\xb6\x45\x46\x69\xaa\x1d\xab\x8e\xb9\x30\x4e\x53\x3c\x9d\x5d\xc0\x2f\x86\xf4\xaf\x41\xc8\x02\x55\x27\x18\x3c\x3d\xf3\xe1\x9e\x5d\x68\x7e\xff\x16\xa5\xf6\x44\x4b\x6d\x28\xa4\xd3\x96\x17\xed\x31\x86\x75\x5a\xa8\xd9\x25\x9f\x7f\x63\x9c\xa8\x8e\xfb\x76\x54\x36\x81\xb4\x9e\xc4\xb4\x64\x2d\x3f\x8b\xad\x5e\x42\x6b\x7a\x87\xac\x04\xa4\x7a\x0e\xc2\xdc\xf0\xd9\x29\x54\x02\x69\x05\x92\xfa\xde\xdf\x48\xf9\x9d\xae\x81\x98\x1c\xe0\x16\xc3\x55\xb5\x28\xae\x8b\x0d\xf9\x6c\xa4\xe3\x82\x06\x4f\x45\x6d\x77\x0b\x94\xa8\xdc\x35\x61\xd5\x4a\x9a\x6b\xc0\xe1\x4e\x54\x40\x66\xbf\xfc\x72\x8e\x6b\xaa\x2e\xe0\x91\x0d\x97\x35\xb9\xc1\xc1\x1b\xa8\xfe\x5f\xb3\x44\xc4\x5b\x81\xc9\xbf\x8c\x8f\xc3\x76\xb5\xa0\xd2\xd9\xcd\x5b\x14\x94\xd7\x97\x95\xa2\x77\xa8\x55\x64\xe2\x4d\x78\x6b\x7e\x80\x86\x48\x30\x49\xd9\x24\x1c\xf2\x2d\xfc\xad\x88\x3f\x61\x69\x0f\xaf\x51\xd0\x3b\xbc\xb2\x3f\x24\x36\x39\xf5\x34\x87\x50\x4e\x13\xb4\x70\x62\x9a\xce\xe6\x81\x29\x6f\x0c\x6d\x9a\xc2\x59\x00\x46\x57\xf6\xf4\x22\x32\xfc\x90\x9f\xf1\x11\x96\x4b\x1d\xce\x15\x44\x9f\x9f\xc3\xaf\x54\x48\x05\x8a\x6e\x10\x76\xf8\x58\xa0\x0e\xfb\x35\xa1\x55\xb8\xaa\x56\x82\x6f\xac\x5d\x7b\x7b\x3d\x03\xca\x24\x0a\xe5\xe2\x2b\xfb\x65\x4f\xbb\xfb\xec\x2d\x70\x5c\xd8\x53\xa6\x9f\xf1\xbe\x4f\xf3\x07\x7d\xc4\xc7\x59\x89\x6e\x70\x93\x0c\x77\xe0\x78\x69\xb5\x4c\xbb\x86\x2c\x9c\xa9\x73\x0c\x12\xa9\x68\xd3\x36\x08\x59\xfb\x76\xc7\x38\x3d\x6a\x12\x35\xb2\xe9\x96\x55\x22\xfd\xbf\xb3\x3e\x4d\xde\x0d\x3a\x27\xb5\xd0\xde\x6b\xfa\xf4\xcc\x41\x9a\x83\xe2\x17\xa9\x32\xe4\x27\x58\x4f\x33\xa0\x42\xe7\xe7\xf0\x0f\xd4\xe9\xb4\xc4\xc4\x96\x53\x59\x64\x77\xbd\xf3\x8c\x67\x50\x35\x58\x7d\xd6\x3a\xb1\xdf\xb0\x53\xed\x31\x7c\xf1\x31\x12\xab\xf1\x8b\xd7\xd7\x03\x1a\x75\xba\x58\x69\xd5\x31\x5b\xa6\x7c\xe5\xf4\xb2\xaf\x60\x37\x7b\x31\x81\x33\xef\x4a\x82\x8f\x19\x95\xda\x72\x98\xe3\xb7\x5c\x08\xbe\x7b\xfa\xc8\x89\xf1\xaf\x53\xcd\xa4\x3d\x4c\xd7\x9f\x67\xcf\x60\x4b\x18\xad\xa6\x93\x2b\xde\xb5\xb5\x09\x70\xed\x39\x80\x5f\xa8\xbd\x5e\xbd\x76\x19\x9e\xfb\x3b\x48\x3b\xaa\x22\x60\x9e\xe4\xc7\x3b\xb8\x0b\x47\xd6\x15\xaf\x71\x3a\xa6\x41\xfb\xe4\x9f\x18\xa6\x8b\x7f\x8a\x7a\xc8\x99\x16\x7f\xbf\x3c\x60\x6f\x61\x84\x96\x4a\x53\x06\x89\xca\xe3\xf0\xd6\x24\x68\x59\x9e\xec\xb3\xcd\xbe\xb4\xc9\x76\x8b\xac\x9e\xe6\xde\x67\x9f\x09\x3c\xcc\xc2\x46\x2c\x26\xb9\x77\xdf\xe1\x86\xdf\xb9\x1b\xb0\x4c\x9d\xed\x45\x68\x8d\x24\xf2\x0d\xd9\x1d\x15\x9c\x6d\x90\x1d\xb8\x57\x5c\x02\x75\xf8\x66\xf9\xc3\xee\x92\x6d\x1e\x9a\xe8\xcf\x69\x72\x3c\xd6\x53\x32\x76\x6b\x44\x06\x6b\xa0\x57\x89\x09\x4a\x45\x7d\xd8\x32\x7a\x81\x79\xd7\xb2\x2c\xce\x3d\x78\xf1\xb8\x95\x23\x37\xce\xa8\xc6\x27\x86\xae\x93\x3f\x6f\xec\xc2\x08\xfb\x3a\x83\x11\x49\x76\x7f\xc9\x68\x3d\x19\xb6\xf3\xb7\x82\xdf\xb6\xb8\x81\x1a\xa5\x12\xfc\x3e\x06\x29\xde\xce\x13\x33\xd6\x19\xfb\x81\x3c\x15\xca\x5c\x35\xf9\xc7\x3c\x5b\xd5\x43\x36\x3f\x23\x26\xae\x1f\xcb\x5f\xfa\x79\xab\xb1\x96\xfc\x74\x97\xb9\x86\xdc\x3f\xfc\x9a\xdb\x8d\x4d\x44\x5c\xfa\xf2\xbf\xa8\x14\x8a\x7e\x1e\xf2\xce\x08\x47\xc6\x4a\xcb\xe1\xea\x51\xa8\x08\x8d\xda\xd5\x1d\xc5\x9d\x31\xae\x35\xaa\x2c\x27\xd3\xb6\xe0\x92\xaf\x7e\xf0\x1d\x54\x2b\x2c\xef\xbb\x01\x8b\xec\xae\x41\xd5\xa0\xc8\x0c\xde\x59\x96\xf6\x96\x9d\x10\xc8\x54\x7b\x6f\x38\x75\x87\x87\xd1\x1c\xb5\xdb\xbf\x71\xde\x1e\x83\xa8\x57\xfc\x7f\xfd\x4b\x93\x7c\x65\x11\xf8\x9b\xe6\xe4\x74\xb6\x70\xbc\x7c\xba\x1c\xd8\x78\x3a\x46\xa2\x12\x3a\xe1\xed\x5f\xea\x91\x38\x57\xb4\x3b\x96\xba\xd4\x6d\x5c\xe6\x36\xe4\xfc\xdb\x41\x72\x87\x4c\xfe\xd9\x42\x63\x47\x28\x93\xf6\x9a\xd0\xe6\xb7\x22\xad\xc4\x87\x13\xe6\x52\x05\xac\x4d\x7c\xa9\xd9\x4a\x57\x40\xd5\x63\x5b\x93\xfa\x0e\xb2\xff\xee\x0f\x3a\x8e\xf2\x31\x95\x74\x4a\x1c\xa9\xb7\x9e\x61\xbf\x4b\x7a\xb6\x48\xe1\x1b\xb6\x30\x57\x30\x1d\x62\x4a\x63\x4b\x43\xa6\xe8\x19\xf2\xcb\x3a\x8d\x02\xb3\x4c\xcf\xe7\x73\x47\x5b\x60\x44\x5e\x27\x14\x72\xba\xe2\xe2\xb2\xe0\xc9\x2c\x16\x67\x8e\xd4\x81\x78\xc8\x47\x4d\xdf\x87\x8f\xfb\xc8\x2b\xaf\xed\xf4\x01\x63\x98\x3a\x2b\x7e\xb2\xd9\x93\xd8\x8f\x93\x69\x62\xb0\x83\x62\xb7\x7f\xf9\x9d\x05\x1f\x02\xda\x23\x39\x61\x38\xd0\x10\xd9\x1c\x60\x03\x70\x31\x62\x0d\x0f\xe4\x8f\xbe\x84\x0e\xf3\xc8\x55\x57\x53\x26\xb9\x14\xc2\x5d\xa6\xcb\x1f\xe0\xd6\x60\xa8\x10\xce\x0b\x48\xba\x02\x4f\x1e\x4d\x7f\x2b\x85\x76\xc0\xc0\x72\xbc\x40\x2a\xd1\x55\x6a\xac\x84\xe2\x99\x6c\x4a\xbb\x47\xfb\x9c\x83\x3c\x18\x63\x72\xbe\x3e\xe5\xf5\x0f\x57\x16\x02\xdb\x0f\x94\x14\x7e\x9f\xb4\x6b\x58\xa0\x3e\x41\x32\x32\xcd\x38\x93\x88\x13\xb0\x95\x65\x58\x5d\x48\x36\x8a\x7d\x40\xc6\xe9\xfb\xda\x80\x0f\xcd\xd2\x67\x3c\xd2\x77\x5e\xb6\x6d\x2e\x50\x9d\x17\x48\x1d\x1a\x7c\x08\xae\xef\x28\x67\xb9\xf8\x8c\xf7\x72\x14\x73\xa8\xa9\x09\xea\x88\x18\xc5\x7e\xdc\x4f\x3e\x90\x12\xe3\x21\x87\xef\x81\xaf\x56\x2f\xbd\x7e\x7e\x2b\xd5\x31\xbd\x4a\xc6\x4a\x07\xc9\xe5\x90\x6a\x59\xb1\x77\x3c\x5f\x80\xaf\xdf\x46\x52\x06\x0f\x49\xe7\x8f\x3d\x4c\x97\xe9\x3e\xcd\x2e\xe3\x39\x93\xe7\x3f\x03\xf8\xb4\x00\xf9\x30\x87\x16\x49\xdc\xe7\xd3\xf4\x27\xa2\xfc\xc1\xb9\x32\x53\xea\x82\x25\x24\x9e\x2d\xdb\x35\x44\xbc\x57\xaf\x70\xd8\xa8\x3e\x0d\x45\x10\xa6\x51\x62\x43\xb6\x5b\x1d\x2d\x6b\x25\x73\xd7\x4b\xf1\x32\x3d\xf0\x24\xfd\xdd\xaa\x65\x0c\x64\xe0\x99\xfa\x38\x53\x19\xb7\x92\xc4\xcf\xe5\x05\x40\x5f\xb7\x71\x4f\xc6\x2b\x2e\x36\x17\x61\xbf\xf9\xd3\xb9\xb0\x73\x5b\xa1\x28\x3b\x05\x3e\xb9\x57\xb5\x4f\x6f\x2e\x5f\xbf\x18\xa7\xf5\x78\xa7\x7b\x39\xec\x74\x93\xc0\x23\x52\x92\x1b\x57\xf2\x02\xe8\xf4\xb0\x87\x6d\xa6\x28\x3a\xfe\xae\x88\x9a\xba\x5b\xc1\x75\x4a\xcc\x06\xd7\x14\x68\x2e\x14\xb7\x08\x4d\x67\xc3\xeb\xbf\xe7\xcc\x37\xd9\x7d\xe2\xc4\x9b\xf2\x88\x26\x49\x6d\xfc\xfb\x58\xee\x1e\x6b\x74\x96\xe9\x41\xc4\x29\xe7\xb4\x7d\x67\xae\x70\x32\x94\x01\xbf\x57\xb4\xdd\x9b\xf7\x9a\xd8\xcb\xa9\x8e\x0f\x03\x6a\x9c\x9b\xef\xb5\xb1\x98\xc7\x9d\xeb\x97\x97\xff\x7d\xf6\xe4\xcf\x3f\x1f\x65\x11\x21\x70\xf9\x94\x3f\x47\x84\x68\xaa\x6f\x09\x7a\xf9\x65\xbb\xe6\x82\xaa\x66\xb3\xd0\xd0\x3e\x3d\xf9\xf3\xcf\x0b\x8d\x83\xa9\x25\x2e\x3a\xb5\xfa\xcb\x00\x79\x7f\xd8\x47\xb3\xef\x81\x60\x75\x78\x63\xc3\x2d\xf9\xfd\x7b\x1f\x0e\xf6\x47\x3e\x46\x59\x1c\xe0\xfd\x9f\x20\xc8\x91\xc7\x75\xfb\xfb\x81\x43\x32\xcd\xdc\x0a\x94\xc8\x94\x55\x4e\x11\xbb\x61\xc8\xde\x5e\x04\xeb\x6b\x08\x65\xbe\xfd\x43\x2a\x22\x14\x3c\x4a\xda\x63\x4c\x65\x59\xa7\x13\x84\xdd\xbb\xa7\xf9\x00\x36\xf7\xfb\xe6\xa5\x30\x79\x61\xdd\x91\x50\x4b\x76\x3d\x36\xf6\xf4\x70\x22\xb5\xf9\x48\x4b\xa5\xb2\x2f\xb9\xc5\xcb\xff\x1c\xa8\x92\x45\xeb\x8d\x7d\x17\x36\x05\xa5\x8a\x33\x49\x6b\x14\x58\x83\xec\x8c\x51\xad\xba\x76\xd4\xd4\x5c\xe8\x3e\xc2\xf0\xc4\xb6\x4c\x4b\x94\xef\x4e\x88\x4d\x2c\xb1\x63\xd2\xb7\x39\x18\x02\x4d\x8b\x4c\xd8\x5b\xf6\x7f\xf9\xa5\xbe\xc9\xe1\x78\x20\x5e\x84\x3b\x34\x0d\x77\x4e\x1a\xa3\x80\xc2\x8a\x41\x48\xb1\x36\x18\x3a\xa4\xe2\x1d\x6f\x80\x5b\xce\xa7\x2f\xae\x75\x27\xbc\x52\x04\x05\xca\x45\x31\x84\xc7\x78\xef\x46\x0c\xe8\x18\x55\xd3\x92\x31\xf3\xf1\x9d\x65\x6c\x34\x50\xea\x86\xf0\x3a\xe1\x45\xf3\xd4\x5d\x83\x91\x2d\x93\x6b\xff\x9b\x6f\x20\x70\xfd\xb1\x5b\x22\xd5\x64\x24\x8e\xea\x1f\xbc\x0c\x32\xed\x2f\x8a\x46\xb3\x1c\x28\xe9\x29\x2f\xee\xfe\xc6\xb2\xeb\x67\x59\x72\x63\x24\x91\xd9\xeb\x5a\xf2\x08\x74\xdc\xa3\x0c\xbb\x91\xd8\xbf\xa1\x0d\xd5\x7c\x21\x04\xca\x2d\x67\xb5\x7d\xf6\xad\xf7\x94\x58\x9c\xad\x15\xc9\x73\x6e\x62\x2e\x9e\x28\xf5\x31\x7f\x72\x2a\xd5\xab\xcc\x89\xb3\x13\xdf\x98\x7a\x47\x7e\xdc\xe8\x49\x69\x2e\x9d\x5b\xe5\x40\xc3\xac\x6d\x9d\x4e\xa2\xed\xb2\x01\x30\xbd\xb0\x47\x6d\xdc\xb7\x46\x10\x69\xab\xe6\x69\x5f\xd2\xd0\xa1\x7a\x91\x7b\x50\x08\x56\x9d\x5b\xd1\xfe\x12\xc1\x78\x5b\x43\x50\xbc\xf8\x7a\x43\x0a\x86\x86\x25\x26\x17\x5a\x8e\xbc\xd4\x1b\x82\x96\xfd\xe7\x58\xf3\x63\x82\xff\x91\x06\xf1\xed\x24\x63\x9e\xaf\x85\xca\xe8\x20\x6d\x2f\x5c\x50\x16\xf3\x08\x2b\x7d\xdb\x8a\x22\x62\x1d\x95\x64\x91\x9e\x35\xcc\x64\x1f\x7d\xd9\x63\x06\x8a\xf7\x10\x63\x2d\x9d\xb3\xd8\xd2\xc6\x34\x65\xdd\x6c\x11\x3c\xe9\xc2\xde\x82\xa1\xb6\x1d\xd8\x37\x1b\x23\xf0\x1a\x05\x25\x2d\xfd\x3f\xf7\x4a\xd9\x2b\xde\x51\xa6\x13\x2d\x6d\x4e\x2e\xff\xf2\x89\x0a\xfc\xf4\x25\x6d\xf3\x3b\x9e\xd2\x18\xbd\x7b\xbd\xd8\x53\x4d\x23\xbd\x90\xdf\x07\xf0\x93\xc5\x64\x96\x05\xfc\xc7\x92\x69\x98\x53\x29\x4b\x19\x35\x8f\xcd\x06\x89\x24\x83\x49\xc9\x3c\xd4\xcd\xd8\x92\xea\xb3\xf4\xad\x8b\x47\x31\x20\x02\x1a\x65\x81\xb9\xb8\x09\x93\x3f\x85\x16\x87\x01\x46\xc8\x96\x56\xe8\x6a\x59\x4f\xe6\xd0\x6d\x6f\xf8\xc5\xe8\xe2\x16\xd9\xba\x6c\x2f\xd0\x50\xb6\x26\x35\x83\x25\x4c\x2e\x27\x83\xac\x35\x58\x64\x5c\x1f\x12\x96\x3d\xe6\x78\x79\xf4\x9f\xc4\xd2\x7e\x01\x57\xd0\xd8\x12\x69\x5a\xe7\x7a\xdd\xd4\x49\xf0\xe8\xc3\x05\x17\x27\x38\xcd\x77\x5d\x35\x8b\xdc\x39\x9b\xb6\x2f\xf3\xca\x03\x95\xc9\xd3\x36\x48\x58\x1a\x70\x34\x44\xb2\xc7\xfa\x62\x5e\x77\x6c\x9e\xb9\x4b\xfd\x35\x65\x55\xdb\xd5\x36\x4c\xb4\xa8\x18\x0c\xb8\x48\x8f\x48\xc2\xd3\xe3\x94\x21\x7d\x6e\x19\x34\xfe\x38\x68\xe3\x3c\x77\xa4\xd1\x85\x0f\x23\xcc\x31\x46\x5c\xd3\x5a\xe3\xae\xd1\x1a\x2a\x1d\xed\x69\x1b\x87\xe5\x78\xaf\xe6\xbe\x6d\xfd\xb8\x28\x35\xe8\xd4\x23\x3f\xdd\x07\x3e\xc6\x3b\xbd\xf3\xf4\xe7\xd1\x23\x38\xdd\xb7\xbb\x88\x5e\x0a\x97\x98\x9a\xe0\x6c\x4f\xe0\xe5\x30\x8f\x2f\x83\x83\xaa\x6c\xba\x67\x06\x8b\xf5\xae\x11\xd1\x34\x59\x12\x6d\x6c\xfc\x8e\xd6\xbe\x24\x3f\xa2\x1f\xde\x0a\x6c\x9f\x47\xda\x9b\xf3\xe9\xf0\x6d\xfa\xbb\xdf\x86\x70\x6c\xac\xa7\x3f\x2f\x43\xe0\x74\x20\xca\xbb\x46\x71\x87\x72\xa4\x77\x97\x98\xae\x5b\x14\x8f\x65\xaf\x54\xec\x6c\xf8\xba\x31\xe6\x9b\x76\xe0\xfa\xae\x27\x93\x26\x1a\x46\x82\x24\x2b\x5c\x77\x44\xd4\x76\xdc\x2a\x76\xb7\xae\x05\xd1\xf1\xa5\x5b\xa6\x78\x32\xb8\xe5\xf4\xdb\xa4\x91\xfd\x1c\xd3\x94\xe2\x77\x54\x36\xb6\x5f\xb4\xc6\x16\xd7\xf6\x4d\xc6\x75\x3d\x71\x20\x8c\x1b\x87\xe6\x3b\x82\xa7\xb8\x58\x2f\x60\xd3\xb5\x8a\x4a\x1a\x1b\xa1\x25\xaa\x6e\x0b\xc8\xc8\xad\x6d\x2f\x86\x1a\xef\xb0\xe5\x5b\x8c\xcd\xf5\xa1\x63\x98\x33\x73\x4d\xdd\x62\x43\xda\xd5\x4c\x67\xa4\x20\x2d\x03\xc2\x8c\xd7\xdb\x77\xaf\xfe\x7e\x79\xf3\xc2\x76\x46\x57\x64\x4b\x6e\x69\x4b\xd5\xbd\xe1\xc6\xb6\xbb\x6d\xa9\x6c\xf4\x36\xd7\x6f\x25\xb0\x42\x7a\x97\xf4\x65\x8f\x87\xd1\xa1\x3f\xba\x68\x3c\x2e\x6b\x51\x61\x1d\xdf\xb1\x54\x72\xc7\x3b\xc2\xd0\xb6\x13\x42\xc9\x3d\x61\x81\x81\xf2\x2c\xc4\x8e\xb1\xfe\x66\xd0\xa4\x12\x3a\xa6\x97\xd4\xa7\x93\xf2\xdd\xed\x68\x5d\x76\x85\xbb\x23\x93\x16\x47\xbd\xb1\x72\x53\xdf\x95\xb0\x45\x9f\xa7\x64\xb7\x9a\xb4\xd3\x6d\x83\xaf\x7a\x0b\xf8\x8d\x05\x65\xea\x35\x8a\xfb\x67\x94\x00\x76\x15\xfa\xee\xe6\xfa\x44\x57\x69\xf4\x7d\xcf\x56\x39\x6c\x37\x82\x41\xa9\xee\x0f\x2a\x86\xce\xf8\x4b\x76\xef\x8a\x22\xbd\x1e\x71\x33\x0b\x48\x43\x49\x1d\x36\xa4\x46\x20\x6b\x42\x63\xa7\xbd\xd4\x91\xa2\x3f\x34\xb9\x38\xc3\xf8\x67\x8e\x59\xe8\xc8\x86\x4b\x69\xda\xc8\x25\xe2\x3c\x5b\x49\x25\x6c\x50\x60\x7b\x1f\xa0\x86\xd1\xd2\xac\x80\x6e\x0b\x9e\xa4\x17\x3a\xc8\x00\x2b\x0c\x5c\xde\xde\x97\x13\x95\xe9\xdc\xa9\x9b\xbc\x74\x61\x7c\x80\x9a\x66\x5f\x61\xd8\xf4\x08\x6b\xf1\x74\x7c\xed\xe5\x75\xd9\x6b\xb2\xeb\x44\xae\x7b\x39\xa3\x55\x24\x4f\x83\xcb\xd2\x16\xa5\x01\xc5\x61\x3b\x37\xfb\x59\x26\xdc\x79\xaa\x36\xbc\xa8\x57\xdb\xe8\xf5\x08\xea\x8f\x7b\xef\x89\x59\xca\xe4\xc6\x66\x3a\x01\xe3\xda\x4f\x5f\x99\x35\x07\xab\x19\xe1\xcd\xaa\x4b\x6a\x03\xe3\x71\xe2\x50\x03\x82\x3b\xc2\x29\x99\x09\xd6\xf9\x6a\xd4\xb4\x8e\xf7\x44\x03\xaf\xbd\x25\xd3\xf6\xb8\xa6\x43\xf4\x24\xc1\xc2\xe0\x5b\x69\x18\xc9\xb0\x25\xfd\xa1\xc1\xd9\x07\x86\x0f\x07\x83\x07\x27\xe4\x72\x4f\x1e\x20\x1d\xd9\x71\x08\x65\xd7\xa1\x85\xd0\xd1\x7a\xde\x5b\x17\x6a\x08\x29\x16\x83\x3d\x88\x90\xf5\x21\x8e\x86\xa7\xe9\x53\x86\x6d\xd5\x1d\x38\xa5\xdf\xb3\x98\x82\xef\xf7\x2f\x42\xda\xc3\xe8\x47\x19\xb3\x15\x0f\xbe\x6b\xcc\x8c\xee\x51\x37\x8d\x59\x19\xfd\x8c\x99\xb3\xdf\x26\xf9\xcf\xc0\xfc\xd9\x61\x6f\x65\x0f\xfd\x5a\x66\xcc\xae\x92\x7f\xd4\x5c\x6e\x39\x94\x7b\xd0\xda\xcc\x6c\x4c\xd9\x66\x49\x94\x83\x13\x67\xdd\x8e\xf2\x4e\x0e\xb9\xd8\xcd\x68\xbf\x38\x85\xbf\x8e\xf6\x35\x5e\x0c\x66\x15\x93\x97\xf6\x24\x5f\x9f\xd5\xc7\x71\x01\x6b\x73\x95\x9a\xb9\x1f\xe6\x3b\xfe\x32\xbe\xec\x73\x77\xa9\xc1\x0c\x8c\xf8\x8d\x2a\x71\x26\x4a\x37\x01\x68\xa1\xe5\x06\x79\xdc\x01\xb0\x74\x9b\xc7\x3c\x93\x1d\xa6\xfc\xce\xc7\x9b\xa3\xc4\x6c\x6b\xd2\x45\x82\x26\x47\xeb\xef\xe3\x65\xf7\x07\xa5\xa3\xcb\xb1\xf7\x96\xbe\xbf\x8a\x18\xf9\xbf\xf5\x3d\x40\xef\x8d\xa0\x48\xf8\x21\xf3\x03\x41\xfe\xc7\x4f\xb0\x96\xc8\x24\x53\xaa\xe3\x58\x0d\xcd\xb4\x3e\x84\x5b\xa7\xf1\x01\xe1\x47\x49\x3f\xec\x02\xa3\x0f\x7c\xc5\x14\x0a\x46\xda\xc3\xd3\xaa\xa9\x2f\x8c\x03\xa1\x3e\xdc\x0a\x1e\xad\xb8\x44\x5f\xfa\x41\xd5\xfc\x16\x5f\xc0\x3f\x5c\x84\xe5\xe2\x63\x57\xc4\xb5\x4f\xf7\x35\x6c\x89\x6a\x7c\xcc\xdc\x4b\x06\x1f\xcb\x72\xea\x73\x30\x2e\xb4\x31\x5a\x9c\xe4\xcc\xe7\x4b\x0e\x4f\x02\x5e\xc0\x2f\xfd\x60\x32\x6b\xfa\x19\x6b\xf3\x19\x1f\xb2\x18\x9e\x13\x2b\xa6\xce\x5c\x6e\xe9\xf1\xf5\xc1\xa3\xfd\xf3\x77\x19\x40\x18\x88\x06\xc6\x90\xcf\xcf\xfa\xe1\x00\xe0\x3b\x07\x16\x06\xc7\x15\x20\x1f\xbf\x4d\xb2\xc5\xfd\x03\x40\x96\x81\x8f\xe5\xf0\xd0\x96\x56\x52\x91\xc4\xbc\x66\xc0\xc4\x25\x07\x76\xc0\xa4\x8e\x5d\x43\x49\x5f\x6d\x80\xe8\x6a\x95\x2b\xde\x31\x9d\x5f\xb5\x92\xbb\x7d\x72\x60\xfe\x2a\x1b\x3f\x4a\x5f\xff\x5c\xbf\xd5\x01\x8d\xde\x3f\xf1\x32\xd6\x33\xda\x1f\xa4\x38\x7a\xae\xcf\x77\xef\x0f\x0f\xf4\x9d\x86\x03\x0f\x6c\xb6\x78\x4f\x89\xba\xc8\xc1\xce\x92\xeb\xcc\x89\xce\x70\xc7\xd7\x23\x0e\xb1\xcb\x8a\xc2\x4c\x49\x31\xde\xef\x64\x13\xb8\x49\x93\xe6\xb4\xaf\x33\x26\x6a\x07\x46\x95\x4e\x5d\x21\x5f\xc7\x3a\x3f\x0d\xc5\xf0\x65\xff\xa6\xa3\xd5\x0c\xae\xfa\xf7\xa2\xc2\x47\x43\x91\xc1\xb8\xb9\x23\x6f\xf9\x87\x47\x98\x12\x85\x7f\x6e\xf7\xca\x2c\x9b\x0f\x6e\x79\x8f\x7f\xdd\xe3\x57\xc7\x8c\x22\x56\xca\xcc\x99\x06\x70\x62\x1e\x56\x18\x26\x1b\x1d\x69\x82\x8e\x9a\x3c\x46\xf2\x77\xea\xf0\x1f\xdd\xef\xec\x87\x83\xcb\x86\xe7\x96\x93\xfa\xe9\x2f\xc7\xb7\x3b\xf7\x27\xda\x52\x17\x9d\x2d\x75\x9c\xca\x1c\x5e\xa1\x44\xc9\x49\xe3\x9a\x56\x34\xbd\x9b\x02\x45\x8a\x56\xde\xc3\x07\x4b\x98\x7c\x9a\xe4\x3f\x16\xff\xbd\x08\x58\x66\x6d\x7b\xbd\xe8\x25\xed\xe3\x9b\x8c\x5d\x1c\xfa\xcc\xc9\x48\x1b\x61\xf6\xb5\xe7\x78\xff\xa5\x2d\x0f\xfe\x66\xfb\x7a\x03\x4d\x58\x92\x20\x3d\x29\xa6\x55\xcb\xff\x74\x13\x2c\x63\x43\xe8\x18\x05\x49\x2a\x19\xde\x04\xca\x46\x4c\xcd\xcd\xb1\xfd\x7e\xc4\x30\xa3\xe2\x7b\x1a\x2b\x8f\x66\xcf\x90\xbb\xca\xfb\xa0\x87\x06\xd6\xb2\x9e\xfa\xf0\xaa\x31\x1e\xfc\xeb\xe5\xf9\xfa\xb1\x31\x78\x1b\xef\x18\xfe\x4d\xdd\x6c\xef\xa0\x14\xbc\xcf\xfb\x76\xf2\x9f\x00\x00\x00\xff\xff\x8b\xb9\x5b\x05\x04\x4f\x00\x00" func migrationcontractstagingCdcBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func migrationcontractstagingCdc() (*asset, error) { } info := bindataFileInfo{name: "MigrationContractStaging.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0x35, 0x6e, 0xdd, 0x1c, 0x7d, 0x26, 0xc9, 0x92, 0xa0, 0x6f, 0x18, 0xd0, 0x94, 0x7b, 0xc5, 0x1e, 0x9a, 0x64, 0xc3, 0xb5, 0xbe, 0x60, 0x53, 0x5e, 0xe2, 0x68, 0x4f, 0xd9, 0xa3, 0xe0, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x4b, 0xed, 0xe3, 0xf0, 0xa, 0xc0, 0x9e, 0x6b, 0x57, 0xac, 0x61, 0x9e, 0xc6, 0x43, 0x23, 0x7a, 0x54, 0x39, 0x11, 0x62, 0xd7, 0x6a, 0x9b, 0xdb, 0x1, 0xcd, 0x54, 0x4, 0x30, 0x8c, 0x4e}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 8e7f9ab..7a6c2c7 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,10 +1,14 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // scripts/delegatee/check_delegatee_has_valid_updater_cap.cdc (690B) +// scripts/dependency-audit/get_boundaries.cdc (125B) +// scripts/dependency-audit/get_failure_probability.cdc (119B) +// scripts/dependency-audit/get_should_panic_on_unstaged.cdc (105B) // scripts/migration-contract-staging/get_all_staged_contract_code_for_address.cdc (516B) // scripts/migration-contract-staging/get_all_staged_contract_hosts.cdc (455B) // scripts/migration-contract-staging/get_all_staged_contracts.cdc (406B) // scripts/migration-contract-staging/get_staged_contract_code.cdc (520B) +// scripts/migration-contract-staging/get_staged_contract_code_hash.cdc (530B) // scripts/migration-contract-staging/get_staged_contract_names_for_address.cdc (469B) // scripts/migration-contract-staging/get_staged_contract_update.cdc (686B) // scripts/migration-contract-staging/get_staging_cutoff.cdc (422B) @@ -25,10 +29,12 @@ // transactions/delegatee/execute_all_delegated_updates.cdc (770B) // transactions/delegatee/remove_delegated_updaters.cdc (634B) // transactions/dependency-audit/admin/add_excluded_addresses.cdc (364B) +// transactions/dependency-audit/admin/set_start_end_block.cdc (368B) // transactions/dependency-audit/admin/set_unstaged_cause_panic.cdc (375B) // transactions/dependency-audit/admin/test_check_dependencies.cdc (463B) +// transactions/dependency-audit/admin/unset_start_end_block.cdc (322B) // transactions/host/publish_host_capability.cdc (2.951kB) -// transactions/migration-contract-staging/admin/commit_migration_results.cdc (832B) +// transactions/migration-contract-staging/admin/commit_migration_results.cdc (833B) // transactions/migration-contract-staging/admin/set_staging_cutoff.cdc (629B) // transactions/migration-contract-staging/delegated-staging/claim_published_host_capability.cdc (1.641kB) // transactions/migration-contract-staging/delegated-staging/setup_host_optional_publish.cdc (2.337kB) @@ -131,6 +137,66 @@ func scriptsDelegateeCheck_delegatee_has_valid_updater_capCdc() (*asset, error) return a, nil } +var _scriptsDependencyAuditGet_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xca\xb1\x0a\x02\x31\x0c\x06\xe0\x3d\x4f\xf1\x73\x53\xbb\xf8\x00\x2e\xa2\xf8\x22\xa1\x8d\x12\xb8\xcb\x95\x34\x19\x44\x7c\x77\x47\xc1\xdb\x3f\xdd\xc6\xee\x81\xe5\x2e\x43\xac\x8b\xb5\xd7\x35\xbb\xc6\x42\xc4\xad\xc9\x9c\x85\xd7\xb5\xe2\x91\x86\x8d\xd5\x4a\x3d\xe3\x4f\x9e\x6e\x7b\x5a\x67\x57\x99\x17\xbc\x09\x00\x5c\x22\xdd\x0e\xf0\x29\xf1\xb3\xa5\xd2\x87\xbe\x01\x00\x00\xff\xff\x33\x55\xbc\x15\x7d\x00\x00\x00" + +func scriptsDependencyAuditGet_boundariesCdcBytes() ([]byte, error) { + return bindataRead( + _scriptsDependencyAuditGet_boundariesCdc, + "scripts/dependency-audit/get_boundaries.cdc", + ) +} + +func scriptsDependencyAuditGet_boundariesCdc() (*asset, error) { + bytes, err := scriptsDependencyAuditGet_boundariesCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "scripts/dependency-audit/get_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x93, 0x15, 0xc8, 0x41, 0xb2, 0x55, 0x76, 0xe2, 0x8b, 0xf0, 0x72, 0xb9, 0x31, 0x10, 0x3e, 0x56, 0x28, 0x60, 0x7b, 0x48, 0x5f, 0xeb, 0x1e, 0xa7, 0xb1, 0x8f, 0x6c, 0xbf, 0xb5, 0x1b, 0x87}} + return a, nil +} + +var _scriptsDependencyAuditGet_failure_probabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcb\x31\x0a\xc2\x50\x0c\x06\xe0\x3d\xa7\xf8\xe9\xd4\xb7\x38\x89\x83\x9b\x28\x9d\x5d\x3c\x40\xfa\x1a\x25\xf0\x9a\x96\x34\x01\x8b\x78\x77\x77\x0f\xf0\xe9\xbc\x2e\x1e\xe8\x6e\xb2\x8a\x4d\x62\x75\xbf\xe4\xa4\xd1\x11\x71\xad\xb2\x6d\x3d\xb7\x56\xf0\x4c\xc3\xcc\x6a\x7d\x39\xe3\x31\xe8\xfb\x74\xc4\x87\x00\xc0\x25\xd2\x0d\x7f\xfa\xf0\x92\xb8\xa6\xbb\x58\x0c\xac\x2d\x5d\xee\xbe\x8c\x3c\x6a\xd3\xd8\xfb\x42\x5f\xfa\x05\x00\x00\xff\xff\x59\x52\xf9\xce\x77\x00\x00\x00" + +func scriptsDependencyAuditGet_failure_probabilityCdcBytes() ([]byte, error) { + return bindataRead( + _scriptsDependencyAuditGet_failure_probabilityCdc, + "scripts/dependency-audit/get_failure_probability.cdc", + ) +} + +func scriptsDependencyAuditGet_failure_probabilityCdc() (*asset, error) { + bytes, err := scriptsDependencyAuditGet_failure_probabilityCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "scripts/dependency-audit/get_failure_probability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x2c, 0x52, 0x3d, 0x25, 0x8b, 0x9d, 0x24, 0xd8, 0xa5, 0xac, 0x78, 0xf1, 0xdb, 0xf, 0x59, 0xed, 0x43, 0x0, 0x76, 0x28, 0x53, 0x9d, 0x3d, 0xd4, 0xdf, 0x84, 0x10, 0x22, 0xec, 0x8c, 0x83}} + return a, nil +} + +var _scriptsDependencyAuditGet_should_panic_on_unstagedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcb\xb1\x0d\x02\x31\x0c\x05\xd0\xde\x53\x7c\x5d\x75\xd7\x30\x00\x1d\x88\x9e\x8a\x01\xac\xc4\x20\x4b\xc9\x4f\x94\x38\x05\x42\xec\x4e\xcf\x00\xcf\x6b\x6f\x23\xb0\xdd\xac\x1b\xb3\x31\xbd\x2f\x2b\x7b\x6c\x22\x9a\x92\xcd\xb9\x6b\x29\x07\x9e\x8b\xa8\xea\xdc\x8f\x33\xae\xad\x15\x53\xe2\x23\x00\x30\x2c\xd6\x20\xfe\xf8\xa9\x2b\x3d\xdd\xf9\xe0\x0c\x7d\x59\x96\xaf\xfc\x02\x00\x00\xff\xff\x0f\x10\x1a\x81\x69\x00\x00\x00" + +func scriptsDependencyAuditGet_should_panic_on_unstagedCdcBytes() ([]byte, error) { + return bindataRead( + _scriptsDependencyAuditGet_should_panic_on_unstagedCdc, + "scripts/dependency-audit/get_should_panic_on_unstaged.cdc", + ) +} + +func scriptsDependencyAuditGet_should_panic_on_unstagedCdc() (*asset, error) { + bytes, err := scriptsDependencyAuditGet_should_panic_on_unstagedCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "scripts/dependency-audit/get_should_panic_on_unstaged.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x3b, 0xc1, 0xae, 0x90, 0xfb, 0xde, 0xf9, 0x34, 0x5b, 0x6c, 0xeb, 0x29, 0x39, 0xf3, 0x78, 0x9f, 0x33, 0x6e, 0xaa, 0xe8, 0xdc, 0xbe, 0xb8, 0xef, 0x75, 0xc2, 0x17, 0x60, 0xba, 0xcd, 0x64}} + return a, nil +} + var _scriptsMigrationContractStagingGet_all_staged_contract_code_for_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\xef\xc6\x86\x5c\xe7\x66\xeb\x5d\xc8\xe2\xae\xba\x69\xe8\x03\xa8\xd6\x58\x19\x90\x47\x46\x9a\x84\x96\x90\x77\x2f\xf2\x4f\x0a\x85\xae\x0c\xe3\x99\xef\x3b\x1c\xf1\x38\xc5\xa4\xa8\x5e\xd8\x27\xab\x1c\xe5\x14\x45\x93\xed\xf5\xac\xd6\xb3\xf8\xca\x98\x3f\x2c\x4a\x65\xc4\x51\x50\x1b\x00\xb8\x51\xca\x1c\xa5\x43\x75\x68\x0f\xed\xbf\x6a\x37\x4f\x95\x35\x50\x87\xea\x3f\x29\x8e\x21\xa0\x20\xc8\x61\x23\xe2\x14\x1d\x61\x88\x09\x47\xe7\x12\xe5\xbc\x9e\x39\xca\x7d\xe2\x49\x17\xe0\x2b\xe9\x35\x49\x86\xc5\x68\xa7\x89\xc5\x23\x0e\xb0\x21\xa0\xdf\x30\x7d\xc1\xe4\x85\x5d\x68\x16\x9e\x6f\x24\xb0\x0b\x15\x2c\x8e\x3e\xc8\x21\x0a\xf4\x42\xdf\x77\x62\x47\x6a\x57\x67\xb0\xe2\xaf\xd6\x97\xb4\x24\x7f\xdf\xce\xd5\xce\x34\xc6\xec\xf7\x7b\x6c\xfe\xe5\x74\x0d\x5c\xfc\xab\x71\xc3\x65\x5c\x62\x56\x72\x78\xff\x9c\x77\x97\x0c\x4f\xd9\x1a\xa6\x2d\x4c\x63\xfb\x9e\x72\xae\x6d\x08\x0d\x86\xab\x60\xb4\x2c\xf5\xb6\xba\x96\xd1\x6d\xad\x34\x1d\xee\x67\x4d\x2c\xbe\xc3\xf2\x7d\xe0\x3e\x87\x4e\x73\x34\xfc\xf6\x54\xad\x27\x3d\x86\xb0\xb4\xbe\xfd\x2b\x9d\xd7\x43\x4c\x4f\xcb\x0f\x6d\x63\x1e\xe6\x2b\x00\x00\xff\xff\xa3\x37\xd2\x4e\x04\x02\x00\x00" func scriptsMigrationContractStagingGet_all_staged_contract_code_for_addressCdcBytes() ([]byte, error) { @@ -211,6 +277,26 @@ func scriptsMigrationContractStagingGet_staged_contract_codeCdc() (*asset, error return a, nil } +var _scriptsMigrationContractStagingGet_staged_contract_code_hashCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xb1\x8a\xdb\x40\x10\x86\xfb\x7d\x8a\x1f\xa5\x91\x40\x91\xe3\x2e\xa8\x09\xc1\x45\x92\x22\x29\x62\x5c\x1d\x57\xcc\xad\xc6\xab\x01\x79\xd6\xec\x8e\x0c\xe6\xb8\x77\x3f\x24\x4b\x87\xef\xe0\xba\x65\x76\xe6\xff\xbe\x9d\x95\xd3\x39\x26\x43\xf1\x57\x42\x22\x93\xa8\xbb\xa8\x96\xc8\xdb\xde\x28\x88\x86\xc2\xb9\x2f\xa2\xc6\x53\x49\xa2\xa2\x74\x00\x70\xe1\x94\x25\x6a\x8b\x62\xdb\x6c\x9b\x6f\x45\x3d\x57\x4d\x6c\xe0\x16\xc5\x2f\x36\x4c\xe3\xdc\x61\x4d\xc3\x2e\x76\xbc\xb4\x75\x9c\x7d\x92\xb3\xdd\x02\xfe\xb3\x8d\x49\x33\xac\x67\xec\xa8\x63\xf5\x0c\x1f\x3b\x86\xf5\x64\xe8\x29\xe3\x89\x59\x91\x6f\x79\xc7\x98\xe6\xce\x20\x17\x56\xf8\x35\x3d\x26\xa8\x0c\x90\x23\xc4\x20\x19\x1a\x0d\x57\xb6\x65\xaa\x59\xc0\x03\x69\x18\x29\x4c\x8a\xac\x5f\x0f\xfb\xa2\x76\x95\x73\x9b\xcd\x06\xf7\x12\x33\xbc\xa7\xdc\x83\xf2\x12\xb7\xc0\xdf\x51\x26\x84\x1f\x53\x62\xb5\xe1\xba\x82\xa6\x30\x47\xde\x73\xce\x25\x0d\x43\x85\xe3\xa8\x38\x91\x68\xb9\xaa\xfe\xec\xba\xc4\x39\xb7\x58\x0e\xf5\xdb\x23\xfe\xd1\x89\x5b\xec\x2d\x89\x86\xaa\xc5\xc3\xe1\x8f\xda\xf7\xc7\x1f\x78\x9e\xdd\xd3\x6c\x88\xcf\xbe\xa9\x09\x6c\xb7\x95\xaf\x17\xd3\xc2\x7f\x53\xee\x4b\x5a\x89\x1f\x14\x6a\xe8\x4c\xbc\xe7\x57\xee\xc5\xbd\x06\x00\x00\xff\xff\x7d\xa7\xf9\x92\x12\x02\x00\x00" + +func scriptsMigrationContractStagingGet_staged_contract_code_hashCdcBytes() ([]byte, error) { + return bindataRead( + _scriptsMigrationContractStagingGet_staged_contract_code_hashCdc, + "scripts/migration-contract-staging/get_staged_contract_code_hash.cdc", + ) +} + +func scriptsMigrationContractStagingGet_staged_contract_code_hashCdc() (*asset, error) { + bytes, err := scriptsMigrationContractStagingGet_staged_contract_code_hashCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "scripts/migration-contract-staging/get_staged_contract_code_hash.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x42, 0xfb, 0xb3, 0x68, 0xa6, 0xb3, 0x5e, 0xef, 0x5f, 0xf8, 0x60, 0x95, 0x4c, 0x53, 0xf8, 0x10, 0x3a, 0xd2, 0x47, 0xb4, 0x75, 0xca, 0x55, 0x77, 0x10, 0x9d, 0x83, 0xe, 0xc1, 0x7e, 0x90}} + return a, nil +} + var _scriptsMigrationContractStagingGet_staged_contract_names_for_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\x31\x6b\xfb\x40\x0c\x05\xf0\xfd\x3e\xc5\xc3\xff\xc5\x86\xfc\x93\x66\xf5\x56\x3a\x74\x6a\x87\x84\x4e\xa5\x83\x6a\xcb\x17\xc1\x45\x17\x74\x4a\xa0\x94\x7e\xf7\x62\x3b\x0e\xb4\xd0\xf5\x8e\xf7\x93\xf4\xe4\x78\xca\xe6\xa8\x9e\x24\x1a\xb9\x64\x7d\xc8\xea\x46\x9d\xef\x9d\xa2\x68\xac\x42\xf8\x27\xea\x3c\x3e\x49\x56\xd4\x01\x00\x2e\x6c\x45\xb2\xb6\xa8\xb6\xeb\xed\xfa\xae\x5a\x4d\xaf\x2e\x9e\xb8\x45\xf5\xc8\x8e\x31\xce\x3d\x16\x0d\xcf\x74\xe4\x82\x21\x1b\xa2\x5c\x58\x71\xdf\xf7\xc6\xa5\x5c\x93\x3d\x97\xce\xe4\xe4\xb3\xb9\x63\x37\xe1\x0b\x17\x10\x92\x14\x47\x1e\xd0\x2d\x90\x4e\x90\x1f\xc8\x41\xc6\x28\xf3\x9c\x11\xf6\x03\x5f\x71\xfa\x81\x27\xd2\x78\xa6\x38\x6e\xc6\xfa\xff\x65\x5f\xad\x42\x13\xc2\x66\xb3\xc1\x8e\xfd\x6c\x5a\xa6\xe4\xec\xe6\x01\x94\xd2\x6d\x5a\x59\xfc\xf7\x0f\x10\x3a\x36\x27\xb9\xf1\x23\x11\xa8\xeb\xb8\x94\x9a\x52\x6a\x30\x9c\x15\x47\x12\xad\x97\xf8\xf5\xc8\x76\xb9\xb6\x69\xf1\xba\x77\x13\x8d\x6f\xf8\x9c\x76\xb3\x69\x03\xfc\xd5\xfe\x3a\xb2\xcf\x4d\x2e\x1f\x53\x8f\xf5\x90\xed\x66\xff\x1a\xd6\x84\xaf\xf0\x1d\x00\x00\xff\xff\xe9\xad\xb9\x6d\xd5\x01\x00\x00" func scriptsMigrationContractStagingGet_staged_contract_names_for_addressCdcBytes() ([]byte, error) { @@ -611,6 +697,26 @@ func transactionsDependencyAuditAdminAdd_excluded_addressesCdc() (*asset, error) return a, nil } +var _transactionsDependencyAuditAdminSet_start_end_blockCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\xb1\x4a\xc4\x40\x10\x86\xfb\x3c\xc5\x98\xe2\x4c\x40\x52\x89\x45\x10\x43\x4e\x2d\xec\x84\x43\xfb\x71\x77\xbc\x5b\x4c\x66\x96\xd9\x59\x44\xe4\xde\x5d\x72\x49\x2c\xae\xb8\x6d\x96\x81\x7f\xfe\xf9\xbe\x30\x46\x51\x83\xf2\x89\x22\xb1\x27\x76\x3f\x7d\xf6\xc1\xca\xa2\x30\x45\x4e\xe8\x2c\x08\x57\xc9\x50\xad\x85\xb7\x17\xb6\xbb\xdb\x1b\x20\xf6\xeb\x50\xc3\x6f\x01\x00\x10\x95\x22\x2a\x55\x29\xec\x99\xb4\x05\xcc\x76\xa8\xb6\xa2\x2a\xdf\xef\x38\x64\xaa\x61\xd3\x3b\x27\x99\x6d\xdd\x98\xde\x9c\x6e\x92\x89\xe2\x9e\x9a\x8f\x53\xfe\x7e\x73\x06\xd3\xf4\x7e\x0c\x1c\x92\x29\x9a\xe8\x43\xf5\xa9\x32\xb6\x70\x31\xb4\x9b\x1b\x5f\xd1\x0e\x75\xd7\x24\xb2\xdd\x64\xf0\xcc\x7e\x3b\x88\xfb\x5a\x7d\x4e\xdf\xa2\x43\xec\xeb\x7f\xae\xae\x83\x88\x1c\x5c\x55\x3e\x4a\x1e\x3c\xb0\x18\xcc\x70\x97\xcf\xc2\x84\xb6\x58\x5d\x27\x58\xbc\xae\xca\xb9\xf9\x58\x1c\x8b\xbf\x00\x00\x00\xff\xff\xbe\x87\xa6\x9d\x70\x01\x00\x00" + +func transactionsDependencyAuditAdminSet_start_end_blockCdcBytes() ([]byte, error) { + return bindataRead( + _transactionsDependencyAuditAdminSet_start_end_blockCdc, + "transactions/dependency-audit/admin/set_start_end_block.cdc", + ) +} + +func transactionsDependencyAuditAdminSet_start_end_blockCdc() (*asset, error) { + bytes, err := transactionsDependencyAuditAdminSet_start_end_blockCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "transactions/dependency-audit/admin/set_start_end_block.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xc7, 0xb5, 0x2a, 0xbf, 0xa9, 0xa5, 0x1c, 0x46, 0x4b, 0x9b, 0xd0, 0x1a, 0xb7, 0xc8, 0xc6, 0x1f, 0xac, 0xd0, 0xfb, 0x2c, 0xe0, 0x45, 0x34, 0x53, 0x5c, 0x80, 0xca, 0xbe, 0xbf, 0x7e, 0x31}} + return a, nil +} + var _transactionsDependencyAuditAdminSet_unstaged_cause_panicCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\x41\x4b\xc4\x40\x0c\x85\xef\xfd\x15\xb1\x87\x75\x7a\xe9\x0f\x28\x62\xe9\xea\xdd\x05\xd1\x7b\x9c\x89\xed\x40\x9b\x0c\x99\x0c\x22\xb2\xff\x5d\xba\x5d\x17\xf5\xb0\xb9\x25\x79\xef\xf1\xbd\xb8\x24\x51\x83\xfa\x91\x12\x71\x20\xf6\x9f\x43\x09\xd1\xea\xaa\x32\x45\xce\xe8\x2d\x0a\xbb\x3c\x49\x99\xc3\x01\x39\xfa\x0e\xf6\x22\x73\x03\x5f\x15\x00\x40\x52\x4a\xa8\xe4\x72\x1c\x99\xb4\x03\x2c\x36\xb9\xbd\xa8\xca\xc7\x2b\xce\x85\x1a\xd8\x0d\xde\x4b\x61\xfb\x71\xac\xb3\xa9\xdb\x6c\xa2\x38\x52\xfb\x76\xd2\xdf\xed\xfe\x31\xb4\x43\x58\x22\xc7\x6c\x8a\x26\x7a\xef\xde\x55\x96\x0e\xae\x8a\x9e\xb7\xc4\x03\xda\xd4\xf4\x6d\x26\x3b\x21\x3f\xf1\x0b\x67\xc3\x91\xc2\xc5\x1c\x29\xff\x2d\xf5\x6b\x69\x2e\x9c\x7d\x0f\x69\xbd\xb8\xfa\x61\xfd\x02\x8b\xc1\x06\x7b\x1d\x03\x56\xd4\x73\xcb\xdb\x0c\xe7\x9e\x37\xf5\x96\x7c\xac\x8e\xd5\x77\x00\x00\x00\xff\xff\xa4\x32\xd6\x10\x77\x01\x00\x00" func transactionsDependencyAuditAdminSet_unstaged_cause_panicCdcBytes() ([]byte, error) { @@ -651,6 +757,26 @@ func transactionsDependencyAuditAdminTest_check_dependenciesCdc() (*asset, error return a, nil } +var _transactionsDependencyAuditAdminUnset_start_end_blockCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\xb1\x4e\x03\x31\x0c\x86\xf7\x3c\x85\xb9\xa1\xe4\x96\x3c\x40\x85\x38\x5d\x81\x1d\xa9\x12\xbb\x49\x4c\x1b\x71\x67\x47\x8e\x23\x84\x50\xdf\x1d\x95\x14\x06\x86\x7a\xfe\xfc\xff\xdf\x9f\xd7\x22\x6a\x30\x3c\x52\x21\x4e\xc4\xf1\x73\x6e\x29\xdb\xe0\x9c\x29\x72\xc5\x68\x59\xd8\x8f\xf0\xe5\x00\x00\x8a\x52\x41\x25\x5f\xf3\x81\x49\xb7\x80\xcd\x8e\x7e\x27\xaa\xf2\xf1\x82\x4b\xa3\x11\x36\x73\x8c\xd2\xd8\x7e\x3f\xce\xd7\xe9\x50\x4d\x14\x0f\x14\x5e\x7f\xf8\xbb\xcd\xbf\xca\x30\xa7\x35\x73\xae\xa6\x68\xa2\xf7\xfe\x4d\x65\xdd\xc2\x55\x68\xdf\x13\x9f\xd1\x8e\xe3\x14\x1a\x57\xb2\xbd\xa1\xda\x13\xa7\xdd\x22\xf1\xdd\x8f\x7f\x0e\xd3\x04\x05\x39\x47\x3f\x3c\x48\x5b\x12\xb0\x18\x74\x91\xeb\x15\x70\xd6\xb8\x2c\xb8\xad\x70\xd9\x70\x33\xf4\xe4\x93\x3b\xb9\xef\x00\x00\x00\xff\xff\xeb\xa0\xae\x52\x42\x01\x00\x00" + +func transactionsDependencyAuditAdminUnset_start_end_blockCdcBytes() ([]byte, error) { + return bindataRead( + _transactionsDependencyAuditAdminUnset_start_end_blockCdc, + "transactions/dependency-audit/admin/unset_start_end_block.cdc", + ) +} + +func transactionsDependencyAuditAdminUnset_start_end_blockCdc() (*asset, error) { + bytes, err := transactionsDependencyAuditAdminUnset_start_end_blockCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "transactions/dependency-audit/admin/unset_start_end_block.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x2c, 0xcb, 0xcd, 0xcc, 0x8c, 0xfd, 0x50, 0x22, 0xc6, 0x59, 0x3a, 0x84, 0x48, 0x46, 0x8f, 0xf2, 0xc5, 0xdc, 0x73, 0xea, 0x6b, 0xf3, 0x9c, 0xa, 0xf9, 0xf1, 0xd4, 0x12, 0xda, 0xa6, 0xc}} + return a, nil +} + var _transactionsHostPublish_host_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5d\x6f\xe3\x36\x10\x7c\xd7\xaf\xd8\xb8\x40\x2a\x01\xae\xfc\x6e\x24\x17\x5c\x53\x1c\x2e\x40\x71\x08\xe0\xb6\xaf\xc5\x9a\x5a\x4b\xec\xd1\x24\x41\x52\x76\x8c\x20\xff\xbd\xa0\x44\xea\xc3\x96\x3f\xda\xd3\xcb\xf9\x9c\xe5\xce\xec\xec\x68\xcc\x9f\x50\x08\xb5\xff\xcc\x98\xaa\xa5\xfb\x9d\xcb\xef\x5c\x96\x49\xc2\xb7\x5a\x19\x07\xb3\x95\xc3\x92\x8a\x67\x25\x9d\x41\xe6\xfe\xd4\x05\x3a\xb2\xb3\x24\x59\x2c\x16\xe0\x8b\x2d\xb8\x8a\xc0\xf2\x52\x92\xf9\xd9\x42\x68\x03\x28\x0b\x20\xc9\x50\xdb\x5a\xf8\x13\xc0\x25\x20\x7c\x55\xd6\x81\x21\xab\x6a\xc3\x68\x0e\xba\x5e\x0b\x6e\x2b\x2e\xcb\xf8\xb7\x67\xd4\xb8\xe6\x82\xbb\x03\x6c\x94\x69\x5b\x6b\x62\x7c\xc3\xa9\x68\x20\x0d\x31\xae\x39\x49\x97\xc3\x1f\x15\xb7\xb0\x57\xb5\xf0\x48\xb8\x16\xd4\x94\x77\x05\xe0\x14\xd0\x1b\xb1\xda\x11\xa0\x59\x73\x67\xd0\x1c\x80\x85\x41\xa0\x6e\x27\x01\x25\xc7\x03\xac\xa9\x42\xb1\xc9\x3d\x58\xe2\x0c\x4a\x8b\xcc\x71\x25\xd3\xc0\xf5\x8b\x32\x4b\xf8\x5c\x14\x86\xac\xcd\xe0\x3d\x49\x00\x00\xb4\x21\x8d\x86\xd2\xb6\xc9\x12\xb0\x76\x55\xfa\xab\x32\x46\xed\xff\x42\x51\xd3\x1c\x9e\x95\x3e\x84\x8f\x2f\xd6\xd6\x14\x64\xea\xc7\x6d\x04\x56\x42\x90\x09\x15\x2b\xa7\x0c\x96\x34\x5d\xf1\xda\x92\x79\x91\x6b\xf5\xd6\x57\xcc\x61\x85\x3b\x6a\x60\x32\xb8\x0f\x10\x1d\x49\xff\x2c\x16\xf0\x1b\x19\xbe\x23\xd0\xe8\x2a\xdb\x68\x1c\x37\x76\x7f\xb4\x01\x4e\x76\x0e\xbc\x20\xe9\xf8\xe6\xe0\x57\x34\x56\x57\xc9\xc1\xfa\x3a\x00\x41\x0e\xb0\x9b\x2d\xcc\xf0\x8a\xae\x82\x47\x18\xfc\x2f\xed\x0e\xc4\x27\x00\x71\x2f\xdf\xb4\xe7\x7a\xc9\xfe\x9e\xe5\x4c\x49\x86\x2e\x08\x9e\x63\xbb\x8f\xdc\xa9\x95\x33\x5c\x96\x69\x96\x8d\x00\xb2\xbb\x11\xc1\x4a\xd9\xcb\xec\xae\x93\xf9\xda\xb6\xe8\x99\xf4\xf6\x18\xb2\xc8\xee\x7a\xed\x77\x68\x06\xd2\x2c\x07\x56\x7f\x68\xfc\xd2\x76\x8e\x38\xfd\x02\x3f\x3d\xc1\x23\x48\x2e\x86\x4b\x5c\x91\xab\xf5\xf0\x65\x51\x12\x6a\x59\x90\x11\xcd\xa6\xbc\x2c\xfe\x5f\x3f\x68\xc4\xec\x8e\xf3\x4d\x30\x7b\x6e\xdb\x91\x73\x77\xd0\x94\xa2\x5b\x4e\x6f\x2e\x83\xc7\x06\x1f\xde\x47\x9a\xf6\xb5\xf0\x18\x1b\xb2\x81\x77\xf2\x50\x90\x73\xef\xe6\x2b\x23\xa6\xe3\x7d\x1d\xf1\xb3\xb8\xa3\xb4\xc7\x9b\x83\x53\xe7\xb8\x76\x6d\x3e\x80\x84\xa5\x1b\x38\x47\x10\xa6\xf4\xe1\xe1\xe6\x9d\x7c\x4a\x37\x46\x6d\xaf\xb2\x88\xcf\xd3\x13\x68\x94\x9c\xa5\xb3\x17\xb9\x43\xc1\x0b\x50\xeb\x7f\x88\xf9\x2c\x74\x86\xd3\x8e\x0a\x68\xfb\x75\x7e\x9a\x6c\x3c\xb2\x56\x3f\x6a\xef\x31\xb4\x96\xcc\xf0\x30\xdc\xb5\xbb\xbb\xbf\x1f\x50\xbd\xcb\x59\x45\xec\x7b\x9a\xcd\x61\x4b\xd6\x62\x49\x4b\xe8\x88\xc5\x38\x18\x98\xab\x23\x39\xcb\x92\x53\x17\x1e\x65\xfa\xde\xa0\xd6\x31\x2e\xb4\xa1\x1d\x57\xb5\x15\x4d\xf0\x6e\x78\x59\x1b\x2a\x22\x13\x68\xec\x82\x0d\xc6\x2d\xee\x9c\x7c\x11\x73\x0f\x7f\xdd\xad\x53\x8e\x3a\xd9\xd2\xc3\x2f\x67\x30\x98\x21\x74\xf4\x8d\xf6\x1e\x2c\x1d\xbe\xc4\x03\x51\xb3\xf9\x49\x43\xef\xd3\x9b\x58\x8f\xd3\x6a\xb0\xd9\xf8\xc9\x87\x47\x88\xad\x1b\x92\xe3\x3c\xe6\x49\x98\x5c\xd0\xfb\x34\x26\x7f\x44\xdc\xa9\x88\x88\x27\x2e\x45\xc4\x85\x59\xd2\xdb\x1c\x31\xbd\x97\xd3\xe9\xae\x2e\x21\x1c\xf9\xbf\xd9\x71\x61\x92\x18\x27\x13\x92\x8f\x58\xfd\xf7\x1c\x39\xed\x38\x0e\x91\xe3\xe8\x88\x33\xf6\xb9\x11\xbe\xb9\x18\x1a\xc7\x77\xb7\x73\x89\xf1\x85\x4b\x14\xe2\x10\x6f\x0e\x4d\x46\x1c\x9f\x75\xaa\xf9\x3a\x86\x84\xab\xd0\xc1\x9e\x0b\x01\x5e\xed\xf6\x8e\xd7\x6a\x67\x92\x23\x6f\x71\x7f\x1d\xca\x43\xef\xb1\x03\xe3\x10\x63\x2f\x48\xdc\xd2\xb9\x37\xb4\x69\x16\x7e\xe6\x03\xb5\x6f\xb8\xa5\x57\x43\x1b\xfe\x76\xf9\x57\x7f\x0c\xd2\x5d\x99\x96\xd0\x97\x27\x63\x9f\x7d\x24\x1f\xc9\xbf\x01\x00\x00\xff\xff\x00\x86\x3f\x21\x87\x0b\x00\x00" func transactionsHostPublish_host_capabilityCdcBytes() ([]byte, error) { @@ -671,7 +797,7 @@ func transactionsHostPublish_host_capabilityCdc() (*asset, error) { return a, nil } -var _transactionsMigrationContractStagingAdminCommit_migration_resultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x4f\x8b\xd4\x40\x10\xc5\xef\xf9\x14\xcf\x1c\x86\x0c\x48\xe6\x22\x1e\x82\xe3\xb2\x0e\x7a\x13\x16\x47\xbd\x88\x87\xda\x9e\x4a\xd2\xd0\x7f\x42\x75\x05\x17\x64\xbf\xbb\x24\xbd\x19\xdd\xac\xa3\x87\xed\x5b\x43\xbd\xfa\x55\xd5\x7b\xd6\x0f\x51\x14\xe5\x47\xdb\x09\xa9\x8d\xe1\x10\x83\x0a\x19\x3d\x2a\x75\x36\x74\x65\x51\xec\x76\x3b\x1c\xa2\xf7\x56\x13\xb4\x67\x08\xa7\xd1\x69\x42\x6c\x11\xdb\xd6\xf4\x64\x03\xd8\x8f\x8e\x94\x4f\xf0\x4b\x9f\x49\x56\xa8\x50\x48\x64\xa6\x7f\x95\x02\x0d\xa9\x8f\xfa\xd9\x7a\x4e\x4a\x7e\x68\xf0\xe5\x83\xbd\x7b\xfd\xea\x25\x5a\xb2\x8e\x4f\x0b\x39\x35\xf8\x76\x54\xb1\xa1\xfb\xbe\xc5\xcf\x02\x28\x00\xc0\xb1\x82\x4e\xde\x86\x06\x9b\x4b\xc3\xd6\xd7\x53\x41\x31\xd7\x0f\xc2\x03\x09\x57\xc9\x76\x81\xa5\x01\x8d\xda\x57\xef\xa2\x48\xfc\xf1\x95\xdc\xc8\x5b\x6c\xae\x8d\x89\x63\xd0\x0c\xc9\x2f\xb1\x6b\xeb\x19\x83\x3d\xb2\xb4\x4e\x1a\x85\x3a\xae\x6f\x67\xf1\x9b\xff\xd0\xdf\x56\xad\x44\xdf\xe0\xdf\x55\xc7\xdc\xf3\x86\xb4\xdf\x9e\xe1\xd3\xbb\xba\xc2\x40\xc1\x9a\xaa\x3c\xc4\xd1\x9d\x10\xa2\x22\x83\x31\x0b\x21\xdc\xb2\x70\x30\x5c\x66\xe1\x7d\x5e\x97\xef\xd8\x8c\xca\x7f\x5d\xa5\x36\xb3\x7b\xe7\x89\x3e\x65\x03\xcf\x8e\x34\x78\xe2\xcd\xe2\x49\xb3\xf6\xe6\x11\x74\x88\x49\xff\x20\x5e\x5c\xd9\x51\xd2\xf7\x0f\x09\x59\x4d\xf1\xa2\x5e\x01\xb0\xdf\xaf\x99\xd8\x6c\x9e\xc9\x58\xf6\x9b\x9a\x3f\xcd\xe1\x23\x03\xca\x1b\x89\xb7\x8e\x3d\xf2\xd1\xd4\x86\xee\x77\xa8\x97\xec\x97\x0f\x57\xb8\x2f\x7e\x05\x00\x00\xff\xff\x1f\x33\x4f\xd9\x40\x03\x00\x00" +var _transactionsMigrationContractStagingAdminCommit_migration_resultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x8b\xd4\x40\x10\xc5\xef\xf9\x14\xcf\x1c\x86\x8c\x48\xe6\x22\x1e\x82\xe3\xb2\x0e\x7a\x13\x16\x47\xbd\x88\x87\xda\x9e\x4a\xd2\xd0\x7f\x42\x75\x05\x17\x64\xbf\xbb\x24\xbd\x19\xdd\xac\xa3\x60\xdf\x1a\xea\xd5\xaf\xaa\xde\xb3\x7e\x88\xa2\x28\x3f\xd8\x4e\x48\x6d\x0c\x87\x18\x54\xc8\xe8\x51\xa9\xb3\xa1\x2b\x8b\x62\xb7\xdb\xe1\x10\xbd\xb7\x9a\xa0\x3d\x43\x38\x8d\x4e\x13\x62\x8b\xd8\xb6\xa6\x27\x1b\xc0\x7e\x74\xa4\x7c\x82\x5f\xfa\x4c\xb2\x42\x85\x42\x22\x33\xfd\xab\x14\x68\x48\x7d\xd4\x4f\xd6\x73\x52\xf2\x43\x83\xcf\xef\xed\xdd\xab\x97\x2f\xd0\x92\x75\x7c\x5a\xc8\xa9\xc1\xd7\xa3\x8a\x0d\xdd\xb7\x2d\x7e\x14\x40\x01\x00\x8e\x15\x74\xf2\x36\x34\xd8\x5c\x1a\xb6\xbe\x9e\x0a\x8a\xb9\x7e\x10\x1e\x48\xb8\x4a\xb6\x0b\x2c\x0d\x68\xd4\xbe\x7a\x1b\x45\xe2\xf7\x2f\xe4\x46\xde\x62\x73\x6d\x4c\x1c\x83\x66\x48\x7e\x89\x5d\x5b\xcf\x18\xec\x91\xa5\x75\xd2\x28\xd4\x71\x7d\x3b\x8b\x5f\xff\x83\xfe\xa6\x6a\x25\xfa\x06\x7f\xaf\x3a\xe6\x9e\x37\xa4\xfd\xf6\x0c\x9f\xde\xd5\x15\x06\x0a\xd6\x54\xe5\x21\x8e\xee\x84\x10\x15\x19\x8c\x59\x08\xe1\x96\x85\x83\xe1\x32\x0b\xef\xf3\xba\x7c\xc7\x66\x54\xfe\xe3\x2a\xb5\x99\xdd\x3b\x4f\xf4\x31\x1b\x78\x76\xa4\xc1\x13\x6f\x16\x4f\x9a\xb5\x37\x8f\xa0\x43\x4c\xfa\x1b\xf1\xf9\xc5\x9d\x1d\x25\x7d\xf7\x10\x91\xd5\x18\xcf\xea\x15\x01\xfb\xfd\x1a\x8a\xcd\xe6\x0c\xf9\x3f\xc6\xb2\xe0\xd4\xfc\x69\x10\x1f\x39\x50\xde\x48\xbc\x75\xec\x91\xaf\xa6\x36\x74\xbf\x52\xbd\x84\xbf\x7c\x38\xc3\x7d\xf1\x33\x00\x00\xff\xff\x82\xa6\x46\xf2\x41\x03\x00\x00" func transactionsMigrationContractStagingAdminCommit_migration_resultsCdcBytes() ([]byte, error) { return bindataRead( @@ -687,7 +813,7 @@ func transactionsMigrationContractStagingAdminCommit_migration_resultsCdc() (*as } info := bindataFileInfo{name: "transactions/migration-contract-staging/admin/commit_migration_results.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xa7, 0xae, 0x13, 0xdd, 0xf8, 0x9, 0x7e, 0x99, 0x3b, 0x8f, 0xa4, 0x36, 0xab, 0x6a, 0x2c, 0xfa, 0x1d, 0x9c, 0xc5, 0x24, 0x5f, 0x60, 0x88, 0x2, 0x1c, 0xf, 0x19, 0x14, 0x99, 0xc6, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x18, 0xa4, 0x15, 0x33, 0xec, 0x96, 0xbb, 0xaa, 0x37, 0x23, 0x20, 0x92, 0x92, 0x8b, 0xec, 0xce, 0xad, 0x10, 0xd2, 0x2c, 0xef, 0x92, 0xd3, 0x45, 0x1b, 0x76, 0xee, 0x68, 0x4f, 0xe2, 0x3e}} return a, nil } @@ -1043,10 +1169,14 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ "scripts/delegatee/check_delegatee_has_valid_updater_cap.cdc": scriptsDelegateeCheck_delegatee_has_valid_updater_capCdc, + "scripts/dependency-audit/get_boundaries.cdc": scriptsDependencyAuditGet_boundariesCdc, + "scripts/dependency-audit/get_failure_probability.cdc": scriptsDependencyAuditGet_failure_probabilityCdc, + "scripts/dependency-audit/get_should_panic_on_unstaged.cdc": scriptsDependencyAuditGet_should_panic_on_unstagedCdc, "scripts/migration-contract-staging/get_all_staged_contract_code_for_address.cdc": scriptsMigrationContractStagingGet_all_staged_contract_code_for_addressCdc, "scripts/migration-contract-staging/get_all_staged_contract_hosts.cdc": scriptsMigrationContractStagingGet_all_staged_contract_hostsCdc, "scripts/migration-contract-staging/get_all_staged_contracts.cdc": scriptsMigrationContractStagingGet_all_staged_contractsCdc, "scripts/migration-contract-staging/get_staged_contract_code.cdc": scriptsMigrationContractStagingGet_staged_contract_codeCdc, + "scripts/migration-contract-staging/get_staged_contract_code_hash.cdc": scriptsMigrationContractStagingGet_staged_contract_code_hashCdc, "scripts/migration-contract-staging/get_staged_contract_names_for_address.cdc": scriptsMigrationContractStagingGet_staged_contract_names_for_addressCdc, "scripts/migration-contract-staging/get_staged_contract_update.cdc": scriptsMigrationContractStagingGet_staged_contract_updateCdc, "scripts/migration-contract-staging/get_staging_cutoff.cdc": scriptsMigrationContractStagingGet_staging_cutoffCdc, @@ -1067,8 +1197,10 @@ var _bindata = map[string]func() (*asset, error){ "transactions/delegatee/execute_all_delegated_updates.cdc": transactionsDelegateeExecute_all_delegated_updatesCdc, "transactions/delegatee/remove_delegated_updaters.cdc": transactionsDelegateeRemove_delegated_updatersCdc, "transactions/dependency-audit/admin/add_excluded_addresses.cdc": transactionsDependencyAuditAdminAdd_excluded_addressesCdc, + "transactions/dependency-audit/admin/set_start_end_block.cdc": transactionsDependencyAuditAdminSet_start_end_blockCdc, "transactions/dependency-audit/admin/set_unstaged_cause_panic.cdc": transactionsDependencyAuditAdminSet_unstaged_cause_panicCdc, "transactions/dependency-audit/admin/test_check_dependencies.cdc": transactionsDependencyAuditAdminTest_check_dependenciesCdc, + "transactions/dependency-audit/admin/unset_start_end_block.cdc": transactionsDependencyAuditAdminUnset_start_end_blockCdc, "transactions/host/publish_host_capability.cdc": transactionsHostPublish_host_capabilityCdc, "transactions/migration-contract-staging/admin/commit_migration_results.cdc": transactionsMigrationContractStagingAdminCommit_migration_resultsCdc, "transactions/migration-contract-staging/admin/set_staging_cutoff.cdc": transactionsMigrationContractStagingAdminSet_staging_cutoffCdc, @@ -1134,11 +1266,17 @@ var _bintree = &bintree{nil, map[string]*bintree{ "delegatee": {nil, map[string]*bintree{ "check_delegatee_has_valid_updater_cap.cdc": {scriptsDelegateeCheck_delegatee_has_valid_updater_capCdc, map[string]*bintree{}}, }}, + "dependency-audit": {nil, map[string]*bintree{ + "get_boundaries.cdc": {scriptsDependencyAuditGet_boundariesCdc, map[string]*bintree{}}, + "get_failure_probability.cdc": {scriptsDependencyAuditGet_failure_probabilityCdc, map[string]*bintree{}}, + "get_should_panic_on_unstaged.cdc": {scriptsDependencyAuditGet_should_panic_on_unstagedCdc, map[string]*bintree{}}, + }}, "migration-contract-staging": {nil, map[string]*bintree{ "get_all_staged_contract_code_for_address.cdc": {scriptsMigrationContractStagingGet_all_staged_contract_code_for_addressCdc, map[string]*bintree{}}, "get_all_staged_contract_hosts.cdc": {scriptsMigrationContractStagingGet_all_staged_contract_hostsCdc, map[string]*bintree{}}, "get_all_staged_contracts.cdc": {scriptsMigrationContractStagingGet_all_staged_contractsCdc, map[string]*bintree{}}, "get_staged_contract_code.cdc": {scriptsMigrationContractStagingGet_staged_contract_codeCdc, map[string]*bintree{}}, + "get_staged_contract_code_hash.cdc": {scriptsMigrationContractStagingGet_staged_contract_code_hashCdc, map[string]*bintree{}}, "get_staged_contract_names_for_address.cdc": {scriptsMigrationContractStagingGet_staged_contract_names_for_addressCdc, map[string]*bintree{}}, "get_staged_contract_update.cdc": {scriptsMigrationContractStagingGet_staged_contract_updateCdc, map[string]*bintree{}}, "get_staging_cutoff.cdc": {scriptsMigrationContractStagingGet_staging_cutoffCdc, map[string]*bintree{}}, @@ -1174,8 +1312,10 @@ var _bintree = &bintree{nil, map[string]*bintree{ "dependency-audit": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "add_excluded_addresses.cdc": {transactionsDependencyAuditAdminAdd_excluded_addressesCdc, map[string]*bintree{}}, + "set_start_end_block.cdc": {transactionsDependencyAuditAdminSet_start_end_blockCdc, map[string]*bintree{}}, "set_unstaged_cause_panic.cdc": {transactionsDependencyAuditAdminSet_unstaged_cause_panicCdc, map[string]*bintree{}}, "test_check_dependencies.cdc": {transactionsDependencyAuditAdminTest_check_dependenciesCdc, map[string]*bintree{}}, + "unset_start_end_block.cdc": {transactionsDependencyAuditAdminUnset_start_end_blockCdc, map[string]*bintree{}}, }}, }}, "host": {nil, map[string]*bintree{ diff --git a/scripts/dependency-audit/get_boundaries.cdc b/scripts/dependency-audit/get_boundaries.cdc new file mode 100644 index 0000000..8740605 --- /dev/null +++ b/scripts/dependency-audit/get_boundaries.cdc @@ -0,0 +1,5 @@ +import "DependencyAudit" + +access(all) fun main(): DependencyAudit.Boundaries? { + return DependencyAudit.getBoundaries() +} diff --git a/scripts/dependency-audit/get_failure_probability.cdc b/scripts/dependency-audit/get_failure_probability.cdc new file mode 100644 index 0000000..06e7fc9 --- /dev/null +++ b/scripts/dependency-audit/get_failure_probability.cdc @@ -0,0 +1,5 @@ +import "DependencyAudit" + +access(all) fun main(): UFix64 { + return DependencyAudit.getCurrentFailureProbability() +} diff --git a/scripts/dependency-audit/get_should_panic_on_unstaged.cdc b/scripts/dependency-audit/get_should_panic_on_unstaged.cdc new file mode 100644 index 0000000..0fdbc46 --- /dev/null +++ b/scripts/dependency-audit/get_should_panic_on_unstaged.cdc @@ -0,0 +1,5 @@ +import "DependencyAudit" + +access(all) fun main(): Boolean { + return DependencyAudit.panicOnUnstaged +} diff --git a/scripts/migration-contract-staging/get_staged_contract_code_hash.cdc b/scripts/migration-contract-staging/get_staged_contract_code_hash.cdc new file mode 100644 index 0000000..481b8b6 --- /dev/null +++ b/scripts/migration-contract-staging/get_staged_contract_code_hash.cdc @@ -0,0 +1,14 @@ +import "MigrationContractStaging" + +#interaction ( + version: "1.1.0", + title: "Get Staged Contract Code", + description: "Returns the Cadence code that has been staged for the given contract or nil if it is not yet staged.", + language: "en-US", +) + +/// Returns the code hash as it is staged or nil if it not currently staged. +/// +access(all) fun main(contractAddress: Address, contractName: String): [UInt8]? { + return MigrationContractStaging.getStagedContractCodeHash(address: contractAddress, name: contractName) +} diff --git a/tests/dependency_audit_tests.cdc b/tests/dependency_audit_tests.cdc index 43c3555..bf4134b 100644 --- a/tests/dependency_audit_tests.cdc +++ b/tests/dependency_audit_tests.cdc @@ -246,3 +246,101 @@ access(all) fun testChekDependenciesWithUnstagedEntriesPanics() { // not sure how to test this: // Test.expect(commitResult.error!.message, Test.contain("panic: This transaction is using dependencies not staged for Crescendo upgrade coming soon! Learn more: https://bit.ly/FLOWCRESCENDO. Dependencies not staged: A.0000000000000008.Foo") ) } + +access(all) fun testBoundaries() { + var commitResult = executeTransaction( + "../transactions/dependency-audit/admin/set_start_end_block.cdc", + [100 as UInt64, 200 as UInt64], + adminAccount + ) + Test.expect(commitResult, Test.beSucceeded()) + + var addresses: [Address] = [fooAccount.address] + var names: [String] = ["Foo"] + var authorizers: [Address] = [] + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/test_check_dependencies.cdc", + [addresses, names, authorizers], + adminAccount + ) + Test.expect(commitResult, Test.beSucceeded()) + + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/set_start_end_block.cdc", + [2 as UInt64, 1 as UInt64], + adminAccount + ) + Test.expect(commitResult, Test.beFailed()) + + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/set_start_end_block.cdc", + [1 as UInt64, 2 as UInt64], + adminAccount + ) + Test.expect(commitResult, Test.beSucceeded()) + + var events = Test.eventsOfType(Type()) + Test.assertEqual(2, events.length) + var evt = events[1] as! DependencyAudit.BlockBoundariesChanged + Test.assertEqual(1 as UInt64, evt.start!) + Test.assertEqual(2 as UInt64, evt.end!) + + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/unset_start_end_block.cdc", + [], + adminAccount + ) + Test.expect(commitResult, Test.beSucceeded()) + + events = Test.eventsOfType(Type()) + Test.assertEqual(3, events.length) + evt = events[2] as! DependencyAudit.BlockBoundariesChanged + Test.assertEqual(nil, evt.start) + Test.assertEqual(nil, evt.end) + + addresses = [fooAccount.address] + names = ["Foo"] + authorizers = [] + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/test_check_dependencies.cdc", + [addresses, names, authorizers], + adminAccount + ) + Test.expect(commitResult, Test.beFailed()) + + // The block height is 42 at this point + + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/set_start_end_block.cdc", + [0 as UInt64, 100 as UInt64], + adminAccount + ) + Test.expect(commitResult, Test.beSucceeded()) + + let probability = (executeScript( + "../scripts/dependency-audit/get_failure_probability.cdc", + [] + ).returnValue as! UFix64?)! + + // depends on the block, so its better to check the range + Test.expect(probability, Test.beGreaterThan(0.5)) + Test.expect(probability, Test.beLessThan(0.7)) + + var i = 0 + var failCount = 0 + while i < 10 { + commitResult = executeTransaction( + "../transactions/dependency-audit/admin/test_check_dependencies.cdc", + [addresses, names, authorizers], + adminAccount + ) + if commitResult.error != nil { + failCount = failCount + 1 + } + i = i + 1 + } + + // expect 1-9 failures in 10 attempts + Test.expect(failCount, Test.beGreaterThan(0)) + Test.expect(failCount, Test.beLessThan(10)) +} diff --git a/tests/migration_contract_staging_tests.cdc b/tests/migration_contract_staging_tests.cdc index 4d4abd1..d043f29 100644 --- a/tests/migration_contract_staging_tests.cdc +++ b/tests/migration_contract_staging_tests.cdc @@ -13,12 +13,16 @@ access(all) let bcAccount = Test.getAccount(0x0000000000000010) // Content of update contracts as hex strings access(all) let fooUpdateCode = "61636365737328616c6c2920636f6e747261637420466f6f207b0a2020202061636365737328616c6c292066756e20666f6f28293a20537472696e67207b0a202020202020202072657475726e2022626172220a202020207d0a7d0a" access(all) let fooUpdateCadence = String.fromUTF8(fooUpdateCode.decodeHex()) ?? panic("Problem decoding fooUpdateCode") -access(all) let aUpdateCode = "61636365737328616c6c2920636f6e747261637420696e746572666163652041207b0a202020200a2020202061636365737328616c6c29207265736f7572636520696e746572666163652049207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e670a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e670a202020207d0a0a2020202061636365737328616c6c29207265736f7572636520696e746572666163652052203a2049207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e67207b0a20202020202020202020202072657475726e2022666f6f220a20202020202020207d0a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e67207b0a20202020202020202020202072657475726e2022626172220a20202020202020207d0a202020207d0a7d" +access(all) var fooUpdateHash:[UInt8] = [] +access(all) let aUpdateCode = "61636365737328616c6c2920636f6e747261637420696e746572666163652041207b0a202020200a2020202061636365737328616c6c29207265736f7572636520696e746572666163652049207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e670a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e670a202020207d0a0a2020202061636365737328616c6c29207265736f757263652052203a2049207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e67207b0a20202020202020202020202072657475726e2022666f6f220a20202020202020207d0a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e67207b0a20202020202020202020202072657475726e2022626172220a20202020202020207d0a202020207d0a7d" access(all) let aUpdateCadence = String.fromUTF8(aUpdateCode.decodeHex()) ?? panic("Problem decoding aUpdateCode") -access(all) let bUpdateCode = "696d706f727420412066726f6d203078303030303030303030303030303030390a0a61636365737328616c6c2920636f6e74726163742042203a2041207b0a202020200a2020202061636365737328616c6c29207265736f757263652052203a20412e52207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e67207b0a20202020202020202020202072657475726e2022666f6f220a20202020202020207d0a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e67207b0a20202020202020202020202072657475726e2022626172220a20202020202020207d0a202020207d0a202020200a2020202061636365737328616c6c292066756e206372656174655228293a204052207b0a202020202020202072657475726e203c2d637265617465205228290a202020207d0a7d" +access(all) var aUpdateHash:[UInt8] = [] +access(all) let bUpdateCode = "696d706f727420412066726f6d203078303030303030303030303030303030390a0a61636365737328616c6c2920636f6e74726163742042203a2041207b0a202020200a2020202061636365737328616c6c29207265736f757263652052203a20412e49207b0a202020202020202061636365737328616c6c292066756e20666f6f28293a20537472696e67207b0a20202020202020202020202072657475726e2022666f6f220a20202020202020207d0a202020202020202061636365737328616c6c292066756e2062617228293a20537472696e67207b0a20202020202020202020202072657475726e2022626172220a20202020202020207d0a202020207d0a202020200a2020202061636365737328616c6c292066756e206372656174655228293a204052207b0a202020202020202072657475726e203c2d637265617465205228290a202020207d0a7d" access(all) let bUpdateCadence = String.fromUTF8(bUpdateCode.decodeHex()) ?? panic("Problem decoding bUpdateCode") -access(all) let cUpdateCode = "696d706f727420412066726f6d203078303030303030303030303030303030390a696d706f727420422066726f6d203078303030303030303030303030303031300a0a61636365737328616c6c2920636f6e74726163742043207b0a0a2020202061636365737328616c6c29206c65742053746f72616765506174683a2053746f72616765506174680a2020202061636365737328616c6c29206c6574205075626c6963506174683a205075626c6963506174680a0a2020202061636365737328616c6c29207265736f7572636520696e74657266616365204f757465725075626c6963207b0a202020202020202061636365737328616c6c292066756e20676574466f6f46726f6d2869643a2055496e743634293a20537472696e670a202020202020202061636365737328616c6c292066756e2067657442617246726f6d2869643a2055496e743634293a20537472696e670a202020207d0a0a2020202061636365737328616c6c29207265736f75726365204f75746572203a204f757465725075626c6963207b0a202020202020202061636365737328616c6c29206c657420696e6e65723a20407b55496e7436343a207b412e527d7d0a0a2020202020202020696e69742829207b0a20202020202020202020202073656c662e696e6e6572203c2d207b7d0a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e20676574466f6f46726f6d2869643a2055496e743634293a20537472696e67207b0a20202020202020202020202072657475726e2073656c662e626f72726f775265736f75726365286964293f2e666f6f2829203f3f2070616e696328224e6f207265736f7572636520666f756e64207769746820676976656e20494422290a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e2067657442617246726f6d2869643a2055496e743634293a20537472696e67207b0a20202020202020202020202072657475726e2073656c662e626f72726f775265736f75726365286964293f2e6261722829203f3f2070616e696328224e6f207265736f7572636520666f756e64207769746820676976656e20494422290a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e206164645265736f75726365285f20693a20407b412e527d29207b0a20202020202020202020202073656c662e696e6e65725b692e757569645d203c2d2120690a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e20626f72726f775265736f75726365285f2069643a2055496e743634293a20267b412e497d3f207b0a20202020202020202020202072657475726e202673656c662e696e6e65725b69645d20617320267b412e497d3f0a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e2072656d6f76655265736f75726365285f2069643a2055496e743634293a20407b412e527d3f207b0a20202020202020202020202072657475726e203c2d2073656c662e696e6e65722e72656d6f7665286b65793a206964290a20202020202020207d0a202020207d0a0a20202020696e69742829207b0a202020202020202073656c662e53746f7261676550617468203d202f73746f726167652f4f757465720a202020202020202073656c662e5075626c696350617468203d202f7075626c69632f4f757465725075626c69630a0a202020202020202073656c662e6163636f756e742e73746f726167652e736176653c404f757465723e283c2d637265617465204f7574657228292c20746f3a2073656c662e53746f7261676550617468290a20202020202020206c657420636170203d2073656c662e6163636f756e742e6361706162696c69746965732e73746f726167652e69737375653c267b4f757465725075626c69637d3e2873656c662e53746f7261676550617468290a202020202020202073656c662e6163636f756e742e6361706162696c69746965732e7075626c697368286361702c2061743a2073656c662e5075626c696350617468290a0a20202020202020206c6574206f75746572203d2073656c662e6163636f756e742e73746f726167652e626f72726f773c264f757465723e2866726f6d3a2073656c662e53746f726167655061746829210a20202020202020206f757465722e6164645265736f75726365283c2d20422e637265617465522829290a202020207d0a7d" +access(all) var bUpdateHash:[UInt8] = [] +access(all) let cUpdateCode = "696d706f727420412066726f6d203078303030303030303030303030303030390a696d706f727420422066726f6d203078303030303030303030303030303031300a0a61636365737328616c6c2920636f6e74726163742043207b0a0a2020202061636365737328616c6c29206c65742053746f72616765506174683a2053746f72616765506174680a2020202061636365737328616c6c29206c6574205075626c6963506174683a205075626c6963506174680a0a2020202061636365737328616c6c29207265736f7572636520696e74657266616365204f757465725075626c6963207b0a202020202020202061636365737328616c6c292066756e20676574466f6f46726f6d2869643a2055496e743634293a20537472696e670a202020202020202061636365737328616c6c292066756e2067657442617246726f6d2869643a2055496e743634293a20537472696e670a202020207d0a0a2020202061636365737328616c6c29207265736f75726365204f75746572203a204f757465725075626c6963207b0a202020202020202061636365737328616c6c29206c657420696e6e65723a20407b55496e7436343a20412e527d0a0a2020202020202020696e69742829207b0a20202020202020202020202073656c662e696e6e6572203c2d207b7d0a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e20676574466f6f46726f6d2869643a2055496e743634293a20537472696e67207b0a20202020202020202020202072657475726e2073656c662e626f72726f775265736f75726365286964293f2e666f6f2829203f3f2070616e696328224e6f207265736f7572636520666f756e64207769746820676976656e20494422290a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e2067657442617246726f6d2869643a2055496e743634293a20537472696e67207b0a20202020202020202020202072657475726e2073656c662e626f72726f775265736f75726365286964293f2e6261722829203f3f2070616e696328224e6f207265736f7572636520666f756e64207769746820676976656e20494422290a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e206164645265736f75726365285f20693a2040412e5229207b0a20202020202020202020202073656c662e696e6e65725b692e757569645d203c2d2120690a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e20626f72726f775265736f75726365285f2069643a2055496e743634293a20267b412e497d3f207b0a20202020202020202020202072657475726e202673656c662e696e6e65725b69645d20617320267b412e497d3f0a20202020202020207d0a0a202020202020202061636365737328616c6c292066756e2072656d6f76655265736f75726365285f2069643a2055496e743634293a2040412e523f207b0a20202020202020202020202072657475726e203c2d2073656c662e696e6e65722e72656d6f7665286b65793a206964290a20202020202020207d0a0a202020202020202064657374726f792829207b0a20202020202020202020202064657374726f792073656c662e696e6e65720a20202020202020207d0a202020207d0a0a20202020696e69742829207b0a202020202020202073656c662e53746f7261676550617468203d202f73746f726167652f4f757465720a202020202020202073656c662e5075626c696350617468203d202f7075626c69632f4f757465725075626c69630a0a202020202020202073656c662e6163636f756e742e736176653c404f757465723e283c2d637265617465204f7574657228292c20746f3a2073656c662e53746f7261676550617468290a202020202020202073656c662e6163636f756e742e6c696e6b3c267b4f757465725075626c69637d3e2873656c662e5075626c6963506174682c207461726765743a2073656c662e53746f7261676550617468290a0a20202020202020206c6574206f75746572203d2073656c662e6163636f756e742e626f72726f773c264f757465723e2866726f6d3a2073656c662e53746f726167655061746829210a20202020202020206f757465722e6164645265736f75726365283c2d20422e637265617465522829290a202020207d0a7d" access(all) let cUpdateCadence = String.fromUTF8(cUpdateCode.decodeHex()) ?? panic("Problem decoding cUpdateCode") +access(all) var cUpdateHash:[UInt8] = [] // Block height different to add to the staging cutoff access(all) let blockHeightDelta: UInt64 = 10 @@ -75,6 +79,8 @@ access(all) fun testStageContractSucceeds() { // Take snapshot as the following test case will stage this same transaction via Host Capability snapshotHeight = getCurrentBlockHeight() + fooUpdateHash = MigrationContractStaging.getCodeHash(fooUpdateCadence) + let txResult = executeTransaction( "../transactions/migration-contract-staging/stage_contract.cdc", ["Foo", fooUpdateCadence], @@ -92,7 +98,10 @@ access(all) fun testStageContractSucceeds() { let fooStagedContractCode = getStagedContractCode(contractAddress: fooAccount.address, contractName: "Foo") ?? panic("Problem retrieving result of getStagedContractCode()") + let fooStagedContractHash = getStagedContractCodeHash(contractAddress: fooAccount.address, contractName: "Foo") + ?? panic("Problem retrieving result of getStagedContractCodeHash()") Test.assertEqual(fooUpdateCadence, fooStagedContractCode) + Test.assertEqual(fooUpdateHash, fooStagedContractHash) let allStagedCodeForFooAccount = getAllStagedContractCodeForAddress(contractAddress: fooAccount.address) assertStagedContractCodeEqual({ "Foo": fooUpdateCadence}, allStagedCodeForFooAccount) @@ -102,7 +111,7 @@ access(all) fun testStageContractSucceeds() { let evt = events[0] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(fooAccount.address, evt.address) - Test.assertEqual(fooUpdateCadence, evt.code) + Test.assertEqual(fooUpdateHash, evt.codeHash) Test.assertEqual("Foo", evt.contractIdentifier) Test.assertEqual("stage", evt.action) } @@ -153,13 +162,17 @@ access(all) fun testStageContractViaHostCapabilitySucceeds() { let evt = events[0] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(fooAccount.address, evt.address) - Test.assertEqual(fooUpdateCadence, evt.code) + Test.assertEqual(fooUpdateHash, evt.codeHash) Test.assertEqual("Foo", evt.contractIdentifier) Test.assertEqual("stage", evt.action) } access(all) fun testStageMultipleContractsSucceeds() { + aUpdateHash = MigrationContractStaging.getCodeHash(aUpdateCadence) + bUpdateHash = MigrationContractStaging.getCodeHash(bUpdateCadence) + cUpdateHash = MigrationContractStaging.getCodeHash(cUpdateCadence) + // Demonstrating staging multiple contracts on the same host & out of dependency order let cStagingTxResult = executeTransaction( "../transactions/migration-contract-staging/stage_contract.cdc", @@ -188,17 +201,17 @@ access(all) fun testStageMultipleContractsSucceeds() { Test.assertEqual(4, events.length) let cEvt = events[1] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(bcAccount.address, cEvt.address) - Test.assertEqual(cUpdateCadence, cEvt.code) + Test.assertEqual(cUpdateHash, cEvt.codeHash) Test.assertEqual("C", cEvt.contractIdentifier) Test.assertEqual("stage", cEvt.action) let bEvt = events[2] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(bcAccount.address, bEvt.address) - Test.assertEqual(bUpdateCadence, bEvt.code) + Test.assertEqual(bUpdateHash, bEvt.codeHash) Test.assertEqual("B", bEvt.contractIdentifier) Test.assertEqual("stage", bEvt.action) let aEvt = events[3] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(aAccount.address, aEvt.address) - Test.assertEqual(aUpdateCadence, aEvt.code) + Test.assertEqual(aUpdateHash, aEvt.codeHash) Test.assertEqual("A", aEvt.contractIdentifier) Test.assertEqual("stage", aEvt.action) @@ -212,13 +225,22 @@ access(all) fun testStageMultipleContractsSucceeds() { let aStagedCode = getStagedContractCode(contractAddress: aAccount.address, contractName: "A") ?? panic("Problem retrieving result of getStagedContractCode()") + let aStagedHash = getStagedContractCodeHash(contractAddress: aAccount.address, contractName: "A") + ?? panic("Problem retrieving result of getStagedContractCodeHash()") let bStagedCode = getStagedContractCode(contractAddress: bcAccount.address, contractName: "B") ?? panic("Problem retrieving result of getStagedContractCode()") + let bStagedHash = getStagedContractCodeHash(contractAddress: bcAccount.address, contractName: "B") + ?? panic("Problem retrieving result of getStagedContractCodeHash()") let cStagedCode = getStagedContractCode(contractAddress: bcAccount.address, contractName: "C") ?? panic("Problem retrieving result of getStagedContractCode()") + let cStagedHash = getStagedContractCodeHash(contractAddress: bcAccount.address, contractName: "C") + ?? panic("Problem retrieving result of getStagedContractCodeHash()") Test.assertEqual(aUpdateCadence, aStagedCode) Test.assertEqual(bUpdateCadence, bStagedCode) Test.assertEqual(cUpdateCadence, cStagedCode) + Test.assertEqual(aUpdateHash, aStagedHash) + Test.assertEqual(bUpdateHash, bStagedHash) + Test.assertEqual(cUpdateHash, cStagedHash) let allStagedCodeForAAccount = getAllStagedContractCodeForAddress(contractAddress: aAccount.address) let allStagedCodeForBCAccount = getAllStagedContractCodeForAddress(contractAddress: bcAccount.address) @@ -238,7 +260,7 @@ access(all) fun testReplaceStagedCodeSucceeds() { Test.assertEqual(5, events.length) let evt = events[4] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(fooAccount.address, evt.address) - Test.assertEqual(fooUpdateCadence, evt.code) + Test.assertEqual(fooUpdateHash, evt.codeHash) Test.assertEqual("Foo", evt.contractIdentifier) Test.assertEqual("replace", evt.action) } @@ -269,7 +291,7 @@ access(all) fun testUnstageContractSucceeds() { Test.assertEqual(6, events.length) let evt = events[5] as! MigrationContractStaging.StagingStatusUpdated Test.assertEqual(fooAccount.address, evt.address) - Test.assertEqual("", evt.code) + Test.assertEqual([] as [UInt8], evt.codeHash) Test.assertEqual("Foo", evt.contractIdentifier) Test.assertEqual("unstage", evt.action) @@ -410,6 +432,15 @@ access(all) fun getStagedContractCode(contractAddress: Address, contractName: St return stagedContractCodeResult.returnValue as! String? } +access(all) fun getStagedContractCodeHash(contractAddress: Address, contractName: String): [UInt8]? { + let stagedContractCodeResult = executeScript( + "../scripts/migration-contract-staging/get_staged_contract_code_hash.cdc", + [contractAddress, contractName] + ) + Test.assert(stagedContractCodeResult.error == nil, message: "Problem retrieving result of getStagedContractCodeHash()") + return stagedContractCodeResult.returnValue as! [UInt8]? +} + access(all) fun getAllStagedContractCodeForAddress(contractAddress: Address): {String: String} { let allStagedContractCodeForAddressResult = executeScript( "../scripts/migration-contract-staging/get_all_staged_contract_code_for_address.cdc", diff --git a/transactions/dependency-audit/admin/set_start_end_block.cdc b/transactions/dependency-audit/admin/set_start_end_block.cdc new file mode 100644 index 0000000..12af3cf --- /dev/null +++ b/transactions/dependency-audit/admin/set_start_end_block.cdc @@ -0,0 +1,8 @@ +import "DependencyAudit" + +transaction(start: UInt64, end: UInt64) { + prepare(signer: auth(BorrowValue) &Account) { + signer.storage.borrow<&DependencyAudit.Administrator>(from: DependencyAudit.AdministratorStoragePath)?.setStartEndBlock(start: start, end: end) + ?? panic("Could not borrow DependencyAudit.Administrator from signer's storage!") + } +} diff --git a/transactions/dependency-audit/admin/unset_start_end_block.cdc b/transactions/dependency-audit/admin/unset_start_end_block.cdc new file mode 100644 index 0000000..dae7369 --- /dev/null +++ b/transactions/dependency-audit/admin/unset_start_end_block.cdc @@ -0,0 +1,8 @@ +import "DependencyAudit" + +transaction() { + prepare(signer: auth(BorrowValue) &Account) { + signer.storage.borrow<&DependencyAudit.Administrator>(from: DependencyAudit.AdministratorStoragePath)?.unsetStartEndBlock() + ?? panic("Could not borrow DependencyAudit.Administrator from signer's storage!") + } +} diff --git a/transactions/migration-contract-staging/admin/commit_migration_results.cdc b/transactions/migration-contract-staging/admin/commit_migration_results.cdc index a3cac76..83a4e03 100644 --- a/transactions/migration-contract-staging/admin/commit_migration_results.cdc +++ b/transactions/migration-contract-staging/admin/commit_migration_results.cdc @@ -16,7 +16,7 @@ transaction(snapshotTimestamp: UFix64, failedContracts: [String]) { } post { - MigrationContractStaging.lastEmulatedMigrationResult!.failedContracts == failedContracts && + *MigrationContractStaging.lastEmulatedMigrationResult!.failedContracts == failedContracts && MigrationContractStaging.lastEmulatedMigrationResult!.snapshot == snapshotTimestamp: "Problem committing migration results" }