diff --git a/.gitignore b/.gitignore index c2abc8b1..e8935982 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,8 @@ coverage.lcov lcov.info *.pkey +imports* + # Private flow.jsons private.flow.json diff --git a/contracts/FlowCallbackScheduler.cdc b/contracts/FlowCallbackScheduler.cdc index 36d5c609..989b7e38 100644 --- a/contracts/FlowCallbackScheduler.cdc +++ b/contracts/FlowCallbackScheduler.cdc @@ -17,11 +17,14 @@ access(all) contract FlowCallbackScheduler { } access(all) enum Status: UInt8 { + /// unknown statuses are used for handling historic callbacks with null statuses + access(all) case Unknown /// mutable statuses access(all) case Scheduled access(all) case Processed /// finalized statuses - access(all) case Executed + access(all) case Succeeded + access(all) case Failed access(all) case Canceled } @@ -47,7 +50,8 @@ access(all) contract FlowCallbackScheduler { priority: UInt8, executionEffort: UInt64, fees: UFix64, - callbackOwner: Address + callbackOwner: Address, + status: UInt8 ) access(all) event Canceled( @@ -58,7 +62,7 @@ access(all) contract FlowCallbackScheduler { callbackOwner: Address ) - // Emmitted when one or more of the configuration details fields are updated + // Emitted when one or more of the configuration details fields are updated // Event listeners can listen to this and query the new configuration // if they need to access(all) event ConfigUpdated() @@ -176,10 +180,12 @@ access(all) contract FlowCallbackScheduler { /// It panics if the callback status is already finalized. access(contract) fun setStatus(newStatus: Status) { pre { - self.status != Status.Executed && self.status != Status.Canceled: + self.status != Status.Succeeded && self.status != Status.Failed && self.status != Status.Canceled: "Invalid status: Callback with id \(self.id) is already finalized" - newStatus == Status.Executed ? self.status == Status.Processed : true: - "Invalid status: Callback with id \(self.id) cannot be marked as Executed until after it is Processed" + newStatus == Status.Succeeded ? self.status == Status.Processed : true: + "Invalid status: Callback with id \(self.id) cannot be marked as Succeeded until after it is Processed" + newStatus == Status.Failed ? self.status == Status.Processed : true: + "Invalid status: Callback with id \(self.id) cannot be marked as Failed until after it is Processed" newStatus == Status.Processed ? self.status == Status.Scheduled : true: "Invalid status: Callback with id \(self.id) can only be set as Processed if it is Scheduled" } @@ -243,8 +249,9 @@ access(all) contract FlowCallbackScheduler { /// refund multiplier is the portion of the fees that are refunded when a callback is cancelled access(all) var refundMultiplier: UFix64 - /// historic status limit is the maximum age of a historic canceled callback status we keep before getting pruned - access(all) var historicStatusLimit: UFix64 + /// historic status age limit is the maximum age in timestamp seconds + /// of a historic canceled callback status to keep before getting pruned + access(all) var historicStatusAgeLimit: UFix64 access(all) init( slotSharedEffortLimit: UInt64, @@ -253,13 +260,13 @@ access(all) contract FlowCallbackScheduler { minimumExecutionEffort: UInt64, priorityFeeMultipliers: {Priority: UFix64}, refundMultiplier: UFix64, - historicStatusLimit: UFix64 + historicStatusAgeLimit: UFix64 ) { pre { refundMultiplier >= 0.0 && refundMultiplier <= 1.0: "Invalid refund multiplier: The multiplier must be between 0.0 and 1.0 but got \(refundMultiplier)" - historicStatusLimit >= 1.0 && historicStatusLimit < getCurrentBlock().timestamp: - "Invalid historic status limit: Limit must be greater than 1.0 and less than the current timestamp but got \(historicStatusLimit)" + historicStatusAgeLimit >= 1.0 && historicStatusAgeLimit < getCurrentBlock().timestamp: + "Invalid historic status limit: Limit must be greater than 1.0 and less than the current timestamp but got \(historicStatusAgeLimit)" priorityFeeMultipliers[Priority.Low]! >= 1.0: "Invalid priority fee multiplier: Low priority multiplier must be greater than or equal to 1.0 but got \(priorityFeeMultipliers[Priority.Low]!)" priorityFeeMultipliers[Priority.Medium]! > priorityFeeMultipliers[Priority.Low]!: @@ -286,7 +293,7 @@ access(all) contract FlowCallbackScheduler { access(all) var minimumExecutionEffort: UInt64 access(all) var priorityFeeMultipliers: {Priority: UFix64} access(all) var refundMultiplier: UFix64 - access(all) var historicStatusLimit: UFix64 + access(all) var historicStatusAgeLimit: UFix64 access(all) init( slotSharedEffortLimit: UInt64, @@ -295,7 +302,7 @@ access(all) contract FlowCallbackScheduler { minimumExecutionEffort: UInt64, priorityFeeMultipliers: {Priority: UFix64}, refundMultiplier: UFix64, - historicStatusLimit: UFix64 + historicStatusAgeLimit: UFix64 ) { self.slotTotalEffortLimit = slotSharedEffortLimit + priorityEffortReserve[Priority.High]! + priorityEffortReserve[Priority.Medium]! self.slotSharedEffortLimit = slotSharedEffortLimit @@ -304,7 +311,24 @@ access(all) contract FlowCallbackScheduler { self.minimumExecutionEffort = minimumExecutionEffort self.priorityFeeMultipliers = priorityFeeMultipliers self.refundMultiplier = refundMultiplier - self.historicStatusLimit = historicStatusLimit + self.historicStatusAgeLimit = historicStatusAgeLimit + } + } + + /// HistoricCallback is a struct that contains the timestamp and status of a callback + /// that has been finalized and is stored in the historicCallbacks map + access(all) struct HistoricCallback { + access(all) let timestamp: UFix64 + access(all) let status: Status + + access(contract) init(timestamp: UFix64, status: Status) { + pre { + status == Status.Canceled || status == Status.Failed: + "Invalid status: Historic callbacks can only be Canceled or Failed" + } + + self.timestamp = timestamp + self.status = status } } @@ -319,8 +343,8 @@ access(all) contract FlowCallbackScheduler { /// callbacks is a map of callback IDs to callback data access(contract) var callbacks: @{UInt64: CallbackData} - /// callback status maps historic canceled callback IDs to their original timestamps - access(contract) var historicCanceledCallbacks: {UInt64: UFix64} + /// callback status maps historic callback IDs to their statuses + access(contract) var historicCallbacks: {UInt64: HistoricCallback} /// slot queue is a map of timestamps to callback IDs and their execution efforts access(contract) var slotQueue: {UFix64: {UInt64: UInt64}} @@ -333,6 +357,9 @@ access(all) contract FlowCallbackScheduler { /// so we use this special value access(contract) let lowPriorityScheduledTimestamp: UFix64 + /// used for querying historic statuses so that we don't have to store all succeeded statuses + access(contract) var earliestHistoricID: UInt64 + /// Struct that contains all the configuration details for the callback scheduler protocol /// Can be updated by the owner of the contract access(contract) var configurationDetails: {SchedulerConfig} @@ -340,9 +367,10 @@ access(all) contract FlowCallbackScheduler { access(all) init() { self.nextID = 1 self.lowPriorityScheduledTimestamp = 0.0 + self.earliestHistoricID = 0 self.callbacks <- {} - self.historicCanceledCallbacks = {} + self.historicCallbacks = {} self.slotUsedEffort = { self.lowPriorityScheduledTimestamp: { Priority.High: 0, @@ -401,7 +429,7 @@ access(all) contract FlowCallbackScheduler { Priority.Low: 2.0 }, refundMultiplier: 0.5, - historicStatusLimit: 30.0 * 24.0 * 60.0 * 60.0 // 30 days + historicStatusAgeLimit: 30.0 * 24.0 * 60.0 * 60.0 // 30 days ) } @@ -451,18 +479,13 @@ access(all) contract FlowCallbackScheduler { } // if the callback is not found in the callbacks map, we check the callback status map for historic status - if let historic = self.historicCanceledCallbacks[id] { - return Status.Canceled - } else if id < self.nextID { - // historicCanceledCallbacks only stores canceled callbacks - // because the only other possible status for finalized callbacks is Executed - // Since the ID is a monotonically increasing number, - // we know that any ID that is less than the next ID and not in the - // active callbacks map must have been executed - return Status.Executed + if let historic = self.historicCallbacks[id] { + return historic.status + } else if id > self.earliestHistoricID { + return Status.Succeeded } - return nil + return Status.Unknown } /// schedule is the primary entry point for scheduling a new callback within the scheduler contract. @@ -749,6 +772,11 @@ access(all) contract FlowCallbackScheduler { for id in callbackIDs.keys { let callback = self.borrowCallback(id: id)! + if callback.status == Status.Processed { + self.failCallback(id: id) + continue + } + if callback.priority == Priority.High { highPriorityIDs.append(id) } else if callback.priority == Priority.Medium { @@ -768,7 +796,6 @@ access(all) contract FlowCallbackScheduler { let callbackEffort = lowPriorityCallbacks[lowCallbackID]! if callbackEffort <= lowPriorityEffortAvailable { lowPriorityEffortAvailable = lowPriorityEffortAvailable - callbackEffort - callbackIDs[lowCallbackID] = callbackEffort lowPriorityCallbacks[lowCallbackID] = nil sortedCallbackIDs.append(lowCallbackID) } @@ -797,11 +824,14 @@ access(all) contract FlowCallbackScheduler { // garbage collect historic statuses that are older than the limit // todo: maybe not do this every time, but only each X blocks to save compute - let historicCallbacks = self.historicCanceledCallbacks.keys + let historicCallbacks = self.historicCallbacks.keys for id in historicCallbacks { - let historicTimestamp = self.historicCanceledCallbacks[id]! - if historicTimestamp < currentTimestamp - self.configurationDetails.historicStatusLimit { - self.historicCanceledCallbacks.remove(key: id) + let historicCallback = self.historicCallbacks[id]! + if historicCallback.timestamp < currentTimestamp - self.configurationDetails.historicStatusAgeLimit { + self.historicCallbacks.remove(key: id) + if id > self.earliestHistoricID { + self.earliestHistoricID = id + } } } } @@ -836,11 +866,11 @@ access(all) contract FlowCallbackScheduler { callbackOwner: callback.handler.address ) - // keep historic Canceled status for future queries after garbage collection - // We don't keep executed statuses because we can just assume - // they every ID that is less than the current ID counter - // that is not Canceled, Scheduled, or Processed is Executed - self.historicCanceledCallbacks[callback.id] = callback.scheduledTimestamp + // keep historic statuses for future queries after garbage collection + self.historicCallbacks[callback.id] = HistoricCallback( + timestamp: callback.scheduledTimestamp, + status: Status.Canceled + ) self.finalizeCallback(callback: callback, status: Status.Canceled) @@ -865,13 +895,47 @@ access(all) contract FlowCallbackScheduler { priority: callback.priority.rawValue, executionEffort: callback.executionEffort, fees: callback.fees.balance, - callbackOwner: callback.handler.address + callbackOwner: callback.handler.address, + status: Status.Succeeded.rawValue ) // Deposit all the fees into the FlowFees vault destroy callback.payAndWithdrawFees(multiplierToWithdraw: 0.0) + - self.finalizeCallback(callback: callback, status: Status.Executed) + self.finalizeCallback(callback: callback, status: Status.Succeeded) + } + + /// fail callback fail a Processed callback by ID. + /// The callback must be found and in correct state or the function panics and this is a fatal error + access(contract) fun failCallback(id: UInt64) { + let callback = self.borrowCallback(id: id) ?? + panic("Invalid ID: Callback with id \(id) not found") + + assert ( + callback.status == Status.Processed, + message: "Invalid ID: Cannot fail callback with id \(id) because it has not been processed yet" + ) + + // keep historic statuses for future queries after garbage collection + self.historicCallbacks[callback.id] = HistoricCallback( + timestamp: callback.scheduledTimestamp, + status: Status.Failed + ) + + // Deposit all the fees into the FlowFees vault + destroy callback.payAndWithdrawFees(multiplierToWithdraw: 0.0) + + emit Executed( + id: callback.id, + priority: callback.priority.rawValue, + executionEffort: callback.executionEffort, + fees: callback.fees.balance, + callbackOwner: callback.handler.address, + status: Status.Failed.rawValue + ) + + self.finalizeCallback(callback: callback, status: Status.Failed) } /// finalizes the callback by setting the status to executed or canceled and emitting the appropriate event. @@ -881,8 +945,8 @@ access(all) contract FlowCallbackScheduler { /// in the same block after it is processed so it won't get processed twice access(contract) fun finalizeCallback(callback: &CallbackData, status: Status) { pre { - status == Status.Executed || status == Status.Canceled: - "Invalid status: The provided status to finalizeCallback must be Executed or Canceled" + status == Status.Succeeded || status == Status.Failed || status == Status.Canceled: + "Invalid status: The provided status to finalizeCallback must be Succeeded, Failed, or Canceled" } callback.setStatus(newStatus: status) diff --git a/contracts/testContracts/TestFlowCallbackHandler.cdc b/contracts/testContracts/TestFlowCallbackHandler.cdc index 1add17b8..bd61d5fd 100644 --- a/contracts/testContracts/TestFlowCallbackHandler.cdc +++ b/contracts/testContracts/TestFlowCallbackHandler.cdc @@ -5,7 +5,7 @@ import "FungibleToken" // TestFlowCallbackHandler is a simplified test contract for testing CallbackScheduler access(all) contract TestFlowCallbackHandler { access(all) var scheduledCallbacks: {UInt64: FlowCallbackScheduler.ScheduledCallback} - access(all) var executedCallbacks: [UInt64] + access(all) var succeededCallbacks: [UInt64] access(all) let HandlerStoragePath: StoragePath access(all) let HandlerPublicPath: PublicPath @@ -21,7 +21,7 @@ access(all) contract TestFlowCallbackHandler { panic("Callback \(id) failed") } else { // All other regular test cases should succeed - TestFlowCallbackHandler.executedCallbacks.append(id) + TestFlowCallbackHandler.succeededCallbacks.append(id) } } else if let dataCap = data as? Capability { // Testing scheduling a callback with a callback @@ -55,8 +55,8 @@ access(all) contract TestFlowCallbackHandler { return <-FlowCallbackScheduler.cancel(callback: callback) } - access(all) fun getExecutedCallbacks(): [UInt64] { - return self.executedCallbacks + access(all) fun getSucceededCallbacks(): [UInt64] { + return self.succeededCallbacks } access(contract) fun getFeeFromVault(amount: UFix64): @FlowToken.Vault { @@ -69,7 +69,7 @@ access(all) contract TestFlowCallbackHandler { access(all) init() { self.scheduledCallbacks = {} - self.executedCallbacks = [] + self.succeededCallbacks = [] self.HandlerStoragePath = /storage/testCallbackHandler self.HandlerPublicPath = /public/testCallbackHandler diff --git a/flow.json b/flow.json index 66178002..d9d652be 100644 --- a/flow.json +++ b/flow.json @@ -21,7 +21,7 @@ "source": "./contracts/FlowCallbackScheduler.cdc", "aliases": { "emulator": "f8d6e0586b0a20c7", - "testing": "0000000000000007" + "testing": "0000000000000001" } }, "FlowClusterQC": { @@ -169,7 +169,7 @@ "source": "./contracts/testContracts/TestFlowCallbackHandler.cdc", "aliases": { "emulator": "f8d6e0586b0a20c7", - "testing": "0000000000000007" + "testing": "0000000000000001" } } }, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index f04a2f04..d833273f 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: // Crypto.cdc (4.588kB) -// FlowCallbackScheduler.cdc (47.691kB) +// FlowCallbackScheduler.cdc (50.157kB) // FlowExecutionParameters.cdc (1.073kB) // FlowFees.cdc (9.579kB) // FlowIDTableStaking.cdc (103.916kB) @@ -17,7 +17,7 @@ // epochs/FlowClusterQC.cdc (18.954kB) // epochs/FlowDKG.cdc (29.087kB) // epochs/FlowEpoch.cdc (64.983kB) -// testContracts/TestFlowCallbackHandler.cdc (3.285kB) +// testContracts/TestFlowCallbackHandler.cdc (3.29kB) // testContracts/TestFlowIDTableStaking.cdc (9.238kB) package assets @@ -107,7 +107,7 @@ func cryptoCdc() (*asset, error) { return a, nil } -var _flowcallbackschedulerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x8f\x1c\x37\x92\xe0\xbb\x7e\x05\xa5\x07\xb9\xca\x6a\x55\xb7\x3c\xa3\xc1\xa1\xd0\x25\x8d\x2c\x59\x37\x8d\xb3\xd6\x3e\x49\x9e\x39\xc0\x63\xac\xd9\x99\xcc\x2a\x9e\xb2\x92\xe5\x24\xb3\xcb\x35\xb2\x80\xc3\x3e\xdf\xc3\x3e\xcc\xc3\xfd\xbe\xfd\x25\x07\x06\xbf\xbf\x32\xab\xda\xb2\xbc\x07\x5c\x63\xb1\x63\x55\xf2\x23\x22\x18\x0c\x46\x04\x23\x82\x74\xbb\x63\xbd\x40\xf7\x5e\xb6\x6c\xff\x96\xbd\x23\xdd\xbd\x3b\xfe\x4f\x2f\x09\xe1\xe1\x2f\x6f\x04\xeb\xf1\x9a\xa8\x0f\x77\xce\xcf\xcf\x91\xfc\xf5\x39\x6e\xdb\x6b\x5c\xbd\x7b\x53\x6d\x48\x3d\xb4\xa4\x47\x77\x70\x55\x11\xce\x67\xb8\x6d\xe7\xa8\x62\x9d\xe8\x71\x25\x0a\x6d\xdf\xdf\xb9\x83\x10\x42\x72\x30\x4e\xbb\x75\x4b\x04\xeb\x10\xed\xb8\xc0\x5d\x45\xd0\xc0\x49\x8d\x04\x43\x5c\xb0\x9e\x20\xdc\xb6\xa8\xd2\x23\xa0\x1a\x0b\x6c\xbb\xe2\xae\x46\x3d\x1b\x44\xd4\xa6\x19\xba\x4a\x50\xd6\xe1\x96\x8a\x03\x34\xd6\x90\x71\xd2\x36\x73\x74\x83\x7b\xc4\x37\xb8\x27\xb5\x85\x67\x89\x9e\xe3\x1d\xbe\xa6\xb2\xc3\x25\x1e\xc4\x66\xf6\x5c\x02\xd2\xce\xd1\xfd\x37\x61\xcb\x27\x0e\xf0\xaf\xba\x61\xcb\xfd\xe1\x01\x71\xd2\x0d\x5b\xf4\x6d\x4f\x59\x4f\xc5\x61\x89\xbe\xbb\xea\xc4\x7f\x41\xef\xa1\x59\xdc\xb4\xc2\x9c\xa0\xbf\xd0\xf5\xa6\xfc\xf5\x15\xa9\xe9\xb0\x2d\x7f\xff\x9a\xed\xe1\xe3\x87\x3b\x79\x40\xde\x08\x2c\x06\x9e\x82\x21\xe1\xdf\x0e\x02\x5f\xb7\x04\x71\x68\x43\x78\x79\x16\x83\x7d\x5d\x6e\xf2\x6d\xcf\xe4\x2f\x5e\x13\x39\x45\x43\xe5\x22\xfc\x83\xd4\x47\x4c\xf2\xd5\xcf\xa4\x1a\xc4\xd8\x1c\x6a\x4d\x74\x8b\x0f\xde\x42\xdc\x90\x4e\x64\x56\x42\xfe\xec\x60\x9f\xd9\x81\x69\xad\x08\xf2\xa7\x3f\x9e\xd9\xdf\x76\xe1\x8a\xb9\x0f\x82\x6e\x09\x17\x78\xbb\x5b\xa2\xef\x5e\xd2\x9f\xfd\x3e\x04\x20\xa6\xac\xfb\xaa\x69\x58\x2f\xd2\x41\x1b\x42\x78\xda\xcd\xf0\xe9\x37\xfb\x4e\x72\xde\xb3\xba\xee\x09\x57\xe0\xcf\x33\xcb\x08\x58\x58\xf2\xde\x12\x8b\x49\x50\x6f\x03\x94\x59\xb1\xdf\x0a\xa6\x8f\x47\x3e\xc3\x39\xb7\x84\x54\x02\xf2\x9a\x88\xa1\xef\x48\x9d\x02\x24\xbf\xbe\x20\xf5\x50\x89\xdc\xd7\x69\x70\x25\x07\x6f\xb7\x54\x08\x52\xa3\xfd\x86\x74\x88\x75\x04\xb1\x1e\x6d\xa5\xf0\x63\x0d\x12\x1b\x22\xc5\x69\x43\xd7\x43\x8f\x25\xbd\x50\x4d\x04\xa6\x2d\x47\x0d\x25\x6d\xcd\x11\xee\x09\x1a\x76\x35\x36\x9b\xc7\x6c\x09\xd4\x52\x2e\x48\x47\x7a\x8e\x2a\xdc\xe9\x7f\x49\xb9\x2a\x36\x94\x83\xf0\xfc\x69\x20\xfd\x01\x26\xe8\xc8\x3e\x9c\xc4\x8c\x44\x01\x80\x03\xea\x08\xc8\xe4\x12\x81\xa1\xeb\x77\x0a\x88\xd9\xdc\x17\x92\x82\x8a\x96\x6c\xf3\x3b\xd4\x7d\x34\xcc\x34\xda\x46\x2d\xe3\x68\x13\x05\x82\x02\xc7\x41\x71\xd5\x09\xd2\x37\xb8\x22\xdc\xfd\xf6\x56\x92\xd5\x1c\x19\x1b\xdc\xd5\xf2\x5c\x02\xba\x20\x6a\x9a\x23\xb1\xc1\x02\xd5\xa4\xa1\x1d\xe1\x08\xeb\xb3\x0a\x6d\x89\xd8\xb0\x5a\x33\x30\x31\xa7\x9b\x6a\x6c\xc7\xdf\x0e\x5c\xa0\x6b\x82\xe8\x76\xa7\x60\x23\x35\xba\x56\xc4\xee\x09\x67\x43\x6f\x86\xdf\xb3\xa1\xad\x51\x4b\xdf\x11\x38\xf3\xb4\xbc\x52\xcb\xae\x87\x5e\xa0\x3c\xd8\x6b\x22\xb8\x01\xc3\x8e\xce\xed\x29\x6b\x0f\xe1\xeb\x03\xf4\xa1\xdd\x1a\x5a\xc8\x13\x8e\xf5\x20\x97\xdd\xb9\xe7\xa6\x50\x50\x61\x8e\x76\x3d\xbb\xa1\xb5\x61\x4b\x33\x6e\xbd\x48\x56\xc0\x22\xe4\x28\x67\xa8\xf2\x17\x4d\xd9\xf0\xec\xd1\xab\xcd\x01\x1c\x9f\x42\x16\xb5\x96\xad\x69\xe5\xf7\x09\xfa\xff\x79\x87\x7b\xbc\x85\x5d\x2c\x09\x42\x6b\xb3\x51\x2c\x90\x6e\xa4\x19\xb0\xbb\xdc\x01\xd7\xa0\x5a\x34\x43\x8b\x1a\xd6\x23\xdc\x1d\x14\xbc\x1d\x6e\x91\xa4\xd3\x3b\xda\xad\xe7\xb9\x69\xa4\xd2\xa1\x26\x92\xff\xe5\xd1\x07\x4b\x91\xac\xa8\xe3\x2f\x17\x7c\x64\x3d\x5d\xcb\xe3\xaf\x3d\x38\xa0\xe2\xb3\x4d\x93\x61\x2e\x55\x96\x98\x9d\x66\x9e\x88\xd2\x10\x3c\xeb\x0e\x6f\x44\x3f\x54\xe2\xe9\x3c\x3e\x03\xd5\xef\x1e\x7b\xdb\x73\xcf\xb2\xa7\xe4\x06\x4c\x3b\xc9\xc7\x9a\x81\x05\x43\xd5\x86\x00\xe7\x7a\xc0\xab\xa3\x1a\xe4\x83\x26\x9a\xc6\x53\x7e\x75\x4c\xc2\x4a\xcc\x26\x47\x85\x8d\x1a\x0e\x4b\x1b\x44\x05\xda\x60\x8e\x3a\x26\xd0\x81\xc8\xcd\x41\x2c\xd6\xb5\xc7\xe2\x57\x02\x26\x66\x5d\x7b\x90\xb3\x57\x3d\xc1\xe3\xec\x2d\x18\xda\xf5\x4a\x10\xf1\x1d\x63\x0d\xed\xd6\x29\x8f\x72\xa0\x50\x86\x2e\x89\x72\xa6\xd4\xc4\x96\x08\x37\xd7\x29\x0a\x62\x34\x1a\x4c\x2e\x07\x73\xeb\x59\x6c\x92\x28\x1b\x77\xb2\x4d\x6f\x28\xd9\x03\xcb\xa8\xa5\x9a\xcd\x97\x5a\xd1\x7b\xea\x21\x23\xff\x7a\x38\xb4\x90\x44\x68\x61\x71\x59\x5c\xb3\xbe\x67\xfb\xd9\xfc\xee\x62\x4d\x84\xea\x08\xcc\x06\xcd\x68\xed\xb6\xc0\x87\x64\x7a\x43\xf2\x39\xa2\x1d\x15\xb3\x60\xb2\xdb\x10\xeb\x2c\x18\xc1\xe7\xf8\xe0\x43\x4a\x17\xf3\x65\x1e\x61\xbc\xeb\x49\xf4\x4b\x00\xda\x02\xf8\x7d\x36\x5f\x26\x4d\xe4\xdf\xbd\xab\xee\x06\xb7\xb4\x46\xce\x50\xf1\xe4\x63\x28\x0d\x25\xfe\x54\x2a\xb7\x52\xa8\xa6\x4c\xb5\xa7\x62\x23\xc5\xd2\xdf\x67\xb4\x9e\xdf\x0b\x66\xfb\x10\x52\x2d\x58\x1b\xb4\x72\xb0\xa6\xcd\x68\x8d\x56\x88\xd6\xe9\x07\x4b\x1f\xb4\x72\xb4\xba\x13\x4e\xe8\x2b\xcc\x5c\xd0\x2d\x0e\xc4\xad\x15\x0e\x20\xe1\xa4\x78\x24\xaa\x91\x44\xcf\x89\x06\x05\xdb\xd8\xfe\xb2\x63\x67\xf6\x17\x98\x04\xca\xc6\x94\x27\xad\xdc\xcd\xc4\x82\xd2\xc8\x1f\x3b\xb0\x17\x61\xfe\x40\x78\x08\x26\x25\x41\x51\x8e\xda\x0d\xa4\x47\x37\x6c\xf2\x34\x98\xda\x51\x89\x72\x6f\x62\x77\x64\xb8\x06\x09\x00\x52\xe2\x6f\x68\xb5\x91\x32\x6c\x4f\xdb\x56\x82\x43\x3c\x95\x25\x07\x4c\xc2\xb5\x21\x38\xa4\xef\x99\xd1\x38\xd8\x4e\x19\xac\xfa\xc7\x2d\xe1\x1c\xaf\x89\x56\xbe\xbc\x55\xc2\x9d\x14\x9e\x47\x91\x02\x46\x92\x82\xa1\xa7\xdd\xfa\xe9\xc8\x4e\x06\x69\x02\xdb\x39\xa6\xde\x59\x06\x85\xb3\x68\xe0\x78\x03\x02\x3f\x9a\x45\x5e\x99\x05\x39\x95\x65\x6d\x33\x45\x8f\x95\x9a\xb4\xcc\xd1\xcf\x7d\xff\x80\xaf\xc5\x49\x9a\xf6\x64\xd7\x13\x4e\x3a\xa1\xb4\x67\xd6\x48\x4d\x2e\xd5\x13\xd4\xfa\xba\x53\xb2\x55\x07\x58\xe0\x4d\x40\xfe\xf9\x67\xc6\x38\x93\xa2\x41\x12\x15\xce\x4c\xcd\x15\x88\x60\x39\x5a\xa8\xc0\x65\x75\x26\x03\xfb\x0b\x09\x7a\xde\x53\x70\xe4\xf1\xe1\x0c\x18\xe3\x80\x28\x73\x47\xde\xf8\xca\x1f\x37\xb8\xd7\x27\x8d\x39\x67\xee\x04\x8c\x2c\x15\x23\xb7\x9c\x56\x3b\xea\xc9\x4f\x03\xe1\xb0\xb5\x61\x37\x81\x12\xa6\x50\x0d\xba\xbf\xc2\x70\xcc\xd7\xb4\x69\x48\x2f\xcf\x70\xb1\xc1\x4a\x9f\xc2\x95\x18\x70\x5b\xdc\xa0\x52\x52\xdc\x47\x5b\x70\x91\x58\xdc\xed\x1c\x79\x57\x83\xc4\xdd\x68\x66\x6f\xcb\xa7\xad\x41\x4b\x43\x10\x61\x17\xea\x35\xdc\x03\xb0\xf1\x98\x34\x21\xa1\x69\x35\x31\xaf\x77\xe4\x68\x25\x0b\x74\xe1\xcc\xd4\x20\x88\x0a\x52\xc8\xed\x6f\x89\xb2\xb6\x6f\xd2\x93\xd9\x6a\xa0\xf7\xdf\x47\x1a\xfb\x87\x27\x21\x58\xdf\x18\x11\xe5\x74\xe0\x50\x3d\xd4\xc0\xea\xa9\xc6\xe1\x89\xf5\xd9\x70\xaa\x97\x44\x5a\x06\x0c\xed\xf0\x21\x91\xc4\xe3\xe3\x2a\x97\xc1\x9f\xad\x6f\x73\xf1\x57\x3c\xb4\xe2\x24\x35\x26\xe7\x19\x90\x7f\xb7\x22\x61\x38\x44\x8c\x75\xf8\xb5\xc8\x96\x67\x91\x86\x13\x6f\xf2\xf0\xfb\xa4\x5b\x05\x59\xd7\x4a\x4c\xa7\xb3\xac\x3e\x97\xe1\x57\xd3\x24\x2b\xfc\x8b\x5a\x8a\x31\xb2\x57\x09\x8f\xd8\x26\xc0\x5b\x2b\xe7\xe5\x0d\x3e\x26\x04\x42\xab\x94\x68\x69\x37\x2b\x19\x56\x96\x76\x99\x73\x26\xa4\x9a\x3c\x71\xc2\x5f\x32\x87\x9c\xe4\xd2\xcb\x87\x40\xcb\x8c\x4a\xa7\xac\xa8\x95\x96\x98\x8b\xd4\x87\x8a\x62\xed\xaf\xf6\x11\x4b\x7f\xcc\xa9\xe5\xe0\x40\x37\x4a\xbc\x76\x02\x29\xc5\x4a\xcf\xcf\x42\x0d\x62\x11\xf4\xbc\x12\x68\x87\x3b\x5a\xf1\x44\xd1\xd0\xbd\xe5\x41\xda\xf6\x04\xd7\x07\xe7\xca\x5d\x94\x37\x13\x98\x24\xd6\xa4\xe8\xc8\xfe\x4d\x70\x6a\x1c\xa9\xab\x7b\xd4\xbb\x6b\xc9\x67\x7c\x8d\xe8\xfe\xfd\x42\x0b\xe3\xe3\x9b\x50\xed\xcd\x41\x96\xd1\xd4\x8d\xfd\x93\x45\xfb\x5e\x32\xac\xc5\x0f\xad\x52\x30\x9f\x86\x5c\x60\x1b\x58\x47\x2e\x5a\x22\xd1\x0f\xe4\x23\x40\xeb\x94\xc2\x2d\xee\xdf\x91\x1a\x61\x6e\x5d\xb3\x68\xe8\x04\x6d\x11\x6e\x04\xe9\xa5\xea\x4a\xb9\x73\x25\x1f\x87\x91\x03\xb8\x84\x92\xe5\xec\x8f\x8a\x92\x35\xff\x39\x11\x12\x23\x07\x87\x72\x24\x50\xee\xac\xae\xd8\xbe\x1a\xd9\x8d\x16\xc5\xd2\x6e\xda\xe1\xc3\xb3\xae\xfe\x1b\x15\x9b\xba\xc7\x70\x1b\x06\x00\xca\x7f\x70\xd8\xea\xa8\xe9\xd9\x36\xdc\x2d\xd7\x58\xc2\xc5\x3a\xed\xdc\x6b\x86\xae\x46\xdb\xa1\x15\x74\xd7\x52\xd2\x2f\x22\xad\x42\x72\x17\x68\x94\x12\x07\xc0\x12\xb7\x2d\xdb\x6b\x3d\xa9\xd2\x6c\xec\xf4\x98\x33\xc4\xc4\x86\xf4\x7b\xca\x89\x44\x5c\xed\xd8\x64\x23\xd7\x64\xc7\x38\x15\x1c\xdc\x5a\x2d\x69\x04\xbb\x21\xbd\x02\x58\x1f\xcc\xe6\x76\x0f\xdd\x48\x59\xaf\x4d\x2a\x73\xd5\x26\x8f\xda\x8e\xd5\x04\xb1\x1d\xe9\xb1\x60\x3d\xea\xc9\x1e\xf7\x75\xa2\x45\x85\xbb\x3d\xa5\xd6\xcc\x21\xfe\x96\x99\x0f\xe6\xe0\x98\xa7\x67\x4e\x24\x01\x68\x83\x72\x03\x48\x76\xbb\x58\x5c\x64\xc4\x85\xc1\x6a\xa1\x09\x30\x93\xcb\xb3\x44\x97\x0f\xad\x8c\x5e\x98\xf5\x9b\xe1\x2d\x1b\x3a\xb1\x74\xe2\x7b\x71\x8d\x5b\x49\xef\xf9\x3c\x19\x57\xbb\x4e\x2e\x1f\x3a\x78\x95\x23\xea\xab\xed\x4e\x1c\x00\xf4\x19\x10\xf2\xed\x61\x47\x96\x48\xfe\xff\xcb\x18\xb7\x27\xb3\x68\xe0\x0f\x88\xb4\x3c\x27\xf4\xa4\xee\xa2\xa0\x93\xa2\x3f\x06\x0f\x7d\x9e\x25\x4a\x76\x14\xd9\xef\x2d\x7b\x6d\xa0\x47\x23\x64\x50\xff\x3b\x47\x98\xdf\x4d\x55\xa6\x4f\x4e\x67\x1f\xf0\x82\xbf\x24\xda\xaa\x6b\x22\xc0\x66\xaa\xd8\x8e\x12\x65\x7c\xa9\xd1\xd4\x09\xa8\x3c\x19\x94\xb4\x79\x1b\xd9\x3a\xd1\xf4\x30\xb3\xb9\xaf\x9a\x8d\x38\xd2\x02\xe5\x24\x75\x91\x85\x83\x0b\xa6\xec\x64\xe5\xa3\x93\xff\x95\x1f\xf9\x9e\x73\x57\x4b\x05\xd4\xc9\xc2\x33\x2b\x30\xf5\x6f\xea\x9f\x8b\x1e\xef\xff\x8a\xdb\x81\xcc\x03\x23\xdd\xb4\x49\x94\x87\xf9\x99\xa7\x38\xea\x56\xe6\x07\x7f\xac\x44\x7b\xd4\x6d\xa3\xdf\xe7\x67\xf1\xc5\x96\x6e\xa7\x35\xbb\x05\x56\xf7\x5c\x73\xcf\xf7\x95\x18\xed\x8a\xd4\xde\x9d\x81\x35\xd4\x25\x99\x8c\xfd\x2d\x85\x6b\xe1\xfe\x8b\x2a\x89\xfb\x26\xf1\x08\x87\x57\x19\x94\x2b\x31\x27\xc5\xeb\x5a\x8a\xc5\xce\x5c\x84\xec\x7a\x26\x58\xc5\x5a\xef\x76\x85\xf2\xf4\x12\x88\x29\x09\xed\x6c\x91\x2c\x34\x5a\xa0\xaa\x3b\x30\x03\x5b\x33\x88\xa1\x4f\x6f\xb5\x78\x8c\xba\xc5\x41\x5d\x5d\x45\x4e\x33\xde\x32\x29\xb0\x05\x6e\x11\x51\xfa\x69\x4b\xb7\xea\x10\x94\x93\x6c\xf1\xcf\x74\x3b\x6c\xcd\x37\xdf\x36\x0b\x86\xa9\x86\xed\xd0\x62\x41\x6f\x88\x3e\x74\x2a\x00\x55\x30\xb8\x72\x04\x36\x92\x13\x5d\xc3\x47\xc3\x2f\xb4\x70\x69\x0f\x26\x6d\xcb\xc4\x5b\x09\x96\xe2\x8a\xaf\x25\x50\xd6\x95\x90\x62\xa0\xa2\x2e\x8e\x41\x21\xf4\xdb\x79\xf8\x04\x50\x6f\xe8\x7a\x03\xdb\x3e\xf6\x01\x84\x58\x9b\x83\x14\x55\x6c\x7b\x4d\x3b\xa9\x21\x81\x3e\x24\x36\x84\xf6\x88\xfc\x5c\xb5\x03\xa7\x37\xc4\xcc\x2d\x59\xb0\xbf\x21\x1c\x6d\xf0\x0d\x51\x97\x14\x0d\x6d\x4b\xae\x36\x43\x06\xe5\xd9\x9e\xa4\x83\x05\x31\x9c\xcc\x90\x41\x9f\x01\xac\x09\xd6\x92\xf2\x10\x23\xdd\xa9\x76\xb0\xb7\xca\x50\x06\x9f\x53\x62\xe4\xc4\xe0\x9a\x06\x0a\xd8\xd7\x6a\xb0\x25\x7a\x1f\x46\xad\xfc\xe9\x8f\xb1\x66\x14\x81\x3e\xb6\x7e\x3b\xe2\xa6\x91\x5b\x01\x5b\xee\x3a\x12\x2a\x4d\xc2\x29\x98\xb6\xb4\x53\xd3\x1a\xf1\x64\x00\x30\x60\x99\xef\x13\x3b\xc3\xca\x07\xa9\x3d\x4d\x12\x50\x8f\xfa\x55\xc1\x87\x96\xa7\x5a\x43\x88\x77\x8a\xab\x5b\xfb\x1b\x29\x75\x39\xda\x83\x1e\xa6\x2e\xce\xda\x4a\x6e\x51\x75\xfd\x8b\xeb\x9a\xd4\x28\x1a\x0e\xd4\x60\x29\xc0\xe4\x80\xa7\x2f\xfa\x4b\x42\x5e\x39\x28\x42\x0a\x83\x8e\x16\x51\x38\x51\x67\x0d\x69\x77\xac\x37\xee\x54\x10\x74\xa0\x69\x4a\xfa\x4a\xc4\x54\x2f\x73\x57\x82\x03\x6f\x99\xd2\x70\xc7\xf6\x93\xea\xed\xc0\xcc\xfb\xc9\x36\x94\x0b\xd6\xd3\xca\x18\xab\x59\x7e\xc4\x6b\xa2\x1c\xbe\xb6\x75\xa2\x60\x9b\xfe\x7b\x82\xde\x11\xb2\x43\xd7\xa4\x61\x3d\x91\x6a\x01\x9c\x43\xbb\x7e\xe8\x46\x60\x35\xe3\x2a\xab\xc2\xec\xfc\x91\xcb\xbb\xcc\xc5\xd9\x98\xf8\xc8\x3b\x7f\x26\xb7\xee\x58\xb7\xe2\xde\x0a\x3b\x8d\x73\x79\x7e\x82\x69\xee\x3a\x8b\xb4\x9f\xfc\x4a\x47\xae\xb7\x11\x1a\x9b\x36\xc7\x39\x17\xe2\xf9\xd0\x13\x65\x57\xdc\xbf\x9f\x7e\xba\x5c\xa1\x47\x8b\x8b\x09\x6b\x36\xd9\x1e\x2a\x4e\xc0\xdb\x2e\x26\x0e\xe4\x9a\x88\xbd\x3c\x4b\xe4\x74\xf2\xcc\x7a\xb4\xb8\x40\xd7\x83\x40\x6b\x26\xd0\xdf\x67\xf1\xec\xf3\xd4\x3a\xcf\x50\x41\x82\xff\x48\x81\x9f\xfb\x7a\x29\x99\xf8\xf9\xd0\xf7\xa4\x13\x5f\xb6\xac\x7a\x37\x9b\xbb\x7b\x97\x09\xc4\xb2\xbb\x6b\x89\xd4\xc0\x06\xa7\x35\x58\x44\xbd\xf2\xd8\x3f\xd2\x88\xb5\x84\x73\xe7\xc3\xaf\xd4\xf4\x9e\x0b\xdd\x21\x9d\x81\x39\x83\x77\x9e\xb7\xbe\x37\x9c\xb5\xf8\x9a\xed\x7f\xb8\xab\x29\x31\x81\x54\x41\x18\x2f\xd1\xd7\x6c\xef\x3e\x66\x16\x2f\x40\x54\xca\xdc\x9f\xe0\x5a\x80\x45\xab\x78\x14\xa8\xb7\x40\x51\x85\x81\x4a\x2c\x8f\xa3\xc6\x6d\xc9\xf0\x2a\xd2\xa3\x4e\xa1\xc4\xb1\xd8\x9f\x40\x2e\x83\xf6\x2d\x28\xf6\x17\xba\xde\x1c\x45\x2f\x33\xc7\x6d\x49\x26\x27\xfa\xad\x08\x66\xf1\x3f\x81\x66\x0a\xf1\x11\x8a\x79\x67\x40\x4a\xae\x55\xfe\x84\x89\x1b\x1e\x4b\x2c\x5f\x53\x8c\x49\x15\x68\x91\x93\xc4\x52\xd6\x5a\x5e\x77\x66\x8d\x47\x97\x51\xb8\x4f\x25\x8b\xdb\x77\x93\x84\x39\x95\x8f\x42\xd2\xc4\x1b\xef\xd3\x12\xe7\x88\x7d\x96\x25\x8f\x95\xbc\x13\xe3\x9f\x24\x93\x42\xc2\x04\x82\xf9\xd3\x52\x25\x27\xac\x3f\x8c\x84\x20\xb0\xae\xea\x89\xf0\xc2\x19\xb1\xaf\x1f\xc7\x06\xbe\x35\xfd\x43\xdf\x83\x71\x0c\xf0\x28\x09\xa2\xec\x76\x18\x77\x82\x64\x9c\x0e\x0a\x80\xe5\x88\xcb\xe1\x24\x33\x7f\xac\x53\xd9\x28\x2e\xf5\x3a\xde\x36\x3d\x6e\x84\xb2\x1d\x59\xea\x3f\x61\xdc\x4d\x4d\x7b\x84\x7d\x55\x1a\xa2\x68\xf6\x94\x3a\xfc\x7f\xdb\x03\xfd\xa7\xb4\x3d\x94\x0f\x36\xb3\x69\xd0\x2a\x4f\x70\xf4\xe0\xb8\x73\x77\xba\x9d\x11\xe5\x79\x78\xd2\x89\x0b\x00\x95\x6f\xd1\x83\x79\x51\x41\xf4\x4f\x75\x37\x73\x67\x7e\x4d\xbb\xe6\x79\x01\xad\x0a\x4c\x52\x9e\x3b\x64\x10\x6f\xfa\xf0\x43\x3a\x40\x62\x1a\xae\x12\xe6\xc9\x44\x3b\x64\x0c\xb2\x55\x8e\x9d\xca\x47\xca\x6b\x1d\x22\xe6\x87\x75\x2b\x17\xaa\x0b\x18\xa5\x1c\xe1\x28\xa1\xc0\x1c\x1e\xd8\xa5\x2c\xa8\xf4\xba\x52\xfc\x34\x84\x7a\x9b\xb8\x37\x3b\x55\x3e\x00\x6e\x32\xee\xcd\xb9\x5b\x31\x47\x7b\xd2\xb6\xf2\x7f\x21\xcc\xdf\xc4\xe3\x49\x8b\x92\x8c\x45\xc4\x45\x51\xc2\x91\x33\xbc\x23\x3f\x8b\xab\x17\x0e\x60\x95\xbe\xf2\xb3\x70\x0e\x9d\xab\x17\xda\x19\x8f\x39\xa7\xeb\x8c\xf7\xc6\x0b\x7e\xc4\xbd\x1e\x30\xef\xbe\x73\xd8\x00\xa1\xb7\x78\x27\x0f\x74\x6f\x26\xae\xdd\x76\x51\x7a\x62\x71\x32\x3b\xe0\x12\xfd\xf9\xbd\x9a\x71\x19\x84\x00\x7e\xc8\x03\x60\xec\xf0\x2d\xde\xf1\x31\x67\x96\x86\x48\xf9\xb6\x4d\x74\x8c\xb3\xbe\x47\xee\x73\xfd\x13\xc5\x04\x53\x3c\x77\xd0\x5a\x60\xb3\x6e\x42\xf0\xef\xff\x34\x90\x81\x04\x84\x72\xf3\x06\x64\x92\x40\x4a\x9e\x31\x1e\xf8\xd0\x79\x3b\x01\xa3\x9c\xea\xbf\xcb\x99\x24\x4c\x00\x8b\x0f\x9c\x3a\x4d\x72\xd0\xc1\x9e\x70\xee\xe1\x1c\x8c\xfa\x17\x77\xf3\x01\x50\x06\x43\x69\x10\xd5\x4e\xdb\x60\xae\x2e\x08\xac\xff\x58\x6c\x48\xd1\xd5\x9d\xa2\xf1\x1d\x37\x52\xd7\xc7\x25\x39\x1b\x23\x6c\x5a\x5f\x27\x76\x0c\x5a\xb3\xee\x33\x81\xd6\x10\x2e\xa1\xd8\xde\xb8\xdd\x25\x72\x67\x21\x1a\x9c\x59\xaf\x33\xa8\x9d\x3b\x52\x51\xdc\x2a\x87\x74\x19\xee\x96\x08\x39\xbb\x01\xf0\xcd\x91\x11\x8d\xfa\xa2\x4f\x79\xdf\xe3\xf8\xda\x42\x6a\x5b\x1c\x80\xed\xc4\x56\x70\x69\x87\x6c\xd0\x64\xe7\xdf\xbe\xe9\x5c\x11\xb6\xef\x48\xef\xe5\xd0\x39\xbd\xb8\xbc\x3f\x7d\x70\x5e\x28\x68\x96\xe8\x7d\xa4\x2c\x17\xae\x7d\x41\xbf\xca\x6a\x03\x5a\x68\xad\xd0\xa3\xf4\xdb\x28\x45\x11\x38\x28\x83\x4e\xe9\x08\x8e\x09\x2e\x1f\xa2\xf7\x99\x04\x83\xe2\xbe\x46\xab\x6c\xfb\x90\x39\x65\xa3\xc4\x7a\x9b\x06\x7d\x99\xe9\x25\xff\x02\xa5\x66\x89\x2e\xce\xc6\x5b\x29\x95\x66\xba\xdd\xd7\x6c\xbf\x44\x17\x49\x9b\x0f\x05\x03\x2e\xc0\x15\xe4\xc9\xed\xd1\x1c\x9b\x23\xf8\xc7\xf9\xe7\xe8\x05\x69\x20\xee\x05\x64\x92\x91\x26\xe0\x37\x95\xca\x00\x47\x2d\x63\xef\x74\x36\xe0\x86\xf2\xe5\x9d\x04\x22\xc7\x1a\x6f\xe4\x10\xb3\x3f\x3c\x7e\x47\x48\x1a\x58\xf1\x1f\xff\xfc\xdf\xff\xf1\xcf\xff\xf5\xf1\xfe\xef\xdf\x33\x33\xfc\xdb\x49\xb3\xfc\x7b\xd0\xb3\x30\xdc\xbf\x29\x37\xd1\x37\x5d\x7b\xd0\xbf\xf9\xdf\x15\xc7\xfc\xe1\xe2\x1d\x81\x2b\x9e\xe2\x18\x08\x7d\x01\x6d\x50\x66\x8c\xd9\x17\x17\xde\xa5\xef\x03\xf4\xe8\x42\x5f\x4c\xe7\x68\x28\x87\xfb\xe7\xd1\x18\xfe\x1f\xbf\x67\x32\xda\x2f\xb7\x58\x13\x43\xb3\x5f\xb2\xb0\xfd\x82\x8c\x42\xf8\x2d\x63\xad\x8f\x6a\xda\xfe\x17\x85\xbc\xa4\xe0\x03\xb5\xa5\xe6\x47\xb4\x97\x7f\x8f\x32\xa4\xcc\xb7\x3f\x9e\x52\x21\xbd\xf2\xd8\xdd\x9e\xb7\x8c\xc8\x78\xf4\x58\x33\x0a\x2a\xb3\x9b\x76\xbd\x01\xc3\x25\xac\xf2\xf8\x34\x4e\x91\xbd\x1f\x1b\x62\xc5\xa3\xfd\xc6\xdc\x75\x2a\xc5\xca\x94\x94\x23\x81\x30\x7d\x3c\xb5\xcd\xbe\x66\x7b\x34\xa3\x0d\xe2\x3b\x5c\x11\x88\x3a\x9c\xdb\x6f\x33\xa7\xd6\x49\x25\x04\x22\x1d\xc7\xe8\x86\x02\xda\x79\xdf\x7e\x35\xdd\xca\xf4\xcc\x8f\xfe\xeb\x47\x0e\x66\x09\x66\xf8\xfc\x3c\x14\xe8\x90\x65\x5a\xf2\xbf\x48\x75\xe1\xe2\x5f\x2f\x2e\x2e\x92\x2e\x1b\xba\xde\x7c\x9b\xf7\xc7\xd8\xae\x5f\xe4\xbb\xaa\x58\x99\xa9\xce\x8f\xa1\x6f\x46\xd3\xc8\xa8\x47\x68\xa5\x7d\x8a\xb3\xf4\xf4\xcc\xbb\x97\x12\x8c\xd3\xa3\xbd\xe4\x6d\x3a\x46\xa3\x28\x52\xe7\x48\x4d\x63\x84\x44\xb7\xd4\x41\xa6\xf0\x33\x6e\xb1\x5f\x85\x1d\x7a\x70\x0c\x61\x4f\xc5\xf8\x16\xa3\x2a\xe1\x91\x70\x5f\x81\x12\x25\x5f\xdf\xe3\x32\xd1\x12\x57\xdf\x31\x74\x7b\x74\xb1\x38\x56\xd5\x7c\x3c\xd9\x12\x50\xfc\x62\x71\x14\x82\xa9\xa3\xf1\x62\x91\x41\x2e\xeb\x69\xfc\xc3\xc5\xe2\x02\x7d\x8e\xbe\xf8\x23\xfc\xcf\x9f\x2e\xdc\xff\x9c\x9f\xa3\x3f\x5c\xa0\x1a\x1f\x42\x87\x55\x36\x7b\x5b\x5a\x48\xff\x95\x08\xf0\x07\x29\x5b\x4c\x9b\x61\x7e\xa0\x65\xd6\x10\x0b\x86\x88\xaf\x32\xac\xc7\x26\x6b\x0c\xe9\xd8\xda\xe7\x19\x89\x31\x9b\x67\x4c\xaa\x91\x90\xdb\x9c\xd4\x29\xe1\xc9\x01\xcf\xa3\x8c\xcb\x69\x44\xfc\x72\x22\x36\xbf\x25\x8b\x51\x47\xf6\xe6\x62\x25\xc1\x2c\x6b\x11\x16\x24\xa9\x1d\x27\xe8\x41\xb6\x34\x2d\xb2\x52\x20\xc0\x97\x90\xde\xaf\xdc\x82\x90\x51\xa9\x42\x58\xc1\xf7\x27\xcd\xfc\x86\x7a\xfe\xa2\x11\x63\xd8\x84\x30\xab\x72\x01\x99\xb2\x14\xf3\x25\xba\xef\x7b\xae\x0a\x41\xd3\xf7\x43\x13\xf5\x7b\x5a\xff\x50\x02\xdd\x85\xbf\x35\x84\x40\xd5\x12\xd6\xdd\x90\x1e\xe2\xb0\x92\x10\x3f\xc1\x10\x0e\xb2\xc6\x05\x7b\x47\x3a\x9e\xe4\x27\x59\x66\xb4\xa3\xbf\x24\x64\x56\x4a\x93\xcb\xe5\xd7\xa5\xe5\x37\x8c\x9f\x23\xc2\xf8\xfc\x1c\x7d\xc7\xd5\x65\x1d\x6b\x1a\x0a\x2e\x15\x9b\x76\x61\xa6\x37\xc5\x75\xcc\x9f\x3c\x94\xaf\x31\x27\x2a\x61\xda\xc6\xd9\x57\x6c\xbb\x1b\x00\x56\x3e\xa3\x1d\x28\xa1\x0e\xd8\x47\x8b\x8b\x4c\xac\xb6\x82\x29\x46\x2d\x0a\xba\x8f\x01\x7e\x53\x61\x5d\x6d\xc6\x51\x58\x53\x5f\x84\x91\x4c\x66\xdb\x64\xb3\xe8\x54\xb9\x0c\xdc\x92\xda\x0a\x72\x85\x90\x41\xed\xf3\x32\xdb\x17\x3c\xf4\xdf\x9b\x9f\x7f\xb8\x7b\x27\x86\xfa\x79\x10\x28\xf9\xf2\xeb\x6f\xfe\x06\xf9\xc6\xb4\x77\xe9\x2c\x12\x5c\xae\x6a\xd7\xc5\x69\x70\x69\x82\x21\x80\x6f\x0b\xdd\xe9\x75\xf0\x2a\xdf\x2d\xf4\xc7\xe7\x78\x87\x2b\x2a\x0e\x6f\x99\x6c\x30\xcb\x56\xb7\x83\xb2\x1a\xf4\x1f\xe4\x9b\x06\xf2\x0a\xe4\x5c\x63\x6b\x60\x04\x5d\x4a\xbc\x07\x1e\x48\xa5\x2d\xb3\x26\xe2\x5f\xc0\xb7\xf4\xac\xab\xaf\xba\xaa\x57\x65\x90\xfc\x3c\x08\xf0\x8d\x5f\xbd\x00\x1f\x03\x35\x2d\xd4\x27\x70\xa3\x0f\x9d\x48\xd3\x75\x55\x0d\x14\x2d\xc2\xd3\x09\xa4\x00\xd7\xba\xe2\xfb\x84\x8e\xd6\xd7\xe5\x79\xbe\x46\x3c\x62\xfe\xbf\x1e\x44\xfe\x31\x4d\x9b\x68\x8c\x94\x04\x51\xba\x63\x9a\xdd\x7f\x96\xa4\x38\x52\x55\x88\xa6\x61\x43\x57\xa3\x8e\xb6\xf2\x87\x5e\x17\xf9\xca\xcb\x10\x3f\x63\xc4\x2b\x9b\x62\x85\xa1\xab\xc1\x12\xe0\x40\x1b\xa0\x8a\x9d\x58\x63\x9c\x11\xab\xb4\x8e\x4f\x0a\x8f\x06\x36\x85\x93\x87\xf9\x6b\x28\x4d\x79\xb3\x65\xbb\x0a\xd8\xd2\xb0\x5c\x11\xf8\xbd\xcf\xd0\x9e\x8c\x54\x03\xda\x62\x95\x73\x1f\x85\x05\xe6\x10\xb5\x4d\x56\x13\xbe\x47\x79\x12\x94\xf1\x8d\xd2\x3a\x43\x7c\x55\x1e\x15\x6d\x10\xad\xd1\x65\xc0\x41\xe9\x78\x5e\xa8\x70\xea\xfe\x84\xfc\x3b\x08\xb1\xe0\x99\xd4\xbb\xdc\x58\xd7\xa4\xc2\x83\x11\xf2\xb2\x37\x64\xe7\xa1\x1d\xe3\x9c\xba\x72\x8a\x40\x2c\x57\xfe\x30\xb8\x46\x4a\x2a\x1d\x7a\xa3\xbf\xa1\x70\x5c\xab\xbd\xa9\x6e\x29\x58\xc7\x04\xeb\x68\x05\xa5\xa4\x60\x03\x63\x88\xff\xee\x86\xed\x35\xe9\x53\x3d\xf2\xfc\x1c\x42\x99\x3b\x79\x22\x42\x3c\x76\x77\x80\x1b\x31\x7d\x35\x18\x86\x67\xfa\xc2\x41\x32\x88\x66\x8d\xdc\xa0\xb8\x12\xf4\x26\xe2\x1a\x15\x85\xe3\x12\x25\x48\x09\xb5\x70\x51\xb3\x14\x88\x98\xd8\x6c\x7d\xda\x16\x35\x3d\x53\x2a\xcd\x44\xa4\xf7\x74\x8b\xfb\x03\x22\x9d\xe8\x0f\x68\xc7\x68\x27\xd4\x21\x60\xab\xd6\x20\xac\x0a\xdd\xf9\xa9\xa7\xc5\x6b\xd1\x45\x78\x63\x72\xd5\xf8\x03\xe5\x36\x97\x65\x01\x42\x81\x25\xea\x01\x14\x2f\xaa\x23\x9c\x70\xbf\x1e\x94\xe8\x65\xf6\x5b\x30\xc3\xd0\xe1\x1b\x4c\x5b\x55\x94\xb3\x65\x82\x9f\x05\xf7\xaf\x26\xf3\xd3\xef\x14\xf4\x7f\xeb\xa1\xe1\x7a\x49\x09\xb6\xd3\xf2\xbe\x61\x6d\xcb\xf6\x40\x08\x03\xcc\x32\x18\x42\x15\x3c\x5b\x5a\xd4\x96\xe8\x19\xaa\x82\x7a\x14\xd8\x2f\xf6\x66\xcf\x57\xc5\x5c\x26\xf0\x89\x87\xe4\x31\x79\xff\xc1\x4c\x52\x5e\x98\x10\xa8\x85\x8a\x7d\x32\xed\x4c\x7d\x1d\xda\xdd\x30\xc8\x67\xf6\xca\x95\x28\x5f\x92\xe4\x56\x68\xd5\x93\x8a\x48\xa6\x0c\x95\x5b\xc8\xfc\xdb\xe1\x43\xcb\x70\xbd\xc8\xe2\xe7\xa5\xcc\xbd\xd1\xdd\x74\x3d\x22\xdc\xb7\x94\x70\x81\xae\x5b\x26\x45\xa1\xf5\xb5\xdb\x02\x40\xf1\xca\x93\x96\xae\x61\xd5\x21\x17\xc3\xc2\x19\x23\x3b\x6b\x7a\xac\xaf\xd1\x11\x27\x15\xeb\x6a\x6e\xd2\x3f\x70\x4f\x10\x5d\x77\xac\x27\xf5\x7c\x81\xae\x5c\x68\x1b\x27\x22\xcc\x23\xcb\x23\xe3\x34\xd6\x67\x9d\x2a\xfb\x0a\x03\xa3\xd9\x8f\x1b\xba\xde\xfc\x78\x86\x7e\x54\xe6\xfd\x8f\x67\x92\xf3\x7e\x6c\xd9\xfe\xc7\xb9\x5e\xb1\xae\x69\x07\x69\x20\x70\x7f\x0f\x48\xfe\xb8\x26\x1b\x7c\x43\x21\x21\xa6\x96\x76\x13\xe9\xb7\x50\x03\x31\x46\x6b\xc3\xf6\x88\x33\xc9\x66\x26\xa5\x2a\x28\x96\x12\x17\x2b\x71\x55\x93\x0a\x0b\x93\xe8\xb4\x2f\x74\xf1\x45\x3f\xa9\x43\xa9\xc6\x58\x53\xd3\xf0\x23\x0f\x93\xc3\xc2\xfa\x89\x2a\xed\xba\xe5\x6c\x0c\x19\x9d\xc7\x82\xaa\x0d\xee\xd7\xa4\x5e\xa0\xef\x3a\x75\x69\x9c\xc9\x2e\x92\x1b\xde\x64\xb9\xe4\x51\x51\x35\x36\x9e\x21\x95\xe6\x6c\x77\x8d\x67\x79\xf3\x01\x8c\x04\xa9\xb0\xc9\x81\xd4\x1d\x39\xe4\x6d\xab\x44\x72\xad\xcf\xc6\xd3\x4f\x55\x60\xd0\x22\x20\xf4\xc6\xb9\x1d\xfd\x5b\xd5\x2f\x19\xa9\x94\x8b\x7e\xdb\xba\x25\xb6\xc9\x7c\x39\x5a\xdf\x4f\xad\x10\x7a\x4d\xb6\xec\x86\x20\x6f\x43\xea\x8d\x68\x33\xfb\xf3\x05\xa9\xc0\x46\xc0\x1d\x15\xf2\x48\xf7\x2f\x68\xb5\xdd\xa5\x00\x9e\xd9\xce\xf3\x79\xa2\x96\x19\xeb\xd0\x54\x1f\x73\x62\x5a\x30\x04\xc7\x84\xfc\x91\x76\xbb\x41\xf0\x64\x6e\xdb\x49\x2b\x56\xe6\xdf\xa9\xdb\x55\x2d\x94\xfc\xff\xa9\x7a\xe0\x2d\x53\x8a\x4c\xd9\xe5\xe6\xc4\x4c\xda\x26\x59\xba\xb1\xda\x29\x29\x51\x4c\xc9\x38\x6b\xb5\xe0\x4e\xd7\x41\x33\x55\x9e\x46\x8a\x3b\xe9\x31\x38\x33\x15\x6a\xad\x12\xab\xab\x25\xd9\x32\x6b\x52\x8e\xc4\xdd\x8c\x32\x57\x08\xa9\xc0\xaa\xfc\x38\x14\x67\xa0\x6e\x67\xc5\x5a\xaf\x59\x08\x5d\xad\xec\xee\x0a\xec\x89\xfb\xf7\xdd\x07\xaf\xda\x99\xfa\x98\xaa\xa9\x70\xba\xcf\xc2\xa1\xee\xce\xc7\x34\x24\xcc\x39\xe9\x05\x4a\x97\x3f\xa8\x1d\xf0\x64\xe5\xc0\xd0\xd5\xd8\xee\x66\x9c\xb0\xaa\xe2\xdc\x12\xdd\xbb\xea\x7c\xb1\x04\xfb\x4d\x2a\x16\xd2\x1e\x35\x43\x42\xf4\x74\x90\xd7\x6f\x24\xa2\xd7\x55\x5b\xe1\x81\x24\x73\xe9\xad\x7f\x9f\x25\x40\xcd\xa3\x13\x34\x2e\x5d\x73\x6f\x8c\x8d\x7c\x0b\xcb\x59\x95\x05\xdb\xb5\xd8\x13\x5d\x3e\xd4\xe5\x46\x83\x90\xac\x94\xc2\xd2\x5a\x73\xd3\x65\x7c\xb9\xa6\x58\x94\xb5\x3f\x4f\xda\xa3\x99\x52\x50\x9f\x6a\xaf\xa6\x3d\x14\x0f\xe8\x42\x47\xe9\xe7\x5c\x99\xa8\x94\xef\xef\x16\x9c\xd4\xc8\xb8\x03\x70\x6d\x25\xf6\x4c\x2a\xbf\xd9\x41\xce\xbc\x63\xec\xf2\xa1\xf9\xef\x69\xdf\x4a\x72\x28\x64\x6e\xaa\x5c\xf5\xd2\xbc\x53\x27\x7a\x32\xe0\x2c\xb5\x91\x22\xa6\x48\x1b\x88\xdb\x50\xe8\x43\x5a\x95\x2e\x3d\x3d\xac\x6b\x93\x87\x1b\xce\x77\x8f\xaa\x20\xcd\x1d\xa9\x44\xa0\x53\x80\x42\x2d\x77\x5e\x30\x0d\xce\x55\xb7\x71\xb1\x64\x96\xbf\xbc\xd0\x4f\x4f\x41\x29\x9a\x28\x57\x8d\xa9\xbb\xa0\x4a\xa9\x3a\x9b\x08\x94\x60\x6d\x29\xc5\xb1\x5f\x99\xb2\x97\x68\x46\x16\xeb\xc5\x59\xd6\x8e\xa2\xbe\x04\xf3\x74\x45\xa3\xbd\xb1\x3e\x30\xb5\x80\x00\x60\x6f\xcd\x0b\x67\xb3\x39\x97\x7e\xec\x68\xfb\xe3\x22\xd6\x1a\x03\xa6\xb3\x89\x1c\x1b\xd2\xee\x38\xaa\xc9\x0d\x69\xd9\x8e\xf4\x1c\x91\x8e\x0f\x3d\x89\x75\x3e\xb0\xc5\xba\x1a\xea\x17\x53\xb2\xd7\x7e\x58\xbd\x48\x9e\x3e\xbe\xa7\x5d\xcd\xf6\x67\x71\x1d\x80\x7a\xa8\x8c\x35\xda\x53\xfe\x4e\xca\xcc\xa1\xeb\x88\xd4\x0a\xa5\x25\xac\x53\xad\x01\xfb\xd4\x31\x1e\xaa\x8d\x79\x6d\xe2\xf7\x50\xf9\x7c\x75\x6e\xac\x9c\x2c\xfa\x7d\xd5\x39\xda\xe4\xba\x5f\xae\xc6\x92\x6e\xcb\xee\xae\x04\x51\x57\x8d\xb5\xa3\x6d\x50\xe4\x05\xfe\xad\xab\xb0\xda\xfc\xa9\xb0\x08\x4c\x02\x17\x9c\xd0\xda\x96\xdc\x61\x2e\xce\xd2\xc4\x5c\xd9\x71\x04\xf4\xf9\xbd\x51\x65\x44\xaa\x41\x51\x84\xfe\x93\x23\x3c\xfe\x7e\x5e\x99\x73\xf7\xff\x76\x64\x8a\x45\x95\x44\x3a\xbe\x2f\x91\xa4\x0a\xb2\xca\xfc\x4b\x8f\xcf\x38\x72\xa2\xc3\x08\x94\xc6\x94\xbf\xb9\x05\xae\xa7\xd3\xf5\x72\x84\xae\x85\x64\x89\xdf\x9d\x9e\xa1\xd7\xb1\x58\xb6\x63\x82\x92\x79\xec\x26\x28\xa8\xab\x62\x19\x9d\x70\xfc\x16\x30\xd6\x86\x72\x3a\x95\xa7\xba\x65\xb4\xd0\x7c\x35\xc7\x60\xe6\x34\x86\x34\xd5\x47\xc6\xcd\xb4\x54\xb7\xc8\xc1\xf9\x51\x0d\x35\xda\x64\x51\x2b\x99\x33\xd3\xfc\xd5\x10\xf2\x3b\xed\x57\x73\x91\xe9\x2a\x14\x5b\x30\x16\x93\xbb\xd1\x95\x13\x5d\x05\xe1\x20\x1f\x85\x06\x29\x85\x53\x92\xb8\xf4\x80\xe7\x4a\x2f\x72\x0a\x0b\xeb\x21\x24\xef\xdb\xc4\x92\x5d\x48\xbd\xf1\xe0\x79\x56\xab\x76\xa8\xbd\x2a\x55\xb4\xb7\x2e\x4f\x28\xc7\xe8\x39\xa2\x77\xb8\x22\x13\x54\xf9\xa8\x78\x76\xb4\x2d\x2a\xbf\x23\x3b\x28\x56\x81\x33\x9e\x5b\x4f\xa7\x8d\x46\xed\x02\xdd\x12\x7c\xb0\x02\xbf\x23\xf2\xc4\x14\x4c\xaa\x4b\x60\xb6\x06\x09\xc5\xf1\x8d\x72\x92\x28\x12\xde\xa8\xc7\x9e\x3b\xd9\xe2\xa1\x51\x87\x7d\x77\xb2\xef\x89\x38\x43\x34\xbc\xca\x1d\xcf\x14\x88\x15\x53\x95\xff\xe5\x67\x76\x1c\x31\xff\xc6\x4f\xd2\x4f\x00\xf0\x4a\xe8\x43\xd7\x1e\x2e\x5f\x48\xc7\x86\xf5\x26\x99\x5f\x45\x85\xb2\x5e\xdd\xae\x7a\xed\x3b\xe6\x45\x8c\x1e\x01\x53\x5c\xde\x4b\xa7\x0e\x65\x06\x93\xf0\x36\xb4\xab\xb9\xba\xd8\x4a\x28\x12\x28\xfd\x6a\xc3\x97\xb5\x62\x7b\xdf\x7b\xb4\xe0\x4e\xf5\x61\x34\xa5\x10\xa3\x53\x35\x62\x5d\x87\x3f\xad\x9b\x79\xba\x60\x9a\xce\x6d\x98\x3a\x57\xc1\x3d\xbe\xca\xe5\x8c\x7c\x6f\x69\xf1\x43\xac\xb0\xd3\x06\x75\x4c\x6c\xa4\xe1\x12\x14\x4f\x07\x87\x1d\xe5\xbe\x9d\xb9\x27\xb0\x3b\xed\xad\x16\x16\xce\x76\xcc\x6b\xf5\xb4\xd1\x40\xe9\x83\x29\x3d\x04\x35\xf2\xf9\xee\x23\xb9\x1b\x50\xa3\xd3\x32\x90\xf3\x30\xbd\x69\x99\x78\x66\x7e\x57\xc8\xcf\x3c\x46\xc8\x58\xcd\xee\x8c\x9e\x67\x68\x03\x9c\x6d\x37\x15\xf0\xf6\x2d\x09\x91\x28\x8e\x2b\x0f\x81\x22\x57\x14\x08\x63\xaf\xdc\xb3\x7c\x06\x49\x1b\x85\xbb\x77\xbf\xea\x47\x4d\xb6\x58\x6e\x4f\xff\x4e\x56\x20\xf2\x33\x3c\xe3\x63\x85\x0b\xeb\x51\x83\xa9\xfc\x5a\x02\xd2\xbf\x16\x46\x23\x11\x10\x39\x19\xd1\xc0\x0b\x1b\xa1\x48\xd9\x13\xc4\x09\xee\xab\x0d\x7c\x05\xe1\x91\x11\x16\xf1\x1c\x82\xd5\x6c\xa9\x1d\xce\x1b\xb6\x47\xd7\xd4\xdd\x0c\x73\xa1\x5d\x17\x68\xdd\x6b\xef\x0b\x6d\x60\x9e\x0d\x3c\xf8\x85\x6f\x18\xd4\x8f\xaa\x86\x9e\xc7\x21\x61\x41\xec\xe3\x2d\xb5\x46\x47\xcd\x07\x2a\x5c\xec\x93\xa8\x8c\x99\xf5\xb0\x09\x98\x89\x1e\xe6\x9f\x2c\xc5\xca\x87\xae\x17\xd4\xe7\x43\x6b\x7a\x43\x3a\xff\x78\xef\x5c\xf1\x90\x23\xe2\x76\xc6\x37\xab\x91\xda\xa9\xa0\xf6\x03\x9e\xfe\xb3\x78\x20\x54\x54\xaf\xbd\x1a\x1d\xa0\xe0\x9d\x57\x4b\x1a\xfb\x35\x18\xa5\xc6\x07\x97\x8e\xe0\xc7\x4c\xe0\x30\x2d\x6d\x59\x80\x5b\x9a\xb3\x65\xf9\xa9\xdc\x7f\x46\xf2\xdb\xd4\xd9\xaa\xc5\x74\xeb\x65\xcf\x66\x94\xf2\xb3\x78\x1c\x23\xa9\xe0\x62\xbc\x6d\x35\xf3\xc4\xe2\xef\x6e\xe6\x58\x5a\x98\xfc\xd3\xff\x46\x0e\x59\x37\x49\x51\x2c\x06\x04\x9a\x90\x3d\x6e\x55\x76\x3b\x89\x2c\x6b\x40\x3c\x6c\x87\x6a\x63\xd8\x3b\x48\x1d\x8e\xfb\x27\x65\x1d\xc3\xdc\xe2\x3c\x23\xb5\x4c\x84\x01\xfc\xfc\xbb\xf2\xe9\x9c\xa2\x9e\x09\xb2\x34\x68\xb8\x1c\x28\x5b\x1b\xb5\x5c\x78\x12\x79\x29\x2a\xae\x4c\xc4\xb1\xec\x54\x28\x7c\x91\x8c\xae\xe4\xf7\x47\x18\xdf\x16\xcc\xc8\x21\x3f\xba\x68\x47\xd2\xc0\x2c\x42\x7e\x79\x22\x44\xd1\xd3\xa7\xa8\x94\xb2\x73\xec\x40\x1a\x23\x35\x54\x66\x07\xaa\x22\x99\xa1\x9d\xa1\x79\x7c\xbf\xc1\x82\xdc\x90\xde\x8b\x73\xe8\xc9\x56\x45\x2b\xc4\x23\x0d\x5d\x4d\x7a\xf4\x38\x4e\xf2\x38\x4d\x11\xb5\xb9\x4c\xed\xc0\x5f\xf9\x58\x5a\xca\x3d\xf0\xb0\xcf\xa9\x17\xe6\xe1\x3f\x00\x47\xda\x9b\xd9\x39\x84\x2b\xc4\xf2\xda\x20\x34\xca\x35\xb9\xea\x2d\x0b\x8e\x05\x34\xeb\xd6\x6f\x86\x6b\x30\x12\x66\x29\xf0\xc5\x12\xe7\x59\x18\x2e\x23\xc1\xfb\x34\xdf\x6c\x39\x2a\x7e\xfc\x7f\x8d\xb2\x71\x58\x80\xf9\x14\x6e\x86\xa7\x5c\xe1\x02\x43\xc9\x68\x3e\xb4\xc2\xdc\x8f\xef\xf1\x81\xa3\x7f\x90\x9e\x49\xbd\x0d\x8a\xc3\xd3\xa8\x04\x8c\x59\x66\x95\x0a\x26\xa9\xe4\xa5\x9a\x99\xa5\x2e\x91\x57\x6f\xd9\xf4\xd6\x56\x31\x46\x76\x4c\xc7\x33\xb9\x51\x03\xe1\x51\x3e\x53\xc5\x86\xb0\x9e\x08\x5a\x41\x3d\x31\x81\x5b\x43\x3f\xad\xab\x98\x8a\x9e\x99\x42\xd9\x01\xdf\xe9\x14\xdd\x15\x1a\xf1\x6c\x9e\xc2\x6f\x06\xf0\xf9\xaf\xc0\xcd\xa9\x5b\x21\x4f\xe8\x5b\x81\xf6\xe0\xf4\xae\xec\x4a\x3a\x9e\x77\xf4\xd7\x6b\xe9\xfd\xf0\x20\x59\xa3\x18\x9e\xf1\xed\xeb\xb2\x23\x9f\x79\x86\x97\x47\xd4\xe9\x2d\xe9\xa6\x4e\x89\x01\x46\x95\xc9\x23\x70\x7a\xa6\x7a\x2d\x57\xe5\x6a\x48\xfb\xc4\xf9\xc2\x02\x52\x05\x1e\x1f\x3d\x22\xae\xf5\x8d\xde\x01\x0d\x2a\x76\x2c\x38\x31\x41\xa7\x2d\x9e\x16\xfd\xad\x4f\xb3\x82\xfa\xe5\x5b\xe8\x85\x53\xc3\xf6\xcc\x9f\x3c\x0a\x89\x34\x3d\x54\x83\x9a\x23\xff\x90\xc8\xc0\xc4\x70\x8e\x56\xf4\x41\x38\x4d\x59\x9c\x69\x41\x9a\x72\x66\x64\x6d\xe0\xba\x0e\x9e\x8e\x94\x0c\xaf\x6a\xd3\xc8\x35\x33\xaf\x24\x99\x1c\xb1\xb0\x2e\x91\x5f\xb5\x08\xb2\xae\x70\xa7\xde\xb8\x8e\x4d\x0b\x97\x21\x91\x86\x2e\x18\x33\xc2\x45\x2b\xfc\xd9\x8f\x27\x99\x67\x6c\x88\xab\xc0\x29\xa2\xfd\xb2\x0a\x68\xfb\x7c\x9e\x1c\xfc\xcc\xbd\x3c\xaa\xc3\x5e\xfd\x4a\x33\x48\x3b\xea\x83\xba\x16\xdf\xcb\xff\xfa\xa1\xec\xaa\xcf\xb7\x46\xef\x3f\xa4\xb5\x27\xec\x03\x36\x2d\x67\x68\x4b\x70\xc7\x5d\xa0\x95\x5f\x5f\xa7\x27\x15\xeb\xeb\x10\x72\xfb\xf6\x2f\x9c\x39\x0e\x8b\xf4\x58\xcf\x2a\xac\x06\xaa\xa4\x35\xfa\xdd\x4b\x8a\xc4\x6b\xf9\xac\xae\xc3\xf7\x0e\x11\xb5\x21\xa9\xc9\x72\x19\xdd\xdd\x94\x20\xc9\xad\x46\x54\xce\xcd\x7e\xb4\xb1\x51\xb4\x96\xb4\xb1\xff\x9c\x7c\xbb\x2c\x5d\x6d\xfb\xcb\xa8\x36\xa1\x30\x4b\x1d\xdb\xe9\x13\x8f\x06\x5f\x75\x70\x1a\xf3\x45\xce\xf2\x19\x1f\xc9\x20\x6b\x99\xd0\xe2\xa9\x64\xb8\xe4\xe9\xa1\x3b\x39\x8a\x38\xc1\xb6\x9a\x68\x70\x17\x3d\x38\x91\x72\x19\xb6\xf4\xa6\x08\xd9\x01\x64\x88\x75\xdd\x8c\x47\x92\x2d\x68\x3d\x16\xd4\x95\x80\x6e\x1f\x6e\x19\x8f\xf2\x94\x52\x63\xda\xaf\x53\x22\x41\x29\x20\xcc\xb6\xf7\x03\x01\xd3\xc6\xd1\x33\x31\xb6\x57\xf4\x50\xcc\xd8\xcd\x63\x94\x3f\x1a\x30\xfd\xe5\xc3\xbb\x69\x2e\xab\xdc\x9f\xc1\x81\x60\xea\xd4\xa5\x79\x61\xdc\x44\xdf\xec\xb0\xd2\x6d\xb7\x61\x14\x62\x9c\x04\x22\x10\x15\xa4\x87\xf3\x03\x02\xb5\xcd\x21\xe2\x15\x11\x0b\x64\xb7\x1a\x5d\x3d\x5d\xc6\xa3\xac\x2b\xfb\x5a\x42\x30\x45\x3e\x9f\x00\xee\xa4\x40\xea\x92\xad\x7a\xe5\x4b\x9d\x4a\x4e\x6d\x77\x1b\x4f\x3b\xce\xcc\xb4\x53\x2f\xf6\xe9\x76\xb3\xe4\x54\x8a\xaa\x7d\x25\xf7\xd9\xc7\xdf\x1c\x44\x23\xf9\xd5\xa7\x22\x71\x94\x9b\x0f\x74\x93\xf8\x34\x82\xb0\x4d\xa5\xac\xfa\x80\x8d\x04\xb0\x8c\x0a\xb6\x86\x76\xb5\x5a\x4c\xaf\x62\x9d\x59\x1f\x2f\x6e\x26\xf5\x9b\x61\x1e\x00\x60\x9d\x8d\xa9\x5b\x71\xbe\x44\x5f\x32\x96\x3b\x81\xcf\xcf\x75\xf5\x36\xa9\xb9\x04\xb1\xc8\x5e\x32\x05\xb3\x40\xe4\xca\xf9\x99\x3f\xea\x15\xb4\x93\x47\x7e\x76\x01\x33\xb7\x22\xc8\xe9\x57\x0d\x6e\x39\xc9\x1c\x7a\x93\x17\x06\xe8\x72\x95\xac\xc9\x88\xa9\x9a\x90\x2f\xe5\x87\xc5\x3b\x72\xe0\x8b\x86\xb6\x82\xf4\xb3\xa0\xed\x78\x52\xb3\x2d\x4c\xd9\xb6\xde\x86\x53\xee\xd8\x64\xa7\x26\xeb\x2a\x55\x48\xc9\x0e\xf1\x62\x78\x5b\x97\x8d\x5c\x87\xc2\x55\x43\x30\x20\x1c\x7f\xae\x6d\x17\xa3\x9d\x77\x8c\xb8\x58\xd2\xcc\x46\x11\xa3\xbb\x43\xfe\x41\x91\x41\xd6\x7b\xf7\xf1\x57\x2f\xf8\x12\x7d\xaf\x94\x78\x79\x68\x7d\xff\x43\xd9\x21\xa3\x71\x3e\xb2\x4b\x58\x3f\x24\xd3\x29\x3d\x44\x58\x2f\xb5\x22\xda\xf9\x68\xc2\x72\x17\x54\xbc\xe3\x73\x68\xef\xa6\xb3\x21\xb5\x33\x92\x13\xf4\x98\x3b\x2c\xf3\x17\x91\x65\x81\x77\x3b\xd2\xd5\x33\x9a\xf1\xf8\xa0\xe0\xc2\x6c\x7c\x56\x5d\x7f\xaa\x3c\x6f\x42\xdb\xc9\x99\x27\x14\x56\xf9\x97\x30\x86\x36\xde\xfd\x69\x2a\xd6\x55\xd8\x78\x14\xbc\x0f\xf3\xac\x5d\xf0\x6c\x72\xb7\xb4\x94\xa7\xef\x0a\x82\x27\x51\xd0\xd6\xc4\x37\xa4\xb7\x44\xa6\x9c\xed\xb0\xcb\x75\x56\x57\x70\x60\x94\x54\x70\xaf\xb6\x86\xcb\x0c\x22\x24\x04\x8c\x8b\xf6\xe0\xf6\x26\xb8\xab\x90\x34\x45\x58\x73\x4c\x5e\x89\x9e\xc2\x3f\xd0\x17\xe8\xa5\xb4\xc9\x09\x62\x83\xf2\xab\x09\x86\xb6\xac\x07\x60\x55\x58\x6f\x7b\x40\x6b\x89\x6f\x0f\xd7\xb7\x06\xab\xe3\x66\x7a\x0e\x18\xec\x98\x20\x9d\x34\x8e\xda\x83\xae\x75\x0f\xaa\xb3\x34\xf8\x74\xd4\x49\x76\x44\x05\xe0\xd3\xac\x1c\xf0\x4e\x01\xa5\xd5\x3d\xfb\x48\x17\xd9\xbe\xa9\x94\x72\x23\x6d\xc6\x66\x7e\x82\x72\x0f\x7a\x22\x2d\x1c\xbc\x20\xfc\xab\x17\x72\x0d\x72\x0a\xc4\x98\xc0\x40\x91\xd0\xb0\xb5\x2c\x73\x03\x7d\x1f\x4c\x17\x19\x18\x11\x4a\xd1\x80\x97\xab\x31\x24\xcb\xb0\x01\x7c\x63\xeb\x32\xf2\xf1\x61\x04\xc4\xe8\x24\x9e\x80\x8d\xd0\xf4\x6c\xc6\x23\xc6\x39\x82\x6e\x68\x95\xdc\xcc\xc7\x7f\x89\xe4\x31\xe2\x2c\x18\x29\x2f\xd9\x50\x56\x96\xe5\x7f\xcd\x9c\x88\xee\xcc\x49\xc5\x5f\x7e\x9d\x42\xb7\xb7\x57\x14\x41\xbd\xbc\x4f\xb9\xae\xdd\xe9\xc7\xb1\x94\x0e\x9f\x5f\x55\x04\xc2\x1b\x27\x2a\x04\x91\x7d\x89\x79\x9c\xeb\xdc\x08\xe5\xc7\xba\xdd\xc3\xcf\xe5\xa5\x40\xc6\xbe\xb5\x6d\x53\xfb\x36\x41\x00\x50\xcc\xfb\x5d\xfc\xbf\xdb\x99\xbd\x09\x74\xb7\xb7\x72\xe3\xbf\xdb\x18\xb2\xf1\xdf\xc9\x5c\x5d\x7a\x2f\xd8\xfc\xd9\x67\x43\x54\x4c\x09\xad\x09\x9c\x1a\x1d\x78\xdb\xe4\xb6\xf2\x19\x06\xaa\x6e\xf7\x04\x55\xac\xef\x49\x25\x0f\xaa\x2d\xee\xf0\xba\xc0\xb1\x7a\xf8\xeb\x41\x58\xaf\xb6\xca\x51\x84\x6d\xd4\xb3\xeb\x81\x8b\x4e\xea\xd8\xa0\xc2\x71\xa2\x72\x4f\x5c\xee\x8a\xc0\x22\x35\x22\xcc\x9f\x4a\x76\xb4\x21\xad\x57\x2f\x96\xe8\xef\x33\xf5\xf2\xb7\xde\x20\xae\x5a\x49\x3d\xf4\xea\x1d\x3e\xf3\xf2\xe1\xbd\xdb\xa9\x3d\xa9\x9f\x6e\x8d\xfb\x6b\xbc\x96\x04\x69\x5b\x52\x89\xb8\xb8\x89\xff\xa0\x21\x6b\x6b\x3f\xba\xb8\x4d\x6e\xe1\xac\x2a\xb2\xc5\x87\x6b\x02\xe0\xd7\x4c\xb9\xc4\xc8\x0d\xe9\x95\x25\x77\x06\xe4\x84\xaa\x21\x60\xb3\xff\x0f\x15\x73\x0b\x1a\x12\xc7\x37\x44\x67\x2b\xe5\xae\x5c\x4c\x01\x93\xc8\x72\x2e\x56\x36\x81\x93\x31\x31\x42\x94\xf4\x4b\x47\x2b\xdd\xcc\xaa\x76\x89\xe5\x3f\x5a\xd2\x25\x3d\x3b\x69\x93\x19\xea\x32\x35\xdf\x1f\x8e\x5c\x7c\xe4\x9e\x53\xc8\xef\x8b\x09\xba\xf4\x10\xac\x33\x7b\x47\x0e\x20\x6b\x27\x99\x26\xc3\x3e\x3a\x68\xb8\x22\x6d\xc6\xa3\xe4\xbd\x43\x2d\x77\x4c\xe9\x95\xcc\xbd\x54\x48\x77\x98\xa6\xde\x19\x05\xb2\x29\x59\x26\xff\x3b\x2c\x33\x34\xf1\x82\xfa\x09\xc7\xcc\xd3\xa7\x99\xa0\xb0\xe3\x77\xe6\xbd\xf4\x46\x4d\x47\x42\x25\xce\x6f\xb0\xbc\xa9\xe0\x27\xbb\xbf\xdd\x51\x95\x78\x98\x8a\x5e\x71\xe5\x0c\x8f\xf5\x90\x13\x06\x3e\xda\x1d\x6e\x2e\xbd\x8e\xf5\x89\xdb\x78\xb0\x31\x3f\xf8\xf9\x79\xee\xd5\x2b\x53\xdf\x5f\x87\xa2\xb3\x3d\xee\x6b\x84\xcd\x40\xf1\xdc\xf1\x80\xaa\xdc\xbf\x1a\xc1\xe4\xc9\x73\x03\x3c\xee\x0e\xea\xe2\x49\x7b\xe9\xb7\xf1\x75\x52\x6a\xc0\xde\x3d\x2a\xb2\x63\xda\x9b\x7f\xfc\xf2\xa2\x8f\xe0\xe8\xcf\x5d\x57\x96\x14\x82\x54\x30\x9c\x0a\x7f\x74\x2b\xe0\x0f\x95\xf1\x65\xc2\x3d\x09\xd4\x09\x5c\xe5\x5d\xeb\x49\x0f\x53\x7d\x04\x3a\x5d\x3e\xf4\x56\x09\x1f\x9e\x75\xf5\xdf\xf4\x6b\xfc\x50\x40\xd0\x55\xf1\x7b\xcb\xcc\x87\xe5\x88\xb4\x4d\x9e\x23\xcd\x5c\x6a\x18\xd1\xfa\xc9\xee\x34\x24\x35\x5e\xeb\x0a\x6d\xcb\x00\xfd\xf2\xf5\x83\xec\xf3\x82\xd4\x83\xd4\x49\xf2\x7d\xd0\x93\x95\x47\xfc\xa7\xf0\x3e\xeb\xd2\xfb\xe5\xe1\x91\x33\x7d\x84\x8b\x8e\xf3\x73\xf5\x02\xb1\xd5\x43\x0c\x89\x83\xa2\x62\x50\x09\x48\x1a\xfb\x3d\x3c\x50\x02\x75\x77\x22\x4d\x26\x8e\x27\x3e\x3f\x47\x7f\x33\xdb\x1f\x66\x30\x45\x78\x9c\xa6\x63\x2a\x61\xe8\x40\xf3\xff\x39\x70\x78\x47\x64\xd8\x26\x35\x33\xc4\x86\x1c\xb4\x4e\x53\x2c\x2b\x66\x92\x4b\x33\x05\x06\xed\x28\xd8\xd6\xd1\x31\x68\x9e\xb9\x8b\x32\x28\x55\x64\xcd\x8a\x62\xd5\xb4\x09\x6d\xa4\x74\x3f\x9a\xee\xd6\xb2\x98\x87\x29\x4c\x25\x37\x7b\x84\xba\x9b\x7d\x57\x61\x90\x87\x06\x94\x01\x67\xba\x3c\xc1\xe5\x43\x9f\xc5\x4a\x1a\x47\xfc\xc0\x92\x2a\x0f\xc7\x0f\x5c\x90\xad\x57\x47\x46\xd3\x55\xb6\x52\x0f\xa1\xbc\xfc\xeb\x2b\x29\xee\x4d\x77\x3f\xb3\x5f\xae\x60\x98\x7f\xf3\xd6\x37\x73\x4d\x1d\x2a\xa5\x87\xab\xfa\x91\xc6\x7a\xd0\xd1\x12\xfa\x5e\x37\xaa\x51\xa6\x33\x74\xa8\x7e\x35\xa9\xc1\x02\xb7\x2a\xbf\x6b\xfc\x2a\x4a\xc3\x98\xab\x35\xfb\x9b\x6b\x39\x36\xc1\x1c\x12\xe0\x68\xad\xd5\x9e\xa2\xb6\x53\xac\xbe\x52\xb6\xcf\x2d\x3f\x8f\xd7\x5f\xf1\x61\x52\x09\x7e\xf1\xca\x87\x20\x9a\xad\x4b\xa3\x10\x0b\x7b\x01\x88\x0e\x44\xc4\xd5\x53\x8a\x3c\x99\x08\x2e\x45\xd6\xd9\xfc\xee\x22\xb7\x3c\xb4\x36\xf9\xb0\xb6\xe3\x9a\x08\xa8\x9a\x12\x87\xab\xc3\xa9\x61\xb6\xf1\x27\x3b\x35\xfe\x1f\xba\xe8\x3e\x3f\x47\x2f\x08\x04\x50\xba\xc7\xd7\x88\xc9\x42\x84\x3a\xb7\xa6\x96\xf0\x4d\x50\xf6\x4a\xfe\xd5\x84\x8b\x9e\x1d\x6e\xa1\x05\x5c\x2c\x2e\x46\xd8\xe1\xd6\xe2\xcf\x2c\x74\x31\x27\xc4\x0c\x1a\x55\x0b\xbc\x3e\x20\xae\x9f\xde\x07\x4d\x59\x6d\x22\x27\xc0\xa0\x3c\x88\x2d\xd5\x09\xe5\x47\xb6\xd4\xb5\xc7\xbb\x5d\xcf\x76\x3d\x95\xc2\x09\x6e\xc8\x43\xf9\x66\x6e\xd1\x6b\x46\x78\xe6\xd4\x4c\xd2\x3a\x6d\xd9\x36\x9d\x73\xa8\x22\x99\xb6\x18\x6e\xfc\x54\x24\x35\xd9\xee\xfc\xcc\x93\x8f\x27\x45\xe3\x31\x29\x77\x2d\x20\x93\x57\x87\xde\x5e\x13\x4f\xda\xc3\x38\x37\xdb\x20\x59\xc6\x2b\x9d\x7b\xee\xee\x33\x38\xde\x12\x9d\xf3\xab\x94\x08\x1a\x86\x0d\x48\xa3\x81\x0a\xb4\xb7\xcf\x8a\xb9\x2f\x62\x4f\xd3\x5a\xe9\xa1\x28\x1f\x61\x99\xa0\x68\x78\xcc\x37\xc7\xbd\xe3\x9f\x88\x56\xc3\x6d\xe8\x97\x5f\xd2\x8f\xe6\x24\x5e\xe6\xaf\xbd\xad\xc8\x35\x90\xbc\xf5\x4b\xd4\x38\x06\x8c\x51\xb2\x2b\xfb\x95\xc7\x99\x66\xae\xf8\xdd\xe0\xbc\x8c\xcd\x3a\x60\xd5\x8c\x53\x05\xae\x3c\x51\x99\x35\xa8\x27\xf4\x9d\x58\xf0\x28\xb7\x48\xca\xf8\x45\x20\x5e\x2b\xab\x23\x0c\xce\x09\xbc\x2b\x55\xc1\x9b\x1f\x8b\xaa\xd7\x51\xe0\xf4\x94\x9b\x0e\x6a\xf5\xa0\xd8\x48\xf5\x61\x1b\x8b\xa5\x8b\xa3\x5c\xfc\xf5\x08\x5d\x03\xe5\xfb\x8c\x42\x0c\x5d\x30\x4c\xf6\x92\x54\x97\x65\x86\xf5\x01\xe5\x77\xaf\xc4\x87\x21\x3f\x15\xce\x47\xb0\xc5\xf9\xf0\x8e\x60\x16\x15\x20\xd1\x92\x6e\x2d\x36\x92\xe3\x4b\x37\x6a\x51\x58\x85\xbf\x4c\xf2\xd7\xbc\x47\x35\x97\x3f\x35\xdd\xb3\xec\x40\x43\x6e\x27\x8c\xbe\x9a\xe7\x15\x63\xff\x16\x4b\xbc\xd0\xb9\xfe\xe7\x79\x54\x85\x2b\xec\x62\x4b\xf8\xba\x32\x6e\xd1\x53\xa2\x5e\xed\x37\x55\x75\x4c\xa5\xf6\x9b\xea\xee\x0b\x8e\x6f\xc8\xec\xf2\x21\x77\x55\xbe\x04\x5b\xfa\xb0\xb8\xfe\xe1\x40\x11\x5c\x86\xf7\xcc\xf8\xb6\x86\x2e\x75\xa5\xe4\x03\x32\x2d\x28\xe7\x03\x51\x05\x39\x8d\x03\xf0\x7e\x04\xfc\x93\x59\x02\x48\x86\x9a\xf9\x12\xa0\xbf\xb6\xfc\x67\xb9\x0e\xd4\x48\x0d\xa8\xb1\xfa\x4f\x93\xe5\x3e\x47\x4a\x7d\x4e\x94\xf9\xf4\xb3\x67\xa3\x75\xf1\x94\xd9\xa9\x32\xa9\x4e\xb1\x09\x85\x97\x2b\xdb\x17\x7e\xc8\xdf\x94\x47\x67\xd9\x44\xc2\xed\x74\x39\x9a\xd0\xa3\xaf\x2b\xf3\x35\xbe\xd5\x38\xca\x18\x69\x91\xaf\x4f\xb5\xb0\x66\xe1\xc6\x0a\x7a\x1d\xb5\x70\xe1\xb6\x39\xaa\x06\xea\x68\x25\xbe\xd2\x62\x1d\xb5\x60\x47\x2d\x5a\xc6\xf2\x2a\x2c\x8f\x76\xf7\x3b\x26\x4c\xd8\x7c\xdc\xff\x6f\xfd\x09\x13\xbc\xef\x5d\x2b\x78\x6a\x44\x11\xb4\xe3\x1f\x3e\x38\x69\x25\x17\xe1\x70\xc7\x02\xf0\x31\x32\xb8\x4f\x87\xf3\x57\x17\x79\x28\x2c\xb9\x1c\x3b\x7c\x2e\xe8\xb4\xa7\x92\x8e\xc6\x20\x3f\xb8\x06\x0d\x99\x03\x4d\xbf\xa7\xe1\x9e\x2f\xd1\x85\x70\x9c\xd7\xe8\x33\xee\x5e\x4f\x81\x64\x1b\x5d\xc2\x11\x2c\x1b\xfd\x92\x02\xb5\x75\xcb\xdd\x1b\xe3\xea\x24\xfc\x8c\x9b\xd3\xf4\xcc\x4d\x08\x05\x14\x20\x37\x5d\x97\x93\x87\x78\xaf\x6b\xd2\xb0\x5e\x19\x5e\xba\xb8\x38\x43\x9c\x10\x88\xba\x6a\x71\xbf\x56\x31\x19\x50\xeb\x5d\x65\xcc\xbc\xfa\xd2\x8e\x78\xd5\xd8\x0f\xaa\x8c\xd9\x26\x53\xce\xd1\xbc\xab\x9b\x5b\x12\xf7\x7c\xcb\xbf\x1e\xf5\xfa\x0f\xd5\x13\x66\x93\x6c\xf4\x1a\xf9\xef\xf8\x66\x6f\xf6\xe1\x1e\xe0\xb0\x93\x9a\xab\x1c\x0c\x96\xed\xed\x61\x47\xa2\x8a\xb5\x52\x89\x3c\xec\xc8\x82\xf2\x37\xc3\xb5\xfc\xaf\x19\x6b\x96\x48\x36\xbc\xfc\x17\x78\x13\xe2\xc9\x6c\x3e\x0f\xe5\xd4\x2f\xbf\x14\xbb\x7c\xc9\x58\x7b\x52\x07\xa9\x7d\xc8\x0e\xc7\xb6\x7f\xa6\x1c\x1f\xa7\x74\x79\xbe\xc1\x92\x69\x14\x26\x47\x77\xb2\x8a\x4d\x8a\x4e\x31\xab\x3f\x7e\x5b\x39\x56\x57\xd1\xb8\x3a\x2a\x97\xe9\x2d\xf1\xdc\xc7\x5e\x5b\xa9\x34\x7f\xa9\x78\x78\x95\xd7\x36\x83\xd4\xff\xb2\x3e\x0a\xbc\x30\xa2\x89\x46\x73\x3e\x83\xcd\x72\xeb\x29\x5b\x86\xeb\x4b\xcb\xec\x4f\x66\xd2\x1e\x89\x26\x8e\x85\x4f\xfc\x56\x92\x7e\xb5\x4b\x49\x5b\xfd\xe1\xcb\x83\x20\xfc\x2d\x53\x1b\xe7\x15\x59\xe3\x6b\xf9\xc3\x2c\x86\x3b\x77\x45\x97\xd0\x73\x1e\x48\xd4\x73\x1d\x7a\x01\x0f\x83\x13\x25\x6a\xe0\x32\x82\x45\x6f\x5e\x18\x01\x00\x9f\x20\x08\xe3\xe5\x5f\x5f\xb9\x31\xbe\xcd\xc6\x8c\xeb\x77\xde\x6f\x72\x29\x1e\x36\x70\x3c\x96\x20\x7e\x4a\x45\x40\xec\xb2\x84\xb6\x5d\x62\xd4\xbe\xb2\x7e\x7b\xe7\x7f\x09\x3d\xf8\x79\x4d\xef\x28\x57\xfa\x04\x50\x79\x87\xaf\x01\xf1\xc3\xff\x0d\x00\x00\xff\xff\xd6\x21\x2a\xee\x4b\xba\x00\x00" +var _flowcallbackschedulerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x8f\x1c\x37\x92\xe0\xbb\x7e\x05\xa5\x07\xb9\xca\x6a\x55\xb7\x3c\xa3\xc1\xa1\xd0\x25\x8d\x2c\x59\xe7\xc6\x59\x6b\x9f\x24\xcf\x1c\xe0\x31\xd6\xec\x4a\x66\x15\xa1\xac\x64\x4d\x92\xd9\xe5\x1a\x59\xc0\x61\x9f\xef\x61\x1f\xe6\xe1\x7e\xdf\xfc\x92\x03\x83\xdf\x5f\x99\x59\x6d\xd9\x9e\xc3\x4e\x63\xb1\x63\x55\xf2\x23\x22\x18\x0c\x06\xe3\x8b\x74\xb7\x67\x9d\x40\xf7\x5e\x36\xec\xf0\x96\xbd\x23\xed\xbd\x3b\xfe\x4f\x2f\x09\xe1\xe1\x2f\x6f\x04\xeb\xf0\x86\xa8\x0f\x77\xce\xcf\xcf\x91\xfc\xf5\x39\x6e\x9a\x6b\xbc\x7e\xf7\x66\xbd\x25\x55\xdf\x90\x0e\xdd\xc1\xeb\x35\xe1\x7c\x86\x9b\x66\x8e\xd6\xac\x15\x1d\x5e\x8b\x42\xdb\xf7\x77\xee\x20\x84\x90\x1c\x8c\xd3\x76\xd3\x10\xc1\x5a\x44\x5b\x2e\x70\xbb\x26\xa8\xe7\xa4\x42\x82\x21\x2e\x58\x47\x10\x6e\x1a\xb4\xd6\x23\xa0\x0a\x0b\x6c\xbb\xe2\xb6\x42\x1d\xeb\x45\xd4\xa6\xee\xdb\xb5\xa0\xac\xc5\x0d\x15\x47\x68\xac\x21\xe3\xa4\xa9\xe7\xe8\x06\x77\x88\x6f\x71\x47\x2a\x0b\xcf\x12\x3d\xc7\x7b\x7c\x4d\x65\x87\x4b\xdc\x8b\xed\xec\xb9\x04\xa4\x99\xa3\xfb\x6f\xc2\x96\x4f\x1c\xe0\x5f\xb4\xfd\x8e\xfb\xc3\x03\xe2\xa4\xed\x77\xe8\x9b\x8e\xb2\x8e\x8a\xe3\x12\x7d\x7b\xd5\x8a\xff\x86\xde\x43\xb3\xb8\xe9\x1a\x73\x82\xbe\xa4\x9b\x6d\xf9\xeb\x2b\x52\xd1\x7e\x57\xfe\xfe\x15\x3b\xc0\xc7\x0f\x77\xf2\x80\xbc\x11\x58\xf4\x3c\x05\x43\xc2\xdf\xb7\xef\x5a\x76\x68\x11\x87\x36\x84\x23\xdc\x69\xd2\xd7\xac\x43\x5b\xdc\x56\x0d\x6d\x37\x68\x4b\xe5\x32\xd0\xb5\xa5\x2f\x47\x07\x2a\xb6\xa8\xed\x9b\xc6\xf6\x2d\x43\xf8\xad\x9a\x25\x98\x79\xd7\x0b\x7c\xdd\x90\x09\xbd\x0d\xdd\xab\x72\x93\x6f\x3a\x26\x7f\xf1\x9a\xc8\x29\x6a\x2a\x97\xff\x6f\xa4\x9a\x32\x49\xbf\x5e\x13\x52\x0d\x4d\xf2\x12\xd3\x41\x20\x14\xbb\xe8\x16\x1f\x3c\x1e\xb9\x21\xad\xc8\x30\x89\xfc\xd9\x21\x37\xb3\x03\xd3\x4a\xad\xd5\x1f\x7e\x7f\x66\x7f\xdb\x87\xcc\xe4\x3e\x08\xba\x23\x5c\xe0\xdd\x7e\x89\xbe\x7d\x49\x7f\xf4\xfb\x90\x1f\xc9\xba\x97\x7b\xe0\x8b\xba\x66\x9d\x48\x07\xad\x09\xe1\x69\x37\xb3\xc4\x5f\x1f\x5a\xb9\x29\x9e\x55\x55\x47\xb8\x02\x7f\x9e\xe1\x30\xc0\xc2\xd2\xff\x96\x58\x8c\x82\x7a\x1b\xa0\xbe\x80\x41\x7f\x39\x98\x4e\x21\x9f\xfb\xce\xfd\xdd\x38\x8c\x80\x61\xa8\x5b\x22\x20\xe1\x7b\x4d\x44\xdf\xb5\xa4\x4a\xe1\x94\x5f\x5f\x90\xaa\x5f\x8b\xdc\xd7\x71\x7a\x4b\xc6\xde\x51\x21\x48\x85\x0e\x5b\xd2\x22\xd6\x12\xc4\x3a\xb4\x93\xd2\x9a\xd5\x48\x6c\x89\x94\xff\x35\xdd\xf4\x1d\x96\x54\x44\x15\x11\x98\x36\x1c\xd5\x94\x34\x95\x16\x34\xfb\x0a\x0b\xbd\x61\xcc\x46\x41\x0d\xe5\x82\xb4\xa4\xe3\x68\x8d\x5b\xfd\x2f\x79\x10\x88\x2d\xe5\x20\xed\xff\xda\x93\xee\x08\x13\xb4\xe4\x10\x4e\x62\x46\xa2\x00\xc0\x11\xb5\x04\x0e\x91\x12\x7d\xa1\xeb\xb7\x0a\x88\xd9\xdc\x97\xea\x82\x8a\x86\xec\xf2\xfb\xd6\x7d\x34\x2c\x36\xd8\x46\xad\xe2\x60\x13\x05\x82\x02\xc7\x41\x71\xd5\x0a\xd2\xd5\x78\x4d\xb8\xfb\xed\xad\x24\xab\x39\xe3\x40\x3c\x93\x0e\x01\x5d\x10\x35\xcd\x91\xd8\x62\x81\x2a\x52\xd3\x56\x0a\x74\x7d\xb8\xa2\x1d\x11\x5b\x56\x69\xb6\x26\xe6\x38\x56\x8d\xed\xf8\xbb\x9e\x0b\x74\x4d\x10\xdd\xed\x15\x6c\xa4\x42\xd7\x8a\xd8\x1d\xe1\xac\xef\xcc\xf0\x07\xd6\x37\x15\x6a\xe8\x3b\x02\x87\xb4\x96\x62\x6a\xd9\xf5\xd0\x0b\x94\x07\x7b\x43\x04\x37\x60\xd8\xd1\xb9\x55\x0b\xac\xd6\x70\x7d\x84\x3e\xf2\xfc\x91\x2d\xe4\x91\xcc\x3a\x10\xe7\xee\xa0\x76\x53\x28\xa8\x30\x47\xfb\x8e\xdd\xd0\xca\xb0\xa5\x19\xb7\x5a\x24\x2b\x60\x11\x72\x94\x33\x54\xf9\x52\x53\x36\x3c\x2c\xf5\x6a\x73\x00\xc7\xa7\x90\x45\xad\x61\x1b\xba\xf6\xfb\x04\xfd\xff\xb8\xc7\x1d\xde\xc1\x26\x96\x04\xa1\x95\xd9\x28\x16\x48\x37\xd2\x0c\xd8\x5d\xee\x80\x6b\x38\x90\xeb\xbe\x81\x23\x19\xb7\x47\x05\x6f\x8b\x1b\x24\xe9\xf4\x8e\xb6\x9b\x79\x6e\x1a\xa9\x25\xa9\x89\xe4\x7f\x79\xf4\xc1\x52\x50\x2b\xea\xf8\xcb\x05\x1f\x59\x47\x37\xf2\xd4\x6c\x8e\x0e\xa8\xf8\xc4\xd3\x64\x98\x4b\x1d\x2b\x66\xa7\x99\x27\xa1\x34\x04\xcf\xda\xe3\x1b\xd1\xf5\x6b\xf1\x74\x1e\x9f\x8c\xea\x77\x8f\xbd\xed\x69\x68\xd9\x53\x72\x03\xa6\xad\xe4\x63\xcd\xc0\x82\xa1\xf5\x96\x00\xe7\x7a\xc0\x2b\xb1\x0a\xf2\x41\x13\x4d\xe3\x29\xbf\x3a\x26\x61\x25\x66\x93\xa3\xc2\x46\x0d\x87\xa5\x35\xa2\x02\x6d\x31\x47\x2d\x13\xe8\x48\xe4\xe6\x20\x16\xeb\xca\x63\xf1\x2b\x01\x13\xb3\xb6\x39\xca\xd9\xd7\x1d\xc1\xc3\xec\x2d\x18\xda\x77\x4a\x10\xf1\x3d\x63\x35\x6d\x37\x29\x8f\x72\xa0\x50\x86\x2e\x89\x36\xa9\xf4\xda\x86\x08\x37\xd7\x29\x1a\x6d\x34\x1a\x4c\x2e\x07\x73\xeb\x59\x6c\x92\xa8\x20\x77\xb2\x4d\x6f\x28\x39\x00\xcb\xa8\xa5\x9a\xcd\x97\x5a\x33\x7d\xea\x21\x23\xff\x3a\x38\xb3\x90\x44\x68\x61\x71\x59\x5c\xb3\xae\x63\x87\xd9\xfc\xee\x62\x43\x84\xea\x08\xcc\x06\xcd\x68\xe5\xb6\xc0\x87\x64\x7a\x43\xf2\x39\xa2\x2d\x15\xb3\x60\xb2\xdb\x10\xeb\x2c\x18\xc1\xe7\xf8\xe0\x43\x4a\x17\xf3\x65\x1e\x61\xbc\xef\x48\xf4\x4b\x00\xda\x02\xf8\x7d\x36\x5f\x26\x4d\xe4\xdf\xbd\xab\xf6\x06\x37\xb4\x42\xee\x66\xe5\xc9\xc7\x50\x1a\x4a\xfc\xa9\xd4\x89\xa5\x50\x4d\x99\x0a\x74\x7a\x5a\xa1\xbf\xcc\x68\x35\xbf\x17\xcc\xf6\x21\xa4\x5a\xb0\x36\x68\xe5\x60\x4d\x9b\xd1\x0a\xad\x10\xad\xd2\x0f\x96\x3e\x68\xe5\x68\x75\x27\x9c\xd0\x57\xa3\xb9\xa0\x3b\x1c\x88\x5b\x2b\x1c\x40\xc2\x49\xf1\x48\x54\x23\x89\x9e\x13\x0d\x0a\xb6\xa1\xfd\x65\xc7\xce\xec\x2f\xb8\x49\xa8\x4b\xb1\x3c\x69\xe5\x6e\x26\x16\x94\x5a\xfe\xd8\xc2\x05\x17\xe6\x0f\x84\x87\x60\x52\x12\x14\xe5\xa8\xdd\x40\x7a\x74\xc3\x26\x4f\x83\xa9\x1d\x95\x28\xf7\x26\x76\x47\x86\x6b\x90\x00\x20\x25\xfe\x96\xae\xb7\x52\x86\x1d\x68\xd3\x48\x70\x88\xa7\xb2\xe4\x80\x49\xb8\x36\x04\x87\x74\x1d\x33\x1a\x07\xdb\xab\x1b\xb6\xfe\x71\x47\x38\xc7\x1b\xa2\x95\x2f\x6f\x95\x70\x2b\x85\xe7\x24\x52\xc0\x48\x52\x30\x74\xb4\xdd\x3c\x1d\xd8\xc9\x20\x4d\x60\x3b\xc7\xd4\x3b\xcb\xa0\x70\x16\x0d\x1c\x6f\x40\xe0\x47\xb3\xc8\x2b\xb3\x20\xa7\xb2\xac\x6d\xa6\xe8\xb1\x52\x93\x96\x39\xfa\xb9\x6f\xd0\xf0\xb5\x38\x49\xd3\x8e\xec\x3b\xc2\x49\x2b\x94\xf6\xcc\x6a\xa9\xc9\xa5\x7a\x82\x5a\x5f\x77\x4a\x36\xea\x00\x0b\xcc\x1f\xc8\x3f\xff\xcc\x18\x67\x52\x34\x48\xa2\xc2\x99\xa9\xb9\x02\x11\x2c\x47\x0b\x15\xb8\xac\xce\x64\x60\x7f\x21\x41\xcf\x9b\x36\x26\x1e\x1f\xee\xfe\x62\x2c\x26\x65\xee\xc8\x5f\xc9\xf2\xc7\x0d\xee\xec\x5d\x4b\x1d\x17\x77\x02\x46\x96\x8a\x91\x5b\x4e\xab\x1d\x75\xe4\xaf\x3d\xe1\x42\x1b\x40\xb4\x12\xa6\x50\x0d\xba\xbf\xc2\x70\xcc\x57\xb4\xae\x49\x27\xcf\x70\xb1\xc5\x4a\x9f\xc2\x6b\xd1\xe3\xa6\xb8\x41\xa5\xa4\xb8\x8f\x76\x60\xd3\xb1\xb8\x3b\xbb\x4a\x11\x77\xa3\x99\xbd\x2d\x9f\xb6\x06\x2d\x0d\x41\x84\x5d\xa8\xd7\x70\x0f\xc0\xda\x63\xd2\x84\x84\xa6\xd5\xc8\xbc\xde\x91\xa3\x95\x2c\xd0\x85\x33\x53\x83\x20\x2a\x48\x21\xb7\xbf\x25\xca\xfa\x7e\x93\x9e\xcc\x56\x03\xbd\xff\x3e\xd2\xd8\x3f\x3c\x09\xc1\xfa\xda\x88\x28\xa7\x03\x87\xea\xa1\x06\x56\x4f\x35\x0c\x4f\xac\xcf\x86\x53\xbd\x24\xf2\x66\xc0\xd0\x1e\x1f\x13\x49\x3c\x3c\xae\x32\x24\xfc\xd1\x1a\x63\x17\x7f\xc2\x7d\x23\x4e\x52\x63\x72\x86\x01\xf9\x77\x2b\x12\x86\x43\xc4\x58\x87\x5f\x8b\x6c\x79\x16\x69\x38\xf1\x26\x0f\xbf\x8f\x1a\x5b\x90\x35\xb8\xc4\x74\x3a\xcb\xea\x73\x19\x7e\x35\x4d\xb2\xc2\xbf\xa8\xa5\x98\x4b\xf6\x2a\xe1\x11\xdb\x04\x78\x6b\xe5\xcc\xd2\xc1\xc7\x84\x40\x68\x95\x12\x2d\xed\x66\x25\xc3\xca\xd2\x2e\x73\xce\x84\x54\x93\x27\x4e\xf8\x4b\xe6\x90\x93\x5c\x7a\xf9\x10\x68\x99\x51\xe9\xd4\x2d\x6a\xa5\x25\xe6\x22\x35\xbd\xa2\x58\xfb\xab\x7c\xc4\xd2\x1f\x73\x6a\x39\x58\xfc\x8d\x12\xaf\x8d\x40\x4a\xb1\xd2\xf3\xb3\x50\x83\x58\x04\x3d\xaf\x04\xda\xe3\x96\xae\x79\xa2\x68\xe8\xde\xf2\x20\x6d\x3a\x82\xab\xa3\xb3\x00\x2f\xca\x9b\x09\xae\x24\xf6\x4a\xd1\x92\xc3\x9b\xe0\xd4\x98\xa8\xab\x7b\xd4\xbb\xeb\xc8\x67\x8c\xca\xe8\xfe\xfd\x42\x13\x65\x54\x2e\x7f\x37\x36\xc0\x11\xdd\xdf\x9c\x74\x19\x55\xde\x5c\x90\xb2\x74\xb9\x97\x0c\x6b\x09\x80\x56\x19\x3c\x9e\x86\x7c\x62\x5b\x58\x03\x30\x5a\x22\xd1\xf5\xe4\x23\x80\xeb\xd4\xc6\x1d\xee\xde\x91\x0a\x61\xee\xac\xf4\xa8\x6f\x05\x6d\x10\xae\x05\xe9\xa4\x76\x4b\xb9\xb3\x41\x4f\xc3\x49\x13\xfe\x37\x46\x48\x43\xf1\xb3\xb1\x71\xe0\x96\x10\xb2\x5b\xf9\xa3\x22\x64\xed\x1d\x9c\x08\x89\x8f\x83\x43\x59\x4e\x28\x77\xd7\xcc\xf8\x42\x39\x20\x7e\x2c\x8a\x25\xf1\xb1\xc7\xc7\x67\x6d\xf5\x67\x2a\xb6\x55\x87\xc1\x5f\x09\x00\xca\x7f\x70\x90\x6d\xa8\xee\xd8\x2e\x14\x0f\xd7\x58\xc2\xc5\x5a\x6d\xcd\xac\xfb\xb6\x42\xbb\xbe\x11\x74\xdf\x50\xd2\x2d\x22\x35\x4a\xee\x16\x50\xa1\x25\x0e\x80\x25\x6e\x1a\x76\xd0\x8a\xe1\x5a\x6f\x4b\xa7\xb8\x9d\x21\x26\xb6\xa4\x3b\x50\x4e\x24\xe2\x4a\x44\x25\x92\xab\x22\x7b\xc6\xa9\xe0\x60\xc7\x6b\x48\x2d\xd8\x0d\xe9\x14\xc0\x5a\x13\x31\xfe\x57\x74\x23\x0f\x37\x7d\x87\x34\xce\x50\xa9\x5b\xb4\xac\x22\x88\xed\x49\x87\x05\xeb\x50\x47\x0e\xb8\xab\x12\xb5\x31\x14\x6f\x29\xb5\x66\x0e\xf1\xb7\xcc\x7c\x30\x27\xe5\x3c\x3d\x64\x23\x91\x47\x6b\x94\x1b\x40\xb2\xdb\xc5\xe2\x22\x23\x1f\x0d\x56\x0b\x4d\x80\x99\x5c\x9e\x25\xba\x7c\x68\x0f\xa5\x85\x59\xbf\x19\xde\xb1\xbe\x15\x4b\x77\x5e\x2d\xae\x71\x23\xe9\x3d\x9f\x27\xe3\x6a\x5b\xd1\xe5\x43\x07\xaf\xb2\xbc\x7d\xb1\xdb\x8b\x23\x80\x3e\x03\x42\xbe\x3d\xee\xc9\x12\xc9\xff\x7f\x19\xe3\xf6\x64\x16\x0d\xfc\x01\x91\x86\xe7\xa4\xbc\x54\xd6\x14\x74\xf2\xac\x8b\xc1\x43\x9f\x66\x89\x92\x1d\x45\xf6\x7b\xcb\x5e\x1b\xe8\xd1\x00\x19\xd4\xff\xce\x11\xe6\x77\x53\x1d\xf1\x57\xa7\xb3\x0f\x78\xc1\x40\x14\x6d\xd5\x0d\x11\x70\x49\x5c\xb3\x3d\x25\xea\xb6\xa9\x46\x53\x47\xbe\x32\xdd\x50\xd2\xe4\x8d\x02\xd6\x6a\xa8\x87\x99\xcd\x7d\x5d\x74\xc0\x72\x18\x68\x63\xa9\x4d\x30\x1c\x5c\x30\x65\x18\x50\x46\x49\xf9\x5f\xf9\x91\xef\x39\xfb\xbc\xd4\xb8\x9d\x2c\x3c\xb3\x02\x53\xff\xa6\xfe\xb9\xe8\xf0\xe1\x4f\xb8\xe9\xc9\x3c\xb0\x4a\x98\x36\x89\xb6\x34\x3f\xf3\x34\x65\xdd\xca\xfc\xe0\x8f\x95\xa8\xcb\xba\x6d\xf4\xfb\xfc\x2c\x76\xe4\xe9\x76\x5a\x95\x5d\x60\xe5\xd7\x9b\x7b\xc6\xbe\xc4\x4a\xa1\x48\xed\x39\x49\xac\x65\x42\x92\xc9\x18\x1c\xa4\x70\x2d\x38\xfc\xa8\x92\xb8\x6f\x12\x13\x78\xe8\xbb\xa1\xdc\x05\x1e\x6c\xa4\x58\x6c\x8d\xe7\x67\xdf\x31\xc1\xd6\xac\xf1\xdc\x49\x94\xa7\x5e\x2f\xa6\x24\xb4\xbb\x7c\x65\xa1\xd1\x02\x55\x39\xfd\x0c\x6c\x75\x2f\xfa\x2e\x75\xe3\xf1\x18\x75\x8b\x83\xf2\xd5\x45\x56\x42\xde\x30\x29\xb0\x05\x6e\x10\x51\x0a\x79\x43\x77\xea\x10\x94\x93\xec\xf0\x8f\x74\xd7\xef\xcc\x37\xff\x32\x1a\x0c\xb3\xee\x77\x7d\x83\x05\xbd\x21\xfa\xd0\x59\x03\xa8\x82\x81\x8f\x15\xd8\x48\x4e\x74\x0d\x1f\x0d\xbf\xd0\x42\x70\x03\xdc\xe1\x1b\x26\xde\x4a\xb0\x14\x57\x7c\x25\x81\xb2\xb6\x93\x14\x03\x15\x17\x33\x05\x85\xd0\x50\xe9\xe1\x13\x40\xbd\xa5\x9b\x2d\x6c\xfb\xd8\xe8\x11\x62\x6d\x23\x4b\xd6\x6c\x77\x4d\x5b\xa9\x1f\x81\x3e\x24\xb6\x84\x76\x88\xfc\xb8\x6e\x7a\x4e\x6f\x88\x99\x5b\xb2\x60\x77\x43\x38\xda\xe2\x1b\xa2\xbc\x32\x35\x6d\x4a\xb6\x45\x43\x06\x65\xca\x1f\xa5\x83\x05\x31\x9c\xcc\x90\x41\x9f\x01\xac\x0e\xd6\x92\xf2\x10\x23\xdd\xa9\x72\xb0\x37\xca\x32\x00\x46\xb6\xe4\x56\x17\x83\x6b\x1a\x28\x60\x5f\xab\xc1\x96\xe8\x7d\x18\x57\xf4\x87\xdf\xc7\x9a\x51\x04\xfa\xd0\xfa\xed\x89\x9b\x46\x6e\x05\x6c\xb9\x6b\x22\x54\x9a\x84\x63\x30\xed\x68\xab\xa6\x35\xe2\xc9\x00\x60\xc0\x32\xdf\x47\x76\x86\x95\x0f\x52\x7b\x1a\x25\xa0\x1e\xf5\x8b\x82\xd1\x30\x4f\xb5\x9a\x10\xef\x14\x57\x61\x0a\x37\x52\xea\x72\x74\x00\x3d\x4c\x79\x0a\x9b\xb5\xdc\xa2\xca\xdf\x8d\x2b\x79\x21\x89\x86\x03\x35\x58\x0a\x30\x39\xe0\xe9\x8b\xfe\x92\x90\x57\x0e\x8a\x90\xc2\xa0\xa3\x45\x14\x4e\xd4\x59\x43\xda\x3d\xeb\x8c\xfd\x18\x04\x1d\x68\x9a\x92\xbe\x12\x31\xd5\xcb\x38\x87\x70\x60\x1e\x54\x1a\xee\xd0\x7e\x52\xbd\x1d\x98\x79\xc3\xa0\x0d\x1d\x33\x1e\xda\x0d\xc9\xf3\x24\xb8\x0e\x5a\xcf\x6a\xc9\xc9\x9a\xb5\x9e\x6a\x2b\x47\x03\x33\xb8\x17\x8d\x16\x69\xe1\x66\x12\xc1\xd0\x3b\x42\xf6\xe8\x9a\xd4\xac\x23\x52\x77\x80\xc3\x6a\xdf\xf5\xed\x00\x42\x66\x5c\x75\xf5\x78\xb6\x21\x46\x42\x0c\x78\x35\x33\x1e\xc5\x21\x31\x93\xb7\x8a\x8d\x6e\xf1\xa1\x6e\xc5\x3d\x18\x76\x1a\xde\x0d\xf9\x09\xc6\xb9\xf0\x2c\xd2\x92\xf2\x1c\x11\xd9\x24\x87\xc9\x6c\x9a\x4d\x33\xbc\xc4\x53\xa2\x27\xea\x0a\x72\xff\x7e\xfa\xe9\x72\x85\x1e\x2d\x2e\x46\x2e\xbe\xc9\x4e\x52\x31\x14\xde\xce\x32\x31\x32\xd7\x44\x1c\xe4\xb1\x23\xa7\x93\xc7\xdb\xa3\xc5\x05\xba\xee\x05\xda\x30\x81\xfe\x32\x8b\x67\x9f\xa7\x17\xf9\x3c\x21\x24\x06\x8f\x14\x06\x85\x06\x97\x92\xa1\x9f\xf7\x5d\x47\x5a\xf1\x79\xc3\xd6\xef\x66\x73\xe7\x99\x1a\x41\x2f\xde\x8e\x8d\xa2\xbd\x1a\xd8\x60\xb6\x81\x2b\x54\xa7\x7c\x1a\x8f\x34\x7a\x0d\xe1\xdc\x79\x39\xd6\x6a\x7a\x6f\xbb\x3a\xd4\xf3\x60\x67\x08\x90\xe7\xb3\xef\x0c\x97\x2d\xbe\x62\x87\xef\xef\x6a\x7a\x8c\xe0\x55\x10\xe0\x4b\xf4\x15\x3b\xb8\x8f\x99\x55\x0c\x70\x95\x72\xfa\xaf\xe0\x3b\x61\xd1\x72\x4e\x02\xf5\x16\x28\xaa\xe0\x5e\x89\xe5\x34\x6a\xdc\x96\x0c\xaf\x22\xdd\xeb\x14\x4a\x4c\xc5\xfe\x04\x72\x19\xb4\x6f\x41\xb1\x2f\xe9\x66\x3b\x89\x5e\x66\x8e\xdb\x92\x4c\x4e\xf4\x4b\x11\xcc\xe2\x7f\x02\xcd\x14\xe2\x03\x14\xf3\xce\x83\x94\x5c\xab\xfc\x69\x13\x37\x9c\x4a\x2c\x5f\xbb\x8c\x49\x15\x68\x9e\xa3\xc4\x52\x37\xbc\xbc\xbe\xcd\x6a\x8f\x2e\x83\x70\x9f\x4a\x16\xb7\xef\x46\x09\x73\x2a\x1f\x85\xa4\x89\x37\xde\xaf\x4b\x9c\x09\xfb\x2c\x4b\x1e\x2b\x79\x47\xc6\x3f\x49\x26\x85\x84\x09\x04\xf3\xaf\x4b\x95\x9c\xb0\xfe\x50\xb6\x80\x3c\x67\xed\xba\x23\xc2\x8b\xf9\xc4\xbe\x4e\x1d\x1b\x05\xac\xb9\x20\xb4\x57\x18\x63\x02\x8f\x52\x5b\xca\xa6\x8a\x61\xc3\x49\xc6\x50\xa1\x00\x58\x0e\x98\x29\x4e\x32\x0d\x0c\x75\x2a\x5f\xa4\x4b\xbd\xa6\xdf\x67\xa7\x8d\x50\xbe\x7b\x96\xfa\x8f\x5c\x08\xc7\xa6\x9d\x70\x27\x2b\x0d\x51\xbc\x2a\x95\x3a\xfc\xeb\x2a\x12\x4d\xf0\x4f\x75\x15\x51\xd6\xdb\xcc\xd6\x41\xab\x3c\xcd\xd1\x83\x69\xa7\xef\x78\x3b\x23\xd0\xf3\xf0\xa4\x13\x17\x00\x2a\x07\x1c\x04\xf3\xa2\xc2\x01\x30\xd6\xdd\xcc\x9d\xf9\x35\xed\x9a\x67\x07\xb4\x2a\xf0\x49\x79\xee\x90\x47\xbc\xe9\xc3\x0f\xe9\x00\xc9\x4d\x71\x95\xf0\x4f\xda\xa9\x70\x39\x5b\x15\x98\xaa\x7c\xbc\x7c\xa9\xdb\x3f\xf7\xac\x2f\xd8\x88\x74\x65\x0b\x33\xe1\x7d\x22\x08\x5a\x93\xb7\x32\x17\x31\x81\xc3\x68\x23\x6b\x92\xdd\x62\x6e\xcc\xa3\x26\x1d\x4e\x76\x84\x13\x89\x75\xce\x06\xbe\x8d\xc0\xe0\x68\x87\xf7\xa5\x93\x26\x81\xb9\x1c\x02\x58\x0e\x83\x8e\x5b\x96\xc2\xf5\xf2\xf1\x4f\x69\xe6\x5b\x34\xc0\xc4\xc8\x8d\xd8\x51\x6e\x22\x2e\xd0\x4f\x3f\xa5\x1f\x95\xbf\x7e\xa2\xef\xfc\xcb\x34\x6b\xd2\x77\x99\xdb\x89\x58\xa7\xe3\x00\xc6\x3d\xe4\x13\x03\x50\xad\x23\x9d\xc7\x5e\xf4\x88\xf7\x5e\xeb\x78\x4e\x3f\x07\x43\x99\xff\x5d\x74\x37\xb0\x63\x98\xfd\x63\x94\x18\xec\xf2\x8b\x54\xf2\x6e\x29\xd9\x01\xf2\x32\x0c\x17\xdb\xa9\xf2\xd1\xaa\xa3\x41\xaa\x8e\x9c\x98\xa3\x03\x69\x1a\xf9\xbf\x90\x93\x63\x82\x67\x25\xda\x64\x28\x7c\x35\x0a\xe9\x8f\x1c\x39\x2d\xf9\x51\x5c\xbd\x08\xb7\x9d\xfc\xcd\xd9\x19\xaf\x5e\x68\x47\x12\xe6\x9c\x6e\x32\x46\x45\x2f\x52\x19\x77\x7a\xc0\xbc\xe9\xd9\x61\x03\x84\xde\xe1\xbd\xdc\xcd\xde\x4c\x5c\x9b\x9c\xa3\xe4\xe7\xe2\x64\x76\xc0\x25\xfa\xe3\x7b\x35\xe3\x32\x88\xd7\xfd\x90\x07\xc0\x70\xfb\x0e\xef\x79\x9a\xf1\x6b\x00\x51\xee\x98\x52\x42\x6d\x08\x49\x22\x52\x96\xc8\x02\x14\x4b\x90\x38\x3e\xac\x61\x02\xfd\xb5\x27\x3d\x09\xc8\x62\x79\x3e\x24\x8a\x84\x4d\x72\x88\xf1\x15\x85\x6e\x86\x11\x28\xe5\x54\xff\x53\xce\x24\xa1\x03\x49\xe2\x81\xa9\x15\x98\x1c\x74\xb0\x03\x9c\x23\x23\x07\xa3\xfe\xc5\xf9\xe8\x00\xca\x60\x28\x0d\x62\x24\xab\xad\xa7\xc3\x4a\xfc\x8c\x53\x26\x45\xe3\x5b\x6e\x4e\x79\x1f\x97\x44\x1d\x8b\xb0\x69\xfc\x9b\x98\x63\xc7\x8a\xb5\x9f\x08\xb4\x81\xc0\x1e\xc5\xe4\xc6\x41\x24\x91\x3b\x0b\xd1\xe0\xcc\xfa\x47\xe0\xb2\xb3\x27\x6b\x8a\x1b\xe5\x3a\x29\xc3\x2d\xa5\x7e\xc3\x0e\x06\xc0\x37\x13\x83\x8d\x2d\x75\x20\x15\x34\x48\x50\xb7\x89\xec\x9c\xe9\xa0\x6e\xa2\x11\x01\x3f\x61\x50\x50\x80\xdb\x68\xb2\x69\xec\x4c\x70\xd7\x50\xc2\x85\x61\xdd\xd2\x8e\x7e\x93\x3b\xba\x8d\xac\x2b\x24\xc5\xc6\xa9\x1b\x4e\x86\x06\xde\x6f\x64\xc3\xad\x5b\xdf\x8d\xad\xb3\xcc\xd8\xa1\x25\x9d\x97\x7d\xeb\x2e\x8b\x65\x61\xe1\x83\xf3\x42\x41\xb3\x44\xef\xa3\x1b\x64\x21\x7e\x02\xce\xe1\xac\x72\xac\x25\xe8\x0a\x3d\x4a\xbf\x0d\x2e\x38\x02\xf3\x7d\xda\x29\xa5\xbd\x6c\x19\xb4\x4b\x3b\x39\x5e\xbe\x7c\x88\xde\x67\x52\x98\x52\x9d\x67\x95\x6d\x17\xee\x2d\xd9\x28\xd5\x23\x46\x51\x5b\x66\x7a\xc9\xbf\xe0\x0e\xb0\x44\x17\x67\xc3\xad\xd4\x0d\x60\xbc\xdd\x57\xec\xb0\x8c\x28\x84\x92\x44\xae\x02\xae\x20\x0e\x6f\x8f\xe6\xd0\x1c\xc1\x3f\xce\x3f\x45\x2f\x48\x0d\x01\x66\x20\x52\x8d\x30\x04\x7f\x83\xd4\x9a\x39\x6a\x18\x7b\xa7\xf3\x8c\xb7\x94\x2f\xef\x24\x10\x39\xd6\x79\x23\x87\x98\xfd\xee\xf1\x3b\x42\xd2\x08\xa6\x7f\xfc\xfd\xff\xfc\xe3\xef\xff\xfb\xe3\xfd\xdf\x7f\x66\x66\xf8\x8f\x93\x66\xf9\xcf\xa0\x67\x61\xb8\xff\x50\xb6\xd5\xaf\xa5\xce\xa8\x7e\xf3\xbf\x2b\x8e\xf9\xdd\xc5\x3b\x02\x7e\xd4\xe2\x18\x08\x7d\x06\x6d\x50\x66\x8c\xd9\x67\x17\x5e\x74\xc5\x03\xf4\xe8\x42\x47\x80\xe4\x68\x28\x87\xfb\xfb\x64\x0c\xff\xaf\xdf\x33\x19\xed\xa7\x5b\xac\x89\xa1\xd9\x4f\x59\xd8\x7e\x42\x46\x7b\xfd\x86\xb1\xc6\x47\x35\x6d\xff\x93\x42\x5e\x52\xf0\x81\xda\x52\xf3\x09\xed\xe5\xdf\xa3\x0c\x29\xf3\xed\xa7\x53\x2a\xa4\x57\x1e\xbb\xdb\xf3\x96\x11\x19\x8f\x1e\x6b\x46\x41\x65\x76\xd3\xf6\x6a\x60\xb8\x84\x55\x1e\x9f\xc6\x29\xb2\xf7\x63\x43\xac\x78\xb4\x5f\x98\xbb\x4e\xa5\x58\x99\x92\x72\x24\x10\xa6\x8f\xc7\xb6\xd9\x57\xec\x80\x66\xb4\x46\x7c\x8f\xd7\x04\xc2\x7b\xe7\xf6\xdb\xcc\x69\xa5\x52\x87\x82\x5b\xe0\x10\xdd\x50\x40\x3b\xef\xdb\xcf\xa6\x5b\x99\x9e\xf9\xd1\x7f\xfe\xc8\xc1\x2c\xc1\x0c\x9f\x9e\x87\x02\x1d\xcc\x00\x25\x8b\xa5\x54\x27\x2e\xfe\xfd\xe2\xe2\x22\xe9\xb2\xa5\x9b\xed\x37\x79\x0b\xa6\xed\xfa\x59\xbe\xab\x0a\x4a\x1b\xeb\xfc\x18\xfa\x66\x34\x8c\x8c\xfa\x84\x56\xda\x10\x3f\x4b\x4f\xcf\xbc\x41\x36\xc1\x38\x3d\xda\x4b\xf6\xd9\x29\x1a\x45\x91\x3a\x13\x35\x8d\x01\x12\xdd\x52\x07\x19\xc3\xcf\x18\x92\x7f\x16\x76\xe8\xc1\x14\xc2\x9e\x8a\xf1\x2d\x46\x55\xc2\x23\xe1\xbe\x02\x25\x4a\xd6\xf1\xc7\x65\xa2\x25\xc6\xf1\x29\x74\x7b\x74\xb1\x98\xaa\x6a\x3e\x1e\x6d\x09\x28\x7e\xb6\x98\x84\x60\x6a\x9a\xbf\x58\x64\x90\x2b\xd9\xe6\x7f\x77\xb1\xb8\x40\x9f\xa2\xcf\x7e\x0f\xff\xf3\x87\x0b\xf7\x3f\xe7\xe7\xe8\x77\x17\xa8\xc2\xc7\xd0\xc4\x9b\x2d\x0d\x21\x2f\x51\xff\x9d\x08\xcf\xd2\xaa\x6f\x6a\x7e\x50\x73\xf6\xae\x16\x0c\x11\xbb\x00\xad\x85\x29\x7b\x5f\xd2\x71\xec\xcf\x33\x42\x63\x36\xcf\xdc\xba\x06\xc2\xdb\x73\x82\xa7\x84\x27\x07\x3c\x27\xdd\x3f\xc7\x11\xf1\x6b\x15\xd9\xe4\xb9\x2c\x46\x2d\x39\x18\x87\x64\x82\x59\xf6\xd2\x58\x10\xa6\x76\x9c\xa0\x07\xd9\xd1\xb4\x82\x53\x81\x00\x9f\x43\xed\x10\x65\xc6\x84\x74\x6d\x15\x2e\x0e\xb6\xca\x3d\x59\xd3\x9a\x7a\x31\x84\x03\xf7\x65\x93\x2e\xa0\x6a\x91\x64\x6a\xde\xcc\x97\xe8\xbe\x6f\x69\x2b\x24\x28\xdc\x0f\x6f\xa7\xdf\xd1\xea\xfb\x12\xe8\x2e\xd4\xb4\x26\x04\x4a\x22\xb1\xf6\x86\x74\x10\xce\x98\x84\xd3\x0a\x86\x70\x50\x92\x42\xb0\x77\xa4\xe5\x49\xf2\xa3\x65\x46\x3b\xfa\x4b\x42\x66\xa5\x1c\xdc\x5c\xf2\x6e\x5a\xdb\xc7\x58\x6a\x22\x8c\xcf\xcf\xd1\xb7\x5c\x39\xb9\x59\x5d\x53\x30\x0a\xd9\x14\x27\x33\xbd\xa9\xdc\x65\xfe\xe4\xb9\x7c\x8d\x39\x51\xd5\x18\x6c\x4e\xcb\x9a\xed\xf6\x3d\xc0\xca\x67\xb4\x05\x3d\xd4\x01\xfb\x68\x71\x91\xc9\x8b\x50\x30\xc5\xa8\x45\x09\x2e\x31\xc0\x6f\xd6\x58\x97\xb2\x72\x14\xd6\xd4\x17\x61\x28\xa0\xd9\x36\xd9\x14\x5d\x55\x8b\x07\x37\xa4\xb2\xb2\x5c\x21\x64\x50\xfb\xb4\xcc\xf6\x05\x9f\xd6\x77\xe6\xe7\xef\xef\xde\x89\xa1\x7e\x1e\x04\x25\xbf\xfc\xea\xeb\x3f\x43\x31\x03\xda\xb9\xd4\x31\x09\x2e\x57\x95\x3c\xe3\x1c\xdb\x34\x7b\x59\x79\x64\x4c\xd9\x4f\xbd\x0e\x5e\x1d\xd0\x85\xfe\xf8\x1c\xef\xf1\x9a\x8a\xe3\x5b\x26\x1b\xcc\xb2\xb5\x3e\xa1\x66\x0f\xfd\x1b\xf9\xba\x86\x1c\x1e\x39\xd7\xd0\x1a\x18\x41\x97\x12\xef\x81\x07\x52\x69\xcb\x6c\x88\xf8\x37\x30\x3f\x3d\x6b\xab\xab\x76\xdd\xa9\x1a\x6b\x7e\xce\x11\xd8\xf2\xaf\x5e\x28\x3f\x98\x69\xa1\x3e\x81\xd9\xbf\x6f\x45\x5a\x0b\x40\x15\x58\xd2\x22\x3c\x9d\x40\x0a\x70\xad\x2e\xbe\x4f\xe8\x68\xcd\x61\x9e\x71\x6c\xc0\x68\xe6\xff\xeb\x41\x64\x42\xd3\xb4\x89\xc6\x48\x49\x10\xe5\x52\xa7\xa5\x43\xce\x92\xfc\x69\xaa\xaa\x5c\xd5\xac\x6f\x2b\xd4\xd2\x46\xfe\xd0\xe9\x02\x82\x79\x19\xe2\x67\x67\x79\x35\x99\xac\x30\x74\x05\x9e\x02\x1c\x68\x0d\x54\xb1\x13\x6b\x8c\x33\x62\x95\x56\xf1\x49\xe1\xd1\xc0\xe6\x87\x47\x5e\x2e\x94\x3a\xcf\x6c\x4d\xc0\x02\xb6\x34\xac\x85\x06\x96\xfb\x33\x74\x20\x03\xa5\xc6\x76\x58\x15\xf4\x88\x4c\xcf\x39\x44\x6d\x93\x55\xc1\xec\x28\x4f\x80\x32\x9e\xa6\x79\x16\x4f\x95\xab\x48\x6b\x44\x2b\xf4\xa4\x68\x2b\x2d\x8e\x1d\x67\x78\x0f\x11\x31\xec\x12\x17\x75\x8d\x95\x0e\x53\x12\xd0\x24\x22\x74\x74\x87\xbb\x23\x22\xad\xe8\x8e\x68\xcf\x68\x2b\x94\x3c\xb2\xd5\x99\x10\x56\x05\x1d\xfd\x8c\xe3\xa2\x47\x71\x11\xba\x1f\xae\x6a\x7f\xa0\xdc\x3a\xef\x19\xe7\xf4\xba\x21\x88\x50\xb1\x25\x1d\xaa\x7a\xd0\x01\xa8\xf6\xd9\xe2\x6e\xd3\x2b\x29\xc0\xec\xb7\xd0\xe7\xd0\xe2\x1b\x4c\x1b\x55\xb3\xb6\x61\x82\x9f\x05\xae\x4b\x93\xf0\xeb\x77\x0a\xfa\xbf\xf5\xd0\x70\xbd\xe4\x66\xda\x6b\xd1\x53\xb3\xa6\x61\x07\x20\x84\x01\x66\x19\x0c\xa1\x0a\xfb\x2d\x2d\x6a\x4b\xf4\x0c\xad\x83\xba\x2b\xd8\x2f\x6a\x68\x45\xbd\x72\xd9\x9a\xd8\x35\x1e\x92\xc7\xd4\xb7\x08\x66\x92\xac\x6b\xa2\xd8\x16\x2a\x7c\xcd\xb4\x33\x75\xa4\x68\x7b\xc3\x20\x89\xdd\x2b\xcb\xa3\x2c\x1b\x52\xaa\x42\xab\x8e\xac\x09\xbd\x21\x91\x9e\x05\x09\x9f\x7b\x7c\x6c\x18\xae\x16\x59\xfc\x3c\xcf\xfe\x1b\xdd\x4d\xd7\xdd\xd2\x8c\x8d\xae\x1b\x26\x77\xa5\x8b\x84\x30\x85\xae\xe2\x95\x27\x0d\xdd\xc0\xaa\x43\x0a\x8e\x85\x33\x46\x76\x56\x77\x58\x7b\xa0\x4d\xda\x89\xc9\xfa\xc1\x1d\x41\x74\xd3\xb2\x8e\x54\xf3\x05\xba\x72\xd1\x89\x9c\x88\x30\x7d\x30\x8f\x8c\x53\x9e\x9e\xb5\xaa\x1e\x33\x0c\x8c\x66\x3f\xc8\x8b\xeb\x0f\x67\xe8\x07\x75\xd9\xfc\xe1\x4c\x72\xde\x0f\x0d\x3b\xfc\x30\xd7\x2b\xd6\xd6\x4d\x2f\x75\x55\xee\xef\x01\xc9\x1f\xd7\x64\x8b\x6f\x28\xe4\x41\x55\x52\x85\x27\xdd\x0e\x6a\x7d\xc6\x68\x6d\xd9\x01\x71\x26\xd9\xcc\x64\xd2\x05\x45\x81\xe2\xa2\x3c\xae\x3a\x58\x61\x61\x12\xf5\xea\x85\x2e\x32\xea\xe7\xf1\x28\x2d\x0d\x6b\x6a\x1a\x7e\xe4\x61\x4e\x60\x58\x27\x54\x65\xdb\x37\x9c\x0d\x21\xa3\xd3\x97\xd0\x7a\x8b\xbb\x0d\xa9\x16\xe8\xdb\x56\x79\x60\x33\x49\x65\x72\xc3\x9b\xe4\xa6\x3c\x2a\xaa\x96\xcc\x33\xa4\xb2\xdb\xed\xae\xf1\x2e\x81\xbc\x07\x7d\x55\xea\x0e\x72\x20\xe5\x70\x86\x74\x7d\x55\x3f\x40\xab\x56\xf1\xf4\x63\x95\x46\xb4\x08\x08\x6d\x43\x6e\x47\xff\x52\x75\x7a\x06\xea\x44\xa3\x5f\xb6\x3e\x8f\x6d\x32\x5f\x0e\xd6\xb1\x54\x2b\x84\x5e\x93\x1d\xbb\x21\xc8\xdb\x90\x7a\x23\xda\x82\x0e\xf9\xb8\x17\x50\x57\x71\x4b\x05\xfd\x5b\xe8\x4e\xd4\x57\x00\x05\xb0\x8b\x1a\x9a\xcf\x13\x0d\xc1\x5c\x54\x4c\x95\x3d\x27\xa6\x05\x43\x70\x4c\xc8\x1f\x69\xbb\xef\x05\x4f\xe6\xb6\x9d\xf4\x19\x6f\xfe\x9d\x1a\x01\xd5\x42\xc9\xff\x9f\x1a\x3d\xbc\x65\x4a\x91\x29\x1b\x80\x9c\x98\x49\xdb\x24\x4b\x37\x54\x23\x28\x25\x8a\x29\x8d\x68\x15\x68\xdc\xea\x7a\x7f\xa6\x9a\xd9\x40\x11\x33\x3d\x06\x67\xa6\x12\xb3\xd5\xa7\x74\x55\x30\x5b\x4e\x50\xca\x91\xb8\xdb\x35\x59\xe3\x9e\x93\x52\x7c\x02\x56\x6e\x7c\xa8\xc9\x41\xdd\xce\x8a\x15\x30\xb3\x10\xba\x2a\xdf\xdd\x15\xa8\xb6\xf7\xef\xbb\x0f\x5e\x50\x95\xfa\x98\x6a\x4b\x70\xba\xcf\xc2\xa1\xee\xce\x87\x94\x25\xcc\x39\xe9\x04\x4a\x97\x3f\x28\x19\xf1\x64\xe5\xc0\xd0\x55\x07\xef\x66\x4c\x82\xaa\xb2\xe2\x12\xdd\xbb\x6a\x7d\xb1\x04\xfb\x4d\x2a\x16\xf2\x6a\x64\x86\x84\x00\xf8\xa0\x9c\x83\x91\x88\x5e\x57\x7d\x21\x0c\x24\x99\xcb\x6a\xfe\xcb\x2c\x01\x6a\x1e\x9d\xa0\x71\x89\xa6\x7b\x43\x6c\xe4\x2b\xfb\xee\x82\x53\xb8\x46\x15\x7b\xa2\xcb\x87\xba\xac\x6e\x10\xcd\x94\x52\x58\x5e\x1c\xdc\x74\x19\xcb\xa2\x29\x8a\x66\xaf\x42\x27\xed\xd1\x4c\xc9\xb3\x5f\x6b\xaf\xa6\x3d\x14\x0f\xe8\x82\x5e\xe9\xe7\x5c\x39\xb4\x94\xef\xef\x16\xec\xa5\xc8\xdc\x4c\x71\x65\x25\xf6\x4c\x2a\xbf\xd9\x41\xce\xbc\x63\xec\xf2\xa1\xf9\xef\xf1\x6b\x7e\x72\x28\x64\xfc\x26\xae\x4a\x6f\xde\xbe\x10\xbd\xe5\x71\x96\xfa\x37\x23\xa6\x48\x1b\x88\xdb\x50\xe8\x43\x5a\x7d\x31\x3d\x3d\xac\x95\x8d\x87\x1b\xce\xb7\xd4\xa9\xf8\xc6\x3d\x59\x8b\x40\xa7\x00\x85\x5a\xee\xbc\x60\x1a\x9c\x2b\x6a\xe4\x02\xb3\x2c\x7f\x79\x51\x93\x9e\x82\x52\xbc\xa2\x5c\xd5\xa6\xdc\x86\x2a\x19\xec\xee\x44\xa0\x04\xeb\x9b\x52\x1c\xa9\x94\x29\xef\x8a\x66\x64\xb1\x59\x9c\x65\xef\x51\xd4\x97\x60\x9e\xae\x68\xb4\x37\xd6\x05\x57\x2d\x20\x00\xdc\xb7\xe6\x85\xb3\xd9\x9c\x4b\x3f\xb4\xb4\xf9\x61\x11\x6b\x8d\x01\xd3\xd9\x5c\x9c\x2d\x69\xf6\x1c\x55\xe4\x86\x34\x6c\x4f\x3a\x8e\x48\xcb\xfb\x8e\xc4\x3a\x1f\xdc\xc5\xda\x0a\xea\x74\x53\x72\xd0\x26\x41\xbd\x48\x9e\x3e\x7e\xa0\x6d\xc5\x0e\x67\x71\xf9\x87\xaa\x5f\x9b\xdb\x68\x47\xf9\x3b\x29\x33\xfb\xb6\x25\x52\x2b\x94\x37\x61\x9d\x61\x0f\xd8\xa7\x36\xda\x50\x6d\xcc\x6b\x13\xbf\x85\xca\xe7\xab\x73\x43\x65\x93\xd1\x6f\xab\xce\xd1\x3a\xd7\xfd\x72\x35\x94\x3a\x5d\xb6\x92\x24\x88\xba\xaa\xc3\x2d\x6d\x82\xda\x3e\xf0\x6f\x5d\x6d\xd8\x46\x84\x87\xb5\x7f\x12\xb8\xe0\x84\xd6\x77\xc9\x3d\xe6\xe2\x2c\x4d\xaf\x96\x1d\x07\x40\x9f\xdf\x1b\x54\x46\xa4\x1a\x14\xa5\x57\x3c\x99\x60\x7c\xf6\x53\x03\x9d\xe5\xf9\x97\x23\x53\x2c\xaa\x24\xd2\xb1\xe9\x5e\x92\x2a\x48\x0c\xf4\xed\xef\x9f\x70\xe4\x44\x87\x11\x28\xb5\xa9\x7a\x74\x0b\x5c\x4f\xa7\xeb\xe5\x00\x5d\x0b\x99\x2e\xbf\x39\x3d\xc3\xd4\xfe\x62\xb5\x96\x11\x4a\xe6\xb1\x1b\xa1\xa0\x2e\x86\x66\x74\xc2\x61\x87\x54\xac\x0d\xe5\x74\x2a\x4f\x75\xcb\x68\xa1\xf9\xaa\xa5\xc1\xcc\x69\x44\x63\xaa\x8f\x0c\x5f\xd3\x52\xdd\x22\x07\xe7\x47\xbd\xa8\xd1\x3a\x8b\x5a\xe9\x3a\x33\xce\x5f\x35\x21\xbf\xd1\x7e\x35\x3e\x35\x57\x89\xdb\x82\xb1\x18\xdd\x8d\xae\x6c\xee\x2a\x08\x4e\xf8\x28\x34\x48\x29\x9c\x92\xc4\xc5\xda\x3f\x57\x7a\x91\x53\x58\x58\x07\x01\x62\xdf\x24\x37\xd9\x85\xd4\x1b\x8f\x9e\x65\x75\xdd\xf4\x95\x57\x9c\x8c\x76\xd6\xe4\x09\x55\x38\x3d\x43\xf4\x1e\xaf\xc9\x08\x55\x3e\x2a\x9e\x2d\x6d\x8a\xca\xef\xc0\x0e\x8a\x55\xe0\x8c\xe5\xd6\xd3\x69\xa3\x51\xdb\x40\xb7\x04\x1b\xac\xc0\xef\x88\x3c\x31\x05\x93\xea\x12\x5c\x5b\x83\x9c\xf0\xd8\xb9\x99\x64\x5d\x84\xce\xdd\xd8\x72\x27\x5b\x3c\x34\xea\xb0\x6f\x4e\xf6\x2d\x11\x67\x88\x86\x5e\xc5\xe1\xb8\xf6\x58\x31\x55\xa9\x53\x7e\x9a\xc4\x84\xf9\xb7\x7e\x9d\x85\x04\x00\xef\xa9\x08\xe8\xda\x81\xf3\x85\xb4\xac\xdf\x6c\x93\xf9\x55\x8c\x22\xeb\x94\xa3\xcf\x6b\xdf\x32\x2f\x7e\x71\x02\x4c\x71\x55\x37\x9d\x87\x93\x19\x4c\xc2\x5b\xd3\xb6\xe2\xca\x01\x9b\x50\x24\x50\xfa\xd5\x86\x2f\x6b\xc5\xd6\xf5\x38\x59\x70\x67\x12\x06\xc7\x14\x62\x74\xaa\x46\xac\xdf\x9b\x48\xcb\xa5\x9e\x2e\x98\xc6\x23\xed\xc7\xce\x55\x30\x8f\xaf\x72\x19\x0c\xdf\x59\x5a\x7c\x9f\x71\x93\xb6\x4c\x6c\xe5\xc5\x25\x78\x24\x00\x0c\x76\x94\xfb\xf7\xcc\x03\x81\xdd\x69\xbd\x5a\x58\xb8\xbb\x63\x5e\xab\xa7\xb5\x06\x4a\x1f\x4c\xe9\x21\xa8\x91\xcf\x77\x1f\xc8\x24\x80\xd2\xac\x96\x81\x9c\x85\xe9\x4d\xc3\xc4\x33\xf3\xbb\x42\xde\xcf\x1c\xcd\xdc\x9a\xdd\x19\x3d\xcf\xd0\x06\x38\xdb\x6e\x2a\xe0\xed\x5b\x12\x22\x51\x1c\x57\x1e\x02\x45\xae\x28\x10\xc6\x7a\x81\xb3\x7c\x06\x29\x04\xe9\x90\x50\x9d\xcd\x2f\xdc\x52\x91\x1d\x96\xdb\xd3\xf7\xc9\x0a\x44\x7e\x84\xe7\xaa\xac\x70\x61\x1d\xaa\x31\x95\x5f\x4b\x40\xb6\xb4\x19\xe2\x4d\x8f\x92\xa9\x8c\xa8\xe1\x25\x99\x50\xa4\x1c\x08\xe2\x04\x77\xeb\x2d\x7c\x05\xe1\x91\x11\x16\xf1\x1c\x82\x55\x6c\xa9\x0d\xce\x5b\x76\x40\xd7\xd4\x79\x86\xb9\xd0\xa6\x0b\xb4\xe9\xb4\xf5\x85\xd6\x30\xcf\x16\x1e\xb6\xc3\x37\x0c\x6a\x81\xad\xfb\x8e\xc7\xd1\x49\x41\x18\xde\x2d\xb5\x46\x47\xcd\x07\x2a\x72\xe9\x57\x51\x19\x33\xeb\x61\xb3\x19\x13\x3d\xcc\x3f\x59\x8a\x05\x2f\x5d\x2f\x28\xcb\x88\x36\xf4\x86\xb4\x51\x8a\xba\x2d\x60\x1b\x0b\xf3\x34\x84\x64\x78\xb3\x1a\xa9\x9d\x0a\x6a\x3f\xf6\xe6\x9f\xc5\x02\xa1\x02\x4c\xad\x6b\xb4\x87\x1a\x87\x5e\x09\x71\xec\x97\xde\x94\x1a\x1f\x38\x1d\xc1\x8e\x99\xc0\x61\x5a\xda\x9a\x0e\xb7\xbc\xce\x96\xe5\xa7\x32\xff\x19\xc9\x6f\xf3\x50\xd7\x0d\xa6\x3b\x2f\x15\x35\xa3\x94\x9f\xc5\xe3\x18\x49\x05\x8e\xf1\xa6\xd1\xcc\x13\x8b\xbf\xbb\x99\x63\x69\x61\xb2\x25\xff\x07\x39\x66\xcd\x24\x45\xb1\x18\x10\x68\x44\xf6\xb8\x55\xd9\xef\x25\xb2\xac\x06\xf1\xb0\xeb\xd7\x5b\xc3\xde\x41\x1e\x6e\xdc\x3f\xa9\xe6\x19\x26\xea\xe6\x19\xa9\x61\x22\x0c\x27\xe7\xdf\x96\x4f\xe7\x14\xf5\x4c\xbc\x9f\x41\xc3\x65\xe4\xd8\x92\xb8\xe5\x7a\xa3\xc8\x4b\x98\x70\x35\x3e\xa6\xb2\x53\xa1\x6a\x49\x32\xba\x92\xdf\x1f\x61\x7c\x5b\xed\x24\x87\xfc\xe0\xa2\x4d\xa4\x81\x59\x84\xfc\xf2\x44\x88\xa2\xa7\x4f\x51\x29\x81\x64\xea\x40\x1a\x23\x35\x54\x66\x07\xaa\xba\xa8\xe1\x3d\x43\xf3\xf8\x61\x8b\x05\xb9\x21\x9d\x17\xe7\xd0\x91\x9d\x8a\x56\x88\x47\xea\xdb\x8a\x74\xe8\x71\x9c\x72\x70\x9a\x22\x6a\x33\x6b\x9a\x9e\xbf\xf2\xb1\xb4\x94\x7b\xe0\x61\x9f\x53\x2f\xcc\x03\x97\x00\x8e\xbc\x6f\x66\xe7\x10\xae\x8a\xce\x6b\x83\xd0\x20\xd7\xe4\x4a\xef\x2c\x38\x16\xd0\xac\xdd\xbc\xe9\xaf\xe1\x92\x30\x4b\x81\x2f\x56\xb6\xcf\xc2\x70\x19\x09\xde\xa7\xf9\x66\xcb\x41\xf1\xe3\xff\x6b\x90\x8d\xc3\xba\xdb\xa7\x70\x33\x3c\x59\x0c\x0e\x0c\x25\xa3\x79\xdf\x08\xe3\x1f\x3f\xe0\x23\x47\x7f\x23\x1d\x93\x7a\x1b\xbc\x09\x40\xa3\xfa\x3d\x66\x99\x55\x62\x92\xa4\x92\x97\xf8\x64\x96\xba\x44\x5e\xbd\x65\x53\xaf\xad\x62\x8c\xec\x98\x8e\x67\x72\xa3\x06\xc2\xa3\x7c\xa6\x8a\x2d\x61\x1d\x11\x74\x0d\x25\xe1\x04\x6e\x0c\xfd\xb4\xae\x62\xaa\xb3\x66\xea\xa3\x07\x7c\xa7\x13\x46\x57\x68\xc0\xb2\x79\x0a\xbf\x19\xc0\xe7\x3f\x03\x37\xa7\x6e\x85\x3c\xa1\xbd\x02\xcd\xd1\xe9\x5d\xd9\x95\x74\x3c\xef\xe8\xaf\xd7\xd2\xfb\xe1\x41\xb2\x46\x31\x3c\xc3\xdb\xd7\xe5\xea\x3d\xf3\x2e\x5e\x1e\x51\xc7\xb7\xa4\x9b\x3a\x25\x06\x5c\xaa\x4c\x48\xbb\xd3\x33\xd5\xab\xd0\x2a\x6d\x40\xde\x4f\x9c\x2d\x2c\x20\x55\x60\xf1\xd1\x23\xe2\x4a\x7b\xf4\x8e\xa8\x57\xb1\x63\xc1\x89\x09\x3a\x6d\xf1\xb4\xe8\x6e\x7d\x9a\x15\xd4\x2f\xff\x86\x5e\x38\x35\x6c\xcf\xfc\xc9\xa3\x90\x48\x93\x15\x35\xa8\x39\xf2\xf7\x89\x0c\x4c\x2e\xce\xd1\x8a\x3e\x08\xa7\x29\x8b\x33\x2d\x48\x53\xce\x8c\x6e\x1b\xb8\xaa\x82\x27\x52\x25\xc3\xab\x42\x2f\x72\xcd\xcc\x6b\x60\x26\x5d\x29\x2c\xe9\xe3\x17\xfc\x81\x04\x20\xdc\xaa\xb7\xdc\xe3\xab\x85\x0b\xd6\x4f\x43\x17\xcc\x35\xc2\x45\x2b\xfc\xd1\x8f\x27\x99\x67\xee\x10\x57\x81\x51\x44\xdb\x65\x15\xd0\xf6\x99\x48\x39\xf8\x99\x7b\x61\x57\x87\xbd\xfa\x65\x5b\x90\x36\xd4\x07\x55\x16\xbe\x93\xff\xf5\x7d\xd9\x54\x9f\x6f\x8d\xde\x7f\x48\x2b\x21\xd8\x77\x8b\x1a\xce\xd0\x8e\xe0\x96\xbb\x40\x2b\xbf\x58\x4d\x47\xd6\xac\xab\x42\xc8\xed\x1b\xd7\x70\xe6\x38\x2c\xd2\x63\x3d\xab\xb0\x1a\xa8\x92\xd6\xe8\x37\x2f\x70\x11\xaf\xe5\xb3\xaa\x0a\xdf\xf5\x44\xd4\x86\xa4\x26\xcb\x65\x74\x77\x53\x10\x23\xb7\x1a\x51\x2d\x3e\xfb\xd1\xc6\x46\xd1\x4a\xd2\xc6\xfe\x73\xf4\x8d\xbe\x74\xb5\xed\x2f\x83\xda\x84\xc2\x2c\x35\x6c\xa7\x4f\x99\x1a\x7c\xd5\xc1\x69\xae\x2f\x72\x96\x4f\xf8\x40\x32\x53\xc3\x84\x16\x4f\xa5\x8b\x4b\x9e\x1e\xba\x93\xa3\x88\x13\x6c\xab\x91\x06\x77\xd1\x83\x13\x29\x97\x61\x4b\x6f\x8a\x90\x1d\x40\x86\x58\xd3\xcd\x70\x24\xd9\x82\x56\x43\x41\x5d\x09\xe8\xf6\xbd\x9e\xe1\x28\x4f\x29\x35\xc6\xed\x3a\x25\x12\x94\x02\xc2\x6c\x7b\x3f\x10\x30\x6d\x1c\xbd\x0e\x64\x7b\x45\xef\x03\x0d\x79\x1e\xa3\x54\xc6\x80\xe9\x2f\x1f\xde\x4d\xd3\x2a\xe5\xfe\x0c\x0e\x04\x53\xe2\x2d\x4d\x51\xe2\x26\xfa\x66\x8f\x95\x6e\xbb\x0b\xa3\x10\xe3\x24\x10\x81\xa8\x20\x1d\x9c\x1f\x10\xa8\x6d\x0e\x11\xaf\x22\x57\x20\xbb\xd5\xe8\xea\xc5\x3a\x1e\x25\x00\xd9\x47\x32\x82\x29\xf2\xf9\x04\xe0\x93\x02\xa9\x4b\x76\xea\x71\x37\x75\x2a\x39\xb5\xdd\x6d\x3c\x6d\x38\x33\xd3\x8e\xbd\x4c\xa9\xdb\xcd\x92\x53\x29\x2a\x9d\x95\xf8\xb3\xa7\x7b\x0e\xa2\x91\xfc\x5a\x48\x91\x38\xca\xcd\x07\xba\x49\x7c\x1a\x41\xd8\xa6\x52\x56\x7d\xc0\x06\x02\x58\x06\x05\x5b\x4d\xdb\x4a\x2d\xa6\x57\xfe\xcd\xac\x8f\x17\x37\x93\xda\xcd\x30\x0f\x00\xb0\xc6\xc6\xd4\xac\x38\x5f\xa2\xcf\x19\xcb\x9d\xc0\xe7\xe7\xba\x82\x98\xd4\x5c\x82\x58\x64\x2f\x99\x82\x59\x20\x3c\x20\x53\x79\xe2\x55\x87\x93\x47\x7e\x76\x01\x33\x5e\x11\xe4\xf4\xab\x1a\x37\x9c\x64\x0e\xbd\x51\x87\x01\xba\x5c\x25\x6b\x32\x70\x55\x4d\xc8\x97\xf2\xc3\xe2\x1d\x39\xf2\x45\x4d\x1b\x41\xba\x59\xd0\x76\x38\xbf\xd6\xd6\x74\x6c\x1a\x6f\xc3\x29\x73\x6c\xb2\x53\x93\x75\x95\x2a\xa4\x64\x87\x78\x31\xbc\xad\xcb\x06\xdc\xa1\xe0\x6a\x08\x06\x84\xe3\xcf\xb5\x6d\x63\xb4\xf3\x86\x11\x17\x4b\x9a\xd9\x28\x62\x70\x77\xc8\x3f\xa8\xd8\xc7\x3a\xcf\x1f\x7f\xf5\x82\x2f\xd1\x77\x4a\x89\x97\x87\xd6\x77\xdf\x97\x0d\x32\x1a\xe7\x89\x5d\xc2\x6a\x16\x99\x4e\xe9\x21\xc2\x3a\xa9\x15\xd1\xd6\x47\x13\x96\xbb\xa0\xe2\x4d\x4f\xe7\xbc\x9b\xce\x86\xd4\xce\x88\xd2\x39\xb3\xaf\x9b\xe6\x67\x47\xf6\x75\x63\x4c\x9b\x78\xc2\x62\x0f\x29\x68\x69\xdb\xa7\x9b\x09\xe5\x37\x54\x0c\xe6\x29\xae\x36\xf3\x17\xad\xde\x02\xef\xf7\xa4\xad\x66\x25\x30\x9d\x5f\x6f\x78\x56\x5d\xb4\xa9\x3c\x6f\xc2\x02\xa3\x33\x8f\xe8\xd5\xf2\x2f\xe1\x5f\x6d\x63\xf0\xa7\x59\xb3\x76\x8d\x8d\xe1\xc3\xfb\x30\xcf\x5e\x5f\x9e\x8d\x6e\xea\x86\xf2\xf4\xd5\x4b\x30\x78\x0a\xda\x98\x30\x8c\xd4\x99\x65\x0a\xd6\xf6\xfb\x5c\x67\xe5\x29\x84\xbb\xd3\x1a\xdc\x7f\x1b\xf0\xb9\x10\x21\x21\x60\x5c\x34\x47\x27\x42\xc0\xaa\x86\xe4\x8d\x89\xd5\x53\xd2\x5f\xf4\x14\xbe\xde\xb1\x40\x2f\xe9\xa6\xef\x08\x62\xbd\x32\xff\x09\x86\x76\xac\x03\x60\x55\xf4\x71\x73\x44\x1b\x89\x6f\x07\x5e\x66\x83\xd5\xb4\x99\x9e\x03\x06\x7b\x26\x48\x2b\xef\x70\xcd\x51\xbf\xaa\x00\x1a\xbe\xbc\x97\xea\xe0\x98\xec\x88\x0a\xc0\xa7\x59\x71\xe5\x1d\x56\x4a\xf9\x7c\xf6\x91\xfc\xed\xfe\x8d\x2e\xe5\x46\x5a\x0f\xcd\xfc\x04\xe5\x9e\x9b\x45\x5a\x86\x79\xb9\x02\x57\x2f\xe4\x1a\xe4\xf4\x9c\x21\xb9\x86\x22\xd9\x66\x0b\x40\xe6\x06\xfa\x2e\x98\x2e\xba\x07\x45\x28\x45\x03\x5e\xae\x86\x90\x2c\xc3\x06\xf0\x0d\xad\xcb\xc0\xc7\x87\x11\x10\x53\x27\x29\xe1\x8b\x56\x89\xe3\x3f\xfe\x4b\x24\x86\x11\x43\xc1\x48\x65\x91\x9d\xca\xa0\xfc\xaf\x19\xe9\xed\x8e\xb4\x54\x6c\xe5\xe9\x1b\x5a\xd5\xbd\xf4\x7f\xda\x34\x88\xfc\x48\xb9\x2e\x54\xe9\x87\xc9\x94\x0e\x8d\x9f\x55\xee\xc0\x1b\xa7\x7c\x46\xba\xf7\xbd\x87\xb9\xc5\x8d\x50\x7e\xf3\xde\x1d\xb8\xe5\xa5\x40\xe6\xfa\x6c\xdb\xa6\xd7\xe7\x04\x01\x40\x31\x6f\xd6\xf1\xff\x6e\x77\xab\x4e\xa0\xbb\xfd\x25\x3a\xfe\xbb\xcd\x3d\x39\xfe\x3b\x99\xab\x4b\xaf\x50\x9b\x3f\xfb\xb0\x8c\x0a\x59\xa1\x15\x01\x69\xdf\x82\x31\x4f\x6e\x2b\x9f\x61\xa0\x42\x76\x47\xd0\x9a\x75\x1d\x59\xcb\x03\x66\x87\x5b\xbc\x29\x70\xac\x1e\xfe\xba\x17\xd6\x68\xae\x52\x20\x61\x1b\x75\xec\xba\xe7\xa2\x95\x2a\x3c\x68\x88\x9c\xa8\xd4\x16\x97\x1a\x23\xb0\xc8\xab\x55\xc8\xe6\x52\xda\x88\xd9\xab\x17\x4b\xf4\x97\x99\x7a\x4f\x5e\x6f\x10\x57\x97\xa3\xea\x3b\xf5\x70\xa3\x79\x4f\xf3\xde\xed\xd4\x95\xd4\x0c\xb8\xc1\xdd\x35\xde\x48\x82\x34\x0d\x59\x8b\x4c\x05\x69\x7b\xc3\x64\x4d\xe5\x07\x2f\x37\x89\x93\xcf\xaa\x10\x3b\x7c\xbc\x26\x00\x7e\xc5\x94\xc5\x8d\xdc\x90\x4e\x5d\x14\xcf\x80\x9c\x50\xfc\x1f\x4c\x02\xff\x4b\x85\xf4\x82\x66\xc3\xf1\x0d\xd1\xc9\x50\x39\x8f\x4e\x5a\xa4\x38\x5f\x46\x04\x4e\xb2\xe4\x6e\xa3\xa4\x5e\x3a\x4a\xc9\xe1\x1b\xbd\xec\x30\x54\xb3\x24\x3d\xe2\x68\x9d\x8c\xe0\x25\xd8\x5c\xa6\x56\x81\x87\x03\xfe\x94\xc2\x13\x1b\xf9\x2d\x51\x20\x49\x07\xe1\x3f\xb3\x77\xe4\x58\xbe\x0d\x9c\x5e\x3d\x25\x98\x34\x5b\x9b\x9a\xe6\x77\xd6\x38\xa3\xba\xff\x0a\x2c\x4f\x2a\x5b\x2c\x63\x24\xf3\x5e\x54\x97\xbb\xb4\xf4\xde\xeb\x41\x2a\xaf\x7b\x4c\x53\x83\x93\x7a\x87\xc2\x14\x04\x93\xff\x1d\x16\xf1\x89\x13\xfa\x33\xf5\x8d\x26\x1e\x6d\x4f\x9f\x66\xe2\xdc\xa6\x4b\x83\x7b\xa9\x93\x50\x07\x77\x25\xf6\x7c\x30\x26\x50\xc1\x4f\xb6\xe8\xbb\xe3\x31\x31\x9a\x15\x0d\xfd\xca\xbe\x1f\xeb\x3e\x27\x0c\x3c\xd9\xc2\x6f\xfc\x78\x53\xcd\xfc\x36\xc4\x6d\xc8\xb4\x7f\x7e\x9e\x7b\x8b\xcd\xd4\xff\xd7\xd1\xf5\xec\x80\xbb\x0a\x61\x33\x50\x3c\x77\x3c\xa0\x7a\x0e\x40\x8d\x60\x52\xff\xb9\x01\x1e\xb7\x47\xe5\x4b\xd3\x8e\x87\x5d\xec\x21\x4b\x2f\xbb\x77\x27\x05\xab\x8c\x3b\x28\xa6\x2f\x2f\xfa\x08\xbe\x8b\x9c\x07\xb6\xa4\x84\xa4\x92\xe9\x54\xf8\x23\x47\x87\x3f\x54\xc6\x3c\x0b\xae\x1f\xa8\xc2\xb7\xca\x7b\x0b\x92\x1e\xa6\xa0\x0a\x74\xba\x7c\xe8\xad\x12\x3e\x3e\x6b\xab\x3f\x53\xb1\xad\x3a\x0c\xa5\xfa\x66\xae\x46\xde\x5b\x66\x3e\x2c\x07\x24\x7d\xf2\x5a\x6e\xc6\x4f\x63\xde\xcb\xf9\xd5\xdc\x34\x92\x1a\xaf\x75\xfd\xb3\x65\x80\x7e\xd9\xa3\x22\xfb\xbc\x20\x55\x2f\xf5\xa0\x7c\x1f\xf4\x64\xe5\x11\xff\x29\x3c\x1f\xbc\xf4\x7e\x79\x38\x71\xa6\x8f\xe0\xbb\x39\x3f\x57\xcf\x64\xa7\xba\x8f\xdc\x99\xaa\xaa\x11\xbc\xb1\x01\x2f\x97\x40\x0d\xa1\x48\x6d\x8a\x63\xa3\x0b\xaa\x42\xe4\x0a\x8d\xdf\x7e\x19\x0c\x95\x1e\x60\xf9\x4c\xbd\x83\xf0\x1e\x63\x58\x26\x22\x82\xff\xaf\x14\x7c\xf3\x4e\x96\x85\xce\x05\x0a\xb8\xda\x79\x85\x89\xc6\xab\x1d\x5c\x3e\xf4\x97\xb7\x74\xda\xc7\x4f\x1d\xe9\x37\xc1\x8e\x5c\x90\x9d\x57\x96\x46\x3b\x93\x64\x2b\xf5\x0a\xc8\xcb\x3f\xbd\x92\xa2\xd6\x74\xf7\x0b\x05\x1c\xd1\xd5\x8b\x30\x9d\xe7\xad\x7f\xad\x35\x65\xad\x94\xde\xad\x2a\x23\x9a\xdb\x82\x0e\xbe\xd0\x6e\xe2\xa8\xe4\x99\x4e\xf8\xa1\xfa\xfd\xa2\x1a\x0b\xdc\xa8\x74\xb1\x61\xcf\x96\x86\x31\x57\x45\xf5\x17\xd7\x30\xac\x72\x0b\xf9\x74\xb4\xd2\x2a\x47\x51\xd3\x28\x16\x73\x99\x60\xb3\x1e\x2e\xe7\xe2\xc3\xa4\xf2\x05\xe3\x95\x0f\x41\x34\x35\x71\x68\x14\xb1\x61\xfd\x89\xe8\x48\x44\x5c\x8c\xa5\xc8\x93\x89\xd0\x50\x64\x9d\xcd\xef\x2e\x72\xcb\x43\x2b\x93\x5e\x6b\x3b\x6e\x88\x80\x22\x2c\x71\xf4\x3b\x48\x6c\x5d\xbc\xea\xd7\x93\xd8\xff\x64\x7e\xf3\x51\xf9\x64\xcb\x2e\x5a\x9c\x46\xc4\xf5\x0b\x02\x21\x9c\xee\xe5\x34\x62\xf2\x20\xa1\xe8\xab\x29\xac\x7b\x13\x14\xde\x92\x7f\x15\xe1\xa2\x63\xc7\x5b\x1c\xda\x17\x8b\x8b\x08\x8e\x8f\x23\x32\x2d\xee\xc5\xbc\x94\x1a\xd3\xc6\xd3\x65\xe5\xbf\xb0\x33\x37\xfd\x13\x8b\xb6\xc4\x0d\xf5\x2f\xb9\x16\x2d\xe6\x47\x10\x6a\xff\xb5\x34\x19\xf5\x40\xe4\xff\x0f\xd2\xe1\x5f\x92\x7f\x8a\xe4\x57\xeb\x39\x49\xec\xdf\x5a\xc2\xaa\x39\xca\xe2\x55\x0f\x19\x15\x84\xbd\x3e\x22\x4e\x84\x30\x95\x8b\xb4\x00\x70\x4a\x25\x54\x80\x5a\x9b\xb7\x4b\xa1\xc2\xd4\x8e\xba\xf6\x78\xbf\xef\xd8\xbe\xa3\x52\xaa\x42\x10\x54\x28\x98\x4d\xa0\x54\xc5\x08\xcf\x6c\xc1\x24\x73\xdf\x56\xe6\xd4\x69\xe5\x2a\x58\x75\x87\x21\xa8\x43\x25\xcb\x90\xdd\xde\x4f\x2e\xfc\x78\xe2\x3f\x1e\x93\x72\xd7\x02\x8a\x35\xe8\xec\x8a\x6b\xe2\x69\xe0\x30\xce\xcd\x2e\xc8\x87\xf4\x0a\x75\x9f\x3b\x5f\x30\xc7\x3b\xa2\xcb\x3a\x28\x89\x44\xc3\xc8\x30\xc4\x99\xfc\xe9\x60\x9f\x61\x74\x5f\xc4\x81\xa6\x2f\x33\x44\x67\x50\x99\x61\x82\x27\x0a\x3e\xd2\xab\xb9\xf6\x34\x1f\x78\x36\x37\xfb\xc9\xdc\x9c\x96\xf9\xa8\xa7\xe4\x51\xdd\xb7\x7e\x85\x32\xc7\x9c\x31\xba\x76\xd5\x2d\x60\x67\xfa\x91\x5d\xa8\xb3\x6b\x66\x1d\x7c\x71\x77\xd8\x55\xa6\xe6\x1e\xab\x74\xe8\x89\xba\xac\x19\xd2\x6f\x92\x1e\x0b\x89\x84\x57\xd6\xec\x74\x7b\x14\x81\x78\xad\x6c\x35\x61\x94\x66\x60\x14\x5f\x17\xfc\xae\xf1\x99\xf0\x3a\xca\xa0\x19\x73\xa8\x40\xd1\x36\x14\x9b\xf6\x7c\xd8\x86\x82\xaa\xe3\x70\x47\x7f\x3d\x42\x83\x6a\xd9\xf3\x5c\x08\xa6\x0e\x86\xc9\x86\xa1\xe8\x52\xf1\xb0\x3e\x90\xa0\x7e\x50\x42\xc6\x90\x9f\x0a\x67\x59\xdd\xe1\x7c\x9c\x5f\x30\x8b\x8a\x94\x6b\x48\xbb\x11\x5b\xc9\xfb\xa5\x98\x85\x28\xbe\xce\x5f\x26\xf9\x6b\xde\x7b\x91\x4b\xa4\x1d\xef\x59\x76\x3b\x20\xb7\x13\x06\x1f\xfb\xf4\x1e\x88\xf8\x06\x4b\xbc\xd0\xb9\xfe\xe7\x79\x54\x8e\x31\xec\x62\x6b\xb9\xbb\x7a\x9e\xd1\x73\xcc\x5e\x11\x50\x55\x7e\x52\xd5\x78\x31\x2f\x4e\x2c\x38\xbe\x21\xb3\xcb\x87\xdc\x95\x7b\x14\x6c\xe9\xc3\xe2\xfa\x87\x03\x45\x70\x19\xde\x33\xe3\xdb\x62\xea\xd4\x3d\x6f\x11\x90\x69\x41\x39\xef\x89\xaa\xcc\x6c\xdc\x26\xf7\x23\xe0\x9f\xcc\x12\x40\x32\xd4\xcc\xd7\x82\x76\x32\xfa\x76\x75\xa0\xcb\x05\x01\x07\x8a\x01\x0e\x15\x02\x1c\xad\xfb\x3c\x50\xf3\x79\xa4\xde\xb3\x5f\x46\x21\x5a\x17\xcf\x0c\x31\x56\x2f\xdb\x29\x3f\xa1\xf0\x72\xf5\x5b\xc3\x0f\xf9\x58\xa4\xe8\xc4\x1b\xa9\xbc\x30\x5e\x97\x2c\x68\x6e\x4a\xb4\xd6\xbe\xbd\x6f\x90\x31\xd2\x6a\x8f\xbf\xd6\xc2\x9a\x85\x1b\xaa\xec\x38\x69\xe1\xc2\x6d\x33\xa9\x18\xf6\x60\x49\xd6\xd2\x62\x4d\x5a\xb0\x49\x8b\x96\xb1\x99\x15\x96\x47\x3b\x49\x1d\x13\x26\x6c\x3e\xec\x35\xb5\x96\xe0\x11\xde\xf7\x9c\xb1\x9e\x1a\x51\x04\x6d\xfa\x63\x2c\x27\xad\xe4\x22\x1c\x6e\x2a\x00\x1f\xa3\x94\xc7\xe9\x70\xfe\xec\x6a\x3f\x85\x25\x97\x63\x87\x4f\x98\x9d\xf6\x7c\xdb\x64\x0c\xf2\x83\x6b\xd0\x90\x39\xd0\xf4\x1b\x3f\xee\x49\x25\x5d\x11\xcd\xd9\xfb\x3f\xe1\xee\x45\x27\xc8\xba\xd4\xb5\x7c\xe1\xfe\x03\x4f\xa0\x73\xb8\x6f\xb4\xc1\x5b\xe1\xa6\x9a\xda\x27\xdc\x9c\xa6\x67\x6e\x42\xa8\xa4\x03\x45\x4a\xf4\xbb\x22\x10\x51\x7b\x4d\x6a\x78\x4f\x5d\x5e\xad\xd4\x2b\x13\x0c\x71\x42\x20\xae\xb5\xc1\xdd\x46\x45\xcf\xc1\xa3\x1f\x2a\x75\xf2\xd5\xe7\x76\xc4\xab\xda\x7e\x50\xf5\x2c\xb7\x99\xba\xbe\xe6\x39\xf0\xdc\x92\xb8\x27\xa5\xfe\x7d\xd2\x8b\x64\x54\x4f\x98\xcd\xb6\xd4\x6b\xe4\x3f\x3f\x9e\x8d\xc1\x02\xef\xe9\x71\x2f\x35\x57\x39\x18\x2c\xdb\xdb\xe3\x9e\x44\xa5\xcb\xa5\x12\x79\xdc\x93\x05\xe5\x6f\xfa\x6b\xf9\x5f\x33\x56\x2f\x91\x6c\x78\xf9\x6f\xfd\xee\x5a\x2a\x0a\xf3\x79\x28\xa7\x7e\xfa\xa9\xd8\xe5\x73\xc6\x9a\x93\x3a\x48\xed\x43\x76\x98\xda\xfe\x99\x32\x5c\x9c\xd2\xe5\xf9\x16\x4b\xa6\x51\x98\x4c\xee\x64\x15\x9b\x14\x9d\x62\x79\x97\xf8\x49\xf8\x58\x5d\x45\xc3\xea\xa8\x5c\xa6\xb7\xc4\x4b\x77\xf1\xda\x4a\xa5\xf9\x73\xc5\xc3\xab\xbc\xb6\x19\xd4\x80\x29\xeb\xa3\xc0\x0b\x03\x9a\x68\x34\xe7\x33\xd8\x2c\xb7\x9e\xb2\x61\xb8\xba\xb4\xcc\xfe\x64\x26\xef\x23\xd1\xc4\xb1\xf0\x89\xdf\x6f\xd3\x2f\x09\x2a\x69\xab\x3f\x7c\x7e\x14\x84\xbf\x65\x6a\xe3\xbc\x22\x1b\x7c\x2d\x7f\x98\xc5\x70\xe7\x02\x1b\x12\x7a\xce\x03\x89\x7a\xae\x83\xe4\xe4\xe5\x5d\x10\x25\x6a\xa0\xec\x2c\x8b\x1e\x3f\x32\x02\x00\x3e\x41\xb8\xdc\xcb\x3f\xbd\x72\x63\x7c\x93\x4d\x1e\x02\x4f\xe8\x16\xdf\xe4\x72\xfd\x6c\x06\x51\x2c\x41\xfc\xdc\xba\x80\xd8\x65\x09\x6d\xbb\xc4\xa8\x7d\x61\x3d\xae\xfb\x82\x83\x22\xaf\xe9\x4d\x72\x82\x8e\x00\x95\x77\xd5\x19\x10\x3f\xfc\xbf\x00\x00\x00\xff\xff\x28\x4a\xf5\x3e\xed\xc3\x00\x00" func flowcallbackschedulerCdcBytes() ([]byte, error) { return bindataRead( @@ -123,7 +123,7 @@ func flowcallbackschedulerCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowCallbackScheduler.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xf, 0xfe, 0x35, 0x40, 0x3d, 0xd6, 0xe5, 0x65, 0x63, 0xd1, 0x8d, 0xc9, 0x74, 0x11, 0x28, 0x64, 0x9, 0x69, 0x3, 0x6, 0xa2, 0xd1, 0x65, 0x64, 0xf9, 0x31, 0x13, 0xe9, 0xfd, 0xfc, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x27, 0xaa, 0x94, 0xe0, 0x41, 0x4b, 0x9f, 0xf0, 0x74, 0x6b, 0xbd, 0x2f, 0x9d, 0x6f, 0x6, 0x90, 0x9, 0xe, 0xa9, 0xc9, 0xbf, 0xa3, 0x21, 0x45, 0xc6, 0x8a, 0xb4, 0x24, 0xaa, 0xb, 0x2d}} return a, nil } @@ -427,7 +427,7 @@ func epochsFlowepochCdc() (*asset, error) { return a, nil } -var _testcontractsTestflowcallbackhandlerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x38\x0f\xbe\xe7\x57\xf0\xcd\x61\x60\xe3\x9d\x71\x52\x60\xb1\x07\xa3\x99\xee\x6c\xb6\xc5\xf4\xb0\x40\x81\x76\x76\x0f\x9d\x1e\x14\x89\x8e\x85\x2a\x92\x21\xd1\xcd\x14\x45\xfe\xfb\x42\xfe\x8a\x53\xc9\x6d\x73\x89\x2d\x93\x0f\x29\xf2\xe1\x87\xdc\x55\xc6\x12\xcc\xaf\x94\xd9\xaf\x99\x52\x1b\xc6\x1f\x6f\x79\x89\xa2\x56\x68\xe7\xb3\xf1\xe7\x3b\xf3\x88\x7a\x74\x54\xeb\xad\xdc\x28\xec\x8e\x67\x8b\x05\xdc\xa1\xa3\x31\xd0\x77\xa6\x85\x42\x0b\xd2\x01\x03\x27\x77\x95\x92\x85\x44\x01\x84\x8e\x80\x1b\x4d\x96\x71\x82\xc2\xd8\xe6\x44\xea\x2d\x04\x2e\xcc\x18\xe7\xe8\x5c\xc2\x94\x4a\x8f\x2a\x53\x86\x5e\x66\x00\x00\x63\x95\x27\x66\xc1\x75\x60\xa2\x17\x77\x39\xbc\xfc\xb8\xd6\xf4\xfb\x6f\x39\x44\x2f\x9e\xdd\xbe\x56\x39\x44\x91\xf1\x17\xf2\x9a\x4e\x80\xef\x5b\xe0\x87\x59\xa0\xa0\x90\xa0\x73\xf4\x96\x8c\x65\x5b\xbc\x61\x54\xe6\x30\x7a\x79\x4b\xe7\xa6\xde\x28\xc9\x5b\x95\xe3\x73\xa3\x11\xa8\x59\x74\xa6\xb6\x1c\x7b\xdd\xa9\x6b\xc6\xe3\x37\x40\x8e\x60\xe3\xfa\x97\xed\xfd\xd3\xa3\x78\x51\xeb\x3e\x2a\xbd\x78\x22\x45\x0e\x6d\x54\x3e\x83\x60\xc4\x72\xf8\xa6\x9f\x6f\xc9\xd6\x9c\x2e\xd2\x91\x4d\xff\x5b\x2c\xe0\x6f\xe3\xd9\xd1\x47\x14\xf6\x52\x29\x28\xd9\x13\x82\x23\xeb\x39\xe2\x21\x4e\x74\x64\xd1\xc4\xc9\x9f\xdf\xb6\x22\xab\xe6\x05\x98\xbb\x80\xee\xe4\xd4\x4a\x67\x49\x6a\x42\x4d\xd2\x68\xa6\xa0\x60\x52\xd5\x16\x3b\x6e\x32\x87\x81\x82\x2c\x4e\x4c\xac\x60\xee\x75\xe6\x11\x68\xff\xab\x98\x96\x3c\x99\xf7\x41\x80\x9f\x89\x14\x69\x63\x05\xc5\x3c\x0d\x54\x0e\x80\xca\xe1\x04\xd6\x62\x01\xdf\x94\x02\x43\x25\x5a\xb0\xb8\xad\x15\xb3\x47\x47\x1d\xb8\xd2\xd4\x4a\x80\xab\x39\x47\x14\x51\x88\x89\x8a\xc9\x02\x06\x67\xac\xaa\x50\x0b\xef\x6d\xe8\xe4\x2c\xe2\xf2\x28\xfa\x6b\x56\x8d\x43\xbf\x66\x15\xdb\x48\x25\xe9\xf9\x9c\xd5\x54\xbe\xc7\xa1\x4f\x2f\x1f\x22\xe9\xe1\x6b\x3c\x99\x77\x5d\x0b\xe9\xaa\xdd\x3f\xb2\x81\x46\xb0\x97\x54\x8e\xde\x03\x00\x7f\x85\xa0\x4f\xc0\x6a\xa2\x6e\x7a\xc9\x24\x1a\xeb\xde\x48\xde\x07\xe5\x73\x54\xac\x2d\x85\x79\x93\x47\xff\x3c\x8f\x8b\x91\xdc\xa1\x23\xb6\xab\x72\xd8\x22\xad\x6b\x6b\x51\xd3\x9f\xca\xf0\xc7\x24\xcd\x86\x8f\xf0\x7f\x38\x5b\x66\xcb\x38\x44\x65\xa5\xb1\x92\x9e\xa7\xda\xc0\x4d\xf7\x3d\xfb\x2e\xb7\x65\x1c\xa2\xe5\x89\x34\xfa\xb2\x28\x8c\xa5\xbe\xa0\x93\xb3\xe5\x72\x99\xc6\x55\x0a\x44\x97\xc3\xf9\x97\x29\xea\x6d\x91\xae\x10\xaf\xac\xd9\xfd\xc3\x6a\x45\x09\xdb\x99\x5a\x53\x0e\x67\xd9\x32\xa4\x5e\x78\x32\x05\xcb\x84\x08\xba\x77\x72\x4c\x49\x90\xe4\x34\x46\xea\x90\x61\x5d\x3d\xbf\x53\x47\xeb\xc1\xce\xb5\x7e\x62\x4a\x8a\xb6\x1a\xe8\xb9\xc2\x66\xce\x9d\xf2\x51\x8a\xb6\x2d\x64\x70\xe7\x05\xa4\x83\x9f\x89\x97\xf7\xa1\xf1\x27\x49\x9a\x49\xe1\x3b\x54\x21\xd1\xa6\xaf\xba\xc6\xb1\x18\xdb\xa7\x43\x38\x71\x7c\x33\xe6\x16\x19\x61\xe7\x66\x92\xe6\xf0\x47\xd8\xec\x2d\x52\x6d\x35\x9c\x7f\xe9\xa4\x61\x10\x7f\x0b\xf9\x9d\x40\x7f\x70\xb0\x8e\x07\x80\x43\x55\x64\xe1\xb4\xbe\xef\x41\x33\x29\x1e\x60\x75\x5a\xc4\x53\xd7\x66\x9a\xa3\x8a\x8c\x20\x1f\x81\x61\x9b\xc9\x1a\xe6\x8d\x3c\xf0\x6d\x80\x1f\xab\x7f\xca\x21\x29\x1e\x4e\x72\x71\x71\xd1\xf3\xa3\x4f\xfb\xf5\x5f\x79\xd7\xf2\x07\x38\x6d\xfc\xae\x53\xeb\x71\xfb\x7f\xc3\x00\xac\x40\x4b\x15\xe6\x28\x1e\xd7\xf6\xbe\xa3\xf0\xf3\x13\x7a\x4f\x44\x69\x8b\x74\xf9\x7a\x00\x78\x8e\xf4\x4b\x4c\xc8\x91\xc6\xe1\x60\x68\x44\x6c\xf4\xbb\xda\x60\x28\x5a\xeb\x3f\xae\xe4\xaf\xf7\x72\xb2\x58\xc0\xc6\x58\x6b\xf6\xc0\xc0\x62\x81\x16\x35\x47\x20\x03\x54\x22\x3c\x35\xc2\x54\x32\x6a\x17\x85\x0d\x42\xed\x50\x34\xc5\xe6\x1b\xd0\x49\x66\x5b\xe1\x2e\xad\x8c\x73\xef\x43\xe6\xda\xf5\x2b\x6b\x6d\x74\x93\x6a\xbc\xdb\x66\xff\x4a\x2a\x85\x65\xfb\x14\x3e\xbd\xf2\xf2\x6b\x52\x58\xb3\xcb\x61\xd1\x81\x2c\x8a\xfe\x7b\xf3\x39\x9d\x20\xc9\xba\x19\xd7\x9e\x0f\xdd\xc5\x06\xd8\xd6\xc5\x11\x41\x22\x35\xda\x88\x64\xfb\xce\xa9\x21\x94\xed\x7f\x0a\xcc\xfd\x2f\x88\xe6\x14\x07\xa4\x96\x94\x7c\xa0\x02\x61\x05\x2f\x87\x53\xa1\x80\x03\xb0\x82\xfb\x6e\xeb\x1d\x84\xc2\x75\x17\x56\xc7\x60\xf9\xc9\xf7\xaa\x8f\x46\xd5\x8f\xdb\xae\xd7\xae\x9a\xb7\x49\xe5\xc3\xec\x00\xff\x05\x00\x00\xff\xff\x3e\xe3\x09\x41\xd5\x0c\x00\x00" +var _testcontractsTestflowcallbackhandlerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcd\x6e\xdb\x38\x10\xbe\xfb\x29\x66\x7d\x28\x24\x6c\x2b\x3b\xc0\x62\x0f\x42\xdc\x6c\xd7\xdb\xa0\x39\x2c\x10\xc0\xe9\xee\x21\xcd\x81\x26\x47\x16\x11\x9a\x14\xc8\x51\xdc\x20\xf0\xbb\x17\xd4\x8f\x2d\x9b\x54\x12\x5f\x2c\x51\x33\xdf\x0c\x67\xbe\xf9\x91\xdb\xca\x58\x82\xe9\xb5\x32\xbb\x25\x53\x6a\xcd\xf8\xe3\x8a\x97\x28\x6a\x85\x76\x3a\x19\x7e\xbe\x33\x8f\xa8\x07\x47\xb5\xde\xc8\xb5\xc2\xee\x78\x32\x9b\xc1\x1d\x3a\x1a\x02\x7d\x63\x5a\x28\xb4\x20\x1d\x30\x70\x72\x5b\x29\x59\x48\x14\x40\xe8\x08\xb8\xd1\x64\x19\x27\x28\x8c\x6d\x4e\xa4\xde\x40\xe0\xc2\x84\x71\x8e\xce\x25\x4c\xa9\xf4\xa8\x32\x66\xe8\x65\x02\x00\x30\x54\x79\x62\x16\x5c\x07\x26\x7a\x71\x97\xc3\xcb\xf7\x1b\x4d\x7f\xfe\x91\x43\xf4\xe2\xd9\xea\x5c\x65\x1f\x47\xae\x39\x47\x14\x27\xc8\xf7\x2d\xf2\xc3\x24\xd0\x50\x48\xd0\x79\xba\x22\x63\xd9\x06\x6f\x19\x95\x39\x0c\x5e\x5e\xd3\xb9\xad\xd7\x4a\xf2\x56\xe5\xf8\xdc\x68\x04\x6a\x16\x9d\xa9\x2d\xc7\x5e\x77\xec\x9e\xf1\x00\x1e\x20\x07\xb0\x71\xfd\xaf\x3f\x91\xd7\x84\xe9\x51\xbc\xa8\x35\x60\x7b\xda\x8b\x27\x52\xe4\xd0\x46\xe5\x23\x08\x46\x2c\x87\x2f\xfa\x79\x45\xb6\xe6\x74\x95\x0e\x6c\xfa\xdf\x6c\x06\xff\x1a\x4f\x8f\x3e\xa2\xb0\x93\x4a\x41\xc9\x9e\x10\x1c\x59\x4f\x12\x0f\x71\xa2\x23\x8b\x26\x4e\xfe\x7c\xd5\x8a\x2c\x9a\x17\x60\xee\x0a\xba\x93\x53\x2b\x9d\x25\xa9\x09\x35\x49\xa3\x99\x82\x82\x49\x55\x5b\xec\xc8\xc9\x1c\x06\x0a\xb2\x38\x31\xb1\x80\xa9\xd7\x99\x46\xa0\xfd\xaf\x62\x5a\xf2\x64\xda\x07\x01\x7e\x24\x52\xa4\x8d\x15\x14\xd3\x34\x50\xd9\x03\x2a\x87\x23\x58\xb3\x19\x7c\x51\x0a\x0c\x95\x68\xc1\xe2\xa6\x56\xcc\x1e\x1d\x75\xe0\x4a\x53\x2b\xd1\xd3\x31\x0a\x31\x52\x32\x59\x48\xe1\x8c\x55\x15\x6a\xe1\xdd\x0d\xbd\x9c\x44\x7c\x1e\x84\x7f\xc9\xaa\x61\xec\x97\xac\x62\x6b\xa9\x24\x3d\x5f\xb2\x9a\xca\xb7\x48\xf4\xe1\xe5\x5d\x2c\xdd\x7f\x8e\x67\xf3\xae\x6b\x22\x5d\xbd\xfb\x47\x76\xe0\x11\xec\x24\x95\x83\xf7\x00\xc0\x5f\x21\xe8\x14\xb0\x18\x29\x9c\x5e\x32\x89\x06\xbb\x37\x92\xf7\x41\xf9\x18\x15\x6b\x6b\x61\xda\x24\xd2\x3f\x4f\xe3\x62\x24\xb7\xe8\x88\x6d\xab\x1c\x36\x48\xcb\xda\x5a\xd4\xf4\xb7\x32\xfc\x31\x49\xb3\xc3\x47\xf8\x1d\x2e\xe6\xd9\x3c\x0e\x51\x59\x69\xac\xa4\xe7\xb1\x3e\x70\xdb\x7d\xcf\xbe\xc9\x4d\x19\x87\x68\x8b\x5a\x1a\xfd\xb5\x28\x8c\xa5\xbe\xa2\x93\x8b\xf9\x7c\x9e\xc6\x55\x0a\x44\x97\xc3\xe5\xa7\x31\xee\x6d\x90\xae\x11\xaf\xad\xd9\xfe\xc7\x6a\x45\x09\xdb\x9a\x5a\x53\x0e\x17\xd9\x3c\xa4\x5e\x78\x32\x06\xcb\x84\x08\xfa\x77\x72\x4c\x49\x90\xe4\x34\x46\xea\x90\x61\x5d\x41\x8f\x59\x3d\x6b\x7a\x39\xdc\xe8\x27\xa6\xa4\x68\xab\x81\x9e\x2b\x6c\x26\xdd\x29\x1f\xa5\x68\xfb\x42\x06\x77\x5e\x40\x3a\xf8\x91\x78\x79\x1f\x1a\x7f\x92\xa4\x99\x14\xbe\x45\x15\x12\x6d\x7a\xd6\x36\x8e\xc5\xd8\x3e\xed\xc3\x91\xe3\xbb\x31\xb7\xc8\x08\x3b\x37\x93\x34\x87\xbf\xc2\x6e\x6f\x91\x6a\xab\xe1\xf2\x53\x27\x0d\x07\xf1\xd7\x90\xdf\x08\xf4\x3b\x47\xeb\x70\x02\x38\x54\x45\x16\xce\xeb\xfb\x1e\x34\x93\xe2\x01\x16\xa7\x45\x3c\x76\x6d\xa6\x39\xaa\xc8\x0c\xf2\x11\x38\xec\x33\x59\xc3\xbc\x81\x07\xbe\x0d\xf0\x63\xf5\x8f\x39\x24\xc5\xc3\x49\x2e\xae\xae\x7a\x7e\xf4\x69\xbf\xf9\x27\xef\x7a\xfe\x01\x4e\x1b\xbf\xed\xd4\x7a\xd8\xff\x5f\x31\x00\x0b\xd0\x52\x85\x39\x8a\xc7\xb5\xbd\xef\x20\xfc\xfc\x84\xde\x23\x51\xda\x20\xad\x82\x09\xe0\x49\xd2\xaf\x31\x21\x49\x5a\x8f\x03\xa5\x88\x95\x7e\x5f\x3b\x98\x8a\x56\xfb\xf7\x6b\xf9\xf3\xad\xac\xcc\x66\xb0\x36\xd6\x9a\x1d\x30\xb0\x58\xa0\x45\xcd\x11\xc8\x00\x95\x08\x4f\x8d\x30\x95\x8c\xda\x5d\x61\x8d\x50\x3b\x14\x4d\xb9\xf9\x16\x74\x92\xdb\x56\xb8\x4b\x2c\xe3\xdc\xfb\x90\xb9\x76\x03\xcb\x5a\x1b\xdd\xac\x1a\xee\xb7\xd9\xff\x92\x4a\x61\xd9\x2e\x85\x0f\x67\x5e\x7e\x4e\x0a\x6b\xb6\x39\xcc\x3a\x90\x59\xd1\x7f\x6f\x3e\xa7\x23\x34\x59\x36\x13\xdb\x33\xa2\xbb\xd8\x01\xb6\x75\x71\x40\x91\x48\x95\x36\x22\xd9\xae\x73\xea\x10\xca\xf6\x3f\x05\xe6\x7e\x0b\xa2\x39\xc6\x02\xa9\x25\x25\xef\xa8\x41\x58\xc0\xcb\xfe\x4c\x28\x20\x01\x2c\xe0\xbe\xdb\x7c\x0f\x52\xe1\xca\x0b\x8b\x63\xb4\xfc\xf0\x3b\x6b\xa5\x51\xf5\xe3\xc6\xeb\xb5\xab\xe6\x6d\x54\x79\x3f\xd9\xc3\xaf\x00\x00\x00\xff\xff\x42\xab\x82\xd9\xda\x0c\x00\x00" func testcontractsTestflowcallbackhandlerCdcBytes() ([]byte, error) { return bindataRead( @@ -443,7 +443,7 @@ func testcontractsTestflowcallbackhandlerCdc() (*asset, error) { } info := bindataFileInfo{name: "testContracts/TestFlowCallbackHandler.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xac, 0xef, 0xf0, 0x67, 0xcc, 0x29, 0x30, 0xdf, 0x3f, 0x8c, 0x34, 0x18, 0xed, 0xe2, 0xb1, 0xf2, 0xa7, 0x37, 0xa3, 0x16, 0xc2, 0xf7, 0x9b, 0x9, 0x1, 0x80, 0x73, 0x8c, 0xe8, 0x6a, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0xcd, 0x9d, 0xc4, 0xf3, 0x9, 0x34, 0xe, 0x1c, 0x48, 0x1a, 0xb1, 0x4d, 0x6f, 0x43, 0x2c, 0xa5, 0x22, 0x6d, 0x67, 0x32, 0x74, 0x41, 0xd8, 0x7, 0xe8, 0xf2, 0xe2, 0xa2, 0x5d, 0x65, 0x48}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 255131bb..b8daef4f 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -24,7 +24,7 @@ // accounts/revoke_key.cdc (364B) // callbackScheduler/admin/execute_callback.cdc (199B) // callbackScheduler/admin/process_callback.cdc (206B) -// callbackScheduler/admin/set_config_details.cdc (4.347kB) +// callbackScheduler/admin/set_config_details.cdc (4.359kB) // callbackScheduler/cancel_callback.cdc (548B) // callbackScheduler/schedule_callback.cdc (2.87kB) // callbackScheduler/scripts/get_config.cdc (168B) @@ -857,7 +857,7 @@ func callbackschedulerAdminProcess_callbackCdc() (*asset, error) { return a, nil } -var _callbackschedulerAdminSet_config_detailsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\xc1\x6e\xe3\x36\x10\xbd\xfb\x2b\x66\x73\x58\xd8\x80\xeb\x5c\x8a\xa2\x30\xea\x06\xad\xbb\x69\x17\x70\x80\x45\x8c\xed\x65\xb1\x07\x46\x1a\x4b\x44\x29\x52\x20\x87\xd1\x06\x0b\xff\x7b\x21\x51\x92\x49\x49\x71\xe4\x40\x6d\x74\x12\xc4\xe1\x7b\xc3\x37\xa3\xe1\x0c\xcf\x72\xa5\x09\xae\x6e\x85\x2a\xb6\x4c\x88\x07\x16\xfd\xb3\x8f\x52\x8c\xad\x40\x7d\x35\x9b\x91\x66\xd2\xb0\x88\xb8\x92\x73\x23\x14\xed\x53\xa6\x31\xfe\x70\x38\x28\x4d\x3b\x9e\x71\x5a\xc3\xe7\x8f\x92\x7e\xfa\xf1\x66\x39\x03\xef\xc9\x35\x57\x9a\xd3\x93\xb3\xbc\x47\x83\xfa\x11\xd7\xf0\xbd\x34\xfe\xb9\xd9\x73\x3c\xbb\xa9\x86\x3f\xbf\x25\xe3\x92\x67\x36\xfb\xf0\x0d\x23\x5b\x3a\xe9\xb6\xbe\xe0\xd4\x2d\xe2\x9d\x15\xc4\x73\xc1\x51\x1b\x8f\xe2\x96\x7f\xeb\x53\x68\x3c\x58\x19\x9f\x36\x34\x76\x1d\xb3\x94\x1b\x52\x9a\x47\x7b\x62\x64\x4d\xa3\x8d\xb3\x5c\xc0\xf7\x99\x73\x00\x73\xa6\x71\xce\xa2\x48\x59\x49\x6b\x60\x96\xd2\xf9\xef\x4a\x6b\x55\xfc\xcd\x84\xc5\x25\xec\xd9\x23\xd6\xaf\x1f\x8d\xb1\xb8\x27\xa5\x59\x82\x5b\x96\xb3\x07\x2e\x38\x3d\x6d\x95\x24\xad\x84\x40\xbd\x84\x4f\xf6\x41\x70\x93\x9e\x16\x97\xf0\x27\xd2\x99\x2d\x0b\x78\xff\x9b\xe3\x6e\x5c\x2a\x9f\xeb\x6b\x78\xa8\x7c\x00\x26\x01\x25\x71\x12\x18\x97\xe7\x46\x8d\x32\x42\x20\x05\x94\x22\xb8\xd8\xb7\xd9\x01\x1a\x8d\xb2\x3a\xc2\x16\x47\x20\x81\x69\x96\xef\xf1\x00\x1b\xa8\x4f\xba\x32\xce\xa7\x95\xe3\xf9\xa5\x3a\xf7\x60\xce\xad\x3e\xe7\x31\x23\xdc\x2a\x79\xe0\xc9\x02\xde\x0f\x1b\x75\x5c\xf9\x75\x7e\xd0\x2a\x5b\xc3\x75\x4d\x73\x6d\xc2\xf5\x45\x10\xa9\x9b\x1b\xc8\x99\xe4\xd1\xfc\x6a\xab\xac\x88\x41\x2a\x6a\xce\x1f\x9c\xf9\xb9\xf3\x5e\x2d\x66\xbe\x74\x09\x52\x25\x4f\x64\xb5\x46\x49\x10\x55\xae\x07\xa2\xd4\x4b\xee\x50\xb0\x09\x44\x5a\x25\x58\x2f\x58\xcd\xca\x14\xfe\x03\x89\x71\x61\xe6\x1e\x4b\x89\x91\xf2\x24\xbd\x67\x2e\x4d\x60\x03\xc3\xba\x7c\xaa\x33\x7c\xf5\x17\x4f\xd2\x95\xae\xcd\x03\x9c\x0c\x63\x6e\xb3\xf1\x48\x77\x95\xfd\x30\x96\x50\xc5\x78\xa0\x9d\x2a\x4e\x28\x2d\xcc\x23\xd3\x20\xb1\xa8\x2b\x44\xf9\x33\x9e\x87\x69\x0b\x01\x6c\xbc\x0c\x2e\x9f\x11\x8a\xac\xc3\x48\xac\x06\xab\xd4\x97\x11\x40\x5f\xdf\x2d\x2f\xe1\x76\x1a\x4e\xc2\xee\xa0\x2e\xe4\xdf\xa9\x62\x12\xf2\x9d\x2a\xbe\xbe\x6b\x89\x8f\xdd\x20\x56\x45\xef\x4d\x43\x58\x79\xf0\x46\x01\x1c\xc5\xfd\xdf\x84\x6f\x14\xf5\x0b\xc1\x0b\x6f\xc4\x17\x23\xe8\xae\xca\x29\x23\x18\xde\xca\xff\x7b\x10\x2f\xa3\x9f\x3a\x8e\x97\xb1\x77\x43\xd9\xbe\xf2\x43\x55\x97\x75\x5d\x4d\x61\x33\xdc\x88\x75\x82\xe6\xd5\xdf\x5e\x40\x47\x07\xb5\xe1\xfc\xe2\x5f\x54\x5d\x81\x2e\x88\x52\x8b\x17\x5e\x58\xaf\x40\xac\x64\x6f\xe1\xbc\x3b\xcb\xd3\x30\xfc\x25\x8e\x5d\x41\x45\x55\xd9\x7a\x72\x56\xff\x5d\x5f\xcc\x5d\x63\xfd\x4a\x29\x1d\xdb\x54\x42\xd6\x68\xd3\xc8\x58\x83\xbd\x4a\xc4\xec\x94\xe0\x9e\x92\x61\xe6\xf7\xc5\xbc\x0b\x76\xbd\x52\x51\x8f\x7a\x2a\x59\x7d\xc8\x69\xb4\xf5\x11\xc7\x09\xec\xb7\xa1\x91\x46\x46\x08\xac\xd4\xac\xee\x41\x97\xa0\xa4\x78\x02\x5b\x76\xd4\x5c\x26\x55\x97\x7a\xe0\x28\x62\x03\x94\x32\x02\xa6\x11\x72\xad\x1e\x79\x8c\x31\x30\x03\x52\xc9\x1f\x24\x17\xc0\x74\x62\x33\x94\x64\x5c\xe7\xcf\x0d\x78\x63\x60\xd0\x00\x4a\x2c\x5c\x21\x5b\x3f\x73\xc2\xb6\xe5\x3d\xb7\x3c\x0f\x0e\xf8\xcc\x98\x39\xf8\xb9\xec\xe5\xc3\x82\x3a\x68\x36\x6a\x36\xf5\xaa\xe0\x88\xb1\xb4\xfd\xcd\xc7\xcd\xa3\xc3\xdf\xfb\xee\x0f\xdb\x8d\x1b\x63\xc3\x9f\xe5\xa5\x21\xb6\xfb\xa5\xef\x4b\xd7\x62\xc4\xbc\x3b\xf0\xb1\x8f\x3b\x60\xd4\x22\x87\xa3\x95\xa9\x47\xab\x53\x4a\xb7\xab\xc1\x08\x65\x9e\x19\xa1\xbc\xf4\x6c\x5f\xdd\x2c\x78\x9c\x1d\xff\x0d\x00\x00\xff\xff\x98\x0a\x7f\xb0\xfb\x10\x00\x00" +var _callbackschedulerAdminSet_config_detailsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\xb8\xe6\xa1\xb0\x01\xcf\x79\x19\x86\xc1\x98\x17\x74\x5e\xb3\x15\x70\x80\x22\x46\xf7\x52\xf4\x81\x91\xce\x12\x31\x8a\x14\xc8\x63\xd4\xa0\xf0\x7f\x1f\x24\x4a\x32\x29\x29\x8e\x1c\x68\xad\x9e\x04\xf1\xf8\x7d\xc7\xef\x4e\xc7\x3b\x9e\xe5\x4a\x13\x5c\xdd\x0a\x55\x6c\x99\x10\x0f\x2c\xfa\x77\x1f\xa5\x18\x5b\x81\xfa\x6a\x36\x23\xcd\xa4\x61\x11\x71\x25\xe7\x46\x28\xda\xa7\x4c\x63\xfc\xfe\x70\x50\x9a\x76\x3c\xe3\xb4\x86\x4f\x1f\x24\xfd\xf2\xf3\xcd\x72\x06\xde\x93\x6b\xae\x34\xa7\x27\x67\x79\x8f\x06\xf5\x23\xae\xe1\x5b\x69\xfc\x6b\xb3\xe7\x78\x76\x53\x0d\x7f\x7e\x4b\xc6\x25\xcf\x6c\xf6\xfe\x2b\x46\xb6\x74\xd2\x6d\x7d\xc1\xa9\x5b\xc4\x3b\x2b\x88\xe7\x82\xa3\x36\x1e\xc5\x2d\xff\xda\xa7\xd0\x78\xb0\x32\x3e\x6d\x68\xec\x3a\x66\x29\x37\xa4\x34\x8f\xf6\xc4\xc8\x9a\x77\x09\x36\xf2\x38\xe3\x05\x7c\x9b\x39\x1f\x30\x67\x1a\xe7\x2c\x8a\x94\x95\xb4\x06\x66\x29\x9d\xff\xa1\xb4\x56\xc5\x3f\x4c\x58\x5c\xc2\x9e\x3d\x62\xfd\xfa\xc1\x18\x8b\x7b\x52\x9a\x25\xb8\x65\x39\x7b\xe0\x82\xd3\xd3\x56\x49\xd2\x4a\x08\xd4\x4b\xf8\x68\x1f\x04\x37\xe9\x69\x71\x09\x7f\x21\x9d\xd9\xb2\x80\xb7\xef\x1c\x77\xe3\x52\xf9\x5c\x5f\xc3\x43\xe5\x03\x30\x09\x28\x89\x93\xc0\xb8\x3c\x3a\x6a\x94\x11\x02\x29\xa0\x14\xc1\x85\xbf\x4d\x10\xd0\x68\x94\xd5\x11\xb6\x38\x02\x09\x4c\xb3\x7c\x8f\x07\xd8\x40\x7d\xd2\x95\x71\x3e\xad\x1c\xcf\x6f\xd5\xb9\x07\xd3\x6e\xf5\x29\x8f\x19\xe1\x56\xc9\x03\x4f\x16\xf0\x76\xd8\xa8\xe3\xca\xef\xf3\x83\x56\xd9\x1a\xae\x6b\x9a\x6b\x13\xae\x2f\x82\x60\xdd\xdc\x40\xce\x24\x8f\xe6\x57\x5b\x65\x45\x0c\x52\x51\x73\xfe\xe0\xcc\xcf\x9d\xf7\x6a\x31\xf3\xa5\x4b\x90\x2a\x79\x22\xab\x35\x4a\x82\xa8\x72\x3d\x10\xa5\x5e\x72\x87\x82\x4d\x20\xd2\x2a\xc1\x7a\xc1\x6a\x56\x66\xf1\x9f\x48\x8c\x0b\x33\xf7\x58\x4a\x8c\x94\x27\xe9\x3d\x73\x69\x02\x1b\x18\xd6\xe5\x63\x9d\xe4\xab\xbf\x79\x92\xae\x74\x6d\x1e\xe0\x64\x18\x73\x9b\x8d\x47\xba\xab\xec\x87\xb1\x84\x2a\xc6\x03\xed\x54\x71\x42\x69\x61\x1e\x99\x06\x89\x45\x5d\x24\xca\xff\xf1\x3c\x4c\x5b\x0b\x60\xe3\x65\x70\xf9\x8c\x50\x64\x1d\x46\x62\x35\x58\xa8\x3e\x8f\x00\xfa\xf2\x66\x79\x09\xb7\xd3\x70\x12\x76\x07\x75\x21\xff\x4e\x15\x93\x90\xef\x54\xf1\xe5\x4d\x4b\x7c\xec\x06\xb1\x2a\x7a\x3f\x34\x84\x95\x07\x3f\x28\x80\xa3\xb8\xff\x9f\xf0\x8d\xa2\x7e\x21\x78\xe1\xa5\xf8\x62\x04\xdd\x6d\x39\x65\x04\xc3\x8b\xf9\xbb\x07\xf1\x32\xfa\xa9\xe3\x78\x19\x7b\x37\x94\xed\x2b\x3f\x54\x75\x59\xd7\xd5\x14\x36\xc3\xbd\x58\x27\x68\x5e\xfd\xed\x05\x74\x74\x50\x1b\xce\xcf\xfe\x45\xd5\x15\xe8\x82\x28\xb5\x78\xe1\x85\xf5\x0a\xc4\x4a\xf6\x16\xce\xbb\xb3\x3c\x0d\xc3\x5f\xe2\xd8\x15\x54\x54\x95\xad\x27\x67\xf5\xdf\xf5\xc5\xdc\x35\xd6\xaf\x94\xd2\xb1\x4d\x25\x64\x8d\x36\x8d\x8c\x35\xd8\xab\x44\xcc\x4e\x09\xee\x29\x19\x66\x7e\x5f\xcc\xbb\x60\xd7\x2b\x15\xf5\xa8\xa7\x92\xd5\x87\x9c\x46\x5b\x1f\x71\x9c\xc0\x7e\x1b\x1a\x69\x64\x84\xc0\x4a\xcd\xea\x1e\x74\x09\x4a\x8a\x27\xb0\x65\x47\xcd\x65\x52\x75\xa9\x07\x8e\x22\x36\x40\x29\x23\x60\x1a\x21\xd7\xea\x91\xc7\x18\x03\x33\x20\x95\xfc\x49\x72\x01\x4c\x27\x36\x43\x49\xc6\x75\xfe\xdc\x80\x37\x09\x06\x0d\xa0\xc4\xc2\x15\xb2\xf5\x33\x27\x6c\x5b\xde\x73\xcb\xf3\xe0\x80\xcf\x4c\x9a\x83\x9f\xcb\x5e\x3e\x2c\xa8\x83\x66\xa3\xc6\x53\xaf\x0a\x8e\x98\x4c\xdb\xdf\x7c\xdc\x48\x3a\xfc\xbd\xef\xfe\xb0\xdd\xb8\x49\x36\xfc\x59\x5e\x9a\x63\xbb\x5f\xfa\xbe\x74\x2d\xc6\x8d\xbc\xc3\xdf\xfb\xe8\xc3\x76\x2d\x45\x38\x63\x99\x7a\xc6\x3a\xe5\x76\xbb\x1a\xcc\x52\xe6\x99\x59\xca\xcb\xd3\xf6\xd5\x0d\x85\xc7\xd9\xf1\xbf\x00\x00\x00\xff\xff\x95\x99\x55\x30\x07\x11\x00\x00" func callbackschedulerAdminSet_config_detailsCdcBytes() ([]byte, error) { return bindataRead( @@ -873,7 +873,7 @@ func callbackschedulerAdminSet_config_detailsCdc() (*asset, error) { } info := bindataFileInfo{name: "callbackScheduler/admin/set_config_details.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd9, 0xa6, 0xa7, 0x61, 0xb3, 0xbf, 0x57, 0x3d, 0x18, 0x75, 0x91, 0xe9, 0xde, 0x7, 0x37, 0x84, 0x5, 0xe9, 0x5b, 0x16, 0x95, 0xfa, 0x23, 0x9b, 0xf8, 0x9, 0x35, 0x12, 0xa9, 0x8c, 0x42, 0x17}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x67, 0xa6, 0x70, 0x1e, 0x59, 0x86, 0xa1, 0x37, 0x26, 0xe0, 0xa4, 0xb5, 0xb7, 0x13, 0x7c, 0x17, 0xa7, 0xbc, 0x6, 0x62, 0xa8, 0x9a, 0x68, 0x30, 0xdf, 0xf8, 0xc5, 0xd2, 0x77, 0x1d, 0x1f}} return a, nil } diff --git a/tests/CallbackScheduler_test.cdc b/tests/CallbackScheduler_test.cdc index fd1c45d3..3eddab94 100644 --- a/tests/CallbackScheduler_test.cdc +++ b/tests/CallbackScheduler_test.cdc @@ -13,10 +13,12 @@ access(all) let highPriority = UInt8(0) access(all) let mediumPriority = UInt8(1) access(all) let lowPriority = UInt8(2) -access(all) let statusScheduled = UInt8(0) -access(all) let statusProcessed = UInt8(1) -access(all) let statusExecuted = UInt8(2) -access(all) let statusCanceled = UInt8(3) +access(all) let statusUnknown = UInt8(0) +access(all) let statusScheduled = UInt8(1) +access(all) let statusProcessed = UInt8(2) +access(all) let statusSucceeded = UInt8(3) +access(all) let statusFailed = UInt8(4) +access(all) let statusCanceled = UInt8(5) access(all) let basicEffort: UInt64 = 1000 access(all) let mediumEffort: UInt64 = 10000 @@ -30,9 +32,12 @@ access(all) let testData = "test data" access(all) let failTestData = "fail" access(all) let callbackToFail = 2 as UInt64 +access(all) let callbackToCancel = 7 as UInt64 access(all) let futureDelta = 100.0 access(all) var futureTime = 0.0 +access(all) let historicGarbageCollectionLimit = 30.0 * 24.0 * 60.0 * 60.0 +access(all) var timeAfterGarbageCollection = 0.0 access(all) var feeAmount = 10.0 @@ -108,6 +113,8 @@ access(all) fun testCallbackScheduling() { let currentTime = getCurrentBlock().timestamp futureTime = currentTime + futureDelta + timeAfterGarbageCollection = futureTime + historicGarbageCollectionLimit + // Try to schedule callback with insufficient FLOW, should fail scheduleCallback( timestamp: futureTime, @@ -269,21 +276,21 @@ access(all) fun testCallbackCancelation() { // Cancel the callback cancelCallback( - id: 7, + id: callbackToCancel, failWithErr: nil ) let canceledEvents = Test.eventsOfType(Type()) Test.assert(canceledEvents.length == 1, message: "Should only have one Canceled event") let canceledEvent = canceledEvents[0] as! FlowCallbackScheduler.Canceled - Test.assertEqual(UInt64(7), canceledEvent.id) + Test.assertEqual(callbackToCancel, canceledEvent.id) Test.assertEqual(mediumPriority, canceledEvent.priority) Test.assertEqual(feeAmount/UFix64(2.0), canceledEvent.feesReturned) Test.assertEqual(feeAmount/UFix64(2.0), canceledEvent.feesDeducted) Test.assertEqual(serviceAccount.address, canceledEvent.callbackOwner) // Make sure the status is canceled - var status = getStatus(id: UInt64(7)) + var status = getStatus(id: callbackToCancel) Test.assertEqual(statusCanceled, status) // Available Effort should be completely unused @@ -389,6 +396,7 @@ access(all) fun testCallbackExecution() { Test.assertEqual(processedEvent.executionEffort, executedEvent.executionEffort) Test.assertEqual(feeAmount, executedEvent.fees) Test.assertEqual(processedEvent.callbackOwner, executedEvent.callbackOwner) + Test.assertEqual(statusSucceeded, executedEvent.status) firstEvent = true } } @@ -399,13 +407,13 @@ access(all) fun testCallbackExecution() { // Check for Executed events let executedEvents = Test.eventsOfType(Type()) Test.assert(executedEvents.length == 3, message: "Executed event wrong count") - + for event in executedEvents { let executedEvent = event as! FlowCallbackScheduler.Executed - - // Verify callback status is now Executed + + // Verify callback status is now Succeeded var status = getStatus(id: executedEvent.id) - Test.assertEqual(statusExecuted, status) + Test.assertEqual(statusSucceeded, status) } // Check that the callbacks were executed @@ -427,11 +435,35 @@ access(all) fun testCallbackExecution() { // Process the two remaining callbacks processCallbacks() + // Check that the failed callback is marked as Failed + status = getStatus(id: callbackToFail) + Test.assertEqual(statusFailed, status) + // Execute the two remaining callbacks (medium and low) executeCallback(id: UInt64(3), failWithErr: nil) executeCallback(id: UInt64(6), failWithErr: nil) } +access(all) fun testCallbackGarbageCollection() { + + // move time to after the garbage collection limit + Test.moveTime(by: Fix64(historicGarbageCollectionLimit+futureDelta*20.0)) + + Test.assert(timeAfterGarbageCollection < getTimestamp()) + + // process the callbacks to make sure the garbage collection is triggered + processCallbacks() + + // Check that the canceled callback status is unknown + var status = getStatus(id: callbackToCancel) + Test.assertEqual(statusUnknown, status) + + // Check that the failed callback status is unknown + status = getStatus(id: callbackToFail) + Test.assertEqual(statusUnknown, status) + +} + /** --------------------------------------------------------------------------------- Callback scheduler estimate() tests @@ -663,7 +695,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: nil, refundMultiplier: 1.1, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid refund multiplier: The multiplier must be between 0.0 and 1.0 but got 1.10000000" ) @@ -674,7 +706,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, - historicStatusLimit: 0.0, + historicStatusAgeLimit: 0.0, shouldFail: "Invalid historic status limit: Limit must be greater than 1.0 and less than the current timestamp but got 0.00000000" ) @@ -685,7 +717,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 10.0, lowPriority: 0.9}, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority fee multiplier: Low priority multiplier must be greater than or equal to 1.0 but got 0.90000000" ) @@ -696,7 +728,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 3.0, lowPriority: 4.0}, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority fee multiplier: Medium priority multiplier must be greater than or equal to 4.00000000 but got 3.00000000" ) @@ -707,7 +739,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: {highPriority: 5.0, mediumPriority: 6.0, lowPriority: 4.0}, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority fee multiplier: High priority multiplier must be greater than or equal to 6.00000000 but got 5.00000000" ) @@ -718,7 +750,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority effort limit: High priority effort limit must be greater than or equal to the priority effort reserve of 40000" ) @@ -729,7 +761,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority effort limit: Medium priority effort limit must be greater than or equal to the priority effort reserve of 40000" ) @@ -740,7 +772,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, - historicStatusLimit: nil, + historicStatusAgeLimit: nil, shouldFail: "Invalid priority effort limit: Low priority effort limit must be greater than or equal to the priority effort reserve of 20000" ) @@ -762,7 +794,7 @@ access(all) fun testConfigDetails() { Test.assertEqual(oldConfig.priorityFeeMultipliers[FlowCallbackScheduler.Priority.Medium]!, 5.0) Test.assertEqual(oldConfig.priorityFeeMultipliers[FlowCallbackScheduler.Priority.Low]!, 2.0) Test.assertEqual(oldConfig.refundMultiplier, 0.5) - Test.assertEqual(oldConfig.historicStatusLimit, 2592000.00000000) + Test.assertEqual(oldConfig.historicStatusAgeLimit, 2592000.00000000) setConfigDetails( @@ -772,7 +804,7 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: 10, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 10.0, lowPriority: 4.0}, refundMultiplier: nil, - historicStatusLimit: 2000.0, + historicStatusAgeLimit: 2000.0, shouldFail: nil ) @@ -791,7 +823,7 @@ access(all) fun testConfigDetails() { Test.assertEqual(newConfig.priorityFeeMultipliers[FlowCallbackScheduler.Priority.Medium]!, 10.0) Test.assertEqual(newConfig.priorityFeeMultipliers[FlowCallbackScheduler.Priority.Low]!, 4.0) Test.assertEqual(newConfig.refundMultiplier, oldConfig.refundMultiplier) - Test.assertEqual(newConfig.historicStatusLimit, 2000.0) + Test.assertEqual(newConfig.historicStatusAgeLimit, 2000.0) } // Helper function for scheduling a callback @@ -884,15 +916,15 @@ access(all) fun setConfigDetails( minimumExecutionEffort: UInt64?, priorityFeeMultipliers: {UInt8: UFix64}?, refundMultiplier: UFix64?, - historicStatusLimit: UFix64?, + historicStatusAgeLimit: UFix64?, shouldFail: String? ) { let setConfigDetailsCode = Test.readFile("../transactions/callbackScheduler/admin/set_config_details.cdc") let setConfigDetailsTx = Test.Transaction( code: setConfigDetailsCode, - authorizers: [admin.address], - signers: [admin], - arguments: [slotSharedEffortLimit, priorityEffortReserve, priorityEffortLimit, minimumExecutionEffort, priorityFeeMultipliers, refundMultiplier, historicStatusLimit] + authorizers: [serviceAccount.address], + signers: [serviceAccount], + arguments: [slotSharedEffortLimit, priorityEffortReserve, priorityEffortLimit, minimumExecutionEffort, priorityFeeMultipliers, refundMultiplier, historicStatusAgeLimit] ) let setConfigDetailsResult = Test.executeTransaction(setConfigDetailsTx) if let error = shouldFail { @@ -900,7 +932,6 @@ access(all) fun setConfigDetails( // log(setConfigDetailsResult.error!.message) Test.expect(setConfigDetailsResult, Test.beFailed()) // Check error - //Test.assert(error == setConfigDetailsResult.error!.message, message: "error mismatch: Expected \(error) but got \(setConfigDetailsResult.error!.message)") Test.assertError( setConfigDetailsResult, errorMessage: error @@ -931,7 +962,7 @@ access(all) fun getStatus(id: UInt64): UInt8 { "../transactions/callbackScheduler/scripts/get_status.cdc", [id] ).returnValue! as! UInt8 - return status! + return status } access(all) fun getSlotAvailableEffort(timestamp: UFix64, priority: UInt8): UInt64 { diff --git a/tests/scripts/get_executed_callbacks.cdc b/tests/scripts/get_executed_callbacks.cdc index 92963261..540a3b34 100644 --- a/tests/scripts/get_executed_callbacks.cdc +++ b/tests/scripts/get_executed_callbacks.cdc @@ -1,5 +1,5 @@ import "TestFlowCallbackHandler" access(all) fun main(): [UInt64] { - return TestFlowCallbackHandler.getExecutedCallbacks() + return TestFlowCallbackHandler.getSucceededCallbacks() } diff --git a/transactions/callbackScheduler/admin/set_config_details.cdc b/transactions/callbackScheduler/admin/set_config_details.cdc index b857ef77..1bf4a029 100644 --- a/transactions/callbackScheduler/admin/set_config_details.cdc +++ b/transactions/callbackScheduler/admin/set_config_details.cdc @@ -6,7 +6,7 @@ transaction(slotSharedEffortLimit: UInt64?, minimumExecutionEffort: UInt64?, priorityFeeMultipliers: {UInt8: UFix64}?, refundMultiplier: UFix64?, - historicStatusLimit: UFix64?) { + historicStatusAgeLimit: UFix64?) { prepare(account: auth(BorrowValue, SaveValue, IssueStorageCapabilityController, PublishCapability, GetStorageCapabilityController) &Account) { // borrow an entitled reference to the SharedScheduler resource let schedulerRef = account.storage.borrow(from: /storage/sharedScheduler) @@ -65,7 +65,7 @@ transaction(slotSharedEffortLimit: UInt64?, minimumExecutionEffort: minimumExecutionEffort ?? currentConfig.minimumExecutionEffort, priorityFeeMultipliers: newMultipliers, refundMultiplier: refundMultiplier ?? currentConfig.refundMultiplier, - historicStatusLimit: historicStatusLimit ?? currentConfig.historicStatusLimit + historicStatusAgeLimit: historicStatusAgeLimit ?? currentConfig.historicStatusAgeLimit ) // set the new config