diff --git a/contracts/FlowTransactionScheduler.cdc b/contracts/FlowTransactionScheduler.cdc index d24dac9b..e39bddce 100644 --- a/contracts/FlowTransactionScheduler.cdc +++ b/contracts/FlowTransactionScheduler.cdc @@ -106,6 +106,9 @@ access(all) contract FlowTransactionScheduler { collectionTransactionsLimit: Int? ) + /// Emitted when the limit on the number of transactions that can be removed in process() is reached + access(all) event RemovalLimitReached() + // 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 @@ -349,39 +352,42 @@ access(all) contract FlowTransactionScheduler { minimumExecutionEffort: UInt64, slotSharedEffortLimit: UInt64, priorityEffortReserve: {Priority: UInt64}, - priorityEffortLimit: {Priority: UInt64}, + lowPriorityEffortLimit: UInt64, maxDataSizeMB: UFix64, priorityFeeMultipliers: {Priority: UFix64}, refundMultiplier: UFix64, canceledTransactionsLimit: UInt, collectionEffortLimit: UInt64, - collectionTransactionsLimit: Int + collectionTransactionsLimit: Int, + txRemovalLimit: UInt ) { - pre { - refundMultiplier >= 0.0 && refundMultiplier <= 1.0: + post { + self.refundMultiplier >= 0.0 && self.refundMultiplier <= 1.0: "Invalid refund multiplier: The multiplier must be between 0.0 and 1.0 but got \(refundMultiplier)" - 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]!: + self.priorityFeeMultipliers[Priority.Low]! >= 1.0: + "Invalid priority fee multiplier: Low priority multiplier must be greater than or equal to 1.0 but got \(self.priorityFeeMultipliers[Priority.Low]!)" + self.priorityFeeMultipliers[Priority.Medium]! > self.priorityFeeMultipliers[Priority.Low]!: "Invalid priority fee multiplier: Medium priority multiplier must be greater than or equal to \(priorityFeeMultipliers[Priority.Low]!) but got \(priorityFeeMultipliers[Priority.Medium]!)" - priorityFeeMultipliers[Priority.High]! > priorityFeeMultipliers[Priority.Medium]!: + self.priorityFeeMultipliers[Priority.High]! > self.priorityFeeMultipliers[Priority.Medium]!: "Invalid priority fee multiplier: High priority multiplier must be greater than or equal to \(priorityFeeMultipliers[Priority.Medium]!) but got \(priorityFeeMultipliers[Priority.High]!)" - priorityEffortLimit[Priority.High]! >= priorityEffortReserve[Priority.High]!: + self.priorityEffortLimit[Priority.High]! >= self.priorityEffortReserve[Priority.High]!: "Invalid priority effort limit: High priority effort limit must be greater than or equal to the priority effort reserve of \(priorityEffortReserve[Priority.High]!)" - priorityEffortLimit[Priority.Medium]! >= priorityEffortReserve[Priority.Medium]!: + self.priorityEffortLimit[Priority.Medium]! >= self.priorityEffortReserve[Priority.Medium]!: "Invalid priority effort limit: Medium priority effort limit must be greater than or equal to the priority effort reserve of \(priorityEffortReserve[Priority.Medium]!)" - priorityEffortLimit[Priority.Low]! >= priorityEffortReserve[Priority.Low]!: + self.priorityEffortLimit[Priority.Low]! >= self.priorityEffortReserve[Priority.Low]!: "Invalid priority effort limit: Low priority effort limit must be greater than or equal to the priority effort reserve of \(priorityEffortReserve[Priority.Low]!)" - collectionTransactionsLimit >= 0: + self.priorityEffortReserve[Priority.Low]! == 0: + "Invalid priority effort reserve: Low priority effort reserve must be 0" + self.collectionTransactionsLimit >= 0: "Invalid collection transactions limit: Collection transactions limit must be greater than or equal to 0 but got \(collectionTransactionsLimit)" - canceledTransactionsLimit >= 1: + self.canceledTransactionsLimit >= 1: "Invalid canceled transactions limit: Canceled transactions limit must be greater than or equal to 1 but got \(canceledTransactionsLimit)" - } - post { self.collectionEffortLimit > self.slotTotalEffortLimit: "Invalid collection effort limit: Collection effort limit must be greater than \(self.slotTotalEffortLimit) but got \(self.collectionEffortLimit)" } } + + access(all) view fun getTxRemovalLimit(): UInt } /// Concrete implementation of the SchedulerConfig interface @@ -405,26 +411,38 @@ access(all) contract FlowTransactionScheduler { minimumExecutionEffort: UInt64, slotSharedEffortLimit: UInt64, priorityEffortReserve: {Priority: UInt64}, - priorityEffortLimit: {Priority: UInt64}, + lowPriorityEffortLimit: UInt64, maxDataSizeMB: UFix64, priorityFeeMultipliers: {Priority: UFix64}, refundMultiplier: UFix64, canceledTransactionsLimit: UInt, collectionEffortLimit: UInt64, - collectionTransactionsLimit: Int + collectionTransactionsLimit: Int, + txRemovalLimit: UInt ) { self.maximumIndividualEffort = maximumIndividualEffort self.minimumExecutionEffort = minimumExecutionEffort self.slotTotalEffortLimit = slotSharedEffortLimit + priorityEffortReserve[Priority.High]! + priorityEffortReserve[Priority.Medium]! self.slotSharedEffortLimit = slotSharedEffortLimit self.priorityEffortReserve = priorityEffortReserve - self.priorityEffortLimit = priorityEffortLimit + self.priorityEffortLimit = { + Priority.High: priorityEffortReserve[Priority.High]! + slotSharedEffortLimit, + Priority.Medium: priorityEffortReserve[Priority.Medium]! + slotSharedEffortLimit, + Priority.Low: lowPriorityEffortLimit + } self.maxDataSizeMB = maxDataSizeMB self.priorityFeeMultipliers = priorityFeeMultipliers self.refundMultiplier = refundMultiplier self.canceledTransactionsLimit = canceledTransactionsLimit self.collectionEffortLimit = collectionEffortLimit self.collectionTransactionsLimit = collectionTransactionsLimit + FlowTransactionScheduler.account.storage.load(from: /storage/txRemovalLimit) + FlowTransactionScheduler.account.storage.save(txRemovalLimit, to: /storage/txRemovalLimit) + } + + access(all) view fun getTxRemovalLimit(): UInt { + return FlowTransactionScheduler.account.storage.copy(from: /storage/txRemovalLimit) + ?? 200 } } @@ -529,47 +547,43 @@ access(all) contract FlowTransactionScheduler { /* Default slot efforts and limits look like this: - Timestamp Slot (35kee) + Timestamp Slot (17.5kee) ┌─────────────────────────┐ │ ┌─────────────┐ │ - │ │ High Only │ │ High: 30kee max - │ │ 20kee │ │ (20 exclusive + 10 shared) + │ │ High Only │ │ High: 15kee max + │ │ 10kee │ │ (10 exclusive + 5 shared) │ └─────────────┘ │ | ┌───────────────┐ | │ | Shared Pool │ | | │ (High+Medium) │ | - | │ 10kee │ | + | │ 5kee │ | | └───────────────┘ | - │ ┌─────────────┐ │ Medium: 15kee max - │ │ Medium Only │ │ (5 exclusive + 10 shared) - │ │ 5kee │ │ + │ ┌─────────────┐ │ Medium: 7.5kee max + │ │ Medium Only │ │ (2.5 exclusive + 5 shared) + │ │ 2.5kee │ │ │ └─────────────┘ │ - │ ┌─────────────────────┐ │ Low: 5kee max + │ ┌─────────────────────┐ │ Low: 2.5kee max │ │ Low (if space left) │ │ (execution time only) - │ │ 5kee │ │ + │ │ 2.5kee │ │ │ └─────────────────────┘ │ └─────────────────────────┘ */ - let sharedEffortLimit: UInt64 = 10_000 - let highPriorityEffortReserve: UInt64 = 20_000 - let mediumPriorityEffortReserve: UInt64 = 5_000 + let sharedEffortLimit: UInt64 = 5_000 + let highPriorityEffortReserve: UInt64 = 10_000 + let mediumPriorityEffortReserve: UInt64 = 2_500 self.config = Config( maximumIndividualEffort: 9999, - minimumExecutionEffort: 10, + minimumExecutionEffort: 100, slotSharedEffortLimit: sharedEffortLimit, priorityEffortReserve: { Priority.High: highPriorityEffortReserve, Priority.Medium: mediumPriorityEffortReserve, Priority.Low: 0 }, - priorityEffortLimit: { - Priority.High: highPriorityEffortReserve + sharedEffortLimit, - Priority.Medium: mediumPriorityEffortReserve + sharedEffortLimit, - Priority.Low: 5_000 - }, - maxDataSizeMB: 3.0, + lowPriorityEffortLimit: 2_500, + maxDataSizeMB: 0.1, priorityFeeMultipliers: { Priority.High: 10.0, Priority.Medium: 5.0, @@ -578,7 +592,8 @@ access(all) contract FlowTransactionScheduler { refundMultiplier: 0.5, canceledTransactionsLimit: 1000, collectionEffortLimit: 500_000, // Maximum effort for all transactions in a collection - collectionTransactionsLimit: 150 // Maximum number of transactions in a collection + collectionTransactionsLimit: 150, // Maximum number of transactions in a collection + txRemovalLimit: 200 ) } @@ -964,7 +979,7 @@ access(all) contract FlowTransactionScheduler { let mediumUsed = slotPriorityEffortsUsed[Priority.Medium] ?? 0 // If it is low priority, return whatever effort is remaining - // under 5000, subtracting the currently used effort for low priority + // under the low priority effort limit, subtracting the currently used effort for low priority if priority == Priority.Low { let highPlusMediumUsed = highUsed + mediumUsed let totalEffortRemaining = self.config.slotTotalEffortLimit.saturatingSubtract(highPlusMediumUsed) @@ -1202,6 +1217,8 @@ access(all) contract FlowTransactionScheduler { /// removeExecutedTransactions removes all transactions that are marked as executed. access(self) fun removeExecutedTransactions(_ currentTimestamp: UFix64) { let pastTimestamps = self.sortedTimestamps.getBefore(current: currentTimestamp) + var numRemoved = 0 + let removalLimit = self.config.getTxRemovalLimit() for timestamp in pastTimestamps { let transactionPriorities = self.slotQueue[timestamp] ?? {} @@ -1209,8 +1226,16 @@ access(all) contract FlowTransactionScheduler { for priority in transactionPriorities.keys { let transactionIDs = transactionPriorities[priority] ?? {} for id in transactionIDs.keys { + + numRemoved = numRemoved + 1 + + if UInt(numRemoved) >= removalLimit { + emit RemovalLimitReached() + return + } + let tx = self.borrowTransaction(id: id) - ?? panic("Invalid ID: \(id) transaction not found during initial processing") // critical bug + ?? panic("Invalid ID: \(id) transaction not found during removal") // critical bug // Only remove executed transactions if tx.status != Status.Executed { @@ -1220,6 +1245,7 @@ access(all) contract FlowTransactionScheduler { // charge the full fee for transaction execution destroy tx.payAndRefundFees(refundMultiplier: 0.0) + // remove all associated transaction data self.removeTransaction(txData: tx) } } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 1243bf32..39677162 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -8,7 +8,7 @@ // FlowStakingCollection.cdc (64.644kB) // FlowStorageFees.cdc (9.096kB) // FlowToken.cdc (13.11kB) -// FlowTransactionScheduler.cdc (72.197kB) +// FlowTransactionScheduler.cdc (73.523kB) // FlowTransactionSchedulerUtils.cdc (28.998kB) // LinearCodeAddressGenerator.cdc (4.793kB) // LockedTokens.cdc (34.201kB) @@ -248,7 +248,7 @@ func flowtokenCdc() (*asset, error) { return a, nil } -var _flowtransactionschedulerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x4d\x93\x1c\xb7\x91\xe8\x5d\xbf\x02\xd4\x41\xee\xb6\x86\xcd\x91\xbd\xda\x58\x77\x70\x48\x53\xfc\xb0\x27\x96\x92\xf8\xc8\xa1\xf7\x20\x2b\x6c\x4c\x15\xba\x1b\x6f\xaa\x0b\xed\x02\x6a\x7a\x5a\x14\x23\x5e\xec\xf9\x1d\xf6\xb0\x87\xf7\xfb\xf6\x97\xbc\x40\xe2\xa3\xf0\x91\xa8\xae\x19\x52\x96\xed\xf0\xc4\x86\x57\xec\x02\x12\x89\x44\x22\x91\x99\x48\x64\xf2\xed\x4e\x74\x8a\x7c\xfa\xa2\x6f\xd7\xfc\xb2\x61\x17\xe2\x8a\xb5\x9f\x7e\xe2\x7f\x6e\xc4\x1e\xf9\xe9\x05\x63\x32\xfe\xe5\x8d\x12\x1d\x5d\xb3\xf8\xc3\x1f\x38\xdb\xbf\x66\x52\x34\xd7\xac\xfb\xf4\x93\x4f\x1e\x3c\x78\x40\x00\x60\x47\x5b\x49\x2b\xc5\x45\xfb\xa6\xda\xb0\xba\x6f\x58\x47\x58\x4b\x2f\x1b\x26\x89\xdc\xd2\x4e\x91\x4a\xb4\xaa\xa3\x95\x92\x44\x09\x22\x6d\x23\x42\x7b\x25\x5a\xb1\x15\xbd\x24\xec\x86\x55\xbd\x86\x40\x78\x4b\xd4\x86\x91\x55\xaf\xfa\x8e\x2d\xf4\x20\x30\xd0\xc5\x86\x4b\x0f\x86\xf0\xed\xae\x61\x5b\xd6\x2a\x49\x5e\xbc\x3c\x7f\x45\x7e\xfd\xeb\xd3\x5f\x48\x0f\xb8\x26\x6a\x40\x89\xc8\x83\x54\x6c\x7b\x42\x68\xd3\x88\x3d\x6f\xd7\x31\x32\x9f\xee\xe9\x15\x23\xfd\xee\x53\x42\xdb\xda\xa2\xc1\x60\xc4\x46\xac\x79\x45\xa8\x22\xbb\x8e\xd5\x6c\xc5\x5b\x0d\x97\x6f\x99\x24\x7b\xae\x36\xa2\x57\x84\xdd\x28\xd6\xb5\xb4\x21\xaa\xe3\xeb\x35\xeb\xe4\x82\x78\x7c\xdf\x60\xb8\x48\x42\x3b\x46\x76\x1d\x17\x1d\x57\xfc\x07\x56\x93\xd9\xef\xf9\x7a\xf3\xe0\x6b\x56\xf3\x7e\xfb\xe0\xa5\xd8\xcf\x01\x38\xa9\xf9\x6a\xc5\x3a\xd6\xaa\x80\x30\xeb\x9e\x76\xb4\x55\x8c\x49\x40\x75\xc5\x18\xd9\xf6\x8d\xe2\xbb\x86\xb3\x4e\x2e\x61\x68\x42\xc8\x7d\xa2\x41\xba\x41\x0e\x61\xb7\x15\xef\xa4\xba\x7f\xd9\x88\xea\x6a\x80\x7b\xe2\xfb\x19\x2c\x86\x9e\xbb\x4e\x5c\xf3\x9a\x49\x72\xc9\xa4\xba\xcf\x56\x2b\xcd\x04\x96\xc6\xbc\x5d\x0f\x1d\x5f\x8a\xfd\xd0\xcb\x92\x50\x12\xb1\xd3\x5c\xd3\xb7\x5c\x2a\x5e\xd1\xa6\x39\x90\xfd\x86\xb5\xa4\xa2\x3b\x5a\xe9\x86\xb0\x1e\x92\xd0\x95\x62\x1d\x2c\xb9\x26\x2e\xe1\x8a\xec\x69\xb0\x94\x01\x49\x2f\x36\xcc\x2e\x26\xe9\x25\x93\xa6\xbd\x6c\x84\x32\x2b\x12\x90\xca\xe2\xda\xf0\x2d\x37\xab\xbc\xa5\x2d\x5d\x33\xd2\x32\xb5\x17\xdd\x15\xe9\x98\x14\x7d\x57\x31\x69\xe6\xc0\x5a\xd9\x77\x9a\x33\xf4\x4a\xf3\x4a\x69\xce\x25\x3b\xd6\xad\x44\xb7\xa5\x6d\xc5\xc8\x7e\xc3\x1b\x66\x58\x5a\x37\x6b\xc5\x35\x6b\x42\xee\x05\x92\x56\x1b\xca\x5b\xb2\xa3\x4a\x33\x85\x24\x0d\xbf\x62\xa4\x63\x55\xdf\x69\xd0\x30\xce\x8e\x1e\x80\x67\x4f\xa0\xef\x96\x2a\x56\x13\xda\x5d\x72\xa5\xb7\xda\x09\xac\xaa\x9e\xd3\xfd\x4b\x2a\x59\x3d\x30\x3b\x30\xe2\xe2\x13\x5a\x55\x4c\xca\x19\x6d\x9a\xf9\xf0\xad\xb8\xff\xde\x7d\xf2\x09\x21\x84\xe8\x61\x25\x6f\xd7\x0d\x53\xb0\xb7\xa4\x82\x09\xf5\x7a\x00\xbd\x15\x95\xe8\x98\x5e\x89\xc2\xde\xa9\xa9\xa2\x1e\x8e\xc6\xaf\x13\xbd\x1a\xeb\xb0\xea\x5b\xf8\x0f\xda\x70\x75\x80\x9e\x16\x6d\xc9\x9a\xd5\x9c\x5c\xd3\x8e\xc8\x0d\xed\x58\xed\x31\x5d\x92\xa7\x74\x47\x2f\xb9\xee\xf0\x90\xf6\x6a\x33\x7b\xaa\x51\x6c\xe6\xe4\xb3\x37\x71\xcb\x47\xc1\x94\x8c\x78\xd2\xd4\xde\x90\x95\x30\xfc\x33\xcc\x53\x7a\x32\xb8\x95\x0e\x51\x01\x0a\x36\x4c\x39\x28\xaf\xa8\xda\x2c\xc9\x9b\xe1\x1f\xc3\x38\xcf\xdb\x7e\x2b\x87\x7f\xbe\xb2\x4c\x9e\x41\x63\x6d\xbf\xf5\x5f\x97\xe4\xed\x79\xab\xfe\x8d\xbc\x83\x66\x69\xd3\x8a\x4a\x06\x5b\xb4\xfc\xd5\x6c\xc4\xf2\xf7\x97\x62\x0f\x1f\xdf\x0f\x98\xbd\x51\x54\xf5\x12\xc7\xcb\x7c\xcb\xb1\xd2\xfd\xfa\xf6\xaa\x15\xfb\x96\x48\x68\xc3\x8c\x80\x02\xee\xd0\x54\xdd\xd0\xb6\x06\x8e\xdf\x70\x4d\x2b\x5e\xe1\xab\x6e\xf7\x5f\xdb\x6b\xb6\xb0\x80\xca\xd8\xbf\x35\x43\x46\x68\x6c\x7b\xb3\xe9\xe4\x30\x0d\xb4\xaf\x97\xaa\x51\xef\x15\xd7\xfc\xa6\xc5\xe9\xf1\xd1\x9f\x1b\xf1\x54\x97\x5b\x18\xf6\xb3\x2d\x02\x12\x3f\xbf\xd6\x7b\x37\xf8\xf7\x96\x2b\xbd\x83\x41\xaa\xd1\x68\x17\xf0\x40\x80\xe5\x6b\xa2\xe1\x0c\x33\x99\x79\x4c\x78\x6d\xd6\xe8\x5f\xff\xe5\xc4\xff\xb6\x8b\x79\x6a\xf8\x00\x27\x91\xa2\xdb\xdd\x92\xbc\x7d\xc1\x6f\xc2\x3e\x5e\x0e\x3e\x07\x31\x98\x03\x5d\x31\x26\xf3\x6e\xc1\x04\x7e\xaf\xd7\x9d\x75\xdf\xee\x5b\xbd\x3f\x9f\xd4\x75\xc7\xa4\x1c\x6b\x79\x71\xd8\xb1\xf3\x9a\xb5\x8a\xaf\xb8\xee\xf2\x46\x75\x70\x42\x94\x7b\xbc\x7d\x7b\xfe\x2c\xc7\x2c\x58\x56\x10\xf7\xbb\xfe\xb2\xe1\x95\xd9\xe6\x62\x65\x4e\x89\x80\xce\x1b\x03\x8b\xa8\x0d\x55\xa4\xa2\x2d\xb9\x1c\x44\x5b\x67\x14\x15\x72\xcd\xd9\x5e\x86\x70\x9f\x9d\xbf\x79\xfa\xf2\xc9\xf9\xd7\xcf\x5f\x2f\xf5\x18\x1d\xd3\xcb\xd5\x8a\xe1\xa0\x34\xe0\x54\x32\x3c\x97\x7a\x15\xfb\x8e\x2a\x36\x32\xad\x57\xd0\xc3\x48\x94\xe1\xbf\x1f\x43\x8f\x79\x91\x77\xd0\x5d\x15\x2b\x34\x6e\xb9\x35\x1e\x1d\xa3\xfa\x03\x08\x64\xae\xec\x2f\xf5\x01\xb6\xac\x5f\xfc\x02\xdf\xbd\x62\x6d\xcd\xdb\xf5\x73\xd7\xec\x8e\xec\xf7\x37\xc3\x63\x77\xa1\xac\xa6\x98\x55\x53\x6a\x72\x79\x80\xa5\x7e\xf1\x87\xaf\x0b\x14\x73\x12\xe3\xa7\xa2\xd4\xcf\xb9\xef\xfe\xb9\xdf\x62\xae\xa8\xac\xec\x77\x5c\x51\x75\x8c\x2a\xd1\x21\xb4\x28\x30\x8b\x3b\x3c\xee\xc8\x2c\x7a\xd7\xbc\x66\xaa\xef\x5a\x56\xe7\xbb\x47\x7f\x7d\xc6\xea\xbe\x52\xd8\xd7\xbf\xfa\xde\xaa\x44\xd3\x30\x43\x3a\xd0\xb4\x03\xd1\xe4\xbb\x68\xa6\x32\x1f\x61\x91\xb5\x6a\xef\xa4\x17\x70\x41\x7b\xbf\xe5\x8d\x11\x64\x12\x48\x8c\x37\x8e\xe0\x09\xb5\x61\x5d\xda\xb0\x15\x2a\x82\xcc\x9b\xd2\x0a\x79\xac\x5f\x6a\x08\xaf\x4d\x9f\x61\xbd\x86\x59\x99\x0d\x0b\xad\xdc\x12\x3e\x3e\x41\xda\x05\xfa\xb7\xb4\xad\xcf\x5b\x95\xf0\x60\x4c\x3c\xd1\x32\x22\x3a\xb2\xd5\xda\xb7\xe5\xad\x4a\xb4\x2b\xbe\xd6\xfc\x0e\x8a\x37\x53\x94\x37\xda\x64\x63\x4d\x6d\xb5\xb2\x5d\x4d\x95\x27\x85\x51\x47\x48\xc3\xa5\x62\x2d\xeb\x80\x75\xed\xbf\xf4\x6e\x54\xda\x5c\xd6\x64\xfd\x4b\xcf\x3a\xc3\xcb\x2d\xdb\xc7\x83\x38\x48\x1c\x10\x38\x90\x96\xc1\x4e\x2e\xd2\x4d\x77\x7d\x6b\x90\x98\x85\x5c\xd1\x2a\xae\xac\x35\x8e\x28\xa0\xfe\xa3\x13\xa4\xa3\x6d\x5e\x75\x42\x7f\x18\x6d\x63\xf6\xd8\x68\x13\x83\xa6\x41\x79\xc0\xf4\xbc\x55\xac\x5b\xd1\x8a\x05\x5a\xdc\x45\xb6\x17\x40\xf2\x68\x5b\xc9\x36\x36\x3c\x66\x3c\x00\x52\x0b\x0f\x30\x33\xc8\x96\xa9\x8d\xf0\x1e\x83\x00\x8c\x69\xef\x07\xd8\xf6\x52\x69\x39\xe9\x5d\x16\x83\x74\x71\xc6\x89\x95\xa7\xa2\x55\x94\xb7\x76\x1b\x80\xf3\x41\x09\xdd\x33\x3d\xaa\x50\xe9\xb5\xf0\x03\x3e\x69\xb5\x79\xb9\x11\x1d\x68\xc4\x95\x37\xae\x3c\x5b\xf8\x61\xb9\x74\x36\xbe\x65\xcb\xc1\xb8\x8f\x15\xda\x45\xb4\xff\x22\xe7\x8a\xb7\xb4\x8c\x49\x0e\x5e\x9a\x68\x48\x8b\x7d\x76\x96\xc0\x80\xda\x3c\xc7\x94\x1c\xda\x75\xfc\x9a\xc9\x45\xb6\xc8\x03\xee\x7e\x79\xf2\x15\x5c\x92\xd0\x53\xb5\x70\xff\xe1\x6c\xe2\x14\xa6\x3e\xb1\xb4\xe1\x4a\xd6\x4c\xe9\x8e\x72\x36\x5f\x92\xef\xb4\x48\xfc\x3e\xb0\x96\xf4\x5f\x07\xa2\x99\x7c\xf7\xbd\xff\xf5\x3d\x0e\x52\x43\xb3\x07\xa2\x86\x38\xfb\x13\x0c\xb2\x24\x1a\xe8\x7c\x49\x9e\xb4\x87\x37\xaa\xeb\x2b\xf5\x18\x1f\xc0\x49\xaf\x64\x04\xd8\x6d\xce\xbd\xa2\xe9\x19\xf2\x54\x48\x5b\xe0\x9e\xb0\x5b\x04\xe2\xb7\x3b\xda\xd1\x2d\x1c\x4c\x7a\x39\x79\xed\x44\x10\x7e\x2c\xce\xec\xa2\xba\xd3\x7e\xd5\x37\xa0\x69\xd2\xf6\x60\x56\xc1\x78\xc0\x68\x75\xc5\xdb\xf5\x1c\x1b\xa9\xa6\x8a\x9a\xb1\xf4\x7f\x0d\x32\x7b\x47\xa5\x74\xac\x97\xb1\x07\x95\x44\x74\x7c\xad\x4d\xbb\xe6\x90\x98\x53\x0e\x3e\x40\xda\xd2\x43\x82\x99\x86\x35\x38\x83\x10\x3d\x26\xa6\x8f\x5d\x38\x4b\x59\xb3\x78\xf9\xb6\x9e\x05\x07\xb9\x9d\xd1\xb0\x8c\xf3\xdc\x1e\xd7\xbf\x07\x72\xc6\xdb\x7b\x17\xb1\xc6\x91\xcb\x01\xfd\x4b\x2f\xc1\x77\x51\x31\xbd\x0b\xac\x8b\xec\xf8\xe6\x3c\x57\xce\xa9\xa6\x36\x6c\xab\x37\xdf\x9a\x19\x78\xc6\x2e\xb6\xa4\xe0\x5d\x44\x0c\x7d\x4a\xd8\xd5\xb5\x0b\x72\x49\xab\x2b\x0f\x14\xa4\x06\x0b\x36\xba\xf7\x3d\x29\x61\xf5\xa5\x8c\xbe\x7c\xa5\xed\x92\x8d\x3d\x96\x0f\x4c\x0b\x40\xe6\x89\x5a\x2f\x48\x79\x5f\xa3\x74\xc2\x3d\x29\x0d\x53\x81\x76\x55\x6c\x92\x59\xca\xc5\x96\x9b\x51\x65\x68\x5c\x76\x18\x0a\x6b\xc9\x61\xdc\x2d\x85\x9d\x5d\xf2\xd7\x2d\x12\xaf\xd8\xe2\x52\x74\x9d\xd8\xcf\xe6\xf7\x16\x6b\xa6\x0c\x48\xe0\x40\xc9\x9a\xd5\x82\xd7\x73\x4c\x3e\xf0\x96\xab\x59\x34\x6a\xc8\xb3\xd1\x87\x11\xf7\x81\xfe\x1b\xa7\x84\x6b\x35\x4f\xe6\x68\x71\x23\x67\x84\xd7\xf9\x87\x41\xba\x9f\x0d\xc3\xe7\xcd\xd0\xa1\xc9\x19\x8e\x12\x2e\x25\xad\xc6\xc2\x42\x8d\x2b\xda\x67\x5c\x92\x9a\x49\xd5\x89\x43\xc1\x11\x64\x00\xbc\xb6\xed\x9f\xb9\xb6\x81\x0c\x20\x67\x6e\xba\x27\x39\x31\xdd\x47\xff\xe1\x64\x9c\xa2\xae\x3d\xda\x28\x93\x2d\xcf\xa5\xe2\xe0\x3c\x46\xf7\x8a\x57\x23\x40\xd6\x82\x4b\xc0\xb4\xd7\xe3\x20\x47\x37\x6f\xd7\xf9\x31\x2b\x41\x7c\x1d\x19\x29\xf6\x24\xae\xcc\x3d\x92\x93\x69\xcc\x75\x85\x8b\x0a\x6e\x38\xdf\x4b\xe7\x10\x0f\xa3\xe4\xe4\x02\x3e\xdd\x9d\x76\x00\x47\xe3\xc7\xf1\x49\x10\xfa\x47\x86\xb1\x87\x9f\xbd\x68\x8d\x0e\x19\xde\x34\x91\x86\x45\xd5\x74\x31\x12\x23\xc0\xba\x4e\x38\xd5\x51\xec\x8c\x0b\xdc\xfe\xb8\x65\x52\xd2\x35\xb3\x7a\x76\x84\x40\x45\x5b\x2d\x21\x27\xcd\x1f\x80\x39\x8e\x79\x9c\x89\x23\x27\x96\xad\x4c\x02\x59\x90\x92\x0c\x61\xd5\xc7\x27\x09\x60\x74\x53\xbb\xc5\x3d\x73\xab\x70\xe7\xed\x6d\x48\x72\x66\x06\x0d\xb6\x6f\xc2\xe3\x17\xc9\x25\x04\x50\x96\x74\x6c\xd7\x31\xc9\x5a\x45\xdd\xc9\x5e\xb0\xe5\xc3\x23\xd1\x32\xa4\xdd\xfa\xfa\x08\xec\x7a\x7b\x6b\x00\x6a\x7e\xcd\xaf\x79\xdd\x1b\x1d\x26\x3a\x14\xe1\x72\x04\x3a\x7b\x70\xa9\x36\xcd\x12\x97\x08\xa2\xc2\x83\xb2\x93\xf2\x99\xd5\xe4\xb3\x53\x1c\xd9\x83\x01\x25\x9e\x69\x42\x7c\xd0\x59\x38\x38\x1e\xa2\xab\x0c\x94\xdd\x70\xbf\x15\x7e\x0a\xd2\xce\x1e\x80\xee\xf8\x8b\x95\x56\xcd\x3a\x74\x2b\xfa\x16\x94\x86\x1d\x3d\x60\x82\xa0\xbc\xf1\x03\x57\x62\x0c\xf7\xc2\xde\x1a\x8e\x6c\xf1\xd0\x15\xaf\x47\x8d\xf1\x82\xdd\x19\xdf\x7a\x86\xf7\x1a\x27\x5a\x8d\xb1\xfa\xe5\x70\x25\xab\x36\xd4\x9d\x27\x7f\xe9\x99\x8c\xe4\x4c\x06\xbe\x09\xef\x46\x33\xd8\x5e\x01\xcc\x00\x9d\x44\x90\x2e\x7b\xe5\xaf\x48\xcd\x64\xf7\xe0\x49\x43\x66\x4b\x2b\xd5\x83\xca\xec\x99\x2d\x9d\x40\x79\x09\xbd\x94\xcf\x54\xa6\x08\x9b\xa7\xd9\x2e\x08\x78\x1d\x95\xb1\x2c\x30\xfd\x51\x99\x15\xa8\x5f\xf9\x85\xa0\xd7\xcc\x3f\x7b\x97\x1b\x7b\xef\x1f\x25\x3c\x71\xd8\x69\x9b\xc6\x6b\x0e\x65\x37\xe6\x1d\xf5\xc0\x23\xbd\xac\xb7\xcd\xbb\xdd\x62\xec\xbe\x75\x47\xc3\x60\x09\xc5\xba\x77\x2c\x56\xc6\x09\x96\x5a\x21\x23\x67\xc2\xa8\x6a\x88\xa9\x7e\xb7\x5e\x85\x18\x4a\x99\x95\xe2\x76\xe9\x14\xe2\xaf\xb9\xb8\x8a\xbf\x1f\xf5\xad\x93\xe2\x4d\xc4\xed\x74\x57\x27\xe5\xcf\xb2\x85\xf1\x4d\x60\x41\xcf\x86\x1b\xf3\xe8\xa3\x97\x00\x67\x7e\x4e\xc8\xd1\x18\xcf\x46\x1f\x92\xf1\x2f\xc8\xb9\xcc\x98\xd4\x87\x32\x0b\xae\x3c\xfd\x47\x6b\xf4\x9d\x59\x91\xbc\xc8\x2f\x4f\xf5\x5f\xc0\xba\xaf\xd9\x6a\x98\xa1\xb7\x40\xa2\xd6\xfa\xef\xf1\x63\xb2\xa3\x2d\xaf\x66\x9f\x9e\xb7\xd7\xb4\xe1\x35\xb6\xb9\x96\xe4\xa9\xe8\x9b\x1a\x0c\x40\x03\x09\xce\x6f\x90\x40\xda\xd2\x15\xa5\x5d\xf9\xe9\xbc\x48\x7e\xbb\xa3\x02\x1c\xa9\xdd\x63\xa5\x1e\x25\x2b\xe2\x35\x5b\x69\xbb\x4a\x7f\x9e\xcd\x17\x3c\xb7\x27\x06\x22\x66\x8c\xac\x95\xf5\xec\xc7\x92\xbb\x46\x3a\xe3\xcd\xba\x6f\x65\x6e\x8e\xe7\x5a\x00\x19\x94\x17\x20\xb4\xc4\x54\x47\x0b\x43\x4b\xfc\xc6\x5e\xff\xb9\x6b\xf0\x45\x59\x0e\x80\xa9\xea\x0d\xca\x96\xed\xdf\x44\xc7\x76\xba\x2b\x76\x1d\x4b\x7e\xd1\x7f\xbe\x1b\xb9\xe7\x99\xcb\xde\xea\x2f\x89\x67\x0a\xa7\x10\x7c\xc3\xf6\x0e\xd9\x41\xdd\xb5\xcd\x3f\xcd\x60\x87\x9c\x3b\x40\x77\x77\x70\xe4\xb3\xcf\x0a\x2d\xdc\xc5\xcb\x32\x83\xa8\xff\x32\xa4\x2e\xa2\x13\x4a\x6d\x08\xaf\xc9\x1f\x67\xce\xb8\x46\xa9\x9a\xe3\x3a\xd0\xe1\x2c\xc7\xf4\x71\xbc\x09\xf3\x5d\x48\x96\x5a\x13\x65\x1f\x07\x61\x7d\x88\x88\xb6\x81\x83\x5e\x32\x45\xa8\xf4\xf7\x96\xd6\x1b\xc3\xe5\xe0\x5b\x99\x36\x15\x47\xd2\x9f\x7f\x2a\x1e\x93\x63\x53\x09\x76\x5f\xca\x4c\x67\xc3\x1c\xc7\x36\x6b\xbe\xdd\xa3\x8d\x8b\xf8\xaa\x7f\xc6\x5d\x9c\x21\xab\x77\x74\x76\xe2\x4e\xdb\xd4\x7f\x2f\x1b\xef\xfd\x44\x19\x1d\x52\xa2\xb4\xe0\x3b\x7a\x78\xd2\xd6\xaf\xd9\xaa\x6f\xeb\x17\xcc\x46\x76\xd6\x1d\xdd\x4b\x38\x52\xc9\xaa\x13\xdb\x6c\xc9\x4c\x74\x9e\x70\x26\x80\xee\x1b\x04\x62\x66\x6b\x5f\xb3\x9d\x90\x5c\x49\xf0\x97\x37\x6c\xa5\xc4\x35\xeb\x0c\x78\x7b\x08\xba\x08\x5c\x72\x4d\xfb\x46\x59\x7f\x88\xbb\x56\xd7\xc6\x52\x2b\x6a\x46\xc4\x8e\x75\x70\x17\xdd\xb1\x3d\xed\x6a\x19\x8d\x03\xc1\x86\x7a\x00\x73\x37\x1a\xa2\x6b\x11\x05\xf7\x8b\x8d\x7f\x3c\xc2\x59\x29\x55\x66\x66\x92\x5f\xfb\x39\x7a\xc6\x5a\x92\xdf\xfa\x88\xe2\xc5\x1f\x00\xfb\x29\xac\x96\xc2\x23\x8f\xce\xc8\xe9\xe2\x54\xf3\x58\xf6\xe9\xe1\x19\xf9\x62\x71\x7a\x84\xb9\xb2\x55\x30\xb7\x0d\xc3\xbf\xfd\x2d\xdc\x25\x53\x7b\xc6\x5a\x18\x4e\xdb\xf8\x5f\x2c\x4e\xc1\xb8\x5a\x0b\x45\xfe\x98\x4d\x74\x3e\xc6\x7a\x7c\x95\x63\x7b\x66\x26\x92\x4f\xd9\xad\xf1\xc2\xb2\xc3\x4c\xb3\xd6\x92\x3c\xbc\x5f\x74\x08\x3b\x56\x84\x15\x30\xc6\xf3\x72\x50\xfa\xe6\xb9\x5a\x66\x3d\xcc\x16\x24\x2c\x09\x84\x2f\xb0\xe7\xdb\x9d\x3a\xc0\xea\xcc\x80\xc3\xb4\xd6\x63\xae\xa2\x1e\xa6\xcb\xf7\x68\x96\x00\x7e\x4f\x58\x23\xb1\x35\xd4\x6a\xa3\xc1\xea\x42\x98\x88\x05\xe7\xc4\x04\xd6\xfe\x65\x46\x9b\x51\x08\xff\xce\xd8\x2e\xea\x7f\x3f\x01\x8e\xf6\xd6\x2d\xfd\xe8\x0f\xef\x97\x9d\xeb\x28\x2d\xe3\x01\x72\x7a\x7e\xa4\x25\x0b\xa7\x38\xb6\x6a\xe1\x64\x0a\x5c\x97\x48\xaf\x35\x53\xe0\x11\xaa\xc4\x8e\xdb\xa0\x70\x03\xcd\x9c\x55\xc6\xff\xcb\x59\x93\xb9\x14\x13\x57\xa1\xbd\xfa\xd4\xb0\x66\x13\x2e\x27\xbd\xb5\x53\xc2\xcb\xa8\xfb\xee\x36\xdd\xa1\x44\x5b\xd2\xb7\xf7\xed\x25\x7d\x3d\xc9\x14\x48\x7c\x3d\x70\x36\xc0\xf5\x56\x2f\x59\x07\xe2\xd3\x44\x37\x6c\x99\xa2\x30\x5b\x88\x3d\x22\xf4\x52\x58\x77\x09\x06\xe7\xb7\x06\x21\x3d\xcf\xbb\x23\x84\x5e\x01\x45\xf3\xd6\x94\x44\x0d\xe5\x11\xa2\xa6\x96\x17\xa1\xf2\x31\x0e\xe4\xe7\xb3\xc9\x32\x4f\xad\xe1\x95\xe0\x3e\xde\x3b\x69\xe1\xa6\xb2\x31\xb7\x83\xfa\xd0\x2c\x84\xb8\xd8\x07\x1f\x6f\xb2\x0b\x46\x3f\x04\xb8\x49\xb8\x1c\xe2\x92\xd7\xfa\x0c\x6d\xe1\x42\x63\xc3\xc8\xae\x13\x4a\x54\xa2\xf9\x24\x62\x95\x2c\x8a\x43\x18\xee\xf1\xae\x47\x1c\x1b\x7b\xfa\x9a\x30\x97\xf8\x31\x4a\xc9\x43\x3b\x8c\xe1\xe7\x60\x22\x4f\xc2\x80\x03\x08\x05\xa1\x37\x7c\xdb\x6f\xdd\xf3\x84\x2c\x8a\xce\xdd\xaa\x1f\x73\x8a\x5e\xd3\xce\xc1\x3a\xf7\xee\xeb\xc4\x4d\x1b\x0f\xcc\x5b\x33\x70\xfa\x42\xc2\xfa\x1f\xfd\xf7\x1c\xb1\x08\xce\xed\xb1\x34\x80\x9f\x17\x7c\xc9\xb1\xf6\xdd\x08\xad\xfc\x28\xda\x44\xef\x37\x3c\x8e\x65\xe2\x45\x60\xaa\x7e\xdb\x37\x54\xf1\x6b\xd6\x98\x37\x26\x95\xb9\x09\x12\x10\x74\x05\x6a\xbb\x1e\xe8\x12\x3e\xfa\xb7\x38\x85\x90\x71\xf0\x8a\x36\x42\x5d\x68\xb4\x90\x78\x30\x64\x06\xe6\x22\x77\xca\x14\xe2\x0b\xac\x60\x3e\x11\xd6\x1b\xbe\xde\x80\x6c\x4f\x1d\xd5\x71\xf7\x30\x1a\xbf\x12\xdb\x4b\x78\xae\xe4\xdf\xd6\xf0\x8e\xb0\x9b\xaa\xe9\x25\xbf\x66\x6e\x78\xbd\x49\xbb\x6b\x26\xc9\x86\x5e\x33\x73\x41\xbf\xe2\x4d\xe9\x06\xca\x51\xc2\xbc\xc9\x38\x4a\x8a\xe1\x39\x50\x34\x98\xa3\x84\xbd\x0c\x10\xab\x68\x39\xb9\x8c\x27\x65\x3b\xd5\x03\xee\x8d\x0d\x72\xa6\xd5\x26\x77\xa4\xa5\xe8\xba\x06\x06\xd9\xd7\x06\xd8\x92\xbc\x8b\xdf\x69\xfc\xeb\xbf\xa4\x46\x41\x82\x3a\xba\x84\x03\x97\xb9\x66\x3b\x36\x8c\xa8\xe5\x06\xf5\xbc\x36\x11\x41\x4b\xcd\x63\xe8\x6d\xe9\x8d\x39\xda\x25\xff\x81\xa5\x68\x0d\x1f\x42\x7e\x82\x8b\x2c\xbb\x71\xa7\x0a\x17\xad\x0d\xbc\xe1\x3f\xb0\xaf\xbf\xc2\xef\x00\xfc\x54\x93\x77\x68\x10\xaa\x78\x4d\x9b\x5e\x5b\x53\x20\xd7\x4c\x9c\x48\x53\x69\x7a\x99\x1b\x0b\x5a\xd7\xac\x26\x09\x38\x88\xfb\xd3\x22\x5d\x03\xbc\xfd\x22\xbf\x60\xec\xeb\xf0\x35\x5c\x48\x46\x40\x3f\x21\x63\x66\x32\x38\x52\xee\x44\x17\x86\x0d\x19\x43\x4d\x13\x53\x4f\xcc\xf4\xf2\x21\xb0\xb1\x14\x1c\x02\x88\xc7\x36\x51\xc9\x98\x8a\xd1\x73\x81\xc8\x59\x6c\x69\xba\xe2\x6d\xbf\xbd\x34\xb7\x1c\x3e\x76\x39\x94\x05\xb1\x90\x10\xe4\x4a\x2b\xda\xf6\x54\xc3\xc6\x20\xb4\xeb\x68\x99\xda\x45\xb4\x0c\xb3\x26\x73\xc0\x22\x69\x27\x88\xf3\xe1\x94\x69\x9a\x58\xb0\xf1\x38\xec\xb8\x8c\xe6\x58\x0c\x6f\x09\xc9\x5b\x90\x3a\x42\x2a\xba\xc4\x31\x6c\x6c\x34\x87\x5b\xa2\x8a\x87\x11\xe3\x61\x47\xf9\x75\xce\x11\x7d\x20\xbe\x12\x19\x3f\x96\x93\x9b\x9c\x31\xa1\x8f\x5f\xd7\x1c\x15\xb8\x63\xdd\x8a\x62\xf0\x24\x9d\x6f\x2e\xa2\x70\xb8\xc7\x45\xc3\x49\xa2\x92\xe3\x3b\x34\x6e\x75\x64\x2b\x24\x8d\xc7\x18\xb2\xd4\xb4\xc0\x10\xae\xe1\x34\xb7\xde\xdf\xab\xaf\xa5\xbc\x80\xdf\xb9\xe5\x5b\xbc\x14\xfb\xef\xef\xe9\x09\x1d\xc7\xba\x70\x5c\x2d\xe3\xb7\xcb\xc8\x24\xd6\xe0\x42\xe9\xcc\xa5\xbf\x3e\x95\xfe\x02\xa1\x22\x22\x99\xcd\x24\x54\xef\x30\x45\xf3\x14\x54\xcf\x72\x1a\x35\xee\x4a\x86\xf4\xed\xf7\x6d\x28\x31\x75\xf6\xb7\x20\x97\x9b\xf6\x1d\x28\xf6\x7b\xbe\xde\x4c\xa2\x97\x1b\xe3\xae\x24\x8b\x9f\xd9\x7f\x5c\x82\xf9\xf9\xdf\x82\x66\x66\xe2\x23\x14\x0b\x44\x4f\x4e\xae\x33\x5c\x7a\xa7\x0d\xa7\x12\x2b\xd4\x9d\x53\x52\x45\x7a\xf5\x51\x62\x19\x0b\x1f\xb7\x26\xc4\x2a\xa0\xcb\x28\xde\xb7\x25\xcb\xb0\xef\x8e\x12\xe6\xb6\x7c\x14\x93\x26\xdd\x78\x7f\x5d\xe2\x4c\xd8\x67\x28\x79\xbc\xe4\x3d\x02\xff\x56\x32\x29\x26\x4c\x9c\x54\xe2\xaf\x4a\x95\x92\xb0\x1e\xd3\x15\xf5\xb1\x7a\x64\xa2\xc1\x7b\xb9\x48\x81\xb4\x13\x7e\x3a\xf6\xf9\xf8\xa4\xc3\xd3\x68\x04\x51\x6c\x5a\x45\x5b\x43\x1f\xad\xc7\x26\x85\x59\x1d\x7e\x4a\xe5\x8f\x13\x0e\xd8\x70\x42\x25\x14\x47\x6f\x68\x76\x42\xa6\x17\x52\xc4\xdd\x19\xe2\xc6\xc9\x23\x7b\xa1\x88\xb9\x7c\x26\x2f\x6e\xcc\xc7\x4f\xf1\x0f\xf8\xfc\xed\x4d\x28\x36\x7e\x78\x14\x94\x67\x50\xa4\x47\xe6\xb7\x7d\x2a\xda\xaa\x63\x2a\x78\x44\x44\x43\xbb\x37\x75\x65\x7a\x27\x67\xec\x65\x75\x2e\x50\x99\xa4\x14\x29\x3b\x58\xc7\xdd\xbd\x88\x7b\xd5\x20\xb0\x44\x9c\xab\x6e\x6e\xb7\xf5\x8d\x16\xfb\x8d\x7b\x2b\x4b\xdd\x46\x1d\x84\x63\x9d\xca\xbe\xb4\x52\xaf\xe9\x2e\xad\x69\x10\xca\x3e\xa7\x11\xda\x22\xae\xa1\x63\xa3\x4d\xf0\xce\x94\x40\x14\xfd\x25\xa5\x0e\xc7\x7c\x14\xc5\x7e\xa3\x4e\x83\xe3\xbd\x6e\x6d\xbf\x87\xf9\x2e\xc8\x3f\x4d\xf8\x7f\x9a\xf0\xe6\xf0\x29\xb0\x01\x39\x2b\x31\x08\x02\x02\x65\x0e\x0d\x01\xfd\x90\x03\xc0\x44\x1a\x39\xc3\x19\x89\x7c\x3e\xcd\x74\x38\xde\xce\x69\xa3\x38\x3e\xf9\xc0\x05\x84\xf2\xee\xe8\xb8\xa4\xa0\xbd\x1e\xeb\xee\xc6\x46\x7e\x45\x17\x73\xe0\x71\xb3\x84\xc3\xbf\xcb\x23\xc5\xfc\x1e\x0c\x16\x7f\xc8\x01\xe4\x11\x29\xe3\x81\x18\x46\x93\x28\x2a\x80\x67\xe5\x3d\x82\x80\x41\x55\xaa\x33\x7c\xe7\x8c\x75\x47\xf1\x28\x7f\xcd\x75\x9c\xe1\x72\x5a\x74\x2a\x08\x0b\x93\x64\x4b\xb9\x7b\xa2\x33\xfc\x28\xa1\x15\xb8\x6c\x65\x65\xf2\xe3\x10\xd1\xd5\xac\x33\xf7\x10\xab\x15\xaf\x38\x6b\x55\x70\x49\xe1\x07\x38\x57\x84\xb5\x15\xdd\x49\xb8\xdd\x80\x00\x05\x1b\xa9\x05\xaa\x6e\xc7\x1a\x77\x8f\xe7\x46\x86\x5b\x71\x97\x98\x41\xff\xc3\x8e\x3e\xe0\x53\x52\x84\xb2\xc9\xc4\x0f\xf0\xce\xdd\x5b\x6c\x0b\x10\x3c\xf9\xa0\xce\xc5\x90\x09\x96\x94\x6d\x68\xb3\x24\xdf\x19\x59\xf9\xfd\xc8\xd1\x85\x0a\xae\x80\xa2\x67\x85\x37\xf2\x90\x9f\xa0\xae\xdd\xe5\x98\x79\xb6\x63\x1f\x18\x87\x58\x87\xc4\xb2\x1f\x60\x41\x50\x8c\x56\x7d\x4b\x68\x5d\xcf\xb2\xb7\x6d\xf3\xf0\x02\x5e\xff\xe9\x99\xf2\x56\xb2\x4e\x9d\xb7\x35\xbb\x21\x67\xe4\x34\xfa\xae\x97\x9b\x9f\x10\x05\x5a\x6a\x3a\xa7\xdc\x90\xe0\x01\x6d\xc9\x43\xdd\x2d\x6f\x03\xed\xa2\x21\x39\xda\xe6\xb2\x63\xf4\x2a\xfb\x62\xc3\xaf\xa2\x81\xce\xce\xca\x23\x75\x78\xb0\x54\x1e\x2f\x92\xa0\x44\x3e\x27\x5f\x8c\x18\x52\x09\x29\x16\xa6\xf7\x8c\xaa\x65\x08\x28\x78\x5d\x88\x3e\x4f\xd6\x8b\xff\x9a\x6d\xc5\x35\x8b\xd6\xdf\x07\x59\x86\x1c\x50\x5c\xe8\x0e\x00\x4c\x58\x6b\x78\x11\x67\xe7\x97\xe2\x0f\x89\x30\x01\xe7\x99\x58\x2d\x31\xb4\x89\x59\x5e\x03\xe0\xde\x19\x69\x79\x53\xb2\x24\x03\xb8\x16\x39\x43\x97\x9a\xdd\xdc\x9b\x17\xad\xb1\x88\x2a\xbf\x63\xca\x5c\x76\x0d\xdc\xe6\xaf\x1c\xad\xbd\xb4\xa3\x52\x91\x59\xc3\xa4\xcc\x2d\xe5\xaa\xef\xcc\xc3\xb4\x7c\x1e\x29\xf9\xd6\x4c\x7d\xc5\x56\xa2\x63\x33\xdb\x29\x88\xe5\x74\xfb\x3e\x99\x28\xbc\x1b\xa4\x52\x5d\x20\x22\x22\xde\xe8\xc4\x6e\xa1\xe0\x31\xee\xed\xb7\xd1\x99\x9f\x0e\xce\xe2\x31\x2a\x0b\xba\xdb\xb1\x36\xd8\xfb\x79\x84\x5d\x31\x84\x91\xb8\x6d\x07\x6f\xc6\xbf\x11\x2e\x01\x0e\xa9\x36\xac\xba\x22\xab\xbe\x83\x60\x5a\xc9\xdb\x8a\x59\xb9\xc4\xdd\x61\x71\x64\x8b\xbd\x4f\xb4\x51\x88\xf1\x8a\x31\x2f\xf1\xc2\x53\x18\xdc\x84\x8a\x77\x0c\x58\x00\xee\x99\x13\xd6\x00\x5c\x93\x03\x89\xf8\x4d\x66\xa3\x00\xbb\x1e\x64\x47\x70\xb9\xce\x25\xf4\x64\xf5\x09\x59\x51\x4d\x16\x73\xd3\xde\xc1\x7b\x41\x8e\x1b\x47\x9a\x6f\x36\x54\x16\xf9\xe6\x2b\x21\xd2\xcd\x11\x46\xb5\x05\xfb\xa3\x61\xed\x5a\x6d\xc8\x23\x72\xea\xe3\xc9\x87\xaf\xdf\x9d\x7e\x1f\xac\xfe\xd8\x56\xd1\xfb\x61\xbf\x11\x0d\x9b\x72\xc6\x85\xac\xff\xa4\x69\x66\x65\x46\xc7\x91\x2e\x7b\x50\x5c\x7a\x80\x30\xcb\x87\x09\xfe\x19\x92\x65\xd8\x67\xcb\x61\x7e\x0f\xe7\x2b\xa1\x43\x32\x21\x35\xe4\x3d\x46\xf2\x6c\x40\x82\x0e\xf7\xb2\xd8\x0f\xe5\x22\xeb\xa2\x8c\xab\x61\x7a\xe5\x13\xb7\xee\x61\x66\xe3\x24\x1b\xb1\x24\x7b\xd6\x34\xfa\xff\x43\x3a\x19\xaf\x41\x28\xaa\xd8\x68\x96\x8e\x38\x5b\x45\xa2\x89\xb4\xec\x46\x9d\x3f\x8b\x5f\x43\xeb\xdf\xa2\x60\x89\xf3\x67\x36\xd6\x8e\x4a\xc9\xd7\x6d\x92\xd9\x05\x9c\x4b\xba\xdf\xf9\x33\x4d\xb0\xad\x68\x85\x12\xad\xcd\x23\xcc\xdb\xaa\x63\x54\x3a\x4d\x2a\x70\x3e\xd9\x97\x5c\x07\x13\x3c\x32\x12\xea\x12\x84\xc0\xd2\xce\x22\x8c\x07\x08\xc4\x01\x08\x7a\xcd\xb6\x74\x97\x04\x01\x90\xf3\x67\x10\x39\x98\xbe\xd5\x96\x36\x0b\xcc\xe8\xe0\xe1\x00\x4b\xf2\xce\xe0\xb0\x4c\x61\xa5\x4f\x55\x1a\xa1\xb4\x0a\xd9\xb3\x18\xa7\x40\x4a\x08\xf7\x68\x92\xdb\xa7\x06\x09\xbe\x90\x6e\xd8\x86\x86\xc5\x61\x81\x47\x10\xd6\x63\xff\x2f\x3d\xb4\xc6\x16\x76\x52\x64\x90\xfb\x19\x58\xa3\xff\x3d\x86\x3a\x2c\xd8\x10\x84\x88\x4d\xc0\xfe\x32\x44\xe8\x01\xc6\x11\x28\x8b\xae\xd9\x57\x1b\x2a\x4d\x14\x9b\x8f\x1f\xf1\x2f\xa6\x91\x20\xac\x7c\x4a\x6f\xa5\xb3\x22\xf1\x79\xb9\xe9\x24\xb3\x49\xb5\x77\x9b\x6b\xfa\x88\xed\x50\xc6\x24\x51\xf2\x97\x99\xda\x0f\xfd\x23\x1c\x70\x1f\xfc\x15\x63\x3b\x23\x7d\x2a\xd1\xd5\xa5\x08\x21\x60\x85\x1e\xb4\x70\x3a\xc1\xd8\x43\x71\xc6\xba\x69\x29\x0b\x04\xfb\x3e\xa6\x97\x0d\x17\x8e\xd3\x25\x38\x59\x56\xc8\x81\x87\x24\x0d\x19\xc4\x64\x14\xfd\x4b\xfc\x0b\xf5\x36\x0c\xe3\xb5\xe9\x16\xc4\xbe\x1d\x1e\x84\x47\x6e\xe7\xf2\xd4\xac\xf3\xf9\x5d\xe2\x7d\x2e\xe4\xfd\x2a\x1b\x47\x56\x26\x9e\x25\x7a\x76\xd1\xfe\xd6\x9a\xd5\xa9\x16\xcc\x8e\x8a\x61\x2f\x44\x39\x8f\xbb\xbe\xc3\x5e\x49\x45\x3c\x3e\xd2\x08\xf6\x76\xe9\x7b\x6a\x83\x9e\x65\xfc\x99\xbc\x18\x8e\xfe\xf1\xe0\x97\xe4\x19\x5b\xc1\x43\x21\x10\x03\x6e\x03\xeb\x9d\x6d\xb3\xb5\x37\x42\x5c\x99\xf7\x4c\x6a\xc3\xe5\xf2\x93\x4c\xd3\x1a\x1e\x79\xbd\xd1\x20\x66\xbf\xfe\xf2\x8a\xb1\x5c\xed\xfb\x9f\xff\xfe\xbf\xff\xf3\xdf\xff\xe7\xe3\xfd\xdf\x7f\x21\x23\xfc\xe7\xad\x46\xf9\xaf\xa8\x67\x01\xdc\x7f\x9a\xcb\xf2\x6f\xdb\xe6\x60\x7f\x0b\xbf\xeb\x6f\x4b\xf2\xeb\xd3\x2b\x06\x61\x69\x45\x18\x84\xfc\x0a\xda\x10\x04\xc6\xec\x57\xa7\x41\x30\xf0\xe7\xe4\x8b\x53\x1b\xb3\x8c\xd1\x50\x83\xfb\xef\xc9\x33\xfc\x7f\x61\xcf\x0c\xda\x8f\x77\x58\x13\x47\xb3\x1f\x51\xdc\x7e\x24\x4e\xe3\x7a\xa5\x75\xd0\x60\xaa\x79\xfb\x1f\xcd\xe4\x35\x05\x3f\x37\x8e\xc6\xf9\x84\xf6\xfa\xef\x0b\x84\x94\x78\xfb\xe9\x94\x8a\xe9\x85\xcf\xee\xee\xbc\x65\xe6\xb7\x24\x5f\x7c\x69\x19\x85\x94\xd9\xcd\x06\x20\x00\xc3\x65\xac\xf2\xe5\xed\x38\x45\xf7\xfe\xd2\x11\x2b\x85\xf6\x13\x73\xd7\x6d\x29\x56\xa6\xa4\x86\xf4\x52\xec\x97\xe4\xcb\x63\xdb\xec\xa5\xd8\x93\x19\x5f\x11\xb9\xa3\x15\x83\xc7\x9d\x73\xff\x6d\x36\x68\x55\x50\xa8\x42\xb4\xcd\x61\x8c\x6e\x24\xa2\x5d\xf0\xed\x83\xe9\x56\xa6\x27\x0e\xfd\xc3\x21\x47\xa3\x44\x23\xfc\xf2\x41\xee\xa5\x91\xa5\xab\x29\x7d\x5a\x9e\xfe\xe9\xf4\xf4\x34\xeb\xb2\xe1\xeb\xcd\x2b\xfc\xaa\xca\x77\xfd\x15\xde\xd5\x3c\xa3\x38\xd6\xf9\x4b\xe8\x8b\x39\xa9\xe1\xee\xf9\xcc\xde\x4a\xcf\x32\xf2\x15\x2f\xf1\x7e\xf3\x9b\xdf\xfc\xe6\x24\x6f\x5e\xb8\xc6\xfb\xe2\x34\x6f\x5b\xb8\xc6\xcb\xc8\x97\xf7\x2c\xdd\xea\xa1\x2e\x91\xe8\xda\x66\x59\x26\x75\x3e\x4c\xd4\xdb\xc9\xa0\x11\x7a\x1f\x81\x00\x7b\xf0\x34\xf7\xb4\x1c\x9b\x9f\xbb\x7e\xfc\xa0\xd9\x91\xcf\xa7\x10\xf6\xb6\x33\xbe\x03\x54\x23\x89\x32\x56\x2e\x50\x22\xb9\x53\xfd\xf5\x02\xe1\xa3\xe2\xa5\xea\x14\x82\x7d\x71\x8a\x81\x44\xe9\xf0\xe5\xd1\x96\x30\xb7\x5f\x2d\x26\xcd\x2c\xbf\xd2\x3d\x5d\x7c\x99\x37\x1b\xb9\xd3\xfd\xe2\xf4\x14\x41\xa8\x70\xaf\xfb\xe5\x29\x88\x8f\x13\xf2\xe0\x01\xf9\x3a\x7e\xab\x70\xab\xa7\x09\xf9\x30\x18\x66\x5f\x9e\x86\xe3\x14\x1e\x1a\x8c\x0d\x51\x74\xb8\xff\x8e\x69\xf5\x9a\x54\x62\x77\xf0\x69\x7e\x8d\x09\x66\xad\xaf\xf0\x95\x26\x6a\x7f\x45\xe0\xd2\xe8\xa0\xb8\xc0\x0e\x39\xf6\xc6\xd8\x4a\xcd\x39\x62\x50\x8d\x38\xe3\x0c\x5a\xa5\x19\x4a\x98\xe1\x24\x0b\xf2\x38\xda\x61\xe2\x70\x9f\x67\xc3\x62\xdd\xb2\xfd\xd3\x92\x39\x88\xda\x7c\xfe\xb0\xf0\x3d\xa3\x36\x6c\xcb\xf3\xb4\xea\x85\x49\xae\x99\x0a\x33\x67\xf8\x47\xd5\xf1\xc2\xee\x58\xc5\x57\x1c\x49\x85\x78\x74\x61\xf0\x44\xc7\xf3\xcc\x0d\x35\xf6\x26\x3c\x64\xd6\xef\x78\x5d\xbc\x00\x34\x4f\x8f\xc3\xe9\x98\x5f\x24\xf6\x1a\xf9\xae\x73\xca\x06\x89\xa7\xf5\xd9\xb4\x79\x7d\x76\xab\x89\x69\x06\xc7\x4c\x79\x7c\xb5\x70\xaf\x0d\x7a\xfb\x55\xd8\x4c\xc8\x58\xc6\xbd\x6d\x5c\x06\x63\x3b\x0a\xe9\x3a\x8d\xf5\xe4\x0b\xd1\x69\x0b\x7c\xd5\xd1\x2d\x0b\x66\x56\x73\xe3\x85\xee\x0e\x99\xdc\x1a\x92\xe6\xec\xb9\xda\x80\x14\x0b\x56\x55\xeb\xc6\x1d\x6d\xd7\x2c\xce\x78\x28\xba\x35\x6d\x21\x83\xfd\xe5\x21\x4c\x0c\xdf\x06\x01\xc3\x90\x3f\x06\x08\x26\x11\x87\x6c\x9c\x89\xe5\x3f\x9e\xbc\xfe\xe6\xfc\x9b\xdf\x2d\xc9\xf9\x8a\x1c\x44\xef\x12\xdf\xdb\x9b\x48\x83\x81\xf7\xcf\x2b\x21\x48\x43\xbb\x35\x3b\x89\x5c\xec\x26\x97\x61\xc3\xaf\xe0\x1d\x2a\xe5\xe6\xf2\x4d\x6c\x77\x0d\x0b\x72\x1b\x02\x8b\xb3\x8a\xc2\xd3\xc7\xac\x77\xd7\xb7\x44\xf4\xf0\xf4\x75\x4d\xe5\x82\x40\xe6\x0b\x5f\xfd\xce\xa0\x21\xb7\xb4\x69\x22\xf4\x23\xe0\x36\xab\xba\x54\xb4\x53\x41\xb2\x9f\x0b\x93\x58\xac\x0b\xee\x01\xc9\x8c\xb7\xd6\x7c\x9b\x47\x1e\x51\x33\x10\x06\x95\xb5\x75\x02\x93\xb5\xf5\x1d\x21\x5a\x8e\xc3\x9c\xa9\x8e\x47\xdf\xbf\x5f\x92\x27\x21\xf3\x6c\xe9\x6e\x07\x0f\xfb\x23\x4f\xf6\x2e\xf2\x64\x17\x97\xbc\xbc\x6f\x72\x31\x17\x31\xf2\x2c\x25\xa6\x0d\x17\x4b\xc8\xe1\xaf\xbc\x86\x29\x41\x01\x97\x70\x3e\xc9\xae\x4b\x3d\xfc\xe7\xad\x1f\x74\x1c\x4c\xe6\x7f\x8b\x1d\x69\x0f\xc8\x1f\x68\xc3\xf5\xa9\x41\x78\xbb\xeb\x15\x81\xe5\x63\x2a\x8d\x0a\xd2\xd6\x69\x34\x37\xf2\x28\x9a\x14\xfa\x64\x0c\x96\xad\x80\x75\xd4\x7c\x1c\xc3\xd2\xb5\xf6\x4a\xff\x68\x65\x41\x2c\xe3\x63\x26\x22\x2e\x4b\x4c\xd3\x0c\xee\x45\x73\x0d\xf9\xbc\xad\xdd\xbd\x7e\xea\x92\x5c\x20\x77\xdc\xe1\x8c\x47\xdc\x93\xd9\xe5\x75\x61\xe4\x9c\x66\xf1\xc5\x2d\x97\x61\x7c\x03\x6d\x1a\xe9\xa6\x2b\xfa\x0e\x99\x24\xc9\x83\x49\x92\x45\x7b\x07\xea\x1a\x6f\x7b\x86\x04\x73\x64\x3f\x40\xbe\xea\x61\xf9\x82\x7b\xa0\xb3\xc4\xcd\xfb\x9d\x1f\xf3\x7b\xf2\xf8\x71\xca\x72\x28\xf0\x28\x5c\xe8\x22\xbf\xbc\x0a\xd9\x38\xe7\x62\x14\xa4\xa6\x7b\xf8\x76\x1e\xc5\x7d\x71\xc5\x0e\xa5\xb8\x97\x64\xc2\xe7\xcf\xf4\x4c\x51\x28\xdf\xb9\x71\x4a\xf3\x75\x53\x74\xed\xf0\x4b\x8d\x3c\xf0\x61\x74\x82\x6e\x92\xbc\x4e\xa6\xa7\xcf\xa9\x91\x79\x91\xc0\x5c\x0b\x11\x71\x61\x0f\x1c\x71\xc5\x11\x34\xe0\x67\x14\x35\xbe\xc2\x47\x09\xee\xeb\xcb\xf8\xa1\xbc\xe0\xc9\xbc\xe8\xe8\xfe\x0f\xb4\xe9\xd9\xf7\x41\x14\x23\xaa\x76\x8c\xe3\x3f\x81\x8b\xc2\x1d\x14\x4d\x43\x13\xf8\xf8\x5c\x0a\xf2\x2e\xdc\x21\x67\xf8\x00\xb7\x45\x76\x44\x6a\x4e\x94\xbd\xef\xd3\x6c\x01\x2e\xbd\xc2\x8a\x31\xad\x30\x55\xa2\xbd\x66\x1d\x64\xe0\xc9\x72\xbe\xc0\x4d\x5f\x98\x94\x5f\x89\x2b\xd6\x26\xea\x92\xd3\x06\x52\xbf\xd4\x45\x54\x5a\xc5\x42\x2c\x54\x47\x4b\x60\x0d\xc9\x7c\x2f\xc2\xf7\x59\xd3\x3a\xd7\x81\x53\x03\x14\x1d\xfe\x83\xaf\x9c\xf5\x91\x8b\xca\x38\xb5\xc5\x9d\xcd\x17\x26\x0b\x44\x42\x2e\xaf\x2b\x76\xec\x2f\x3d\xef\x86\x64\x7d\x13\x32\x9b\xc7\x6a\x89\x5f\xbc\x17\x8c\xcd\x4a\x19\x8d\xb1\x54\xc8\x11\x51\xbc\x6a\x62\x2b\x50\xbc\x4b\x0f\xe3\xb7\x56\x1d\x15\x70\x25\x4d\x9b\x21\xed\xa0\x43\x20\xf5\x29\x68\xa1\x7a\x49\x25\x33\x89\xff\x7d\x3a\x34\xad\xf0\xf6\x80\xad\x74\xca\x60\xe0\xb7\x5c\x9c\x9e\x20\x69\x99\x01\xa7\x74\x72\xf3\x07\x5f\x9c\xda\xbf\xc5\xe9\xd8\xa5\xe1\x03\xf2\xa6\xa2\x0d\x4b\xea\xfa\x58\x56\x57\xf1\xe3\x73\x47\x7e\x34\xcd\x32\x78\x9b\x35\xa8\xda\x3b\x5c\xcd\xe4\xdc\x34\x7f\x19\x1a\xee\x85\x68\xec\xe1\x04\xb9\xf7\x49\x8a\xe7\xd3\x28\xcf\xc9\x8b\x97\xdf\xfe\x07\xca\x1f\xae\x7c\x31\x92\x9b\x3c\xcb\x1f\x1d\x14\x2a\x1e\x16\x22\x28\xcf\xbe\xb0\x1f\x9f\xda\xba\xda\x17\x42\x37\x98\x0d\xbc\x31\x42\x59\x67\x12\xe6\x24\xf9\x3c\x18\x73\xc4\x30\xfc\x06\x6e\xb5\x9f\xb4\xf5\x79\x5b\x75\xa6\xf4\x5a\x98\x82\x0e\x82\x7e\xce\x9f\x99\x28\x1d\xd7\xc2\xc7\xf5\x54\xa2\x6f\x55\x1e\xd3\x6b\x82\x92\xad\xc2\x9e\x0f\xa0\x2d\x5c\xeb\xa6\xcf\xe3\x14\xfd\x2d\x7b\x70\xe7\x9e\xfb\x65\xb0\x56\x59\x04\xac\x2b\xc5\x15\xc3\xc8\x49\x90\x24\x73\x2e\x97\xa3\x20\x78\xf9\xad\xf3\x67\x18\x1b\x60\xb5\x9b\x50\x29\xe5\xf2\x37\x5f\x8c\xa5\x95\x3e\xc1\x52\xcf\x72\x53\x9d\x69\x25\xfa\xb6\x76\xf9\x98\x8d\x40\x33\xf5\x27\x47\xb2\x84\x86\x5e\x88\xa0\x36\x91\xf7\xae\xe0\x25\x90\x7c\xa9\xc1\x34\x0e\x8c\xcb\xf8\x15\x64\xc0\x3a\xae\x4a\x82\xc6\x74\x20\xed\x81\x99\xa8\x38\xa8\x30\xc5\xae\x59\x47\xd8\x0d\x97\x69\x58\x26\x5f\x69\x7d\xeb\xec\x8c\x04\x71\x14\xe4\xc7\x1f\xf5\x8f\x8f\xe2\xb5\x2f\xda\x40\x61\x21\x36\x92\xe7\x17\xf6\xaf\x20\x37\x90\x57\x8f\x36\x7b\x6d\x97\xba\x95\xf1\xe8\x8a\x2e\x2f\x3b\x6d\x11\x04\xc5\xd5\x87\x28\xe3\x4e\x2b\x5e\xa7\xde\xc5\x00\x43\x75\xb3\x48\x8a\x66\xe3\x78\x22\x94\xd7\xa7\xa1\x77\x42\x0d\xb5\x84\xa5\xe2\x4d\x03\x04\xdf\x75\x7d\xcb\x6a\x13\xa0\x9d\xc2\x6b\xb8\x74\x7b\x7d\x00\x82\x60\xa2\xed\xcf\x92\xc7\x69\xe1\x02\x80\x66\xa3\x53\x4c\x12\x0d\x4f\x98\x68\xc6\x5e\x26\x11\x1a\x84\x7d\x0f\xd8\xea\x4f\xc3\x3b\x5c\x5f\x2e\x23\x05\x08\x29\x75\xf7\x5c\x32\xdd\x7a\x0f\x0b\x3d\x64\x4c\x8b\xe8\xb7\xa3\x4e\x19\xe2\x12\x08\x94\xc9\x27\xc0\xc0\x4d\x64\x10\x41\x18\x71\xbe\x3b\xfd\x1e\xe1\xe6\x47\x19\x88\x63\x64\x43\x39\x2f\x27\x5b\x56\x22\x4f\xaf\x2f\xe8\x53\x86\x09\x6c\xb4\x20\x96\xbc\x7a\xcb\xd7\x1b\x15\xe5\xe1\xb3\x30\x19\x87\x00\x6a\x4f\x23\x5f\x9e\x9a\x11\x29\xc8\xde\xb9\x0f\x5d\x11\x7a\x4c\xfc\xc6\xd9\xe5\x8b\x57\x00\x76\xab\xf9\x1c\x5e\x1d\xdf\xd2\xee\x40\x58\xab\xba\x03\xd9\x09\xde\x9a\x5b\x9b\xa8\x84\x5e\xcb\xf6\x49\xa1\x92\xc1\x21\x91\x05\xe1\x2e\xe2\x88\xbb\xf3\x55\x08\xab\x20\x59\x77\x42\x4a\x7e\xd9\x30\x47\x87\xba\x07\xaf\x36\xb7\x2f\xc6\x69\xb7\xee\xcd\x79\x28\xfc\xb7\x68\x90\xbe\xa5\xd7\x94\x37\xa6\x30\x7e\x23\x94\x4c\xbc\x91\x26\xab\x78\x84\x59\xd4\xff\x22\x98\xc9\xd0\x4b\x0b\xf3\x9d\x3d\x84\x57\xa2\x69\xc4\x1e\xc8\xe1\x90\x59\x22\x67\xd5\x32\x9c\xdd\x92\x3c\x49\xca\x20\xd1\xb0\x2a\xa7\xd7\x6d\x8c\x7e\xec\xde\x96\xcb\x52\x6a\xd1\x78\xca\xf0\x32\xc5\x3e\x34\x5f\x18\xd9\xea\xda\xb9\x1a\x4a\xbc\xbd\x16\x57\x50\xaa\x8b\x24\x11\x16\x9a\x45\x8d\x8f\xd5\x14\x4e\x4c\x7c\x4b\x60\x26\xec\xe8\xa1\x11\xb4\xc6\x8c\x9d\x65\x58\x1c\xeb\x8d\xed\x66\x8b\x99\xd1\xae\xe1\x4c\xcb\x89\x46\x54\x57\xa1\x3b\x5a\x91\xfd\x86\x57\x1b\x8c\x05\x58\xc3\xd7\xb0\xfc\x51\x59\xf6\x6c\xbe\xb3\xb7\x2d\xbf\x09\x40\x4a\x41\x56\x1d\xb5\x21\xdd\x44\xb2\x4a\xb4\xb5\x74\x19\xf5\xe0\x41\xc8\xba\x15\x1d\xab\xe7\x0b\x72\x3e\x48\x2f\x09\xaf\x5d\x82\x64\xa5\xf8\x0c\x07\x2b\xe2\x49\x4b\x58\xdb\x6f\x0d\x60\x32\xfb\xf3\xef\xf9\x7a\xf3\xe7\x13\xf2\x67\x73\x79\xfb\xe7\x13\xcd\x94\x7f\x7e\x29\xf6\x7f\x9e\xdb\x95\x6c\x57\x4d\xcf\xda\x2a\x4e\x84\xaf\x59\xe7\x92\x6d\xe8\x35\x87\xa4\xa0\x35\xa9\x99\x62\xdd\x16\x2a\xe5\xa6\x13\xdd\x88\x3d\x91\x42\x73\xa0\xcb\x4a\x19\xd5\x6e\x1a\xaf\xcc\x86\x4f\x27\x33\x34\x9e\xd9\x2a\xbd\x51\xaa\x46\xb0\x57\xa8\x25\xa8\x63\x55\x19\x67\xd9\x4c\x33\xf8\xbb\x74\xc3\x52\x8c\x4d\xc9\x26\x08\x24\xd5\x86\x76\x6b\x56\x2f\xc8\xdb\xd6\x04\x36\x23\x79\x56\x4d\x81\x6a\x93\x3e\x10\x9f\x8d\x29\x54\xf3\x84\x98\x44\xea\x7e\x4f\x05\xf7\xb4\xb2\xf7\xf1\xc4\x1a\x90\x34\xf7\x0f\xd7\x96\x9a\xde\xd2\x48\x87\x3f\x56\x49\xc0\xca\x88\x38\x98\xc5\xee\xbb\xa7\x74\xf7\x81\xa5\x80\xc6\x4b\xfc\x1c\x29\x44\xf9\x11\x2b\x00\xa5\xb9\xce\x7d\x93\xf9\x92\xfc\xb6\x50\xe0\xb0\x64\x44\xbb\x0a\x83\x83\x58\x55\x82\x5c\x47\x0e\x79\x99\x1d\xfe\xbe\x93\x3d\xf5\xdd\xbf\xf3\x20\x22\x43\x32\xfd\xbf\x79\xbc\x42\x40\x30\xa4\x58\x58\x4e\xb7\x1d\x4a\x37\x94\x76\x63\xe5\x86\xe6\x19\x2d\x5c\x71\xc8\x30\xc3\xb7\xa9\xee\xb7\x1a\xab\x7b\x96\x82\x91\xe9\xbb\x2b\x5f\x45\xcc\x97\x54\xd4\x7b\x3a\xed\xe6\x6e\xd8\x8a\xe3\x98\x97\x53\xfa\x7c\x33\x4f\x7b\x1d\x97\xa7\x4a\x95\x5b\x05\x5b\x99\xd0\xbe\xf5\xfb\xec\xb3\xe1\x43\xf4\xf4\x12\x7f\x08\x68\x72\x6f\xc7\xa0\xb2\xc7\x7f\xd1\x3f\xa9\x94\xac\x53\x24\x5f\x7b\xcd\xac\x8b\x4b\xda\x68\xa5\x49\xdb\x29\x1e\xa8\xad\xbc\x78\x0f\x09\xfa\x31\x05\x26\xa1\xf6\x4e\x28\x22\x80\xed\xb5\x16\xa0\x2d\x7a\x07\x12\x12\x20\x85\x83\xcc\xbd\x7d\x35\x74\xb5\xbe\x8a\x48\xaa\x0c\x39\x7b\xff\x38\xcb\x90\x9a\x27\xa7\x1c\x52\x14\xe5\xd3\x31\x7e\xca\x1c\xf8\x6e\x93\x14\x7c\x00\x63\x9d\x9f\x99\x4a\x5c\xc9\x0d\x7f\x4e\x69\x6d\x5b\x45\x63\xe6\x94\xf5\x89\xd3\x07\x69\x88\xc4\xe5\x21\xb5\xce\x72\xe6\x41\xd6\x6d\x6c\x9b\x7f\x8c\x0d\x9c\xf7\x30\x2c\x11\xae\xfe\xc9\x91\x5d\xfe\xcc\x14\x3f\x08\x72\xe1\xda\xb8\x0c\xd6\x5d\xf3\x8a\xe9\x13\x45\xb3\xc5\x2f\x6c\xf5\x92\xa8\x7b\xb1\x50\x82\xad\xa8\x00\x2e\x44\x57\x55\x01\xaa\x5a\xe4\x4c\x81\x95\x26\x7b\x4a\x77\x3f\x63\x75\xb2\x12\x8a\xaf\xfa\xcb\x86\x57\xaf\xa8\xda\xc4\x75\xc6\xc2\x3a\xf0\x50\x74\x63\x68\xf8\x68\x36\x37\x49\xfe\x87\x9f\x62\xf0\x10\x22\xe4\xcf\xa6\xa3\x2c\xac\xf9\x7c\xc1\xeb\x31\x6e\x4a\x5b\x67\xf7\x34\xe3\x27\x4e\xd2\x3b\x67\xfd\x09\x5c\x9a\x02\x99\xc8\xb5\x69\x37\xfd\x2b\x82\x6c\xa6\x8f\x7c\xbb\x6f\xf5\x82\xa7\xdd\x93\x12\x72\x53\x20\xa5\x05\x21\x0b\x20\xe3\x66\x53\x00\xbf\x7d\x7b\xfe\x6c\x19\xf2\x4c\xdf\x63\xab\x98\x77\x1c\xf8\x66\x99\xb3\xe1\x91\x9d\xfd\xa4\xce\x2d\x7a\xb7\xb9\x87\xd7\x85\x5a\xa9\x37\xcf\xa8\x90\x27\xa2\xb9\x6b\x95\xd6\xa1\x06\x35\xd3\x80\x70\x61\x48\x14\x04\xaa\x66\x44\x3c\xee\xad\x7e\x78\xdf\x94\xb5\x41\x4b\xc5\x4f\x91\xf2\xf9\xcd\xa1\xba\xa5\xe0\x2e\x14\x08\x9d\xc4\x0f\xc9\xaa\xb8\xff\x7a\x9f\x57\xb6\xcd\x95\x4c\x7f\x55\x24\xe3\xa3\x39\xbc\x9e\x32\x8f\x7d\x77\xac\x52\x91\x25\x10\xc4\x23\x88\xc4\xe8\xa6\x63\xe5\xad\xf2\xc2\xb4\xc3\x81\x14\x3c\x2c\x0e\x8c\x8d\xa2\x3f\xe2\x7c\xe5\xca\x75\x5c\xf3\x9a\x85\x0e\x10\x93\xe7\xc0\x48\x6b\xe4\xb1\x1f\x52\x25\x9b\xcc\xd8\x62\xbd\x38\x41\xfd\x26\x3c\x54\x82\x02\xeb\xcf\x5f\x57\x76\x91\x6b\x05\x7c\x07\xe0\x5f\x99\xe3\xba\x7d\x04\x3c\x50\x76\xc7\xab\xa3\xdb\x28\x5b\x13\xa3\x46\x5a\xd1\xde\xd7\xaa\x63\x54\x11\x7c\x91\xda\x93\x24\x7d\xd9\x69\x3c\x20\xac\xd9\x49\x52\xb3\x6b\xd6\x88\x1d\xeb\x24\x61\xad\xec\x3b\x96\x5a\x83\xee\x39\xf4\xae\x63\xe0\x9f\x37\xb7\x65\x96\x11\x02\x7b\x7d\xcf\xdb\x5a\xec\x4f\xd2\x52\x0b\x75\x5f\x39\x5f\x56\xc7\xe5\x95\xd6\xe0\xfa\xb6\x65\xda\x5e\xa4\xdd\xc1\x25\xb6\x37\x79\x6d\x8e\xc6\xa6\x19\xcd\xe6\xe2\x27\xb8\x9c\x35\xf0\x55\x1c\xa2\x86\xb0\xe9\xe8\x3d\xec\xc7\xba\x95\xfe\x38\xd7\xe3\x56\xae\x8d\xb2\xd3\x92\x3c\x41\xe2\xb6\x55\x5a\x68\xff\x24\xdc\xa7\xb0\x3b\x43\x7e\x1b\x77\x03\xe0\xe6\xe8\xcf\x61\xbd\x87\x96\xf9\xf8\x26\xcb\x2e\x98\x6c\x7e\x99\xc0\x83\x66\x3d\x67\x43\x29\x3f\xb4\x36\x3d\xdc\xb2\xd2\x96\x2b\xfe\x43\x5c\x46\xd0\x5e\x5d\x1b\xc4\x82\x34\x23\xc9\x79\xca\x57\x58\xf7\x87\x67\x10\xa7\x6b\xa2\xd0\xbe\x6a\x44\x75\x35\x9b\x07\xe6\x64\xd1\x75\x3f\x3a\xe9\xfc\x88\x0b\xff\x7c\xc9\xff\x96\x37\xf8\xeb\x0b\x64\xed\x8e\xb6\x05\x36\x0a\x6a\xbb\x06\x7d\xff\x38\xcb\x27\x0e\x26\x65\x90\xb8\xe6\x24\x4f\x51\xa3\x3b\x8e\xd0\x06\x49\x53\xeb\xfe\x46\xcd\x6a\x6d\xd0\x27\x59\xef\x1e\x45\x77\xfa\xa5\xec\x7a\x1f\x73\x2d\x8e\xaf\xc1\x14\xda\xa7\x34\x4f\xe5\x8a\xa6\x60\x1a\x51\x81\x5e\xa5\x3a\x47\x68\x28\x6c\x07\xd1\xe4\xb3\xc9\x8e\x91\x07\x59\x8e\x0f\x5b\x06\x2c\xbb\xf4\x10\x57\xf1\x77\xbc\x33\xee\xbc\x4a\x6e\xf6\xbf\x90\xf0\x60\xb7\xb4\x40\xe3\x84\xfb\x88\xdb\xe6\x61\xbc\x6d\xf0\x8c\x92\xff\xf8\xeb\x34\x64\xdc\x8a\x0a\xa5\x21\x67\x7c\xb2\x91\x50\x82\xdd\x75\x7d\x5c\xb5\x7f\x9f\x47\xb2\xe8\x5a\x59\x33\xa5\x1b\x7d\xbb\x02\x9f\x57\x9d\x59\x54\x7c\x15\x02\xca\x64\x63\x90\xac\xf2\x6f\x5f\x22\xfa\x6a\x57\x7a\xf1\x82\x80\xa7\x51\x29\x38\x94\xc8\xc2\x84\xdf\x30\xff\xf9\xd7\x5f\xdd\x52\xe8\xd9\x92\xa4\xc3\xa5\xfe\x58\x5c\x5f\xea\xf4\xc0\x1c\x7e\x51\x80\x5f\x18\xd0\x95\xab\x2e\x68\x95\xfa\x08\x0b\xa4\x58\xf4\x98\x1d\x9c\x1f\xea\x88\xdd\x8c\xe1\xfc\x51\xaf\x19\xf8\x0a\x9d\x5a\xc9\x0d\xff\x8f\x26\x7c\xc6\x0e\x89\xc1\x80\x0d\x9e\xa5\x16\x6c\xf6\xc5\xdd\x8f\x05\x6f\x11\x9d\x9d\x45\xef\x76\x7f\x5a\xea\x6b\x53\x66\x2a\xf5\xa7\xf8\x20\xc7\x16\x63\x78\x94\xf4\xd4\xf8\x19\x06\x07\x80\xe8\x20\xc5\xc3\x2b\xec\x7e\x69\xa1\x8d\xbd\x43\x10\x96\x50\x35\x7d\x1d\x94\x0c\x85\x58\x23\x13\x2f\x60\x7c\x00\x43\x2c\x07\x64\x8b\x08\x6b\x33\x7e\xc4\x25\x9b\xb4\x08\x11\x9d\x8f\xd0\xd2\xd1\xab\xe5\x4d\xd1\x5b\x35\x22\x64\x52\x9f\x15\x12\x3b\x11\xfb\x9f\x12\xc0\x6d\xe4\xf6\x81\x98\x07\x45\xaf\x98\x36\x2f\x94\x70\xb7\x0f\x71\xc5\x0f\x24\x9c\x32\xcb\x1c\xa6\x10\x43\x3d\x76\xc7\xdc\x77\xfe\xaa\x24\xac\x63\x13\xd6\xb2\x81\xf0\xc4\x30\xe2\x35\x78\x3d\xe4\x32\x38\x72\x49\x58\x2b\xfa\xf5\x26\x0b\x1f\x30\x8c\x20\x3a\x90\x66\x61\xfb\x56\x04\x29\x45\xa6\xa1\x65\xab\x83\xa6\x37\xaf\x36\x6c\xcb\x80\x1d\x60\x3a\x2e\xc5\xfc\x7b\x09\x96\xc9\x04\x31\x56\xb5\x28\x39\xdc\x95\x9b\x2f\x8c\x07\x24\x5a\x71\x88\x56\xf0\x79\x00\x3d\x95\x60\x6b\x40\xbb\xa3\x3e\xa5\x7f\x44\x9f\x8f\xf1\x2e\x3c\x36\x40\x26\x84\x15\xa5\xfb\xe1\xe4\x28\xf7\xd8\xaa\x9f\x11\xd7\xde\xf2\x29\xf5\x64\x15\x22\xf7\x06\x91\x63\xee\x20\x72\x5b\x7f\x90\xa5\x18\x96\xed\x17\x42\x6f\xce\xb0\x64\x67\xc1\x1b\x9e\xd4\x61\xc4\x57\x9a\x63\x37\x36\x37\xea\xe0\x5f\x86\x18\x84\xf0\x1d\xdf\x09\xd9\xc3\x9b\xed\x21\xa4\x8e\xaa\xc1\x97\x8d\x7b\x95\xf8\xca\x22\x65\x15\x96\x5c\x39\x72\x51\xbc\x68\xf7\x91\x77\x42\xf0\x2c\xd2\x9f\x28\xc3\x5d\xf9\x9b\x46\xa8\x27\xee\x77\x33\xf9\x19\x1a\x31\x82\xe8\x6e\x73\x84\x36\xc0\x54\x32\xd9\xd0\x96\x10\xca\xd4\x8c\x81\xaa\xbc\xb7\x23\x4a\x66\x6b\x9e\x05\x93\x29\x87\x3a\xdf\x96\x48\x25\xf5\x05\x32\xac\xa1\x6f\x38\xe3\x6d\x52\xb3\x2d\xd5\x72\x2b\x0c\x1b\x55\x84\xdd\xd0\x2a\x14\x61\xa2\x83\xb7\xe0\x61\x66\xc7\x04\xf1\xe3\x51\xe4\xe3\xdb\xb7\x20\xdb\xf7\x8c\x48\x46\xbb\x6a\x03\x8d\x40\xb0\xc6\xb7\x1a\x39\xb1\xa0\x08\x6c\x2d\x96\x36\xd4\x66\x23\xf6\xe4\x92\xaf\x6d\x3a\x82\xa6\x91\x8a\x56\x57\xb0\xb6\xeb\xce\x5e\x25\xf1\x15\x8c\x63\x03\xdc\xaf\x05\x54\x80\xac\xfa\x4e\xa6\xaf\x85\x3c\xe8\xa1\x79\xc7\x56\xb4\x52\x20\x93\xb9\x3d\xb0\x1b\x21\x76\xf2\xc4\x47\xef\x68\x4e\x32\x17\xf1\x36\x04\xc8\xc0\x66\xe4\x8b\xd3\x53\xe9\xf3\x81\x62\x0a\xce\x07\x19\x37\xc3\xe2\x7d\x6e\x5e\x2c\xfd\x55\x2c\x1b\x64\xf9\x7d\x3e\xd4\x4c\x9b\x0f\xcf\xdc\x62\xb5\xec\xa1\x97\x91\xf2\x6b\x7e\xcd\xda\x42\xb6\x84\xa9\xcf\x39\xc6\x05\x88\x93\xeb\xb9\x28\x0f\x9f\xe5\xfc\xad\x78\xe5\x83\x7c\xd1\x6a\xc3\x44\xc7\x14\xaf\x68\xe3\x5d\x01\x2e\x3a\x2c\x7d\x33\x66\x95\x79\x88\xb8\x84\x6c\x4d\x19\x52\xae\xa5\xaf\x43\x32\xd9\x43\x57\x96\x56\xe6\x86\xd4\x1d\x46\x3e\x9b\x6d\xd5\x50\xbe\x0d\x90\x1c\x55\xd9\x2c\x1c\x27\x30\x21\x1a\xb8\x69\x2c\x03\xa5\xb2\xf1\x1e\x72\x52\xfa\x27\x19\xff\xce\x0e\xa8\x63\xbf\x28\x9d\x23\x92\x1c\x11\x77\x6e\x51\x5c\xb2\x07\xb1\x02\x51\xb4\xed\xab\x8d\x63\xf1\x28\x9b\x6f\xda\x3f\x2b\x0f\x1e\xa7\xfb\xc5\xf9\xa8\x11\x2a\xce\xc9\x25\xdf\x96\x15\x86\x7c\xea\xc8\x6b\x3f\x37\x8d\x21\x47\xa2\xaf\xa9\x5f\x2e\x60\x4e\x82\x14\x76\x43\x25\x9a\x32\x03\x15\xaa\xe9\x64\xf0\xcc\x21\x71\x27\x88\xbe\xee\x0e\x36\xc1\xd1\x85\x99\x38\x4f\x47\x68\x7c\x09\x92\xa9\x91\xc7\x8f\x49\x29\x6d\xdf\x54\x40\x76\x46\x06\x14\xb2\xcb\xcc\x4b\xa7\xf0\x34\x3d\x71\x7c\xbc\xdf\x50\x65\x9e\x94\xf9\xd0\xed\x8e\x6d\xcd\x85\x6b\x0a\xa9\x6f\x6b\xd6\x91\x2f\x21\x4f\x98\xec\x2f\x41\x9c\xba\x7b\x59\x7b\xe3\xd5\x1c\xa2\x5c\xd7\x69\x68\xec\x07\xb8\x5b\x7c\x1e\xc4\xa6\x97\x5f\x87\xd4\xf1\x14\xff\x3c\xa0\x1a\xda\x5d\x0d\x25\x9e\x5e\xbb\x39\x26\xac\x83\x55\x82\x5a\x48\xaa\x20\xc5\x56\xbb\x7e\x63\x67\x3d\xcb\x31\xc9\x43\xf3\xf4\x90\x8d\xd8\xe7\x03\xa2\x78\x3c\x4c\xa4\xec\x63\xbc\xd9\x72\x44\xf2\x04\x83\x4e\xe5\x9c\x97\x62\x8f\x70\x20\x19\xe4\x5c\x3e\x01\x8c\x1c\x76\xc4\x52\xfd\x0f\x52\xc8\x96\xe2\x37\x9b\x39\x77\xee\xb2\xe7\x1e\x3c\x20\xcf\x4d\x7c\x88\x39\x2d\x64\xdf\x28\x17\x0c\x0d\xcf\x13\x7f\x60\x9d\xd0\xba\x24\x84\x60\xf2\xeb\x3c\xdd\x8a\x5e\x4a\x93\x67\x52\x4f\x21\x48\x8a\xe9\x18\xab\xb4\xfe\x56\xb0\xe4\xc1\xb9\x86\x0d\x51\x98\x03\x87\x62\x50\x23\xa1\x36\xed\x70\x07\x26\x71\xf4\xb3\x9a\x93\xab\x44\x3e\xa4\x11\xca\x50\x84\x6e\x36\x99\xf0\x19\x99\xdd\x75\x0b\x38\x54\xe7\x1f\x30\x9b\x41\xdd\x8b\xb9\x60\x90\x28\x5e\xef\x43\xd7\x6e\xd8\x86\x03\xc5\xed\xea\x05\x3f\x7c\x9e\xad\x4a\x8a\xcf\xae\x63\xd7\xac\x55\x46\xca\xad\x1a\xb1\xcf\xcf\x54\xe8\xfb\x24\xb0\x43\x03\x32\x1e\x97\x12\xc3\xd0\x39\x31\xc0\xc6\x74\x8f\xe9\x07\x3d\xf7\xf2\x30\xa4\x2b\xd0\xe6\xd8\xe0\x54\x8d\x48\x15\xf9\xfb\x2c\x44\x5a\xdb\x10\xa9\x03\xe9\xcd\x33\x9d\xe8\xb4\x06\x9d\xba\x78\x8a\x75\xb7\x38\x57\x0b\xca\x5e\xe8\xa2\x28\x48\xa1\x28\x37\x4d\x7e\x06\x1a\xb4\xf3\x64\xb5\x16\x39\x8c\xe0\x7d\x26\x84\x32\xcf\x41\xb2\x86\x9f\xc7\xc3\x94\x45\x96\x95\x87\x39\x2f\x86\xfa\xde\x03\x43\x78\x2c\xc8\x34\x8d\x2f\x1d\x92\x38\xc6\x41\xa6\x61\x95\x12\x88\x87\xa6\x2d\x01\xc6\x4c\x0d\x9a\x21\x71\x00\x1a\x85\xea\x4c\x17\x17\x78\x9a\xbc\x0f\xc8\x0a\x48\xc5\xfa\xf8\x10\xd0\x62\xf0\x5e\x39\xb3\x56\x03\x3f\x81\xc4\xff\x9c\x36\xfc\x07\xe6\x03\x68\xb3\x8b\xac\x38\xf1\x92\xfe\xaf\xef\xcb\x57\x59\x78\x6b\xf2\xee\x7d\x9e\x10\xdf\xc5\x09\xc2\x6b\xb5\x2d\xa3\x2e\x39\x89\x46\x24\xd4\x3d\x6c\x21\x88\x08\x73\xf3\x84\x1e\x82\x2b\x59\x1b\xcc\x22\xd7\x17\x50\x2d\xd9\x61\x85\xde\x55\x24\x99\x63\xa7\xa6\x8d\x9d\x94\x34\x16\x49\x19\x9b\x13\x06\x4f\x0f\x96\x94\x8a\xd3\x73\x18\xbd\x51\xf1\xa1\xd2\x5c\xc6\x4e\xf7\x3a\x0c\x97\x46\xed\x0d\x57\x49\x01\x5b\xcc\x7b\x29\x7f\x84\x76\xa5\xef\x38\xe4\xe9\xba\x89\xc2\xf5\xd3\xe4\x8e\x24\xf0\x59\x44\x1d\x78\x0d\x69\x8b\x6e\xb0\x48\xfb\x9c\x60\xe5\xe1\xce\x62\xf0\x31\xc1\x4a\x15\xb6\x46\xe1\x15\xb2\x30\x39\xb4\x97\x53\x91\x4e\x2b\x6f\x45\xff\x2c\x6c\x23\xff\x4b\x31\x2a\x3e\xf3\xe8\xfb\x6d\x83\x88\x32\xa3\x73\x38\x1b\x54\x03\xff\x85\x1c\xc9\x40\xd3\x08\x65\xa5\x7e\xc9\xfa\xcc\x19\xc4\x94\x29\xda\xc7\xa7\x86\x9d\x89\x05\x96\x11\xf9\x1e\xf9\x7c\x0a\x11\xc7\x40\x98\xe4\xb5\xf1\xa8\x18\x5e\x81\x7e\x14\x1c\x4c\x79\x75\xc5\x30\xcb\x5b\x30\x6e\x29\x07\x5a\x0c\xd9\x20\x13\xfc\x10\x9c\x78\x4f\xea\x7a\x16\x4e\x24\x88\x89\x1a\xd1\xc1\xc7\x84\x5a\x00\x6d\x54\x6f\xff\xc6\xba\x2e\x77\x42\xb1\x56\x8b\xcf\xe6\xa0\x4f\x64\xe7\x10\x2f\x3f\x50\x84\xa2\xa0\x57\x8c\x74\x42\x6c\x3d\xf3\x24\x59\x09\xb2\x13\x49\xb1\xce\xbc\xc5\xe8\xc0\x23\xaf\x36\x6c\x0b\x67\xa8\x15\xee\xe6\xda\x48\xb4\xe6\xa1\x56\x80\x46\xdf\x2a\xde\x04\xcc\x3a\x58\xb7\x71\x84\x53\x93\x19\x51\xd6\x80\x0a\x73\x53\x5c\x88\xd7\x1e\xf2\x58\x4e\x3c\xbe\x4a\x57\xf0\xd1\x51\xe3\xb2\x60\xe9\x36\xc2\x73\x61\x52\x26\x67\xd8\xdd\x91\x11\x77\x2f\x03\x33\x24\xe0\x2b\x00\x1b\xcb\xc4\x97\x4f\xe5\xe1\x71\x43\x79\x24\x6b\x1e\x5e\xef\x93\x14\x73\xf7\x8d\xac\xc0\xb1\x64\x80\xd3\x37\x51\x68\xbe\x62\x04\xfa\x8e\xd7\xe9\x7e\xca\x31\xce\x8f\xcf\x37\x4a\x58\x73\x34\x3a\x3f\xb3\x27\x00\x50\xf3\x2b\xdf\x9f\x51\xfa\x65\xe4\x58\x43\xdc\xcd\x13\x76\x1f\x2c\x28\xab\x13\x4d\xc7\x16\x51\x76\xfd\x5f\xe2\x74\xb0\x1a\xa5\x51\xfd\xe2\xfa\x6d\x23\xeb\x54\xbc\x01\x38\x3a\x5e\xd0\x42\xde\x46\xa0\x64\x49\x4e\xa2\x61\x5d\x1e\x61\x98\xcb\x85\x7b\xf6\xe5\x55\xc7\xec\x31\xf5\x60\x7f\x86\xd7\xa4\x18\xc8\x98\x24\x17\x29\xb0\x48\x32\x95\xb5\xf8\xa9\xcb\xe0\x15\x7b\x34\x53\x67\xea\xb2\x46\xd3\x70\x62\xbb\x7e\x62\x6a\x26\x74\xcb\xe5\x8f\x50\xcf\x9f\x2d\xc9\x1f\x21\xcf\x51\xb8\x07\x7c\x02\xae\x4f\xe7\x9a\x71\xab\x8e\x1b\x27\xc6\x65\xbf\xce\xd5\xd9\xe2\x93\x71\x02\x7a\xd3\xa2\xe4\x3b\xc4\xf5\xe9\xf0\xd1\x78\x21\x10\x2a\x38\x3e\xd2\x44\x39\x9a\x84\x66\x3a\xee\x2a\x6f\xc8\xd3\x15\x32\x28\x16\x42\x79\xeb\x89\xe1\x21\x80\xb0\xfb\x26\x4e\x2d\x78\x99\xfd\x61\x73\x4b\x02\x04\x18\x91\xd4\xbe\x1e\x73\x45\x34\x93\x1d\x77\x2c\x86\x94\x94\xf2\xf7\x6a\x21\xfd\x41\xc1\x9c\x24\x09\x93\xd3\x38\x9a\xeb\x4e\xb4\x69\x7e\xa3\x57\xe6\x9d\xfc\x49\xef\xcd\x51\x35\x7d\x7e\x2f\x5f\x78\xc8\x8a\xe1\x4e\x25\x04\x06\xbe\x27\xb3\x97\xfe\x56\x68\x6f\xc5\x35\x0b\x37\xa8\x7f\x61\x7a\x83\xf0\x9c\x3e\x96\xec\x69\x77\x0b\x7d\x7f\xa8\x55\x3d\xa2\xe3\x93\x0f\xd1\xf3\x49\xa2\x90\xc7\x8e\xe9\xb3\xf2\xb7\x7b\xd8\x39\x6e\xe6\x92\x73\xdc\x54\xbd\x17\x23\xdb\xdb\xe1\x35\x70\x40\x9a\x5f\x84\xc1\x33\xf1\x0d\x34\xad\x21\xb5\xdc\x25\xad\xae\xf2\x07\xc6\xd9\x08\xd9\x13\x73\xa6\x10\x6e\x0f\x77\xc7\x32\xda\x2b\x85\xc9\xa2\x2e\xa1\xb0\xdf\xc4\x17\xc9\xc5\x1a\xde\x86\xff\x32\x2d\x27\xe2\x18\x33\xe5\xec\x26\x3e\x3c\xf2\x4a\x4c\x9c\x16\xac\xc8\x4b\x73\x60\x21\x51\x69\x4a\x0d\xaf\x3d\xa1\x46\xe9\xd0\x20\x97\xb8\x63\xa0\x7d\x7c\xac\xef\xef\xf7\x45\xaa\x9a\x39\x2a\x05\x14\x12\x97\xff\x9b\x55\xb9\xc9\x11\x34\xf9\x16\x5a\xf8\x3a\xee\xa1\xc6\x6e\x2b\xae\x5f\xb1\x43\xf2\xca\x7b\x3e\x7e\xd3\xbe\xa6\xdd\x25\x5d\x33\x57\x4e\xc7\xbc\xff\xcd\xa2\x87\x12\x3c\xc6\xdc\x39\x29\xf5\x49\xd9\xa9\x93\x42\xfc\x0e\x21\x25\xe6\xdf\x21\xb9\x8f\x27\x9c\x31\xd8\xea\x49\xa4\x51\x80\x49\xd4\x33\x4a\x89\x0d\x19\x32\x47\xf2\x7b\x27\xe8\x96\x68\xfe\x0a\x0d\x23\x73\x7f\xa3\x55\xd8\xb1\x61\x70\xaa\x8c\xb9\xa1\xfc\x50\xf9\x4a\x90\xb2\x2b\x28\x1d\x77\x8a\x63\x71\xc8\xa7\x09\xdb\x06\x74\x83\x3d\x61\xdb\x9d\x3a\x38\x0e\xe7\x6a\xd8\xfa\x5b\xba\xcb\x73\x84\xc7\x79\x2a\x6f\xb5\x2a\xf1\x4c\xa2\xf5\xc8\xbd\x99\x59\xa7\x20\xd8\x23\xef\x39\xd2\x35\xf5\xa3\xda\xce\xa3\xae\x54\x72\xcc\x3a\xcc\xf3\x9d\x7f\x1b\x8b\x83\x44\xca\x6a\x43\x97\xb7\x6b\xb3\x95\x4c\x1e\x08\x49\xa8\xc9\x56\x99\xd6\x9d\x01\x4b\x46\x1b\x2e\x1d\xa3\xf5\x21\x4e\x50\x14\x07\x55\xbf\x10\x5d\xea\xd6\xbb\x44\xbb\x85\x09\x43\x87\xa0\xf4\x10\x56\x04\xf7\xc2\x5f\x17\x70\xe9\x2a\x45\x67\xe5\x6c\xd4\x86\xb5\xfa\x57\xaf\xbe\xc3\x2d\xd9\x89\xbd\x9e\x3b\xd1\xea\xf4\x7c\x51\x00\x0b\xaf\x0f\x6c\xc8\x4e\x3c\x79\x60\x3e\xac\xf8\x86\xc9\xb5\xe0\x9f\xe6\xc6\x90\x5f\x16\x6d\x4b\x18\x49\xb4\xcd\x01\x4a\xb6\xd7\xf0\xd2\x21\x8c\x70\xb7\xf7\x6e\xfe\x1a\xc9\x65\xd2\x6c\x84\x5a\x64\x49\x0d\x7c\xe6\x4f\x93\x7d\xd0\x46\x35\x9b\xfd\xe3\xa1\x6a\x44\x5b\x11\x63\x31\xba\x92\xf6\x34\x7d\x65\x2a\x6d\x9b\x03\x35\xe4\x17\xa8\x8d\x94\x9e\xa3\xa9\xa0\xd5\x02\xdb\x1a\xba\xa1\xfa\x3d\xf2\x54\x39\x73\x87\xda\x31\x93\xc2\x11\xf9\xc0\xe0\x2e\x4b\x0f\xa6\xc8\x3b\x47\xab\x4e\x48\x49\x6a\xbe\x82\xcc\x44\x2a\x5c\xcc\x75\x4f\xbb\x5a\x06\xf5\xe0\xc8\x25\x83\x58\x2a\x97\x0e\xd0\xc2\xc8\x1d\x7a\xa6\xae\xb5\xeb\x96\x04\xfb\x25\x37\x9c\x68\x75\xbc\x0c\x5a\xb8\x46\x1e\xde\x53\xb8\xc5\x2e\x81\xcb\x4b\x8c\xa7\x94\x78\x6a\x8f\x66\xcd\xa5\xe1\xc4\x7d\x4d\xf5\xe6\x60\xb8\xdc\x6e\xac\xb8\x72\x96\x5b\x4b\xdd\x3b\x2a\x57\x3d\xb9\x66\x4c\xca\x05\x89\x70\xcc\x6a\xc5\x24\x23\x15\x1c\x0a\xd9\xa1\x76\xb7\xaa\x2c\x9a\xea\x1b\xb8\x56\x2b\x31\x16\xd6\x63\x6b\xaf\xd8\x6e\xd3\xa7\x11\xfb\x89\xdc\x4b\xfe\x06\x2b\xb9\xdc\xb5\xe8\xca\x87\x38\x7f\xdc\xdf\xad\x9d\x40\xa4\xee\x3b\xb8\x6b\x36\xd7\xb0\x64\x67\x24\x19\x6f\xd7\x53\xdc\x43\xee\xef\xc1\x03\x53\xcc\x59\x9b\x5d\x68\x36\x7a\x19\xdd\xc0\x17\xe1\x68\x41\xec\x92\x8b\x93\x7b\x67\x2e\x15\xf3\x90\xd6\xbc\x4c\x3d\x02\x05\x2f\x4d\xbd\xa2\x62\xa3\x82\x9a\x46\x5c\x3e\x6a\x2e\xe1\xd4\xa4\x2b\x06\xa2\xce\x94\x01\x33\x11\x29\x81\xd0\x5b\x77\x26\x81\xb1\x2f\xd9\xa6\xd7\xba\xa2\x12\x9e\xf7\x9a\xe7\x77\xbb\x4e\xd4\xbd\x4d\xca\xd3\x88\x7d\x9d\xa6\x9a\xce\x27\x9d\xe5\x2e\x38\x1b\x11\x98\x3f\xfe\x38\x2a\xff\xc6\x95\x6b\x32\xd4\x81\x74\xf0\x41\x1a\xbe\x66\x54\xd3\x79\xfc\xb9\x24\x29\x97\x2f\x3d\x86\xd1\x63\x08\x3b\x58\x1e\x97\xf5\xe3\x6f\x29\xc9\xb1\xca\xa6\xc7\xf1\x98\x78\x3c\x90\x65\xd1\xb8\x71\x7f\xe3\xbb\xb1\x7c\xe1\x42\xc6\x99\x71\xec\xa8\x2c\x7e\xc3\x9c\x31\x39\x63\x95\x31\x1e\x3d\x51\x47\x3e\xde\x4f\xaa\x58\xb8\xbf\xe2\x40\x72\xcf\x55\xb5\x89\xdc\xc7\x47\xf6\xb5\xde\x5b\x71\x68\xc7\x51\x16\xd1\x27\x95\xbb\xa5\x52\x37\xe3\xeb\x14\xc3\xb7\x41\x21\x47\x47\x30\x27\xdb\xdd\xc6\x78\x29\xf6\xc7\x07\x68\xc4\x7e\x0a\x74\xfc\x14\xc2\xca\x59\x65\x3f\x21\x6a\xa3\x36\x77\xf3\x5f\xd1\x21\xf4\x16\xaa\xa8\x89\xb0\xc3\xd1\x73\x2d\x0c\xa9\xc6\xdb\x68\x9b\x63\x82\xd9\x36\x86\x1c\xea\x1e\x73\xc5\x08\x92\xcb\x2d\xfd\x49\xe6\x35\x95\xbd\xbd\xb2\xa5\x1d\xa4\x7c\x97\x48\x3e\xf0\x82\x0f\x0d\x1b\x69\xf6\xa7\x4c\xa9\xf3\x85\x93\x10\x33\xe0\x1f\x54\x75\xfc\xa7\xce\x36\xf2\xf7\x33\xeb\x6c\xd6\x79\xe4\x6b\x91\x14\x13\x67\x87\x7f\x05\x45\xcd\xed\x80\x9f\x56\x4f\x33\xa9\xef\x87\xa7\x46\x2b\x66\x63\x23\xc3\x64\x53\xee\xd4\x2b\x02\xaa\x99\x54\x9d\x38\xc0\x31\x44\x0f\x4f\xda\xfa\x35\x64\xca\x87\x04\xc1\x58\xe1\xf7\xd3\x82\xa7\x8a\x0c\x57\xf8\x63\xb7\x41\xf8\x34\xc7\x7f\x29\x3a\xfe\xed\x8a\x97\x74\x6d\x9b\x92\x71\x47\x4d\x08\xc4\x36\xf1\x5e\x90\xa2\xf3\xe8\x05\xef\xa4\xb2\x09\x06\x8c\x80\xcc\x85\x23\x14\xa2\xa1\x8d\x71\x8b\x40\x08\xa7\x17\x90\x99\xcf\xa5\x35\xb5\x94\x4c\x00\x91\x34\x7e\x82\xd4\xb6\x8e\x42\x5c\x0d\xe6\x30\x39\x96\xd5\xef\x08\xa4\x73\x34\x10\x5e\xf5\x02\xf2\x36\x40\x7c\xaa\x56\x76\xa5\x0f\xe1\x1d\xde\x32\x44\xee\x37\xfb\xbc\xd1\x0d\x3e\xea\x61\xe3\x72\xc8\x8f\xca\xa5\x71\x51\x55\xb4\x69\xac\xab\x6d\xc3\xc8\x8b\x3f\x7c\x6d\x8c\x07\xb3\x4e\xd1\xfd\xc1\xb8\xf3\xc8\xfc\x63\x86\x1d\x0e\x1f\xe0\x23\x7a\xf0\x80\x3c\xa7\x5d\x73\x20\xec\x46\x2f\xc8\x0a\xbc\x5c\xc3\x1a\xc0\x53\xd8\x41\x8c\xa4\x77\x12\xf7\xf0\x53\x68\x43\xe5\xd1\x53\xa8\xf8\x78\x6f\xec\xa8\x0f\xb6\x13\x7a\xa6\x1e\x39\xeb\xe0\x20\x45\x35\x1b\x00\x1c\xfb\xe7\xca\x57\x36\x7c\x85\x41\x39\xe2\x2b\x3f\x3e\x39\x90\x54\x37\x70\x04\x23\x38\xa2\x4f\xc4\x41\x4e\x83\xc9\x06\x2e\x54\xd3\x2d\xbc\x3e\x06\xbe\x46\xca\x6d\xb9\x42\x36\x41\xf1\x1c\x2e\x6d\xf6\xf1\xec\x2d\x07\x09\xe2\xba\xb9\x0c\x6d\x5f\x4a\x24\x57\xbd\x49\x68\xbb\x07\x47\x69\x69\x20\x1b\xb2\x80\x3f\x16\xb1\x03\x9c\xdb\xdd\xa6\x35\xe2\x13\xbc\x90\x11\x69\x44\xbb\x66\x9d\x29\x6f\x11\x86\x44\x0c\x69\x79\x19\x56\x63\x8a\xa0\x77\x68\x36\x71\xb5\xb9\xef\x77\x39\xb8\x5d\x32\xf7\xc2\x51\x05\xd4\x7e\x65\x28\xed\x13\xaa\x95\x4d\x63\x13\x3b\x8c\xe6\x41\x77\x7f\x41\x3e\xf4\x9b\x29\x29\xd0\x3d\x26\xc7\x03\x1f\xca\x9d\x6d\x1a\xf3\x9b\x42\xe6\x72\xf7\x57\xce\x60\x7e\x73\x3c\x69\x79\x19\xc8\x48\xb2\x6a\xdb\x42\x6b\xb2\xba\xd5\x6c\xbe\xe0\x78\xba\x6a\xf7\x87\x5d\xf2\x60\xdc\x65\x72\x1c\x15\xf7\x88\x79\xcf\xa1\x55\x94\xbd\xa9\x60\x94\xa5\xed\x19\x14\xfe\x30\x65\x00\x36\x14\xdc\xca\x74\xac\x39\x90\x50\xe1\x20\xad\xa8\x21\x41\x34\xad\x54\x0f\x91\xb9\xae\x00\x19\x57\x0b\xf2\x7c\xa4\x5c\x85\xc6\x0e\x1b\xa7\x16\x2d\xb8\x98\x28\x91\xfa\x4c\x87\x48\x88\xf4\xe8\x82\x54\x0a\x6e\xa4\x58\x03\x9d\xfb\xc3\x6a\x81\x41\xb7\x18\x21\x35\xc5\x2a\x6a\x94\xce\x20\x17\x7b\x50\xee\x31\xbc\x4e\xef\xe0\x89\x13\x54\xad\x73\xaf\xa2\xe0\x1d\x4d\xce\x2c\x0f\x1e\x10\xc9\xa1\xde\x81\xc6\x1a\x9c\x65\x52\xeb\x83\x3e\x59\x2b\xa6\xc3\xa1\x78\x5f\x68\x41\xa4\x4f\x1f\x7d\xb2\x8b\x9d\xe2\x5b\x2e\x15\xaf\x3c\xb6\x62\x58\x47\x2e\xc9\x96\xd6\x8c\x18\xd1\x25\x5c\x4e\x09\x6a\x2a\x1d\xd5\x1c\x1f\x43\x2b\xb8\xbe\xd6\x64\xcb\xf6\xae\xec\x65\xa2\xeb\x4e\x8c\xd5\x30\xc9\xac\xf5\x1a\x62\x3a\x9b\x8d\xa7\x36\xaf\x9b\xc8\x4e\x74\x21\x8b\x98\x1a\x18\x90\xcf\x5a\x4f\x60\x47\xf9\x88\x76\x32\xb5\xd4\xa7\xc1\x27\xee\x6a\x10\xf0\xe5\x87\xa5\xbf\x94\x34\xd5\x39\x9d\x0f\x17\x54\x9d\xac\x86\xaa\xa9\x0f\xe8\xea\x0b\xeb\xff\x8e\x0b\x74\xa6\xb5\x90\x10\x05\x67\x4a\x55\xca\xc7\x8f\x91\xcc\x19\xb7\x8c\x7b\xc4\xca\xe2\x20\xc9\x3b\xbc\x81\x73\x96\x7b\xa2\xc7\x2a\xe2\x84\xd9\xa2\xdd\xcd\xad\xd9\xbe\x7e\xe9\xcd\x2b\x33\xae\xb7\x4e\xcd\x3a\x4b\x67\x57\xb4\x30\xad\x5a\x13\xfe\x2b\xd5\xea\x7e\xaa\x80\xb2\x69\xc1\x64\x68\xa0\x64\x12\x5d\x16\x3f\xf5\x88\x9e\x79\x94\x3e\xa1\x71\x65\xc7\x5c\x99\xd3\xf1\x1b\x0b\x38\xf3\xef\x72\xa1\x4c\xf5\x99\x3b\x3a\xb3\x36\xae\xac\x1a\x34\x7b\x78\x7f\xa2\x15\x19\x3a\x9e\xd3\xaf\xf9\x7b\xd4\x23\xf5\x53\x4f\x5c\x94\x9b\xdf\x96\xb6\xe6\x65\x12\x45\x9d\x5e\x51\xea\x93\x8b\x72\x73\x7f\x6f\xef\x31\x0d\x17\x5e\x1e\x08\x6f\xa5\xad\xe1\x6e\x63\x4d\x2b\xd1\x75\x70\x23\x0a\x2f\xb7\x13\x73\xfa\x9a\x76\xb6\xc7\x79\x5b\xb3\x1b\xf4\xf5\x0d\x3f\xf1\x88\x9d\x3f\x83\x27\x38\xa5\xea\xa3\x88\x26\x66\x0a\x90\x3e\x0c\x21\x14\x9e\x4a\x44\x58\x70\xb4\x0d\xee\x8d\xcf\x6d\xf0\x04\x56\x56\xa5\x19\x79\xce\x83\x56\x9a\x35\x70\x66\x54\x2d\x43\x90\x27\x99\x3f\x28\x5d\x9c\x2b\xc6\x4c\x71\x42\x58\x3a\x9b\xf0\x01\x7f\x27\xc3\x57\x20\x5f\x67\x65\x24\x8c\xb5\x32\x4f\x1e\xc1\x60\x4d\x4b\xaf\x47\xca\xb0\x6d\x34\x8e\x9e\xe0\xe9\xa8\xeb\xd6\xdc\x36\x59\x10\x85\x72\x29\xb8\xf2\x7c\x5b\xa5\x59\xef\xd5\xd7\xf6\xb8\x5a\x46\x9b\x14\x2f\x3e\xe5\xfa\x3c\x63\x75\x5f\x29\xdd\x67\xd8\xfc\xf7\x27\xf6\xff\x20\xe5\x79\x82\xd2\x7c\x33\xa9\xa8\x4b\xc9\x80\x9e\xe2\x8f\xc2\xfc\xec\x0f\xef\x87\xb3\x2f\x69\x35\x4e\xb5\x4d\xb4\x58\x4a\xe4\x41\x2a\xb6\x0d\x6a\x15\x5a\xff\xca\xe0\x26\xb1\x2e\x12\x07\x21\xa9\x08\x73\x20\xe7\xcf\xf2\x08\x24\x85\x9c\xac\xc6\x25\x6a\xca\xbd\x7b\x71\x65\xce\x57\xfb\xbe\x2d\xa9\x5e\x6b\x23\xa0\x8c\x95\x4b\xc9\x8a\x42\xf4\x4b\xd7\x89\xee\x63\xb8\x7c\x10\x8a\xc4\xb5\x4b\xc8\x7f\x3c\x79\xfd\xcd\xf9\x37\xbf\x5b\x1a\x1c\x3c\x54\x9b\xc0\x4c\xab\x29\xd5\x86\xb6\x6b\x06\x3a\x75\xa4\x4d\x43\x35\x68\x9b\xfc\xb5\xd3\x6a\x96\xd7\x9b\x9b\x83\xab\xa6\x0d\x64\xb1\x36\x32\xa8\xd7\xbc\x5d\x67\x2e\x27\x5f\x4c\x13\x8a\x70\x60\x46\x83\x57\xdc\x7e\x5a\x35\xed\xa2\xf8\x0e\xe2\x88\xba\x86\xbc\xdc\xc0\xf4\x35\xa7\xa4\x8f\x17\x30\x1c\xf0\x71\xe9\x78\x11\xb6\x2e\x3e\xd3\xd8\x50\x49\x78\x1b\x72\x5e\x2f\xc9\x1f\x67\x1e\x1d\x2f\xae\xe6\xb7\x29\x47\x38\xea\xb4\xc8\x66\xf3\xb7\x51\x81\x0e\xb1\xef\x3f\xb8\x12\x9d\x5b\xc1\x9f\xf4\xd8\xb8\x93\x8f\xe5\xa7\x96\xfb\xd3\x9c\x25\xd3\x6b\xbd\x21\x00\x3f\x4e\xcd\xb7\xa9\xe6\x0a\x82\x40\x41\xf6\xf0\xfa\xc4\x56\x01\x52\x37\x7a\xd6\x50\x58\x60\x1e\x3e\x66\x1c\xfe\x17\xfe\xe7\x41\x50\x36\x72\x28\x19\xc9\xa5\x2f\xa6\xfe\x0b\x89\x96\x8d\x44\xab\x12\xe5\xa5\x22\x53\xdb\x35\x94\x8a\x7a\x33\x00\x40\x53\x2f\xd2\xbc\xfc\x30\x43\x2d\x6c\x61\x72\xbb\x6f\x1f\x7e\x96\x80\x79\x64\xc1\x3f\xb0\xed\x1e\xac\xdc\x77\x33\x4a\x44\xbd\x61\x8b\xbf\x6d\x4d\xba\x4d\xe1\x76\x71\xb6\x87\x6b\xb6\x02\x13\x5b\x69\x58\x06\xbb\x4f\x07\x68\x0e\x5b\x57\x13\x73\xa8\x87\xd9\x09\x7b\x49\x6f\x8f\x79\x38\xae\xb8\xda\xd4\x1d\xdd\x1b\xba\x5a\xe3\xf1\x8e\x94\xdd\x5b\x58\x40\x5a\x93\x73\xc8\xdf\x86\x8f\x7a\x08\x6e\x41\x64\xa8\x16\xfd\xa2\x6f\xe1\x4a\xc8\x40\x73\x53\x98\x93\xbf\x91\x15\x88\xb6\x86\x57\xb8\xfc\xba\x38\x32\x79\x12\x99\xff\xaf\xa5\xe5\x3d\xbc\xa6\xb4\x5d\x2f\x4b\x74\xda\x34\xa5\x32\xdb\x1f\xa5\xc4\x76\xb9\x40\xd7\x48\x71\xae\xb1\xc2\x5c\x47\x4b\x6a\x8f\x94\xd3\x1e\x29\xa5\x9d\x51\xd8\xf8\x08\x40\xa5\x1a\xca\x97\xb8\x43\xf5\xde\xe2\x78\x55\xf2\xa0\x26\x6f\x2c\xdb\x82\xba\xba\x89\xd0\x43\x33\x21\x47\x4d\x8e\x26\x7e\x3d\x5e\xc9\x23\x36\xbb\x81\x58\xa6\xbc\xad\xff\x30\x1f\xe3\x93\xbc\x0e\xdb\x5f\x6b\x89\xdd\x12\x4e\xad\xb9\x16\xa6\xe2\x2d\x2e\x64\x44\x8d\x69\x35\xcf\x47\x0b\x74\x96\x16\x6e\xd2\xe2\x4d\x5a\x40\xe4\x08\x2d\x2c\x95\x75\xad\x0e\x6e\xad\x9b\x02\xff\x1f\x17\xa8\x1c\xf2\x82\x0d\x80\xc2\x37\x7a\x2e\x3a\x22\xf8\x7c\xeb\xed\x14\x78\x81\x9d\xcf\x23\x38\x57\xb4\x32\x93\xbc\x26\x8c\xaa\x1a\x04\xcb\x0f\xf5\x73\xc2\x74\xc3\xe7\xcf\x3c\x98\xd8\x34\xab\x68\x6b\x6c\xb3\xb5\xbd\xda\x09\xba\x62\xd7\xfd\x58\x7e\x01\x81\x5c\x1f\xf9\xe1\x9c\xde\xbf\xe2\xad\x49\x5a\x15\xdb\xa4\x4c\x51\x18\xd1\x3d\xdd\x56\xa2\x1b\xea\x73\xb8\xb3\xd0\x03\x9b\xea\xab\x4f\x27\x33\x00\x08\x3d\xf6\x28\xc5\x74\xb7\x88\x66\x21\x3f\x85\x49\x98\xd3\xd2\xe5\x91\xef\x3e\xf9\xf8\xf8\xb6\x1b\x72\x11\x0f\x50\x62\x09\xd3\xde\x1e\x38\x2f\x44\x77\xfe\x2c\xac\x7d\xda\xb7\xf7\xb5\xd2\xab\x1a\x48\xa3\x77\xdc\x6a\x29\x73\x0c\xf3\x4d\x06\x38\xf6\x41\x10\x24\x2f\x33\xc9\x22\xb4\xdd\x02\x24\x92\x6e\x0d\x78\xbb\x12\x84\x5e\x8a\xde\x2c\x87\x03\xa2\x2d\x6f\xc9\x98\xbd\x1a\x37\x0f\xf7\xcd\xca\xdf\x79\xa5\x83\x29\xe4\x8b\xfd\xe4\x8e\xb4\x98\xc6\x0b\xf9\x22\xcc\xfe\x44\x22\x6e\x40\xd5\x83\x12\x4f\x14\x58\x8b\xd7\xf3\xc7\x8b\x68\xa8\x19\x26\x21\x9e\x62\x7e\xe2\x50\x4c\x9c\x3f\x93\x08\x29\xc3\x50\x25\x93\xd1\xda\xc2\xc1\x77\xce\x5d\x80\x94\xf6\x11\x86\x31\xbc\x02\x73\x19\x8b\xee\xb0\x75\x70\x98\x8e\x5c\xa3\xe8\xd8\xeb\xcb\x68\xfd\xcc\x6f\x77\xda\xc4\x01\xb8\xa3\x22\x5d\xbe\x10\xdd\x05\xdf\xb2\x55\x47\xb7\x6c\xfa\xa2\xd1\x2e\xac\xb9\x9c\x26\x99\x07\x60\xe9\xb6\x92\x8a\x76\x61\x7c\xed\x85\xb9\xa9\xee\xc2\x92\x09\xc1\xe6\xd2\xc3\x47\x1b\xcb\x56\x59\x69\xeb\x04\x06\x6b\xeb\x89\x10\x26\x73\x53\x3e\xbb\x61\x57\xc6\xf3\x4b\x0f\xfe\x11\xe2\xce\x52\x02\xb8\xf4\x34\xf1\x94\xbc\xa1\xf5\xce\xfc\x97\xfe\x8f\xf3\x56\xfd\xdb\xc0\x9c\xef\xdf\x7f\xa0\x64\x1f\x47\x2b\xfe\x77\x8a\x5e\xf8\xaf\xa2\x0a\xf4\xd1\xeb\x06\xdc\x7e\x0b\x7c\x70\xb9\x93\x82\x66\xa7\x37\x3a\x5c\xcf\x68\x71\xf1\xce\x8f\x6e\x7e\xbb\xd3\xc2\x38\x70\x98\xb7\x24\x2a\xda\x68\xeb\x5b\xd1\x24\xbb\x86\xd6\x22\x7c\x07\x57\x3a\xdd\x1c\x77\xfa\x78\x93\x70\xd6\xc5\xba\x4d\xe0\x0b\xb0\x26\xf5\xc9\x30\x26\x54\x00\x81\x12\x07\xe6\x93\x39\x6d\x2f\x5d\x14\x47\xed\x0a\x94\x09\x38\x4e\x37\x62\x6f\x9f\x57\x79\xdd\xc7\x64\x44\xfd\xfa\x2b\x0f\xf1\x7c\xe5\x3f\xb4\xbc\x39\x89\xdd\xfd\x4e\xe4\x9c\x2e\x4e\x4b\x04\x0f\xea\x56\xfe\x29\xb3\x79\x7c\xe9\x9f\x80\xf6\xb6\x96\x25\x9e\x44\xd5\x2e\x8c\x1b\x8f\x94\x72\x10\x80\xab\xf7\xb0\x63\xe4\x0c\x80\xdd\x1b\x1c\x7b\x51\x33\xbe\x82\x56\x0b\x2e\xdf\xf4\x97\xfa\xbf\x66\x62\xb5\x24\xe0\x45\xfd\xa6\xdf\x5e\xb2\x0e\x3c\xa8\x51\x97\x1f\x7f\x2c\x76\xf9\x4a\x88\xe6\x56\x1d\x9e\x18\xdf\xe5\xa3\xd0\xf1\x76\xa4\xcb\xd3\x0d\xd5\x4c\x60\x30\x9b\xdc\xc9\xbb\x21\xb2\x5e\xc5\xca\x0f\x21\x89\x49\x12\x76\x13\x52\xd9\x32\x9a\xf5\x4f\x7b\x2f\x8f\xa6\xfa\x05\x0b\x62\x64\x83\xb6\x6f\x25\xab\x4d\x58\x6b\xc9\xd1\x14\x95\x87\x40\x5b\x48\x7a\xcd\xa0\x3a\xe8\xbd\x13\xa2\xc4\x32\x44\x63\x5e\x1a\xf3\x09\xf0\xfe\x9d\x87\x6c\x04\xad\x1f\x7a\xde\x75\x7e\xad\x68\xe0\x54\x80\x68\xeb\xf0\x8d\x69\x00\x37\x9c\x95\x68\xaf\x59\xa7\x8c\x68\xb4\x1f\xbe\x3a\x28\x26\x2f\x84\xd9\x07\x5f\xb3\x35\xbd\xd4\x3f\xcc\x52\xbc\xb1\x80\x8d\x8c\x9e\xf3\xa2\xf8\xe3\x2d\x57\x51\x28\xa6\x91\x6d\xf8\xe2\x25\x22\x2f\xa6\xa7\xfb\x95\x3c\xbc\x6f\x73\x35\x90\x37\x71\xfb\x59\xbc\x02\xa2\x19\x3e\xe9\x4e\x65\xe2\xfe\xf6\x49\x7b\x78\xcd\xa4\xe8\xbb\x8a\x79\xfa\x26\x78\xce\x33\x03\x3a\x84\x3f\x81\x69\x1e\xde\xf7\x53\xb0\xac\x53\x1c\x21\x21\x56\x3c\xcb\x94\x91\x7c\x04\x30\x67\xd2\x81\x8b\xdd\x24\x5c\xca\x9e\x19\x47\xa0\x0b\xe5\xfa\x2c\x21\xdd\xa3\x19\x8e\xcd\xfb\x4f\xde\xff\xff\x00\x00\x00\xff\xff\x0e\x4d\xb5\x64\x05\x1a\x01\x00" +var _flowtransactionschedulerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xdd\x92\x1c\x37\x72\x28\x7c\xaf\xa7\x00\x75\xa1\xed\x5e\x0d\x9b\xc3\xb5\xe5\xcf\xdb\xc1\x21\x97\xe2\xcf\xee\x84\x29\x89\x1f\x39\x5c\x5f\x48\x8a\x5d\x4c\x15\xba\x1b\x67\xaa\x0b\xbd\x05\xd4\xf4\xb4\x24\x46\x9c\xf0\xf5\xb9\xf0\x85\x2f\xce\xf3\xf9\x49\x4e\x20\xf1\x53\xf8\x49\x54\xd7\x0c\xa9\x95\xec\xf0\x84\x63\x2d\x76\x01\x89\x44\x22\x91\xc8\x4c\x24\x32\xf9\x76\x27\x3a\x45\x3e\x7d\xd9\xb7\x6b\x7e\xd9\xb0\x0b\x71\xc5\xda\x4f\x3f\xf1\x3f\x37\x62\x8f\xfc\xf4\x92\x31\x19\xff\xf2\x56\x89\x8e\xae\x59\xfc\xe1\xcf\x9c\xed\xdf\x30\x29\x9a\x6b\xd6\x7d\xfa\xc9\x27\x0f\x1e\x3c\x20\x00\xb0\xa3\xad\xa4\x95\xe2\xa2\x7d\x5b\x6d\x58\xdd\x37\xac\x23\xac\xa5\x97\x0d\x93\x44\x6e\x69\xa7\x48\x25\x5a\xd5\xd1\x4a\x49\xa2\x04\x91\xb6\x11\xa1\xbd\x12\xad\xd8\x8a\x5e\x12\x76\xc3\xaa\x5e\x43\x20\xbc\x25\x6a\xc3\xc8\xaa\x57\x7d\xc7\x16\x7a\x10\x18\xe8\x62\xc3\xa5\x07\x43\xf8\x76\xd7\xb0\x2d\x6b\x95\x24\x2f\x5f\x9d\xbf\x26\xff\xf0\x0f\xa7\xbf\x91\x1e\x70\x4d\xd4\x80\x12\x91\x07\xa9\xd8\xf6\x84\xd0\xa6\x11\x7b\xde\xae\x63\x64\x3e\xdd\xd3\x2b\x46\xfa\xdd\xa7\x84\xb6\xb5\x45\x83\xc1\x88\x8d\x58\xf3\x8a\x50\x45\x76\x1d\xab\xd9\x8a\xb7\x1a\x2e\xdf\x32\x49\xf6\x5c\x6d\x44\xaf\x08\xbb\x51\xac\x6b\x69\x43\x54\xc7\xd7\x6b\xd6\xc9\x05\xf1\xf8\xbe\xc5\x70\x91\x84\x76\x8c\xec\x3a\x2e\x3a\xae\xf8\x0f\xac\x26\xb3\x3f\xf1\xf5\xe6\xc1\x57\xac\xe6\xfd\xf6\xc1\x2b\xb1\x9f\x03\x70\x52\xf3\xd5\x8a\x75\xac\x55\x01\x61\xd6\x3d\xed\x68\xab\x18\x93\x80\xea\x8a\x31\xb2\xed\x1b\xc5\x77\x0d\x67\x9d\x5c\xc2\xd0\x84\x90\xfb\x44\x83\x74\x83\x1c\xc2\x6e\x2b\xde\x49\x75\xff\xb2\x11\xd5\xd5\x00\xf7\xc4\xf7\x33\x58\x0c\x3d\x77\x9d\xb8\xe6\x35\x93\xe4\x92\x49\x75\x9f\xad\x56\x9a\x09\x2c\x8d\x79\xbb\x1e\x3a\xbe\x12\xfb\xa1\x97\x25\xa1\x24\x62\xa7\xb9\xa6\x6f\xb9\x54\xbc\xa2\x4d\x73\x20\xfb\x0d\x6b\x49\x45\x77\xb4\xd2\x0d\x61\x3d\x24\xa1\x2b\xc5\x3a\x58\x72\x4d\x5c\xc2\x15\xd9\xd3\x60\x29\x03\x92\x5e\x6c\x98\x5d\x4c\xd2\x4b\x26\x4d\x7b\xd9\x08\x65\x56\x24\x20\x95\xc5\xb5\xe1\x5b\x6e\x56\x79\x4b\x5b\xba\x66\xa4\x65\x6a\x2f\xba\x2b\xd2\x31\x29\xfa\xae\x62\xd2\xcc\x81\xb5\xb2\xef\x34\x67\xe8\x95\xe6\x95\xd2\x9c\x4b\x76\xac\x5b\x89\x6e\x4b\xdb\x8a\x91\xfd\x86\x37\xcc\xb0\xb4\x6e\xd6\x8a\x6b\xd6\x84\xdc\x0b\x24\xad\x36\x94\xb7\x64\x47\x95\x66\x0a\x49\x1a\x7e\xc5\x48\xc7\xaa\xbe\xd3\xa0\x61\x9c\x1d\x3d\x00\xcf\x9e\x40\xdf\x2d\x55\xac\x26\xb4\xbb\xe4\x4a\x6f\xb5\x13\x58\x55\x3d\xa7\xfb\x97\x54\xb2\x7a\x60\x76\x60\xc4\xc5\x27\xb4\xaa\x98\x94\x33\xda\x34\xf3\xe1\x5b\x71\xff\xfd\xf8\xc9\x27\x84\x10\xa2\x87\x95\xbc\x5d\x37\x4c\xc1\xde\x92\x0a\x26\xd4\xeb\x01\xf4\x56\x54\xa2\x63\x7a\x25\x0a\x7b\xa7\xa6\x8a\x7a\x38\x1a\xbf\x4e\xf4\x6a\xac\xc3\xaa\x6f\xe1\x3f\x68\xc3\xd5\x01\x7a\x5a\xb4\x25\x6b\x56\x73\x72\x4d\x3b\x22\x37\xb4\x63\xb5\xc7\x74\x49\x9e\xd1\x1d\xbd\xe4\xba\xc3\x23\xda\xab\xcd\xec\x99\x46\xb1\x99\x93\xcf\xde\xc6\x2d\x1f\x07\x53\x32\xe2\x49\x53\x7b\x43\x56\xc2\xf0\xcf\x30\x4f\xe9\xc9\xe0\x56\x3a\x44\x05\x28\xd8\x30\xe5\xa0\xbc\xa6\x6a\xb3\x24\x6f\x87\x7f\x0c\xe3\xbc\x68\xfb\xad\x1c\xfe\xf9\xda\x32\x79\x06\x8d\xb5\xfd\xd6\x7f\x5d\x92\x77\xe7\xad\xfa\x67\xf2\x23\x34\x4b\x9b\x56\x54\x32\xd8\xa2\xe5\xaf\x66\x23\x96\xbf\xbf\x12\x7b\xf8\xf8\x7e\xc0\xec\xad\xa2\xaa\x97\x38\x5e\xe6\x5b\x8e\x95\xee\xd7\xb7\x57\xad\xd8\xb7\x44\x42\x1b\x66\x04\x14\x70\x87\xa6\xea\x86\xb6\x35\x70\xfc\x86\x6b\x5a\xf1\x0a\x5f\x75\xbb\xff\xda\x5e\xb3\x85\x05\x54\xc6\xfe\x9d\x19\x32\x42\x63\xdb\x9b\x4d\x27\x87\x69\xa0\x7d\xbd\x54\x8d\x7a\xaf\xb8\xe6\x37\x2d\x4e\x8f\x8f\xfe\xc2\x88\xa7\xba\xdc\xc2\xb0\x9f\x6d\x11\x90\xf8\xc5\xb5\xde\xbb\xc1\xbf\xb7\x5c\xe9\x1d\x0c\x52\x8d\x46\xbb\x80\x07\x02\x2c\x5f\x13\x0d\x67\x98\xc9\xcc\x63\xc2\x6b\xb3\x46\xff\xf4\x8f\x27\xfe\xb7\x5d\xcc\x53\xc3\x07\x38\x89\x14\xdd\xee\x96\xe4\xdd\x4b\x7e\x13\xf6\xf1\x72\xf0\x05\x88\xc1\x1c\xe8\x8a\x31\x99\x77\x0b\x26\xf0\x27\xbd\xee\xac\xfb\x66\xdf\xea\xfd\xf9\xb4\xae\x3b\x26\xe5\x58\xcb\x8b\xc3\x8e\x9d\xd7\xac\x55\x7c\xc5\x75\x97\xb7\xaa\x83\x13\xa2\xdc\xe3\xdd\xbb\xf3\xe7\x39\x66\xc1\xb2\x82\xb8\xdf\xf5\x97\x0d\xaf\xcc\x36\x17\x2b\x73\x4a\x04\x74\xde\x18\x58\x44\x6d\xa8\x22\x15\x6d\xc9\xe5\x20\xda\x3a\xa3\xa8\x90\x6b\xce\xf6\x32\x84\xfb\xfc\xfc\xed\xb3\x57\x4f\xcf\xbf\x7a\xf1\x66\xa9\xc7\xe8\x98\x5e\xae\x56\x0c\x07\xa5\x01\xa7\x92\xe1\xb9\xd4\xab\xd8\x77\x54\xb1\x91\x69\xbd\x86\x1e\x46\xa2\x0c\xff\xfd\x04\x7a\xcc\x8b\xbc\x83\xee\xaa\x58\xa1\x71\xcb\xad\xf1\xe8\x18\xd5\x1f\x40\x20\x73\x65\x7f\xa9\x0f\xb0\x65\xfd\xe2\x17\xf8\xee\x35\x6b\x6b\xde\xae\x5f\xb8\x66\x77\x64\xbf\x5f\x0d\x8f\xdd\x85\xb2\x9a\x62\x56\x4d\xa9\xc9\xe5\x01\x96\xfa\xe5\x9f\xbf\x2a\x50\xcc\x49\x8c\x9f\x8b\x52\xbf\xe4\xbe\xfb\x9f\xfd\x16\x73\x45\x65\x65\xbf\xe3\x8a\xaa\x63\x54\x89\x0e\xa1\x45\x81\x59\xdc\xe1\x71\x47\x66\xd1\xbb\xe6\x0d\x53\x7d\xd7\xb2\x3a\xdf\x3d\xfa\xeb\x73\x56\xf7\x95\xc2\xbe\xfe\xdd\xf7\x56\x25\x9a\x86\x19\xd2\x81\xa6\x1d\x88\x26\xdf\x45\x33\x95\xf9\x08\x8b\xac\x55\x7b\x27\xbd\x80\x0b\xda\xfb\x2d\x6f\x8c\x20\x93\x40\x62\xbc\x71\x04\x4f\xa8\x0d\xeb\xd2\x86\xad\x50\x11\x64\xde\x94\x56\xc8\x63\xfd\x4a\x43\x78\x63\xfa\x0c\xeb\x35\xcc\xca\x6c\x58\x68\xe5\x96\xf0\xc9\x09\xd2\x2e\xd0\xbf\xa5\x6d\x7d\xde\xaa\x71\x1e\x1c\xa6\x2a\xcc\x3f\xda\x7e\x7b\xc9\x0c\xa3\x85\x8a\x55\xb8\xd3\x3a\xb6\x15\xd7\x7a\x7a\xad\x36\xcd\x60\x5e\xf3\x94\xe6\xf9\x7c\xdf\xe8\x5e\xb4\x89\x26\xeb\xb1\x8a\x91\x12\x2d\x23\xa2\x23\x5b\x6d\x13\x58\x8e\xaf\x44\xbb\xe2\x6b\xbd\x0b\xc1\x1c\x60\x8a\xf2\x46\x1b\x92\xac\xa9\xad\xae\xb8\xab\xa9\xf2\x0b\x64\x94\x24\xd2\x70\xa9\x58\xcb\x3a\xd8\x50\xf6\x5f\x5a\x46\x28\x6d\xc4\xeb\xc5\xfe\x5b\xcf\x3a\xb3\xc3\x5a\xb6\x8f\x07\x71\x90\x38\x20\x70\x20\x2d\x03\xf9\x52\x5c\x4d\xdd\xf5\x9d\x41\x62\x16\x52\xbb\x55\x5c\x59\x1f\x01\xa2\x16\xfb\x8f\x4e\xbc\x8f\xb6\x79\x6d\xc8\x3d\xda\xc6\xec\xfc\xd1\x26\x06\x4d\x83\xf2\x80\xe9\x79\xab\x58\xb7\xa2\x15\x0b\x74\xcb\x8b\x6c\x87\x82\x3c\xd4\x16\x9c\x6d\x6c\x38\xc3\xf8\x25\xa4\x16\x69\x60\xfc\x90\x2d\x53\x1b\xe1\xfd\x18\x01\x18\xd3\xde\x0f\xb0\xed\xa5\xd2\x3c\xe5\x1d\x29\x83\xcc\x73\x26\x93\xe5\x3d\xd1\x2a\xca\x5b\xbb\x39\xc1\x25\xa2\x84\xee\x99\x1e\xa0\xa8\x4c\x5d\xf8\x01\x9f\xb6\xda\xe8\xdd\x88\x0e\xf4\xf4\xca\x9b\x7c\x9e\x2d\xfc\xb0\x5c\x3a\xcf\x83\x65\xcb\xc1\xe5\x10\xab\xd9\x8b\x48\x2a\x44\x2e\x1f\x6f\xff\x19\x47\x01\xf8\x8e\xa2\x21\x2d\xf6\xd9\x09\x07\x03\x72\x85\xab\x5e\xb4\xeb\xf8\x35\x93\x8b\x6c\x91\x07\xdc\xfd\xf2\xe4\x2b\xb8\x24\xa1\xff\x6c\xe1\xfe\xc3\x59\xea\x29\x4c\x7d\x8e\x6a\x73\x9a\xac\x99\xd2\x1d\xe5\x6c\xbe\x24\xdf\x6a\x41\xfd\x7d\x60\xc3\xe9\xbf\x0e\x0e\x0c\xf2\xed\xf7\xfe\xd7\xf7\x38\x48\x0d\xcd\x1e\xd3\x1a\xe2\xec\x2f\x30\xc8\x92\x68\xa0\xf3\x25\x79\xda\x1e\xde\xaa\xae\xaf\xd4\x13\x7c\x00\x27\x53\x93\x11\x60\xb7\x39\xa7\x8f\xa6\x67\xc8\x53\x21\x6d\x81\x7b\xc2\x6e\x11\x88\x3f\xec\x68\x47\xb7\x70\x5c\xea\xe5\xe4\xb5\x13\x41\xf8\x61\x3d\xb3\x8b\xea\x74\x90\x55\xdf\x80\xfe\x4b\xdb\x83\x59\x05\xe3\x97\xa3\xd5\x15\x6f\xd7\x73\x6c\xa4\x9a\x2a\x6a\xc6\xd2\xff\x35\x9c\x24\x3b\x2a\x65\x28\xa6\x23\xf6\xa0\x92\x88\x8e\xaf\xb5\xc1\xd9\x1c\x12\x23\xcf\xc1\x07\x48\x5b\x7a\x48\x30\xd3\xb0\x06\x17\x15\xa2\x5d\xc5\xf4\xb1\x0b\x67\x29\x6b\x16\x2f\xdf\xd6\xb3\x40\xbd\xb0\x33\x1a\x96\x71\x9e\x7b\x09\xf4\xef\x81\x9c\xf1\x56\xe8\x45\xac\x07\xe5\x72\x40\xff\xd2\x4b\xf0\xa8\x54\x4c\xef\x02\xeb\xb8\x3b\xbe\x39\xcf\x95\x73\xf5\xa9\x0d\xdb\xea\xcd\xb7\x66\x06\x9e\xb1\xd6\x2d\x29\x78\x17\x11\x43\x9f\x12\x76\x75\xed\x82\x5c\xd2\xea\xca\x03\x05\xa9\xc1\x82\x8d\xee\x3d\x62\x4a\x58\x2d\x2e\xa3\x2f\x5f\x69\x6b\x69\x63\x95\x85\x03\xd3\x02\x90\x79\xa2\xd6\x0b\x52\xde\xd7\x28\x9d\x70\xff\x4e\xc3\x54\xa0\xf3\x15\x9b\x64\xf6\x7b\xb1\xe5\x66\x54\x45\x1b\x97\x1d\x86\xc2\x5a\x72\x18\x27\x50\x61\x67\x97\xbc\x88\x8b\xc4\x57\xb7\xb8\x14\x5d\x27\xf6\xb3\xf9\xbd\xc5\x9a\x29\x03\x12\x38\x50\xb2\x66\xb5\xe0\xf5\x1c\x93\x0f\xbc\xe5\x6a\x16\x8d\x1a\xf2\x6c\xf4\x61\xc4\xa9\xa1\xff\xc6\x29\xe1\x5a\xcd\x93\x39\x5a\xdc\xc8\x19\xe1\x75\xfe\x61\x90\xee\x67\xc3\xf0\x79\x33\x74\x68\x72\x86\xa3\x84\x4b\x49\xab\xb1\xb0\x54\x0d\x0c\x0f\xbe\x9a\x49\xd5\x89\x43\xc1\x3d\xe5\x14\x3a\xd3\xfe\xb9\x6b\x1b\xc8\x00\x72\xe6\xa6\x7b\x92\x13\xd3\x7d\xf4\x1f\x4e\xc6\x29\xea\xda\xa3\x8d\x32\xd9\xf2\x42\x2a\x0e\x2e\x6d\x74\xaf\x78\x35\x02\x64\x2d\x38\x2a\x4c\x7b\x3d\x0e\x72\x74\xf3\x76\x9d\x1f\xb3\x12\xc4\xd7\x91\x91\x62\xff\xe6\xca\xdc\x6e\x39\x99\xc6\x5c\x57\xb8\x3e\xe1\x86\xf3\xbd\x74\x0e\xf1\x30\x4a\x4e\x2e\xe0\xd3\xdd\x69\x07\x70\x34\x7e\x12\x9f\x04\xa1\xd7\x66\x18\x7b\xf8\xd9\x8b\xd6\xe8\x90\xe1\x4d\x13\x69\x58\x54\x4d\x17\x23\x31\x02\xac\xeb\x84\x53\x1d\xc5\xce\x38\xe6\xed\x8f\x5b\x26\x25\x5d\x33\xab\x67\x47\x08\x54\xb4\xd5\x12\x72\xd2\xfc\x01\x98\xe3\x98\x27\x99\x38\x72\x62\xd9\xca\x24\x90\x05\x29\xc9\x10\x56\x7d\x72\x92\x00\x46\x37\xb5\x5b\xdc\x33\xb7\x0a\x77\xde\xde\x86\x24\x67\x66\xd0\x60\xfb\x26\x3c\x7e\x91\x5c\x8d\x00\x65\x49\xc7\x76\x1d\x93\xac\x55\xd4\x9d\xec\x05\x0f\x43\x78\x24\x5a\x86\xb4\x5b\x1f\xcc\xbe\xde\xde\x65\x80\x9a\x5f\xf3\x6b\x5e\xf7\x46\x87\x89\x0e\x45\xb8\xb2\x81\xce\x1e\x5c\xaa\x4d\xb3\xc4\x51\x83\xa8\xf0\xa0\xec\xa4\x7c\x66\x35\xf9\xec\x14\x47\xf6\x60\x40\x89\xe7\x9a\x10\x1f\x74\x16\x0e\xee\x90\xe8\x82\x05\x65\x37\xdc\x9b\x86\x9f\x82\xb4\xb3\x07\xa0\x3b\xfe\x62\xa5\x55\xb3\x0e\xdd\x8a\xbe\x05\xa5\x61\x47\x0f\x98\x20\x28\x6f\xfc\xc0\xc1\x19\xc3\xbd\xb0\x77\x99\x23\x5b\x3c\xbc\x20\xd0\xa3\xc6\x78\xc1\xee\x8c\xef\x62\x43\xa7\xc0\x89\x56\x63\xac\x7e\x39\x5c\x14\xab\x0d\x75\xe7\xc9\xdf\x7a\x26\x23\x39\x93\x81\x6f\xc2\x1b\xdb\x0c\xb6\x57\x00\x33\x40\x27\x11\xa4\xcb\x5e\xf9\x8b\x5b\x33\xd9\x3d\xf8\xf7\x90\xd9\xd2\x4a\xf5\xa0\x32\x7b\x66\x4b\x27\x50\x5e\x42\x2f\xe5\x33\x95\x29\xc2\xe6\x59\xb6\x0b\x02\x5e\x47\x65\x2c\x0b\x4c\x7f\x54\x66\x05\xea\x57\x7e\x4d\xe9\x35\xf3\xcf\x7e\xcc\x8d\xbd\xf7\x8f\x13\x9e\x38\xec\xb4\x4d\xe3\x35\x87\xb2\x73\xf5\x8e\x7a\xe0\x91\x5e\xd6\x07\xe8\x9d\x81\x31\x76\xdf\xb8\xa3\x61\xb0\x84\x62\xdd\x3b\x16\x2b\xe3\x04\x4b\xad\x90\x91\x33\x61\x54\x35\xc4\x54\xbf\x5b\xaf\x42\x0c\xa5\xcc\x4a\x71\xbb\x74\x0a\xf1\xd7\x5c\x5c\xc5\xdf\x8f\x7a\xfc\x49\xf1\x7e\xe4\x76\xba\xab\x93\xf2\x67\xd9\xc2\xf8\x26\xb0\xa0\x67\xc3\x3d\x7e\xf4\xd1\x4b\x80\x33\x3f\x27\xe4\x68\x8c\x67\xa3\x0f\xc9\xf8\x17\xe4\x5c\x66\x4c\xea\x43\x99\x05\x17\xb1\xfe\xa3\x35\xfa\xce\xac\x48\x5e\xe4\x57\xba\xfa\x2f\x60\xdd\x37\x6c\x35\xcc\xd0\x5b\x20\x51\x6b\xfd\xf7\xe4\x09\xd9\xd1\x96\x57\xb3\x4f\xcf\xdb\x6b\xda\xf0\x1a\xdb\x5c\x4b\xf2\x4c\xf4\x4d\x0d\x06\xa0\x81\x04\xe7\x37\x48\x20\x6d\xe9\x8a\xd2\xae\xfc\x74\x5e\x24\xbf\xdd\x51\x01\x8e\xd4\xee\xb1\x52\x8f\x92\x15\xf1\x86\xad\xb4\x5d\xa5\x3f\xcf\xe6\x0b\x9e\xdb\x13\x03\x11\x33\x46\xd6\xca\x7a\xf6\x63\xc9\x5d\x23\x9d\xf1\x66\xdd\xb7\x32\x37\xc7\x73\x2d\x80\x0c\xca\x0b\x10\x5a\x62\xaa\xa3\x85\xa1\x25\x7e\x63\x2f\x25\xdd\xe5\xfc\xa2\x2c\x07\xc0\x54\xf5\x06\x65\xcb\xf6\x6f\xa3\x63\x3b\xdd\x15\xbb\x8e\x25\xbf\xe8\x3f\xdf\x8d\xdc\xf3\xcc\x65\x63\x0d\x96\xc4\x33\x85\x53\x08\xbe\x66\x7b\x87\xec\xa0\xee\xda\xe6\x9f\x66\xb0\x43\xce\x1d\xa0\xbb\x9b\x41\xf2\xd9\x67\x85\x16\xee\x3a\x68\x99\x41\xd4\x7f\x19\x52\x17\xd1\x09\xa5\x36\x84\xd7\xe4\xbb\x99\x33\xae\x51\xaa\xe6\xb8\x0e\x74\x38\xcb\x31\x7d\x12\x6f\xc2\x7c\x17\x92\xa5\xd6\x44\xd9\xc7\x41\x58\x1f\x22\xa2\x6d\xe0\xa0\x97\x4c\x11\x2a\xfd\x6d\xaa\xf5\xc6\x70\x39\xf8\x56\xa6\x4d\xc5\x91\xf4\x97\x9f\x8a\xc7\xe4\xd8\x54\x82\xdd\x97\x32\xd3\xd9\x30\xc7\xb1\xcd\x9a\x6f\xf7\x68\xe3\x22\xbe\xea\x5f\x70\x17\x67\xc8\xea\x1d\x9d\x9d\xb8\xd3\x36\xf5\x7f\x95\x8d\xf7\x7e\xa2\x8c\x0e\x29\x51\x5a\xf0\x1d\x3d\x3c\x6d\xeb\x37\x6c\xd5\xb7\xf5\x4b\x66\xe3\x4d\xeb\x8e\xee\x25\x1c\xa9\x64\xd5\x89\x6d\xb6\x64\x26\x66\x50\x38\x13\x40\xf7\x0d\xc2\x43\xb3\xb5\xaf\xd9\x4e\x48\xae\x24\xf8\xcb\x1b\xb6\x52\xe2\x9a\x75\x06\xbc\x3d\x04\x5d\x5c\x30\xb9\xa6\x7d\xa3\xac\x3f\xc4\x5d\xf6\x6b\x63\xa9\x15\x35\x23\x62\xc7\x3a\xb8\x21\xef\xd8\x9e\x76\xb5\x8c\xc6\x81\x10\x48\x3d\x80\xb9\xb1\x0d\xd1\xb5\x88\x82\xfb\xc5\x46\x65\x1e\xe1\xac\x94\x2a\x33\x33\xc9\xaf\xfc\x1c\x3d\x63\x2d\xc9\x1f\x7c\x9c\xf3\xe2\xcf\x80\xfd\x14\x56\x4b\xe1\x91\xc7\x67\xe4\x74\x71\xaa\x79\x2c\xfb\xf4\xe8\x8c\x3c\x5c\x9c\x1e\x61\xae\x6c\x15\xcc\x6d\xc3\xf0\x6f\x7f\x0b\x77\xc9\xd4\x9e\xb1\x16\x86\xd3\x36\xfe\xc3\xc5\x29\x18\x57\x6b\xa1\xc8\x77\xd9\x44\xe7\x63\xac\xc7\x57\x39\xb6\x67\x66\x22\xf9\x94\xdd\x1a\x2f\x2c\x3b\xcc\x34\x6b\x2d\xc9\xa3\xfb\x45\x87\xb0\x63\x45\x58\x01\x63\x3c\x2f\x07\xa5\x6f\x9e\xab\x65\xd6\xc3\x6c\x41\xc2\x92\x40\x50\x05\x7b\xb1\xdd\xa9\x03\xac\xce\x0c\x38\x4c\x6b\x3d\xe6\x2a\xea\x51\xba\x7c\x8f\x67\x09\xe0\xf7\x84\x35\x12\x5b\x43\xad\x36\x1a\xac\x2e\x84\x89\xa3\x70\x4e\x4c\x60\xed\xdf\x66\xb4\x19\x85\xf0\x2f\x8c\xed\xa2\xfe\xf7\x13\xe0\x68\x6f\xdd\xd2\x8f\xfe\xe8\x7e\xd9\xb9\x8e\xd2\x32\x1e\x20\xa7\xe7\x47\x5a\xb2\x70\x8a\x63\xab\x16\x4e\xa6\xc0\x75\x89\xf4\x5a\x33\x05\x1e\xa1\x4a\xec\xb8\x0d\x55\x37\xd0\xcc\x59\x65\xfc\xbf\x9c\x35\x99\x4b\x31\x71\x15\xda\xab\x4f\x0d\x6b\x36\xe1\x72\xd2\x5b\x3b\x25\xbc\x8c\xba\xef\x6e\xd3\x1d\x4a\xb4\x25\x7d\x7b\xdf\x5e\xd2\xd7\x93\x4c\x81\xc4\xd7\x03\x67\x03\x5c\x6f\xf5\x92\x75\x20\x3e\x4d\x74\xc3\x96\x29\x0a\xb3\x85\x88\x28\x42\x2f\x85\x75\x97\x60\x70\xfe\x60\x10\xd2\xf3\xbc\x3b\x42\xe8\x15\x50\x34\x6f\x4d\x49\xd4\x50\x1e\x21\x6a\x6a\x79\x11\x2a\x9f\xe0\x40\x7e\x39\x9b\x2c\xf3\xd4\x1a\x5e\x09\xee\xe3\xbd\x93\x16\x6e\x2a\x1b\x73\x3b\xa8\x0f\xcd\x42\x88\x8b\x7d\x86\xf2\x36\xbb\x60\xf4\x43\x80\x9b\x84\xcb\x21\x5a\x7a\xad\xcf\xd0\x16\x2e\x34\x36\x8c\xec\x3a\xa1\x44\x25\x9a\x4f\x22\x56\xc9\xa2\x38\x84\xe1\x1e\xef\x7a\xc4\xb1\xb1\xa7\xaf\x09\x73\x89\x9f\xc8\x94\x3c\xb4\xc3\x18\x7e\x0e\x26\xf2\x24\x0c\x38\x80\x50\x10\x7a\xc3\xb7\xfd\xd6\x3d\x9a\xc8\x62\xfb\xdc\xad\xfa\x31\xa7\xe8\x35\xed\x1c\xac\x73\xef\xbe\x4e\xdc\xb4\xf1\xc0\xbc\x35\x03\xa7\xef\x36\xac\xff\xd1\x7f\xcf\x11\x8b\xe0\xdc\x1e\x4b\x03\xf8\x45\xc1\x97\x1c\x6b\xdf\x8d\xd0\xca\x8f\xa2\x4d\xf4\xaa\xc4\xe3\x58\x26\x5e\x04\xa6\xea\xb7\x7d\x43\x15\xbf\x66\x8d\x79\xf9\x52\x99\x9b\x20\x01\x41\x57\xa0\xb6\xeb\x81\x2e\xe1\xa3\x7f\x21\x54\x08\x64\x07\xaf\x68\x23\xd4\x85\x46\x0b\x89\x52\x43\x66\x60\x2e\x72\xa7\x4c\x21\xbe\xc0\x0a\xe6\x13\x61\xbd\xe1\xeb\x0d\xc8\xf6\xd4\x51\x1d\x77\x0f\x43\xd9\x2a\xb1\xbd\x84\x47\x54\xfe\xc5\x0f\xef\x08\xbb\xa9\x9a\x5e\xf2\x6b\xe6\x86\xd7\x9b\xb4\xbb\x66\x92\x6c\xe8\x35\x33\x17\xf4\x2b\xde\x94\x6e\xa0\x1c\x25\xcc\x4b\x91\xa3\xa4\x18\x1e\x29\x45\x83\x39\x4a\xd8\xcb\x00\xb1\x8a\x96\x93\xcb\x78\x52\xb6\x53\x3d\xe0\xde\xd8\xd0\x6b\x5a\x6d\x72\x47\x5a\x8a\xae\x6b\x60\x90\x7d\x63\x80\x2d\xc9\x8f\xf1\xeb\x91\x7f\xfa\xc7\xd4\x28\x48\x50\x47\x97\x70\xe0\x32\xd7\x6c\xc7\x86\x11\xb5\xdc\xa0\x9e\xd7\x26\x22\x68\xa9\x79\x0c\xbd\x2d\xbd\x31\x47\xbb\xe4\x3f\xb0\x14\xad\xe1\x43\xc8\x4f\x70\x91\x65\x37\xee\x54\xe1\xa2\xb5\x81\xb7\xfc\x07\xf6\xd5\x97\xf8\x1d\x80\x9f\x6a\xf2\x3a\x0e\x42\x15\xaf\x69\xd3\x6b\x6b\x0a\xe4\x9a\x89\x13\x69\x2a\x4d\x2f\x73\x63\x41\xeb\x9a\xd5\x24\x01\x07\x71\x7f\x5a\xa4\x6b\x80\xb7\x5f\xe4\x97\x8c\x7d\x15\xbe\xd1\x0b\xc9\x08\xe8\x27\x64\xcc\x4c\x06\x47\xca\x9d\xe8\xc2\xb0\x21\x63\xa8\x69\x62\xea\x89\x99\x5e\x3e\x30\x37\x96\x82\x43\x58\xf3\xd8\x26\x2a\x19\x53\x31\x7a\x2e\x3c\x3a\x8b\x78\x4d\x57\x7c\x88\x66\xf5\x11\xd5\xa1\x2c\x88\x85\x84\x20\x57\x5a\xd1\xb6\xa7\x1a\x36\x06\xa1\x5d\x47\xcb\xd4\x2e\xa2\x65\x98\x35\x99\x03\x16\xdf\x3b\x41\x9c\x0f\xa7\x4c\xd3\xc4\x82\x8d\xc7\xc1\xd0\x65\x34\xc7\x22\x8b\x4b\x48\xde\x82\xd4\xc5\xc0\x61\xcb\xc6\x46\x73\xb8\x25\xaa\x78\x70\x33\x1e\x76\x94\x5f\xe7\x1c\xd1\x07\xe2\x2b\x91\xf1\x63\x39\xb9\xc9\x19\x13\xfa\xf8\x75\xcd\x51\x81\x1b\x77\x6b\xc4\xfe\x35\x26\x09\x51\xcc\x31\xc9\x84\x63\x71\x5c\x22\x9c\x24\x9a\x38\xbe\x31\xe3\x56\x47\x76\x40\xd2\x78\x8c\x0f\x4b\x4d\x71\x3e\x88\x5b\xab\x9b\x30\xd8\xdc\x6e\x3e\xf7\x31\xf3\xf7\x09\x99\xfa\x65\x88\x73\x9d\x8d\xb8\x62\xf0\xef\xbf\x26\x7f\x0c\x49\xaf\xd7\xe2\x25\xff\xd6\x2d\xf8\xe2\x95\xd8\x7f\x7f\x4f\x4f\xed\x38\xea\x85\x73\x6d\x19\x3f\xbd\x46\x66\xb2\x06\x5f\x4b\x67\xa2\x03\xf4\xf1\xf5\x37\x88\x29\x11\xc9\x94\xa6\xe3\x7b\xd7\xc9\x9a\x37\xad\x7a\xbe\xb7\x20\xce\x5d\xa9\x92\xbe\x64\xbf\x0d\x61\xbe\x9b\x4d\xa3\x43\x40\xbd\xa9\x73\xbf\x2b\xed\xfe\xc4\xd7\x9b\xe9\x94\x73\xa3\xdd\x95\x78\x71\xfa\x80\x8f\x4b\x3a\x4f\x89\x5b\x50\xcf\xcc\xfe\x18\xed\x02\x51\x96\x13\xee\x0c\x6b\x6b\x4f\x82\xb4\xf5\x54\xb2\x85\x7a\x78\x4a\xb4\x48\x47\x3f\x4a\x36\xe3\x2d\xc0\x2d\x13\xb1\x0a\x28\x34\x8a\xf7\x9d\x08\x34\xec\xca\x69\x24\xba\x2d\x6f\xc5\x44\x4a\xb7\xe5\xdf\x97\x4c\x53\x77\x21\x4a\x28\x2f\xab\xa7\x50\xe9\x56\xb2\x2b\x26\x51\x9c\x4a\xe3\xef\x4a\x9f\x49\xe2\x7d\xac\x2f\xdc\x33\xdc\x72\xda\x9d\x53\xc7\xb0\x89\x3b\xec\xdd\xd4\x4f\x0b\xc8\x8d\x69\xcb\x8f\x8f\xe3\x14\xbc\x63\x8c\x54\x68\xbb\x24\xcf\xc6\x3e\x1f\x5f\x96\xf0\x98\x1d\x41\xb4\x44\xf8\xb2\xc9\xa5\x15\x87\x63\x33\xc3\x8c\x2f\x3f\xaf\xf2\xc7\x09\xea\x43\x38\xab\x12\x8a\xc5\x39\xa1\x26\x98\x3d\xde\x50\xc7\xd6\xe4\x05\x8c\x77\xd3\x33\xfc\x03\x3e\x3d\xab\x05\x61\xe3\xcf\x53\x55\x09\x9d\x41\xf1\x5e\xae\xf0\x1c\x2b\xbc\xe6\xb8\x88\x54\xe7\xd9\x3c\x50\x9e\x03\xaf\xf6\x33\xd1\x56\x1d\x53\xc1\x13\x2b\x1a\x7a\x05\x52\x47\xaf\x77\x01\xc7\x3e\x68\xe7\x20\x96\x49\x1a\x98\xb2\xfb\x79\xdc\x19\x8e\x38\x9f\x0d\x02\x4b\xc4\xf5\x8c\x12\x62\x82\xe7\xb8\xd8\x6f\xdc\x97\x5b\xea\x36\xea\x3e\x1d\xeb\x54\xf6\x34\x96\x7a\x4d\x77\xf8\x4d\x83\x50\xf6\xc8\x8d\xd0\x16\x71\x9c\x1d\x1b\x6d\x82\xef\xaa\x04\xa2\xe8\x4d\x2a\x75\x38\xe6\xc1\x29\xf6\x1b\x75\xa9\x1c\xef\x75\x6b\xef\x46\x98\xa3\x84\xfc\x8f\x83\x03\xc1\xe2\x7f\x1c\x1c\x6e\x05\xf5\x41\x51\xe0\x0f\x72\x56\xe2\x1c\x04\x04\xca\x35\x1a\x02\xfa\x21\x07\x80\xc9\x3a\x72\x86\x73\x18\xf9\x1c\x67\xa7\xcc\xa6\x3a\xda\xce\xa9\xdb\x38\x3e\xf9\xc0\x05\x84\xf2\xee\xe8\xb8\x41\x08\x73\xf4\xfb\xb1\xee\x6e\xec\xdc\x11\x15\x4d\x78\x39\x99\x2a\xe8\x24\x4e\xca\xd0\x0d\x99\x8e\xc2\xf7\x86\xda\xed\x47\x78\x25\xf6\xcb\xc2\x66\x2f\xe8\x2b\x21\xf7\x0e\xdb\xde\xf0\xec\xf0\xef\x32\x69\x63\x11\x10\x2c\x4d\xfc\x21\x07\x90\x47\x2e\x8d\x07\xec\x1c\xd1\x90\xcf\xca\x62\x03\x01\x83\x2a\xa5\x67\xb8\x30\x19\xeb\x8e\xe2\x51\xfe\x1a\x81\x2a\x06\xf1\xd0\xaa\x12\x7d\xab\x16\x36\x65\xdd\xa2\x11\xb4\x7e\xa4\xc5\xcf\x63\x1b\x00\xf4\xc0\x7e\x79\x10\xcb\xa8\xf9\xdd\xc0\x4b\x7a\xcd\x66\x31\xa4\x13\xa2\xc4\x84\x61\xee\xac\xeb\xde\xf2\x65\x72\x8a\x71\x25\x76\x87\xdb\x13\x84\x98\x20\x95\xdf\x9d\x9e\x7e\x12\x6f\x83\xf7\x9f\x04\xb1\x24\xa2\x53\x41\x14\xa7\x24\x5b\xca\xdd\x8b\xba\xe1\x47\x09\xad\xe0\x86\x45\x56\x26\xc9\x16\x11\x5d\xcd\x3a\x73\x6d\xb8\x5a\xf1\x8a\xb3\x56\x05\x77\x8a\x7e\x80\x73\x45\x58\x5b\xd1\x9d\x84\xcb\x48\x88\x27\xb2\x81\x95\x60\x92\x75\xac\x71\xd7\xee\x6e\x64\x08\x62\x71\x79\x54\xf4\x3f\xec\xe8\x03\x3e\x25\xcd\x3c\x9b\x4c\xfc\x5e\xf6\xdc\xa5\x4e\xb0\x00\xe1\xe2\x0d\xec\x8b\x18\x32\xc1\x32\x3b\x0e\x6d\x96\xe4\x5b\x73\x8a\x7f\x3f\xa2\x4b\xa1\x07\x66\x40\xd1\xb3\x42\x4a\x0b\x48\x27\x52\xd7\xee\x2e\xdb\xbc\xb2\xb3\xf9\x00\x42\xac\x43\x62\xd9\x0f\xb0\x20\x28\x46\x9a\x37\x69\x5d\xcf\xb2\xa7\xa8\xf3\x30\x5e\x46\xff\xe9\x99\xf2\x56\xb2\x4e\x9d\xb7\x35\xbb\x21\x67\xe4\x34\xfa\xae\x97\x9b\x9f\x10\x05\x66\x53\x3a\xa7\xfc\x9c\xe1\x01\x6d\xc9\x23\xdd\x2d\x6f\x03\xed\xa2\x21\x39\xda\xe6\xb2\x63\xf4\x2a\xfb\x62\xa3\x25\xa3\x81\xce\xce\xca\x23\x75\x78\x6c\x63\x1e\xde\x95\xa0\x44\x3e\x27\x0f\x8f\x9d\x28\x03\x29\x16\xa6\xf7\x8c\xaa\x65\x08\x28\x78\x0c\x8c\x0a\x15\xbd\xf8\xb0\x9f\x59\xb4\xfe\x3e\x26\x3a\xe4\x80\xe2\x42\x9b\x4c\x4a\x13\xd6\x1a\x1e\xb0\xda\xf9\xa5\xf8\x43\x36\x5d\xc0\x79\x26\x56\x4b\x0c\x6d\x62\x96\xd7\x00\xb8\x77\x46\x5a\xde\x94\x6e\xbc\x02\xb8\x16\x39\x43\x97\x9a\xdd\xdc\x9b\x1f\x77\x2b\x68\xaa\xfc\x91\x29\x73\x37\x3d\x70\x9b\x8f\x10\xb0\x06\xfc\x8e\x4a\x45\x66\x0d\x93\x32\xf7\xe8\x54\x7d\x67\xde\x91\xe6\xf3\x48\xc9\xb7\x66\xea\x4b\xb6\x12\x1d\x9b\xd9\x4e\x41\xe8\xb5\xdb\xf7\xc9\x44\xe1\x99\x2f\x95\xea\x02\x11\x11\xf1\x46\x27\x76\x0b\x05\x6f\xe7\x6f\xbf\x8d\xce\xfc\x74\x70\x16\x8f\x51\x59\xd0\xdd\x8e\xb5\xc1\xde\xcf\x0f\x89\x62\xc4\x31\x71\xdb\x0e\x52\x3c\x7c\x2d\x5c\xbe\x2a\x52\x6d\x58\x75\x45\x56\x7d\x07\xb1\xef\x92\xb7\x15\xb3\x72\x89\xbb\xc3\xe2\xc8\x16\x7b\x8f\x1d\x88\x31\xe6\x25\x5e\x78\x06\x83\x9b\x97\x1d\x1d\x03\x16\x80\xb0\x90\x84\x35\x00\xd7\xe4\x40\x22\x7e\x93\xd9\xa0\xdd\xae\x07\xd9\x11\xc4\xc2\x70\x09\x3d\x59\x7d\x42\x56\x54\x93\xc5\x04\xc6\x74\xf0\xbc\x97\xe3\xd6\xba\xe6\x9b\x0d\x95\x45\xbe\xf9\x52\x88\x74\x73\x84\x41\xa8\xc1\xfe\x68\x58\xbb\x56\x1b\xf2\x98\x0c\xf7\xc1\xc3\xd7\x6f\x4f\xbf\x0f\x56\x7f\x6c\xab\xe8\xfd\xb0\xdf\x88\x86\x4d\x39\xe3\x42\xd6\x7f\xda\x34\xb3\x32\xa3\xe3\x48\xe7\xda\xc5\x40\x66\x9b\x8a\x3a\xd0\x37\x4c\xac\xde\x90\xdb\xc6\x66\x19\x08\xd3\xf1\x38\xe7\x1d\x1d\x72\x7f\xa9\x21\x79\x3a\x92\x16\x07\xf2\xe9\xb8\x44\x00\x7e\x28\x17\x08\x1b\xa5\x6d\x0e\x73\xb4\x9f\xb8\x75\x0f\xd3\xa3\x27\x29\xcd\x25\xd9\xb3\xa6\xd1\xff\x1f\xb2\x3f\x79\x0d\x42\x51\xc5\x46\x93\xea\xc4\xc9\x65\x12\x4d\xa4\x65\x37\xea\xfc\x79\x9c\xbc\x40\xff\x16\xc5\x36\x9d\x3f\xb7\xa1\xb1\x54\x4a\xbe\x6e\x93\x44\x4c\xe0\xed\xd4\xfd\xce\x9f\x6b\x82\x6d\x45\x2b\x94\x68\x6d\x32\x72\xde\x56\x1d\xa3\xd2\x69\x52\x81\x37\xd4\x3e\xbc\x3c\x98\x58\xaf\x91\xc8\xb4\x20\x62\x9d\x76\x16\x61\x3c\x9e\x27\x8e\x17\xd2\x6b\xb6\xa5\xbb\x24\x66\x87\x9c\x3f\x87\x40\xdf\x34\xb5\x82\xb4\x49\x9b\x46\x07\x0f\x07\x58\x92\x1f\x0d\x0e\xcb\x14\x56\xfa\xb2\xac\x11\x4a\xab\x90\x3d\x8b\x71\x0a\xa4\x84\x70\x76\x24\xb7\x2f\x83\x12\x7c\x21\x67\xb9\x8d\xe4\x8c\xa3\x78\x8f\x20\xac\xc7\xfe\xff\xf5\xd0\x1a\x5b\xd8\x49\x91\xab\xc8\xcf\xc0\xba\xae\xde\x63\xa8\xc3\x82\x0d\x31\xc3\xd8\x04\xec\x2f\x43\x40\x2d\x60\x1c\x81\xb2\xe8\x9a\x7d\xb5\xa1\xd2\x04\x9d\xfa\x70\x2f\x9f\xe0\x00\x89\x99\xcc\xa7\xf4\x4e\x3a\xb3\x1c\x9f\x97\x9b\x4e\x32\x9b\x54\x7b\xb7\x09\xeb\x8f\xd8\x0e\x65\x4c\x12\x25\x7f\x99\xa9\xfd\xd0\x3f\xc2\x01\xbf\x2b\xba\x62\x6c\x67\xa4\x4f\x25\xba\xba\x14\xd0\x07\xac\xd0\x83\x16\x4e\x27\xd8\xdc\x28\xce\x58\x37\x2d\x65\x81\x60\xdf\xc7\xf4\xb2\xd1\xfd\x71\x76\x13\x27\xcb\x0a\x29\x2b\x91\x1c\x3f\x83\x98\x8c\x82\xf5\x89\x4f\x28\xd1\x86\x51\xf7\x36\x3b\x8a\xd8\xb7\x43\xfe\x86\xe8\x1e\xa4\x3c\x35\x7b\x1b\xf2\x63\x72\x1d\x52\xb0\x95\xcb\xc6\x91\x95\x89\x67\x89\x9e\x5d\x74\x83\x68\xcd\xea\x54\x0b\x66\x47\xc5\xb0\x17\xa2\x9c\xc7\x5d\x7f\xc4\x1e\x35\x46\x3c\x3e\xd2\x08\xf6\x76\xe9\x7b\x6a\x83\x9e\x65\xfc\x99\x3c\xf0\x8f\xfe\xf1\xe0\xb7\xe4\x39\x5b\xc1\xbb\x3e\x10\x03\x6e\x03\xeb\x9d\x6d\x4b\x3e\x34\x42\x5c\x99\xe7\x87\x6a\xc3\xe5\xf2\x93\x4c\xd3\x1a\xde\x64\xbe\xd5\x20\x66\x0f\xff\xbf\xc5\x17\x57\x8c\xe5\x8a\xdf\x7f\xfe\xc7\xff\xf9\xcf\xff\xf8\xdf\x1f\xef\xff\xfe\x1d\x19\xe1\xdf\x6e\x35\xca\xbf\x47\x3d\x0b\xe0\xfe\xcd\x44\xa4\x7c\xd3\x36\x07\xfb\x5b\xf8\xdd\xb8\x34\x1f\xea\x19\x93\x2d\xbd\x29\xc2\x20\xe4\xe1\xa9\x6e\x43\x10\x18\xb3\x87\xa7\x41\xf4\xfe\xe7\xe4\x0b\xfb\xc6\x00\x23\xa1\x86\xf6\x1f\x93\x27\xf8\x7f\xc3\x9e\x19\xb4\x9f\xee\xb0\x24\x8e\x64\x3f\xa1\xb8\xfd\x44\x9c\xca\xf5\x5a\x2b\xa1\xc1\x4c\xf3\xf6\x3f\x99\xb9\x6b\x02\x7e\x6e\x7c\xb2\xf3\x09\xed\xf5\xdf\x17\x39\x21\xf1\xe6\xd3\x09\x15\x93\x0b\x9f\xdc\xdd\x39\xcb\x79\xa6\xcd\xce\x80\x08\xff\x32\xb7\xd9\xd0\x1e\xe0\xb7\x8c\x53\x7e\xb7\xf8\xe2\x56\xac\xa2\xbb\xff\x6e\xe1\x09\x96\x02\xfc\x99\x19\xec\xb6\x54\x2b\x53\x53\x43\x02\xef\xfb\xef\x16\x47\xb7\xda\x2b\xb1\x27\x33\xbe\x22\x72\x47\x2b\x06\x2f\xb2\xe7\xfe\xdb\x6c\xd0\xad\xa0\xe6\x8d\x68\x9b\xc3\x18\xed\x48\x42\xbf\xe0\xeb\x07\xd3\xae\x4c\x53\x1c\xfa\x87\x43\x8e\x46\x89\x46\xf8\xed\x83\xdc\x5b\x23\x4b\x77\xa6\xe4\x8c\x7c\xf1\x97\xd3\xd3\xd3\xac\xc7\x86\xaf\x37\xaf\xf1\x2b\x54\xdf\xf3\xe1\x29\xda\xd5\x3c\x7e\x3a\xd6\xf9\x77\x7f\xf9\xe2\xf4\x14\x49\x01\x61\xd4\x02\x72\x66\xa3\x25\x66\x19\xf5\x8a\x97\xcb\xbf\xff\xfd\xef\x7f\x9f\xdf\xf8\x94\xae\x97\x1f\x9e\x9e\xe6\x8d\x0b\xf7\xcb\x19\xf9\xf2\x9e\xa5\xeb\x66\xd4\x35\x92\xdc\xa2\x15\x69\x9d\x0f\x43\xb0\x5b\xb2\x11\x82\x1f\x81\x00\xfb\xf0\x34\xf7\xb8\xe4\xdd\x4a\xf7\xe2\xb0\x8c\x08\xd5\xe3\xab\xf1\xd3\xc5\xc3\x32\xc9\xb2\xbb\xf1\x29\x34\x7b\x78\xba\x40\x86\x45\xc9\xf3\xc5\xd1\x96\x56\x1c\x4d\x22\x44\x7e\x33\x7f\xba\xf8\x22\x6f\x36\x72\x35\xff\xf0\x14\xa3\x58\xe1\x7a\xfe\x8b\x53\xd8\x64\x27\xe4\xc1\x03\xf2\x55\xfc\x0e\xe7\x56\xcf\x6e\xf2\x61\x30\xcc\xbe\x88\x07\x2a\xbc\xa2\x39\x36\x46\x1a\x10\xf0\xbb\x44\x48\x14\x5d\xd8\x7f\x64\x5a\x61\x25\x95\xd8\x1d\x7c\x9e\x6b\x63\xd4\x58\x7b\x26\x7c\xa6\x8c\x5a\x34\x11\xb8\x34\x00\x2c\xae\x7b\x45\x8e\x3d\xb2\xb7\x02\x68\x8e\x98\x28\x23\xee\x2d\x83\x56\x69\x86\x12\x66\x38\xc9\x26\x3b\x8e\x76\x98\x39\xdf\x27\x9a\xb1\x58\xb7\x6c\xff\xac\x64\x60\xa1\x56\x94\x97\xbb\xbe\x67\xd4\x86\x6d\x79\x5e\x57\xa0\x30\xc9\x35\x53\x61\xea\x18\x9f\x55\x20\x5e\xd8\x1d\xab\xf8\x8a\x23\xb9\x40\x8f\x2e\x0c\x9e\xe9\x7b\x9e\x39\x76\xc6\x92\x22\x84\x0c\xfd\x2d\xaf\x8b\x57\x6a\xe6\xed\x7d\x38\x1d\xf3\x8b\xc4\x9e\xe3\xdf\x75\x4e\xd9\x20\xf1\xb4\x3e\x9b\x36\xaf\xcf\x6e\x35\x31\xcd\xe0\x98\x71\x8c\xaf\x16\xee\x07\x41\xef\x93\x0a\x9b\x09\x19\xcb\x38\x8c\x8d\x11\x3e\xb6\xa3\x90\xae\xd3\x58\x4f\xbe\x14\x9d\xb6\x69\x57\x1d\xdd\xb2\x60\x66\x35\x37\x7e\xdd\xee\x90\xc9\xb6\x21\x6b\xd4\x9e\xab\x0d\x48\xba\x60\x55\xb5\x9e\xd9\xd1\x76\xcd\xe2\x94\x9f\xa2\x5b\xd3\x16\x4a\x38\x5c\x1e\xc2\xca\x08\x6d\x10\xda\x0d\x09\x94\x80\x60\x12\x71\x71\xc6\xa9\x88\xfe\xf5\xe9\x9b\xaf\xcf\xbf\xfe\xe3\x92\x9c\xaf\xc8\x41\xf4\xae\xf2\x83\xbd\xdb\x33\x18\x78\x8f\xb7\x12\x82\x34\xb4\x5b\xb3\x93\xc8\x69\x6d\x92\x79\x6a\x6b\xbf\x39\x90\x15\xe5\xe6\x3a\x4b\x6c\x77\x0d\x0b\x92\x7b\x02\x8b\xb3\x8a\xc2\xdb\xdf\xac\x77\xd7\xb7\x44\xf4\xf0\xf6\x7b\x4d\xe5\x82\x40\xea\x17\x5f\x94\xd2\xa0\x21\xb7\xb4\x69\x22\xf4\x23\xe0\xb6\xac\x80\x54\xb4\x53\x41\xb6\xab\x0b\x93\x59\xaf\x0b\x6e\xd6\xc8\x8c\xb7\xd6\x1a\x9a\x47\x3e\x46\x33\x10\x06\x95\xb5\x75\x02\x93\xb5\xf5\x1d\x21\x5a\x8e\xc3\xdc\x93\x8e\x47\xdf\xbf\x5f\x92\xa7\x21\xf3\x6c\xe9\x6e\x07\x99\x2d\x22\xdf\xf0\x2e\xf2\x0d\x17\x97\xbc\xbc\x6f\x72\x31\x17\x31\xf2\x2c\x25\xa6\x0d\x0d\x4c\xc8\xe1\x2f\x91\x86\x29\x41\x5d\xa5\x70\x3e\xc9\xae\x4b\x7d\xe6\xe7\xad\x1f\x74\x1c\x4c\xe6\xd1\x8a\x5d\x53\x0f\xc8\x9f\x69\xc3\xf5\xa9\x41\x78\xbb\xeb\x15\x81\xe5\x63\x2a\x0d\x77\xd2\x96\x5e\x34\x37\xf2\x38\x9a\x14\x9a\x9f\x0a\x96\xad\x80\xf5\xc8\xcd\x61\x8a\x61\xe9\xa2\x78\xa5\x7f\xb4\xb2\x20\x96\xf1\x31\x13\x11\x97\x26\xa9\x69\x06\x87\x9d\xb9\xd8\x7b\xd1\xd6\xee\xa6\x3c\x75\xf2\x2d\x90\x5b\xe3\x70\xc6\x23\x0e\xbf\xec\x3a\xb8\x30\x72\x4e\xb3\xf8\x2a\x94\xcb\x30\x62\x80\x36\x8d\x74\xd3\x15\x7d\x87\x4c\x92\xe4\xe1\x19\xc9\xa2\xfd\x08\xea\x1a\x6f\x7b\x86\x84\x47\xe4\x96\x05\x8b\x6e\xaf\x82\x9b\x95\xb3\xc4\x71\xfa\xad\x1f\xf3\x7b\xf2\xe4\x49\xca\x72\x28\xf0\x28\x00\xe7\x22\xbf\x0e\x0a\xd9\x38\xe7\x62\x14\xa4\xa6\x7b\x98\x3c\x02\xc5\x7d\x71\xc5\x0e\xa5\x48\x92\x64\xc2\xe7\xcf\xf5\x4c\x51\x28\xdf\xba\x71\x4a\xf3\x75\x53\x74\xed\xf0\x6b\x82\x3c\x94\x60\x74\x82\x6e\x92\xbc\x4e\xa6\xa7\xcf\xa9\x91\x79\x91\xc0\xa6\x0b\x11\x71\x81\x04\x1c\x71\x6d\x11\x34\x84\x66\x14\x35\xbe\xc2\x47\x09\x6e\xc0\xcb\xf8\xa1\xbc\xe0\xc9\xbc\xe8\xe8\xfe\xcf\xb4\xe9\xd9\xf7\x41\x78\x26\xaa\x76\x8c\xe3\x3f\x81\x8b\xc2\x1d\x14\x4d\x43\x13\xf8\xf8\x5c\x0a\xf2\x2e\xdc\x21\x67\xf8\x00\xb7\x45\x76\x44\x6a\x4e\x94\xbd\xef\xd3\x74\x19\x2e\xbf\xc8\x8a\x31\xad\x30\x55\xa2\xbd\x66\x1d\xa4\xa0\xca\x92\x1e\xc1\xdd\x59\x58\x95\x42\x89\x2b\xd6\x26\xea\x92\xd3\x06\x52\x17\xcf\x45\x54\x5b\xc8\x42\x2c\x14\x2d\x4c\x60\x0d\xd9\xac\x2f\xc2\x07\x84\xd3\x3a\xd7\x81\xe7\x03\x14\x1d\xfe\x83\x2f\x1d\xf7\x91\xab\x2a\x39\xb5\xc5\x9d\xcd\x17\x26\x0d\x4a\x42\x2e\xaf\x2b\x76\xec\x6f\x3d\xef\x86\x6c\x95\x13\x52\xfb\xc7\x6a\x89\x5f\xbc\x97\x8c\xcd\x4a\x29\xbd\xb1\x5c\xe0\x11\x51\xbc\x6a\x62\x4b\xb0\xfc\x98\x1e\xc6\xef\xac\x3a\x2a\xe0\x92\x97\x36\x43\xde\x4d\x87\x40\xea\x77\xd0\x42\xf5\x92\x4a\x66\x2a\x5f\xf8\x7c\x80\x5a\xe1\xed\x01\x5b\xe9\x94\xc1\xc0\x05\xb8\x38\x3d\x41\xf2\x92\x03\x4e\xe9\xe4\xe6\x0f\x1e\x9e\xda\xbf\xc5\xe9\xd8\x35\xdc\x03\xf2\xb6\xa2\x0d\x4b\x0a\x5b\x59\x56\x57\x71\x66\x05\x47\x7e\x34\xcf\x38\xf8\x6d\x35\xa8\xda\xfb\x2e\xcd\xe4\xdc\x34\x7f\x1b\x1a\xee\xa5\x07\xf0\xfe\x04\xb9\xf7\x49\x8a\xe7\xb3\x28\xd1\xcf\xcb\x57\xdf\xfc\x2b\xca\x1f\xae\xaa\x38\x92\x9c\x3f\x4b\xa0\x1e\xd4\x0f\x1f\x16\xe2\xad\xff\x41\xba\xc0\xe4\x67\xb6\xdc\xfd\x85\xd0\x0d\x66\x03\x6f\x8c\x50\xd6\x99\x84\x39\x49\x3e\x0f\xc6\x1c\x31\x0c\xbf\x86\x7b\xe2\xa7\x6d\x7d\xde\x56\x9d\xa9\x3d\x18\xe6\x60\x84\x30\x9a\xf3\xe7\x26\xee\xc5\xb5\xf0\x91\x32\x10\x57\x9d\x47\xc9\x9a\x30\x5f\xab\xb0\xe7\x03\xb8\x30\xee\x8c\xc7\x35\xa1\xfc\xbd\x75\x70\x8b\x9d\xfb\x65\xb0\x56\x59\x4c\xa9\xab\x45\x17\xc3\xc8\x49\x90\x64\x33\x2f\xd7\x63\x21\x78\xfd\xb9\xf3\xe7\x18\x1b\x60\xc5\xcb\x50\x29\xe5\x12\x98\x5f\x8c\xe5\x55\x3f\xc1\x72\x2f\x73\x53\x9e\x6c\x25\xfa\xb6\x76\x09\xc9\x8d\x40\x33\x65\x61\x47\xd2\xe4\x86\x5e\x88\xa0\x38\x97\xf7\xae\xe0\x35\xc0\x7c\xad\xcd\x34\xb2\x8a\xcb\xf8\x81\x6c\xc0\x3a\xae\x4c\x88\xc6\x74\x20\xed\x81\x99\x38\x33\x28\xb1\xc6\xae\x59\x47\xd8\x0d\x97\x69\xa0\x23\x5f\x69\x7d\xeb\xec\x8c\x04\x91\x09\xe4\xa7\x9f\xf4\x8f\x8f\xe3\xb5\x2f\xda\x40\x61\x25\x42\x92\x27\xd8\xf6\x0f\x5d\x37\x90\x58\x92\x36\x7b\x6d\x97\xba\x95\xf1\xe8\x8a\x2e\xaf\x06\x6f\x11\x04\xc5\xd5\x07\xfd\xe2\x4e\x2b\x5e\xa7\xde\xc5\x00\x43\x75\xb3\x48\x6a\xd9\xe3\x78\x22\x94\xd7\xa7\xa1\x77\x42\x0d\x25\xbe\xa5\xe2\x4d\x03\x04\xdf\x75\x7d\xcb\x6a\x13\xf2\x9c\xc2\x6b\xb8\x74\x7b\x7d\x00\x82\x60\xa2\xed\xcf\x92\xc7\x69\xe1\x42\x6a\x66\xa3\x53\x4c\x32\x6d\x4f\x98\x68\xc6\x5e\x26\x13\x20\x04\x52\x0f\xd8\xea\x4f\xc3\x13\x6d\x5f\x2f\x26\x05\x08\x39\xa5\xf7\x5c\x32\xdd\x7a\x0f\x0b\x3d\xa4\x0c\x8c\xe8\xb7\xa3\x4e\x19\xe2\x12\x08\x94\xc9\x27\xc0\xc0\x4d\x64\x10\x41\x18\x71\xbe\x3d\xfd\x1e\xe1\xe6\xc7\x19\x88\x63\x64\x43\x39\x2f\x27\x5b\x56\x23\x52\xaf\x2f\xe8\x53\x86\x09\x6c\xfc\x1d\x96\xbd\x7d\xcb\xd7\x1b\x15\x25\xa2\xb4\x30\x19\x87\x90\x64\x4f\x23\x5f\x35\x9e\x11\x29\xc8\xde\xb9\x0f\x49\x6f\x84\x0f\x26\x7e\xe3\xf2\x0a\xc5\x2b\x00\xbb\xd5\x7c\x12\xbb\x8e\x6f\x69\x77\x20\xac\x55\xdd\x81\xec\x04\x6f\xcd\xd5\x4e\x54\x43\xb2\x65\xfb\xa4\x52\xcf\xe0\x90\xc8\xc2\x5a\x17\x71\x0c\xdb\xf9\x2a\x84\x55\x90\xac\x3b\x21\x25\xbf\x6c\x98\xa3\x43\xdd\x83\x57\x9b\xdb\x64\x02\xb4\x5b\xf7\xe6\x3c\x14\xfe\x5b\x34\x48\xdf\xd2\x6b\xca\x1b\xaa\x41\x68\x83\x5d\x26\xde\x48\x93\x56\x3f\xc2\x2c\xea\x7f\x11\xcc\x64\xe8\xa5\x85\xf9\xce\x1e\xc2\x2b\xd1\x34\x62\x0f\xe4\x70\xc8\x2c\x91\xb3\x6a\x19\xce\x6e\x49\x9e\x26\x75\xc0\x68\x58\x96\xd6\xeb\x36\x46\x3f\x76\xe9\x03\x64\x29\xb7\x6e\x3c\x65\x78\xeb\x61\x73\x09\x2c\x8c\x6c\x75\xed\x5c\x11\x31\xde\x5e\x8b\x2b\xa8\x55\x47\x92\x68\x05\xcd\xa2\xc6\xc7\x6a\x2a\x87\x26\xbe\x25\x30\x13\x76\xf4\xd0\x08\x5a\x63\xc6\xce\x32\xac\x0e\xf7\xd6\x76\xb3\xd5\xfc\x68\xd7\x70\xa6\xe5\x44\x23\xaa\xab\xd0\x1d\xad\xc8\x7e\xc3\xab\x0d\xc6\x02\xac\xe1\x6b\x58\xfe\x95\x08\x83\x56\xd3\xf9\xce\xde\xb5\xfc\x26\x00\x29\x05\x59\x75\xd4\x06\x49\x13\xc9\x2a\xd1\xd6\xd2\xa5\x94\x84\x27\x16\xeb\x56\x74\xac\x9e\x2f\xc8\xf9\x20\xbd\x24\xbc\x1f\x09\xb2\xf5\xe2\x33\x1c\xac\x88\xa7\x2d\x61\x6d\xbf\x35\x80\xc9\xec\xaf\x7f\xe2\xeb\xcd\x5f\x4f\xc8\x5f\xcd\x0d\xef\x5f\x4f\x34\x53\xfe\xf5\x95\xd8\xff\x75\x6e\x57\xb2\x5d\x35\x3d\x6b\xab\xb8\x12\x84\x66\x9d\x4b\xb6\xa1\xd7\x1c\xb2\xe2\xd6\xa4\x66\x8a\x75\x5b\x28\x15\x9d\x4e\x74\x23\xf6\x44\x0a\xcd\x81\x2e\x2d\x6b\x54\xbc\x6c\xbc\x34\x21\x3e\x9d\xcc\xd0\x78\x6e\xcb\x54\x47\xb9\x4a\xc1\x5e\xa1\x96\xa0\x8e\x55\x65\x9c\x66\x36\x2d\x61\xe1\xf2\x6d\x4b\x31\x36\x25\x9b\x21\x93\x54\x1b\xda\xad\x59\xbd\x20\xef\x5a\x13\x2a\x8c\x24\x1a\x36\x75\xe3\x4d\xfe\x4c\x7c\x36\xa6\x52\xd3\x53\x62\x2a\x09\xf8\x3d\x15\xdc\xd3\xca\xde\x47\xe8\x6a\x40\xd2\xdc\x3f\x5c\x5b\x6a\x7a\x4b\x23\x1d\xfe\x58\x29\x0d\x2b\x23\xe2\xb8\x10\xbb\xef\x9e\xd1\xdd\x07\xd6\xc2\x1a\xaf\x71\x75\xa4\x12\xeb\x47\x2c\x81\x95\x26\xfb\xf7\x4d\xe6\x4b\xf2\x87\x42\x85\xcf\x92\x11\xed\x4a\x6c\x0e\x62\x55\x09\x72\x1d\x39\xe4\x65\x76\xf8\xfb\x4e\xf6\xd4\x77\xff\xce\xe3\x71\x0c\xc9\xf4\xff\xe6\x41\x0d\x01\xc1\x90\x6a\x79\x39\xdd\x76\x28\xdd\x50\xda\x8d\xd5\xdb\x9a\x67\xb4\x70\xd5\x51\xc3\x14\xf7\xa6\xbc\xe5\x6a\xac\xf0\x5f\x0a\x46\xa6\x2f\x99\x7c\x19\x3d\x5f\x53\x54\xef\xe9\xb4\x9b\xbb\x61\x2b\x8e\x63\xde\x22\xe9\xf3\xcd\x3c\x96\x75\x5c\x9e\x2a\x55\x6e\x15\x6c\x69\x4e\xfb\x7a\xee\xb3\xcf\x86\x0f\xd1\x63\x46\xfc\x69\x9d\x49\x3e\x1f\x83\xca\x9e\xd3\x45\xff\xa4\x52\xb2\x4e\x91\x7c\xed\x35\xb3\x2e\x2e\x69\xa3\x95\x26\x6d\xa7\x78\xa0\xb6\xf4\xe8\x3d\x24\x32\xc8\x54\x58\x85\xe2\x53\xa1\x88\x00\xb6\xd7\x5a\x80\xb6\xe8\x1d\x48\xc8\xd0\x15\x0e\x32\xf7\xf6\xd5\xd0\xd5\xfa\x2a\x22\xa9\x32\x24\xad\xfe\x6e\x96\x21\x35\x4f\x4e\x39\xa4\x2a\xd0\xa7\x63\xfc\x94\x39\xf0\xdd\x26\x29\xf8\x00\xc6\x3a\x3f\x37\xa5\xe8\x92\x1b\xfe\x9c\xd2\xda\xb6\x8a\xc6\xcc\x29\xeb\x2b\x07\x0c\xd2\x10\x89\x70\x43\x8a\xfd\xe5\xcc\x83\xac\xdb\xd8\x36\xff\x18\x1b\x38\xef\x61\x58\x22\x5c\xfd\x93\x23\xbb\xfc\xb9\xa9\xfe\x11\x24\x83\xb6\x71\x19\xac\xbb\xe6\x15\x23\xf6\x79\xfc\x6f\x6c\xf9\x9e\xa8\x7b\xf1\x4d\xbd\x2d\x29\x02\x2e\x44\x57\x56\x04\xca\xba\xe4\x4c\x81\xd5\xe6\x7b\x46\x77\xbf\x60\x79\xbe\x12\x8a\xaf\xfb\xcb\x86\x57\xaf\xa9\xda\xc4\x85\xf6\xf4\x41\xde\x5c\xb3\x3f\x73\xb6\x9f\x41\xd5\x99\xa1\xe1\xe3\xd9\xdc\x54\xb9\x18\x7e\x8a\xc1\x43\x88\x90\x3f\x9b\x8e\xb2\xb0\xe6\xf3\x05\xaf\xc7\xb8\x29\x6d\x9d\xdd\xd3\x8c\x9f\x38\x49\xef\x9c\xf5\x27\x70\x69\x0a\x64\x22\xd7\xa6\xdd\xf4\xaf\x08\xb2\x99\x3e\xf2\xcd\xbe\xd5\x0b\x9e\x76\x4f\x6a\x28\x4e\x81\x94\x56\x44\x2d\x80\x8c\x9b\x4d\x01\xfc\xee\xdd\xf9\xf3\x65\xc8\x33\x7d\x8f\xad\x62\xde\x71\xe0\x9b\x65\xce\x86\x47\x76\xf6\xd3\x3a\xb7\xe8\xdd\xe6\x1e\xde\xeb\x69\xa5\xde\x3c\x4c\x42\x1e\x5d\xe6\xae\x55\x5a\x87\x1a\xd4\x4c\x03\xc2\x85\x21\x51\x10\xcd\x9a\x11\xf1\xb8\xb7\xfa\xd1\x7d\x53\xd7\x89\x60\x3a\xdb\x14\x29\x9f\xdf\x1c\xaa\x5b\x0a\xee\x42\x85\xdc\x49\xfc\x90\xac\x8a\xfb\xaf\xf7\x79\x69\xe7\x5c\xc9\xf4\x57\x45\x32\x3e\x9a\xc3\xeb\x29\xf3\x7c\x76\xc7\x2a\x15\x59\x02\x41\x3c\x82\x48\x8c\x6e\x3a\x56\xdf\x2d\xaf\xcc\x3c\x1c\x48\xc1\x53\xdd\xc0\xd8\x28\xfa\x23\xce\x57\xae\x5e\xcd\x35\xaf\x59\xe8\x00\x31\x99\x03\x8c\xb4\x46\x9e\xcf\x21\x65\xe2\xc9\x8c\x2d\xd6\x8b\x13\xd4\x6f\xc2\x43\x25\x28\xb0\xfe\xfc\x75\x65\x17\xb9\x56\xc0\x77\x00\xfe\x95\x39\xae\xdb\x47\xc0\x03\x65\xd7\x29\xc0\x35\x6a\x3c\xd8\x28\x5b\x13\xa3\x46\x5a\xd1\xde\xd7\xaa\x63\x54\x12\x7f\x91\xda\x93\x24\x7d\x2b\x69\x3c\x20\xac\xd9\x49\x52\xb3\x6b\xd6\x88\x1d\xeb\x24\x61\xad\xec\x3b\x96\x5a\x83\xee\x81\xf1\xae\x63\xe0\x9f\x37\xb7\x65\x96\x11\x02\x7b\x7d\xcf\xdb\x5a\xec\x4f\xd2\x5a\x23\x75\x5f\x39\x5f\x56\xc7\xe5\x95\xd6\xe0\xfa\xb6\x65\xda\x5e\xa4\xdd\xc1\x55\x76\x30\x99\x62\x8e\xc6\xa6\x19\xcd\xe6\xe2\x67\xb8\x9c\x35\xf0\x55\x1c\xa2\x86\xb0\xe9\xe8\x3d\xec\xc7\xba\x95\xfe\x38\xd7\xe3\x56\xae\x8d\xb2\xd3\x92\x3c\x45\xe2\xb6\x43\x76\x05\x29\x70\x12\xee\x53\xd8\x9d\x21\xbf\x8d\xbb\x01\x70\x73\xf4\x97\xb0\xde\x43\xcb\x7c\x7c\x93\x65\x17\x4c\x36\x63\x4b\xe0\x41\xb3\x9e\xb3\xa1\x96\x65\x56\x15\x93\xb8\x5b\x56\xda\x72\xc5\x7f\x88\xeb\x68\xda\xab\x6b\x83\x58\x90\xb8\x23\x39\x4f\xf9\x0a\xeb\xfe\xe8\x0c\xe2\x74\x4d\x14\xda\x97\x8d\xa8\xae\x66\xf3\xc0\x9c\x2c\xba\xee\x47\x27\x9d\x1f\x71\xe1\x9f\x35\xc8\x96\xda\x50\xc5\x9f\x68\x20\x6b\x77\xb4\x2d\xb0\x51\x50\xdc\x38\xe8\xfb\xdd\x2c\x9f\x38\x98\x94\x41\x2a\x98\x93\x3c\xe9\x8b\xee\x38\x42\x1b\x24\xa3\xaf\xfb\x1b\x35\xab\xb5\x41\x9f\xe4\x2f\x7c\x1c\xdd\xe9\x97\xf2\x24\x7e\xcc\xb5\x38\xbe\x06\x53\x68\x9f\xd2\x3c\x95\x2b\x9a\x82\x69\x44\x05\x7a\x95\xea\x1c\xa1\xa1\xb0\x1d\x44\x93\x4f\x34\x3c\x46\x1e\x64\x39\x3e\x6c\x19\xb0\x1c\xe8\x43\x5c\xc5\x7f\xe1\x9d\x71\xe7\x55\x72\xb3\xff\x8d\x84\x17\xb0\xa5\x05\x1a\x27\xdc\x47\xdc\x36\x8f\xe2\x6d\x83\xe7\x06\xfd\xef\xbf\x4e\x43\x0e\xab\xa8\x52\x20\x72\xc6\x27\x1b\x09\x25\xd8\x5d\xd7\x47\x1f\x4f\x75\x98\x20\xb3\xe8\x5a\x59\x33\xa5\x1b\x7d\xb3\x02\x9f\x57\x9d\x59\x54\x7c\x15\x02\xca\x64\x63\x90\x85\xf3\xd7\x2f\x11\x7d\xb9\x37\xbd\x78\x41\xc0\xd3\xa8\x14\x1c\x6a\xc4\x61\xc2\x6f\x98\xff\xfc\xab\x2f\x6f\x29\xf4\x6c\x4d\xde\xe1\x52\x7f\x2c\xae\x2f\x75\x7a\x60\x0e\xbf\x28\xc0\x2f\x0c\xe8\xca\x55\x17\xac\x04\x78\x8c\x05\x52\x2d\x7d\xcc\x0e\xce\x0f\x75\xc4\x6e\xc6\x70\xfe\xa8\xd7\x0c\x7c\x85\x4e\xad\xe4\x86\xff\xef\x26\x7c\xc6\x0e\x89\xc1\x80\x0d\xde\xae\x16\x6c\xf6\xc5\xdd\x8f\x05\x6f\x11\x9d\x9d\x45\x8f\x7b\x7f\x5e\xea\x6b\x53\x66\x2a\xf5\xa7\xf8\x20\xc7\x16\x63\x78\x94\xf4\xcc\xf8\x19\x06\x07\x80\xe8\x20\x5d\xc2\x6b\xec\x7e\x69\xa1\x8d\xbd\x43\x10\x96\x50\x35\x7d\x1d\xd4\xcc\x85\x58\x23\x13\x2f\x60\x7c\x00\x43\x2c\x07\x64\x5e\x08\x8b\x93\x7e\xc4\x25\x9b\xb4\x08\x11\x9d\x8f\xd0\xd2\xd1\xab\xe5\x4d\xd1\x5b\x35\x22\x64\x52\x9f\x15\x12\x3b\x11\xfb\x9f\x12\xc0\x6d\xe4\xf6\x81\x98\x07\x45\xaf\x98\x36\x2f\x94\x70\xb7\x0f\x71\x49\x1a\x24\x9c\x32\xcb\xc5\xa5\x10\x43\x3d\x76\xc7\xdc\x77\xfe\xaa\x24\xac\x63\x13\x16\x60\x82\xf0\xc4\x30\xe2\x35\x78\x3d\xe4\x72\x22\x72\x49\x58\x2b\xfa\xf5\x26\x0b\x1f\x30\x8c\x20\x3a\x90\x66\x61\xfb\x56\x04\xe9\x39\xa6\xa1\x65\xcb\xe3\xa6\x37\xaf\x36\x6c\xcb\x80\x1d\x60\x3a\x2e\xc5\xfc\x7b\x09\x96\xc9\x04\x31\x56\xb5\x28\x39\xdc\x95\x9b\x2f\x8c\x07\x24\x5a\x71\x88\x56\xf0\x99\xf5\x3c\x95\x60\x6b\x40\xbb\xa3\x3e\xa5\xff\x8e\x3e\x1f\xe3\x5d\x78\x62\x80\x4c\x08\x2b\x4a\xf7\xc3\xc9\x51\xee\xb1\x65\x6f\x23\xae\xbd\xe5\x53\xea\xc9\x2a\x44\xee\x0d\x22\xc7\xdc\x41\xe4\xb6\xfe\x20\x4b\x31\x2c\x7f\x2e\x84\xde\x9c\x61\xe9\xc3\x82\x37\x3c\xa9\xc3\x88\xaf\x34\xc7\x6e\x6c\xb6\xd1\xc1\xbf\x0c\x31\x08\xe1\x3b\xbe\x13\xb2\x87\x37\xdb\x43\x48\x1d\x55\x83\x2f\x1b\xf7\x2a\xf1\x95\x45\xca\x2a\x2c\xb9\x72\xe4\xa2\x78\xd1\xee\x23\xef\x84\xe0\x59\xa4\x3f\x51\x86\xbb\xf2\xb7\x8d\x50\x4f\xdd\xef\x66\xf2\x33\x34\x62\x04\xd1\xdd\xe6\x08\x6d\x80\xa9\x64\xb2\xa1\x2d\x21\x94\x29\x0b\x04\x65\xa9\x6f\x47\x94\xcc\xd6\x3c\x0b\x26\x53\x0e\x75\xbe\x2d\x91\x4a\xea\x0b\x64\x2c\x43\xdf\x70\xc6\xdb\xa4\x66\x5b\xaa\xe5\x56\x18\x36\xaa\x08\xbb\xa1\x55\x28\xc2\x44\x07\x6f\xc1\xc3\x5c\x89\x09\xe2\xc7\xa3\xc8\xc7\xb7\x6f\x41\xb6\xef\x19\x91\x8c\x76\xd5\x06\x1a\x81\x60\x8d\x6f\x35\x72\x62\x41\x15\xe4\x5a\x2c\x6d\xa8\xcd\x46\xec\xc9\x25\x5f\xdb\x74\x04\x4d\x23\x15\xad\xae\x60\x6d\xd7\x9d\xbd\x4a\xe2\x2b\x18\xc7\x06\xb8\x5f\x0b\x28\x6f\x5a\xf5\x9d\x4c\x5f\x0b\x79\xd0\x43\xf3\x8e\xad\x68\xa5\x40\x26\x73\x7b\x60\x37\x42\xec\xe4\x89\x8f\xde\xd1\x9c\x64\x2e\xe2\x6d\x08\x90\x81\xcd\xc8\xc3\xd3\x53\xe9\x33\x6c\x62\x0a\xce\x07\x19\x37\xc3\xe2\x7d\x6e\x5e\x2c\xfd\x5d\x2c\x1b\x64\xf9\x7d\x86\xd1\x4c\x9b\x0f\xcf\xdc\x62\xb9\xf8\xa1\x97\x91\xf2\x6b\x7e\xcd\xda\x42\xb6\x84\xa9\xcf\x39\xc6\x05\x88\x93\xeb\xb9\x28\x0f\x9f\xe5\xfc\x5a\xbc\xf2\x41\x06\x66\xb5\x61\xa2\x63\x8a\x57\xb4\xf1\xae\x00\x17\x1d\x96\xbe\x19\xb3\xca\x3c\x44\x5c\x42\x9a\xaa\x0c\x29\xd7\xd2\x57\x94\x99\xec\xa1\x2b\x4b\x2b\x73\x43\xea\x0e\x23\x9f\x1f\xb6\x6a\x28\xdf\x06\x48\x8e\xaa\x6c\x16\x8e\x13\x98\x10\x0d\xdc\x34\x96\x81\x52\xd9\x78\x0f\x39\x29\xfd\x93\x8c\x7f\x61\x07\xd4\xb1\x5f\x94\xce\x11\x49\x8e\x88\x3b\xb7\x28\x2e\xd9\x83\x58\x81\x28\xda\xf6\xd5\xc6\xb1\x78\x94\x1f\x37\xed\x9f\xd5\xc7\x8f\x13\xe8\xe2\x7c\xd4\x08\x15\xa7\xdb\x92\xef\xca\x0a\x43\x3e\x75\xe4\xb5\x9f\x9b\xc6\x90\x72\xd0\x16\x92\x94\x23\x15\xfc\x49\x90\x0d\x6e\xa8\x29\x54\x66\xa0\x42\x05\xa0\x0c\x9e\x39\x24\xee\x04\xd1\x57\x50\xc2\x26\x38\xba\x30\x13\xe7\xe9\x08\x8d\x2f\x41\x32\x35\xf2\xe4\x09\x29\x65\xc0\x9b\x0a\xc8\xce\xc8\x80\x42\x76\x99\x79\xe9\x14\x9e\xa6\x27\x8e\x8f\xf7\x1b\xaa\xcc\x93\x32\x1f\xba\xdd\xb1\xad\xb9\x70\x4d\x21\xf5\x6d\x6d\x63\xaf\x9b\x52\x39\xd5\x13\x22\xfb\x4b\x90\xb3\xee\xc2\xd6\x5e\x85\x35\x87\x28\xad\x74\x1a\x33\xfb\x01\x7e\x18\x9f\x6b\xb0\xe9\xe5\x57\x21\xd9\xfc\x52\x7c\x1e\x90\x13\xed\xae\x86\x2a\x5e\x6f\xdc\xe4\x13\x9e\xc2\x8a\x7d\x2d\x24\x55\x90\x7b\xab\x5d\xbf\xb5\xb3\x9e\xe5\x98\xe4\x31\x7b\x7a\xc8\x46\xec\xf3\x01\x51\x3c\x1e\x25\xe2\xf7\x09\xde\x6c\x39\x22\x92\x82\x41\xa7\xb2\xd4\x2b\xb1\x47\x58\x93\x0c\x02\x30\x9f\x00\x46\x0e\x3b\x62\xa9\xd4\x06\x29\xa4\x51\xf1\xbb\xd0\x1c\x48\x77\xd9\x8c\x0f\x1e\x90\x17\x26\x70\xc4\x1c\x23\xb2\x6f\x94\x8b\x92\x86\x77\x8b\x3f\xb0\x4e\x68\x25\x13\x62\x33\xf9\x75\x9e\x87\x45\x2f\xa5\x49\xe5\xa8\xa7\x10\x24\x9e\x74\x8c\x55\x5a\x7f\x2b\x71\xf2\xa8\x5d\xc3\x86\x28\xcc\x81\x43\x31\xa8\x91\xb4\x9b\x76\xea\x03\x93\x38\xfa\x59\x95\xca\xd5\xdf\x1f\xf2\x0b\x65\x28\x42\x37\x9b\xb6\xf7\x8c\xcc\xee\xba\x05\x1c\xaa\xf3\x0f\x98\xcd\xa0\x07\xc6\x5c\x30\x48\x14\xaf\x10\xa2\x6b\x37\x6c\xc3\x81\xe2\x76\xf5\x82\x1f\x3e\xcf\x56\x25\xc5\x67\xd7\xb1\x6b\xd6\x2a\x23\xfe\x56\x8d\xd8\xe7\x87\x2d\xf4\x7d\x1a\x18\xa8\x01\x19\x8f\x4b\x89\x61\xe8\x9c\x18\x60\x7c\xba\x57\xf6\x83\x02\x7c\x79\x18\xf2\x18\x68\x3b\x6d\xf0\xb6\x46\xa4\x8a\x1c\x81\x16\x22\xad\x6d\xec\xd4\x81\xf4\xe6\xfd\x4e\x74\x8c\x83\xb2\x5d\x3c\xde\xba\x5b\x1c\xb8\x05\x2d\x30\xf4\x5d\x14\xa4\x50\x94\xb4\x26\x3f\x1c\x0d\xda\x79\x42\x58\x8b\x1c\x46\xf0\x3e\x13\x42\x99\x4b\x21\x59\xc3\xcf\xe3\x61\xca\x22\xcb\xca\xc3\x9c\x17\x43\x45\xf0\x81\x21\x3c\x16\x7d\x9a\x06\x9e\x0e\xd9\x1d\xe3\xe8\xd3\xb0\x20\x08\x04\x4a\xd3\x96\x00\x63\xa6\x96\xce\x90\x51\x00\x0d\x4f\x75\x36\x8d\x8b\x48\x4d\x1e\x0e\x64\xb5\x9a\x62\x45\x7d\x88\x74\x31\x78\xaf\x9c\xbd\xab\x81\x9f\x40\x8e\x7d\x4e\x1b\xfe\x03\xf3\x91\xb5\xd9\x0d\x57\x9c\x91\x49\xff\xd7\xf7\xe5\x3b\x2e\xbc\x35\xf9\xf1\x7d\x9e\x7b\xde\x05\x10\xc2\x33\xb6\x2d\xa3\x2e\x6b\x89\x46\x24\xd4\x3d\x6c\xcd\x85\x08\x73\xf3\xb6\x1e\xa2\x2e\x59\x1b\xcc\x22\xd7\x17\x50\xf5\xd9\x61\x85\x5e\x62\x24\x79\x67\xa7\x26\x9d\x9d\x94\x72\x16\x49\x38\x9b\x13\x06\xcf\x1b\x96\x54\x65\xd3\x73\x18\xbd\x6a\xf1\x31\xd4\x5c\xc6\xde\xf8\x3a\x8c\xa3\x46\x0d\x11\x57\xb4\x00\x5b\xcc\x7b\x29\x7f\x84\x06\xa7\xef\x38\x24\xf0\xba\x89\xe2\xf8\xd3\xac\x8f\x24\x70\x66\x44\x1d\x78\x0d\xf9\x8c\x6e\xb0\x10\xfc\x9c\x60\xe5\xe1\xce\x62\xf0\x31\xc1\x4a\xc5\xac\x46\xe1\x15\xd2\x33\x39\xb4\x97\x53\x91\x4e\x8b\x5c\x45\xff\x2c\x6c\x23\xff\x4b\x31\x5c\x3e\x73\xf5\xfb\x6d\x83\x88\x32\xa3\x73\x38\xe3\x54\x03\xff\x8d\x1c\x49\x4d\xd3\x08\x65\xa5\x7e\xc9\x2c\xcd\x19\xc4\x54\x04\x4a\x32\x49\xdb\x99\x58\x60\x19\x91\xef\x91\xcf\xa7\x10\x71\x0c\x84\xc9\x6a\x1b\x8f\x8a\xe1\x15\xe8\x47\xc1\xc1\x94\x17\x32\x0c\xd3\xbf\x05\xe3\x96\x92\xa3\xc5\x90\x0d\x32\xc1\x0f\xc1\x89\xf7\xb4\xae\x67\xe1\x44\x82\x60\xa9\x11\x1d\x7c\x4c\xa8\x05\xd0\x46\xf5\xf6\xaf\xad\x4f\x73\x27\x14\x6b\xb5\xf8\x6c\x0e\xfa\x44\x76\x9e\xf2\xf2\xcb\x45\xa8\xbf\x79\xc5\x48\x27\xc4\xd6\x33\x4f\x92\xae\x20\x3b\x91\x14\xeb\xcc\x23\x8d\x0e\x5c\xf5\x6a\xc3\xb6\x70\x86\x5a\xe1\x6e\xee\x93\x44\x6b\x5e\x70\x05\x68\xf4\xad\xe2\x4d\xc0\xac\x83\xd9\x1b\x87\x3e\x35\x99\x11\x65\x0d\xa8\x30\x69\xc5\x85\x78\xe3\x21\x8f\x25\xcb\xe3\xab\x74\x05\x1f\x1f\x35\x2e\x0b\x96\x6e\x90\x45\x3d\xa9\x48\x33\xec\xee\xc8\x88\xbb\x97\x81\x19\x32\xf3\x15\x80\x8d\xa5\xe8\xcb\xa7\xf2\xe8\xb8\xa1\x3c\x92\x4e\x0f\x2f\xad\x49\x8a\x49\xfd\x46\x56\xe0\x58\x96\xc0\xe9\x9b\x28\x34\x5f\x31\x02\x7d\xcb\xeb\x74\x3f\xe5\x18\xe7\xc7\xe7\x5b\x25\xac\x39\x1a\x9d\x9f\xd9\xdb\x00\x28\xaf\x95\xef\xcf\x28\x2f\x33\x72\xac\x21\x7e\xe8\x09\xbb\x0f\x16\x94\xd5\x89\xa6\x63\xcb\x46\xbb\xfe\xaf\x70\x3a\x58\x8d\xd2\xa8\x7e\x71\xa9\xb4\x91\x75\x2a\x5e\x0d\x1c\x1d\x2f\x68\x21\x6f\x23\x50\xb2\xec\x27\xd1\xb0\x2e\xc1\x30\xcc\xe5\xc2\xbd\x07\xf3\xaa\x63\xf6\xca\x7a\xb0\x3f\xc3\xfb\x53\x0c\x64\x4c\x92\x8b\x14\x58\x24\x99\xca\x5a\xfc\xd4\x65\xf0\x8a\x3d\x9a\xc2\x33\xf5\x65\xa3\xf9\x39\xb1\x5d\x3f\x31\x67\x13\xba\xe5\xf2\xd7\xa9\xe7\xcf\x97\xe4\x3b\x48\x80\x14\xee\x01\x9f\x99\xeb\xd3\xb9\x66\xdc\xaa\xe3\xc6\x89\x71\xd9\xaf\x73\x75\xb6\xf8\x96\x9c\x80\xde\xb4\x28\xf9\x0e\x71\x7d\x3a\x7c\x4d\x5e\x88\x90\x0a\x8e\x8f\x34\x83\x8e\x26\xa1\x99\x8e\xbb\xe3\x1b\x12\x78\x85\x0c\x8a\xc5\x56\xde\x7a\x62\x78\x6c\x20\xec\xbe\x89\x53\x0b\x9e\x6c\x7f\xd8\xdc\x92\xc8\x01\x46\x24\xb5\xcf\xca\x5c\xbd\xca\x64\xc7\x1d\x0b\x2e\x25\xa5\xc4\xbe\x5a\x48\x7f\x50\x94\x27\x49\xe2\xe7\x34\x8e\xe6\x1e\x14\x6d\x9a\x5f\xf5\x95\x79\x27\x7f\xeb\x7b\x73\x54\x4d\x9f\xdf\xcb\x17\x1e\xd2\x65\xb8\x53\x09\x81\x81\xef\xc9\x2c\x05\x80\x15\xda\x5b\x71\xcd\xc2\x0d\xea\x9f\x9e\xde\x20\x3c\xa7\x8f\x25\x7b\xda\xdd\x42\xdf\x1f\xca\x42\x8f\xe8\xf8\xe4\x43\xf4\x7c\x92\x28\xe4\xb1\x63\xfa\xac\xfc\xed\x1e\x76\x8e\x9b\xb9\xe4\x1c\x37\x55\xef\xc5\xc8\xf6\x6e\x78\x26\x1c\x90\xe6\x37\x61\x54\x4d\x7c\x35\x4d\x6b\xc8\x39\x77\x49\xab\xab\xfc\xe5\x71\x36\x42\xf6\xf6\x9c\x29\x84\xdb\xc3\xdd\xb1\x8c\xf6\x4a\x61\xb2\xa8\x4b\x28\xec\x37\xf1\xa9\x72\xb1\x5c\xb6\xe1\xbf\x4c\xcb\x89\x38\xc6\x4c\x39\xbb\xa2\x0f\x8f\xbc\x12\x13\xa7\x95\x2c\xf2\x9a\x1d\x58\xac\x54\x9a\x6b\xc3\x6b\x4f\xa8\x51\x3a\x34\xc8\x25\xee\x18\x68\x1f\x38\xeb\xfb\xfb\x7d\x91\xaa\x66\x8e\x4a\x01\x85\xc4\xe5\xff\x62\x55\x6e\x72\x04\x4d\xbe\x81\x16\xbe\x64\x7a\xa8\xb1\xdb\xe2\xe6\x57\xec\x90\x3c\xff\x9e\x8f\x5f\xc1\xaf\x69\x77\x49\xd7\xcc\xd5\xe2\x31\x0f\x83\xb3\xb0\xa2\x04\x8f\x31\x77\x4e\x4a\x7d\x52\x76\xea\xa4\x10\xbf\x45\x48\x89\xf9\x77\x48\xee\xe3\x09\x67\x0c\xb6\x7a\x12\x82\x14\x60\x12\xf5\x8c\x72\x65\x43\xea\xcc\x91\xc4\xdf\x09\xba\x25\x9a\xbf\x46\xe3\xcb\xdc\xdf\x68\xc1\x73\x6c\x18\x9c\x2a\x63\x6e\x28\x3f\x54\xbe\x12\xa4\xec\x0a\x4a\xc7\x9d\xe2\x58\x1c\x12\x6d\xc2\xb6\x01\xdd\x60\x4f\xd8\x76\xa7\x0e\x8e\xc3\xb9\x1a\xb6\xfe\x96\xee\xf2\xe4\xe1\x71\x02\xcb\x5b\xad\x4a\x3c\x93\x68\x3d\x72\x6f\x66\xd6\x29\x88\x02\xc9\x7b\x8e\x74\x4d\xfd\xa8\xb6\xf3\xa8\x2b\x95\x1c\xb3\x0e\xf3\x44\xe8\xdf\xc4\xe2\x20\x91\xb2\xda\xd0\xe5\xed\xda\x6c\x25\x93\x20\x42\x12\x6a\xd2\x58\xa6\x05\x69\xc0\x92\xd1\x86\x4b\xc7\x68\x7d\x88\x33\x17\xc5\xd1\xd6\x2f\x45\x97\xba\xf5\x2e\xd1\x6e\x61\x26\xd1\x21\x5a\x3d\x84\x15\xc1\xbd\xf0\xd7\x05\xbe\x46\x7f\x5e\xe7\x46\x6d\x58\xab\x7f\xf5\xea\x3b\xdc\x92\x9d\xd8\xeb\xb9\x13\xad\x4e\xcf\x17\x05\xb0\xf0\x2c\xc1\xc6\xf2\xc4\x93\x07\xe6\xc3\xaa\x72\x98\x24\x0c\xfe\xcd\x6e\x0c\xf9\x55\xd1\xb6\x84\x91\x44\xdb\x1c\xa0\x3a\x7a\x0d\x4f\x20\xc2\xd0\x77\x7b\xef\xe6\xaf\x91\x5c\x8a\xcd\x46\xa8\x45\x96\xed\xc0\xa7\x04\x35\x69\x09\x6d\xb8\xb3\xd9\x3f\x1e\xaa\x46\xb4\x15\x31\x16\xa3\x2b\x69\x4f\xd3\xd7\xa6\xa8\xb5\x39\x50\x43\x7e\x81\xa2\x49\xe9\x39\x9a\x0a\x5a\x2d\xb0\xad\xa1\x1b\xaa\xdf\x23\x6f\x98\x33\x77\xa8\x1d\x33\xa9\x28\x91\x0f\x0c\xee\xb2\xf4\x60\x8a\xbc\x73\xb4\xea\x84\x94\xa4\xe6\x2b\x48\x59\xa4\xc2\xc5\x5c\xf7\xb4\xab\x65\x50\x4c\x8e\x5c\x32\x08\xb2\x72\x79\x02\xc3\xf0\x94\x0c\xc7\xa1\x5b\x12\x05\x98\xdc\x70\xa2\xb5\xf5\x32\x68\xe1\x1a\x79\x78\xcf\xe0\x16\xbb\x04\x2e\xaf\xe6\x9d\x52\xe2\x99\x3d\x9a\x35\x97\x86\x13\xf7\xe5\xcb\x9b\x83\xe1\x72\xbb\xb1\xe2\x92\x5a\x6e\x2d\x75\xef\xa8\x32\xf4\xe4\x62\x32\x29\x17\x24\xc2\x31\x2b\x22\x93\x8c\x54\x70\x28\x64\x87\xda\xdd\xca\xb5\x68\xaa\x6f\xe0\x5a\xad\xc4\x58\x58\x8f\xad\xbd\x62\xbb\x4d\x9f\x46\xec\x27\x72\x2f\xf9\x15\x96\x78\xb9\x6b\x35\x96\x0f\x71\xfe\xb8\xbf\x5b\x3b\x81\x48\xdd\x77\x70\xd7\x6c\xae\x61\x83\xf2\xfc\x53\xdc\x43\xee\xef\xc1\x03\x53\x36\x59\x9b\x5d\x68\x9a\x7a\x19\xdd\xc0\x17\xe1\x68\x41\xec\xb2\x8e\x93\x7b\x67\x2e\x47\xf3\x90\xef\xbc\x4c\x3d\x02\xe5\x32\x4d\x21\xa3\x62\xa3\x82\x9a\x46\x5c\xa2\x6a\x2e\xe1\xd4\xa4\x2b\x06\xa2\xce\xd4\x07\x33\x11\x29\x81\xd0\x5b\x77\x26\xb3\xb1\xaf\xe5\xa6\xd7\xba\xa2\x12\xde\xfd\x9a\x77\x79\xbb\x4e\xd4\xbd\xcd\xd6\xd3\x88\x7d\x9d\xe6\xa0\xce\x27\x9d\x25\x35\x38\x1b\x11\x98\x3f\xfd\x34\x2a\xff\xc6\x95\x6b\x32\x14\x88\x74\xf0\x41\x1a\xbe\x61\x54\xd3\x79\xfc\x1d\x25\x29\x17\x3f\x3d\x86\xd1\x13\x08\x3b\x58\x1e\x97\xf5\xe3\x8f\x2c\xc9\xb1\xba\xa8\xc7\xf1\x98\x78\x3c\x90\x65\xd1\xb8\x71\x7f\xe3\xbb\xb1\x7c\xe1\x42\xc6\x99\x71\xec\xa8\x2c\x7e\xc3\x9c\x31\x39\x63\x95\x31\x1e\x3d\x51\x47\x3e\xde\x4f\xca\x5b\xb8\xbf\xe2\x40\x72\xcf\x55\xb5\x89\xdc\xc7\x47\xf6\xb5\xde\x5b\x71\x68\xc7\x51\x16\xd1\x27\x95\xbb\xa5\x52\x37\xe3\xeb\x14\xc3\xb7\x41\x21\x47\x47\x30\x27\xdb\xdd\xc6\x78\x25\xf6\xc7\x07\x68\xc4\x7e\x0a\x74\xfc\x14\xc2\xea\x5c\x65\x3f\x21\x6a\xa3\x36\x77\xf3\x5f\xd1\x21\xf4\x16\xaa\xa8\x89\xb0\xc3\xd1\x73\x2d\x0c\xa9\xc6\xdb\x68\x9b\x63\x82\xd9\x36\x86\x1c\xea\x1e\x73\x55\x0a\x92\xcb\x2d\xfd\x49\xe6\x15\x99\xbd\xbd\xb2\xa5\x1d\xe4\x82\x97\x48\xa2\xf0\x82\x0f\x0d\x1b\x69\xf6\x97\x4c\xa9\xf3\x15\x95\x10\x33\xe0\x63\xaa\x8e\x21\x6c\x08\x99\xe8\xb7\xe6\xb5\x4c\x9d\x85\x49\x98\x70\xc3\xa1\x0a\x74\xa2\x42\xaf\x99\xba\x88\xaa\x44\xcf\x7e\x55\x8a\xe9\x7f\x79\x8d\xb0\xb8\xb5\xa3\x25\x0b\xfe\xf1\x39\x79\x58\xee\xc4\x57\x10\x0d\x33\x1b\xda\xcf\xb5\x36\x11\xad\xef\x04\xed\x20\x5c\x6f\xa7\x1a\x8c\x8b\x38\xb3\x43\xef\x72\xde\xfd\xa2\xaa\xaf\x25\xcc\x5d\xf4\x5d\xeb\x78\xf3\x05\x5e\x8a\xd9\xc8\xc3\xbf\x82\x92\xeb\xa4\xc7\xcf\xab\xe3\x9a\x7a\x02\xc3\xfb\xad\x15\xb3\x71\xa5\x61\x06\x2f\xa7\x31\x14\x01\xd5\x4c\xaa\x4e\x1c\xe0\x08\xa7\x87\xa7\x6d\xfd\x06\xca\x0f\x40\xd6\x65\xac\xe4\xfe\x69\xc1\xcb\x47\x22\x0f\x3d\x85\x80\x5b\x29\x2a\x4e\x13\x62\xe6\xb5\xcb\xc2\xbf\x09\x77\x71\x38\xa1\xc6\x7f\x29\x5e\xbb\x58\x1b\xa9\x64\xe9\xd8\x4c\x99\x3b\x6a\x02\x50\xb6\x89\xef\x88\x14\x5d\x77\x2f\x79\x27\x95\xcd\xfb\x60\x8e\xa7\xfc\x68\x82\xfa\x40\xb4\x31\x4e\x29\x08\xa0\xf5\xc7\x53\xe6\xf1\x6a\x4d\x89\x2b\x13\xbe\x25\x8d\x97\x26\xf5\x6c\x44\x01\xc6\x06\x73\x98\x1c\xcb\xca\xaa\x04\x67\x63\x34\x10\x5e\x8c\x04\xd2\x69\x40\x74\xb0\x16\x26\xd2\x07\x50\x0f\x2f\x49\x22\xe7\xa7\x7d\x75\xea\x06\x1f\xf5\x6f\x72\x39\xa4\xad\xe5\xd2\x38\x08\x2b\xda\x34\xd6\xd1\xb9\x61\xe4\xe5\x9f\xbf\x32\xa6\x9b\x59\xa7\xe8\xf6\x66\xdc\x75\x67\xfe\x31\xc3\x8e\xe6\x0f\xf0\xd0\x3d\x78\x40\x5e\xd0\xae\x39\x10\x76\xa3\x17\x64\x05\x3e\xc6\x61\x0d\xe0\x85\xf2\x60\x78\xa7\x37\x42\xf7\x70\x1d\x60\x43\xe5\x51\x1d\xa0\xf8\xa6\x72\x4c\xd1\x0a\xb6\x13\xaa\xd1\x1c\x71\x52\x81\x1a\x83\xea\x95\x00\x38\xf6\x8e\x96\x2f\xcc\xf8\x0a\x83\x72\xe4\xa6\xe2\xf8\xe4\x40\xd6\xdd\x80\x8a\x82\xe0\x88\xbe\xdc\x07\x49\x0f\x47\x22\x38\xb0\x4d\xb7\xf0\xf2\x1e\xf8\x1a\xa9\x82\xe6\xea\x0b\x05\x35\x8d\xb8\xb4\x49\xe1\xb3\x97\x34\x24\x88\xaa\xe7\x32\xf4\x3c\x50\x22\xb9\xea\x4d\x9e\xe1\x3d\xb8\xa9\x4b\x03\xd9\x80\x11\xfc\xa9\x8e\x1d\xe0\xdc\xee\x36\x6d\x8f\x9c\xe0\xf5\xa5\x48\x23\xda\x35\xeb\x4c\xd5\x91\x30\x20\x65\xc8\x96\xcc\xb0\xd2\x5f\x04\xbd\xc1\xb4\xf9\xc4\x4d\xb4\x85\x4b\x8d\xee\x72\xec\x17\x0e\x3b\xa0\xf6\x6b\x43\x69\x9f\xe7\xae\xec\x98\x30\x91\xdb\x68\x7a\x7a\xf7\x17\xa4\xa9\xbf\x99\x92\x99\xde\x63\x72\x3c\xec\xa4\xdc\xd9\x66\x97\xbf\x29\x24\x94\x77\x7f\xe5\xc4\xf2\x37\xc7\x73\xc9\x97\x81\x8c\xe4\x10\xb7\x2d\x40\xb1\x3f\xec\xd8\x6c\xbe\xe0\x78\x16\x71\xf7\x87\x5d\xb1\x61\xdc\x65\x52\x4f\x15\xf7\x88\x79\x4d\xa3\x0f\xf7\xbd\x29\x2c\x95\x65\x53\x1a\xcc\xad\x30\x93\x03\x36\x14\xdc\x89\x75\xac\x39\x90\x50\x65\x21\xad\xa8\x21\x6f\x37\xad\x54\x0f\x71\xd1\xae\x2e\x1c\x57\x0b\xf2\x62\xa4\x8a\x88\xc6\x0e\x1b\xa7\x16\x2d\x38\xf8\x28\x91\xfa\x4c\x87\x38\x94\xf4\xe8\x82\x0c\x17\x6e\xa4\x58\x71\x9d\xfb\xc3\x6a\x81\x41\xb7\x18\x21\xa5\xde\x2a\x6a\x74\xd5\x20\x45\x7e\x50\x85\x33\x0c\x66\xe8\xe0\x81\x19\x14\x13\x74\x6f\xd2\xe0\x15\x53\xce\x2c\x0f\x1e\x10\xc9\xa1\x0c\x85\xc6\x1a\x5c\x95\x52\x6b\x94\x3e\x87\x2e\xa6\x05\xa2\x78\x5f\x68\x41\xa4\x4f\x1f\x7d\xb2\x8b\x9d\xe2\x5b\x2e\x15\xaf\x3c\xb6\x62\x58\x47\x2e\xc9\x96\xd6\x8c\x18\xd1\x25\x5c\xaa\x0f\x6a\x0a\x50\xd5\x1c\x1f\x43\xab\xc8\xbe\x04\x68\xcb\xf6\xae\x1a\x69\xa2\x2d\x4f\x8c\x94\x31\x39\xc6\xf5\x1a\x62\x3a\x9b\x8d\x66\x37\x6f\xcb\xc8\x4e\x74\x21\x8b\x98\xd2\x24\x90\x66\x5c\x4f\x60\x47\xf9\x88\x76\x32\xb5\x02\xab\xc1\x27\xee\x6a\x10\xf0\x55\xa1\xa5\xbf\x12\x36\x45\x53\x9d\x07\x1d\x54\x9d\xac\xb4\xad\x29\xdb\xe8\xca\x3e\xeb\xff\x8e\xeb\xa6\xa6\x25\xaa\x10\x05\x67\x4a\xb1\xd0\x27\x4f\x90\x84\x26\xb7\x8c\x3a\xc5\xaa\x15\x21\x39\x55\xbc\x89\x74\x96\xdf\x03\x8c\x15\x2a\x0a\x93\x78\xbb\x7b\x73\xb3\x7d\xfd\xd2\x9b\x37\x7e\x5c\x6f\x1d\x78\x65\x0f\x74\x76\xb5\x24\xd3\x62\x42\xe1\xbf\x52\xad\xee\xe7\x0a\xe7\x9b\x16\xca\x87\x86\xa9\x26\xb1\x7d\xf1\x43\x9b\xe8\x91\x4d\xe9\x13\x1a\xd5\x77\xcc\x91\x3c\x1d\xbf\xb1\x70\x3f\xff\x2a\x1a\xaa\x87\x9f\xb9\xa3\x13\xf1\x55\x99\x6a\x77\xd0\xec\xd1\xfd\x89\x76\x68\xe8\xd2\x4a\xbf\xe6\xaf\x81\x8f\x94\xb5\x3d\x71\x31\x86\x7e\x5b\xda\x52\xa4\x49\x0c\x7b\x7a\x41\xac\x4f\x2e\xca\x4d\xf4\x84\xbd\x45\x36\x5c\x78\x79\x20\xbc\x95\xb6\xb4\xbe\x8d\xf4\xad\x44\xd7\xc1\x7d\x34\xbc\x9b\x4f\x0c\xf2\x6b\xda\xd9\x1e\xe7\x6d\xcd\x6e\xd0\xb7\x4f\xfc\xc4\x23\x76\xfe\x1c\x1e\x40\x95\x8a\xc2\x22\x9a\x98\xa9\x0b\xfb\x28\x84\x50\x78\xa8\x12\x61\xc1\xd1\x36\xf8\x5d\x48\x6e\x83\x27\xb0\xb2\xe2\xd9\xc8\x63\x2a\xb4\x00\xb0\x81\x33\xa3\x6a\x19\x82\x3c\xc9\xdc\x48\xe9\xe2\x5c\x31\x66\x6a\x46\xc2\xd2\x85\x79\x38\xb2\x30\x04\xe7\x68\x2b\x23\x61\xac\x95\x79\xf2\x04\x09\x6b\x5a\x72\xcb\x95\x61\xdb\x58\x28\x3d\xc1\xd3\x51\xc7\xb9\xb9\xeb\xb3\x20\x0a\x55\x6c\x70\xe5\xf9\xb6\x4a\xb3\xde\xab\x6f\xec\x71\xb5\x8c\x36\x29\x5e\x13\xcc\xf5\x79\xce\xea\xbe\x52\xba\xcf\xb0\xf9\xef\x4f\xec\xff\x41\xca\xf3\x04\xa5\xf9\x66\x52\xad\x9d\x92\x01\x3d\xc5\x1f\x85\xdd\x72\x3c\xba\x1f\xce\xbe\xa4\xd5\x38\xd5\x36\xd1\x62\x29\x91\x07\xa9\xd8\x36\x28\x21\x69\xfd\x2b\x83\x9b\xc4\xba\x48\x1c\x84\xa4\x50\xcf\x81\x9c\x3f\xcf\xe3\xbf\x14\x72\xb2\x1a\x4f\xaa\xa9\xc2\xef\xc5\x95\x39\x5f\xed\xeb\xc2\xa4\xa8\xb0\x8d\x3f\x33\x56\x2e\x25\x2b\x0a\xb1\x47\x5d\x27\xba\x8f\xe1\xf2\x41\x28\x12\x97\x94\x21\xff\xfa\xf4\xcd\xd7\xe7\x5f\xff\x71\x69\x70\xf0\x50\x6d\x5e\x39\xad\xa6\x54\x1b\xda\xae\x19\xe8\xd4\x91\x36\x0d\x45\xba\x6d\x4e\xde\x4e\xab\x59\x5e\x6f\x6e\x0e\xae\xc8\x39\x90\xc5\xda\xc8\xa0\x5e\xf3\x76\x9d\xb9\x9c\x7c\x8d\x53\xa8\x8d\x82\x19\x0d\x5e\x71\xfb\x79\xd5\xb4\x8b\xe2\x2b\x94\x23\xea\x1a\xf2\x6e\x06\xd3\xd7\x9c\x92\x3e\x5e\x57\x72\xc0\xc7\x65\x49\x46\xd8\xba\xf8\x48\x66\x43\x25\xe1\x6d\xc8\x79\xbd\x24\xdf\xcd\x3c\x3a\x5e\x5c\xcd\x6f\x53\x25\x72\xd4\x69\x91\xcd\xe6\xd7\x51\x18\x10\xb1\xef\x3f\xb8\x40\xa0\x5b\xc1\x9f\xf5\xd8\xb8\x93\x8f\xe5\xe7\x96\xfb\xd3\x9c\x25\xd3\x4b\xf0\x21\x00\x3f\x4e\x29\xbe\xa9\xe6\x0a\x82\x40\x41\xf6\xf0\xfa\xc4\x16\x67\x52\x37\x7a\xd6\x50\xef\x61\x1e\x3e\x25\x1d\xfe\x17\xfe\xe7\x41\x50\xcd\x73\xa8\xe4\xc9\xa5\xaf\x71\xff\x1b\x89\x56\xf3\x44\x8b\x45\xe5\x15\x3c\x53\xdb\x35\x94\x8a\x7a\x33\x00\x40\x53\xc6\xd3\xbc\xbb\x31\x43\x2d\x6c\xbd\x78\xbb\x6f\x1f\x7d\x96\x80\x79\x6c\xc1\x3f\xb0\xed\x1e\xac\xdc\x77\x33\x4a\x44\xbd\x61\x8b\xbf\x6b\x4d\x16\x54\xe1\x76\x71\xb6\x87\x6b\xb6\x02\x13\x5b\x69\x58\x06\xbb\x4f\x07\x68\x0e\x5b\x57\xaa\x74\x28\x53\xda\x09\x1b\x22\x61\x8f\x79\x38\xae\xb8\xda\xd4\x1d\xdd\x1b\xba\x5a\xe3\xf1\x8e\x94\xdd\x5b\x58\x40\x5a\x93\xf1\xc9\xc7\x22\x8c\x7a\x08\x6e\x41\x64\x28\xe2\xfd\xb2\x6f\xe1\x4a\xc8\x40\x73\x53\x98\x93\x5f\xc9\x0a\x44\x5b\xc3\x2b\x5c\x7e\x5d\x1c\x99\x3c\x89\xcc\xff\xd7\xd2\xf2\x1e\x5e\xea\xdb\xae\x97\x25\x3a\x6d\x9a\x52\xf5\xf3\x8f\x52\xf9\xbc\x5c\x37\x6d\xa4\x66\xda\x58\xbd\xb4\xa3\x95\xce\x47\xaa\x9c\x8f\x54\x38\xcf\x28\x6c\x7c\x04\xa0\x52\x0d\x55\x65\xdc\xa1\x7a\x6f\x71\xbc\x58\x7c\x50\x2a\x39\x96\x6d\x41\xb9\xe3\x44\xe8\xa1\x09\xaa\xa3\x26\x47\xf3\xf1\x1e\x2f\xb0\x12\x9b\xdd\x40\x2c\x53\x75\xd8\x7f\x98\x8f\xf1\x49\x5e\x1e\xef\xef\xb5\xc4\x6e\x09\xa7\x96\xc2\x0b\x33\x24\x17\x17\x32\xa2\xc6\xb4\x52\xf4\xa3\x75\x53\x4b\x0b\x37\x69\xf1\x26\x2d\x20\x72\x84\x16\x96\xca\xba\x56\x07\xb7\xd6\x4d\x81\xff\x8f\x0b\x54\x0e\x59\xd9\x06\x40\xe1\x0b\x49\x17\x5f\x11\x7c\xbe\xf5\x76\x0a\xbc\xc0\xce\xe7\x11\x9c\x2b\x5a\x99\x49\xde\x72\x46\xc5\x26\x92\xd8\x8b\x28\x0b\xf4\xf9\x73\x0f\x26\x36\xcd\x2a\xda\x1a\xdb\x6c\x6d\xaf\x76\x82\xae\xd8\x75\x3f\x96\xdd\x41\x20\xd7\x47\x7e\x38\xa7\xf7\xaf\x78\x6b\x52\x86\xc5\x36\x29\x53\x14\x46\x74\x0f\xe7\x95\xe8\x86\xb2\x29\xee\x2c\xf4\xc0\xa6\xfa\xea\xd3\xc9\x0c\x00\x42\x8f\x3d\x4a\x31\xdd\x2d\xa2\x59\xc8\x4f\x61\x6e\xec\xb4\xa2\x7c\xe4\xbb\x4f\x3e\x3e\xb9\xed\x86\x5c\xc4\x03\x94\x58\xc2\xb4\xb7\x07\xce\x4b\xd1\x9d\x3f\x0f\x4b\xd2\xf6\xed\x7d\xad\xf4\xaa\x06\x92\x18\x1e\xb7\x5a\xca\x1c\xc3\x7c\x93\x01\x8e\x7d\x8e\x05\xa9\xe3\x4c\xaa\x0e\x6d\xb7\x00\x89\xa4\x5b\x03\xde\xae\x04\xa1\x97\xa2\x37\xcb\xe1\x80\x68\xcb\x5b\x32\x66\xaf\xc6\x4d\xda\x04\xb3\xf2\x77\x5e\xe9\x60\x0a\xf9\x62\x3f\xbd\x23\x2d\xa6\xf1\x42\xbe\x08\xb3\xbf\x90\x88\x1b\x50\xf5\xa0\xc4\x13\x05\xd6\xe2\xf5\xfc\xc9\x22\x1a\x6a\x86\x49\x88\x67\x98\x9f\x38\x14\x13\xe7\xcf\x25\x42\xca\x30\x54\xc9\x24\x1a\xb7\x70\xf0\x9d\x73\x17\x20\xa5\x7d\x84\x61\x0c\x6f\xf0\x5c\xbe\xa8\x3b\x6c\x1d\x1c\xa6\x23\xd7\x28\x3a\xf6\xfa\x32\x5a\x3f\xf3\xdb\x9d\x36\x71\x00\xee\xa8\x48\x97\x2f\x45\x77\xc1\xb7\x6c\xd5\xd1\x2d\x9b\xbe\x68\xb4\x0b\x4b\x61\xa7\xb9\xff\x01\x58\xba\xad\xa4\xa2\x5d\x18\xdd\x7c\x61\x6e\xaa\xbb\xb0\x92\x45\xb0\xb9\xf4\xf0\xd1\xc6\xb2\xc5\x6f\xda\x3a\x81\xc1\xda\x7a\x22\x84\xc9\xdc\x94\xcf\x6e\xd8\x95\xf1\xfc\xd2\x83\x7f\x84\xb8\xb3\x94\x00\x2e\x39\x50\x3c\x25\x6f\x68\xfd\x68\xfe\x4b\xff\xc7\x79\xab\xfe\x79\x60\xce\xf7\xef\x3f\x50\xb2\x8f\xa3\x15\xff\x3b\x45\x2f\xfc\x57\x51\x05\xfa\xe8\xe5\x1c\x6e\xbf\x05\x3e\xb8\x0a\x4d\x41\xb3\xd3\x1b\x1d\xae\x67\xb4\xb8\xf8\xd1\x8f\x6e\x7e\xbb\xd3\xc2\x38\x70\x98\xb7\x24\xaa\xa5\x69\xcb\x8e\xd1\x24\xb7\x89\x8f\x79\x85\x84\xb6\xb6\xa2\xbd\x39\xee\xf4\xf1\x26\xe1\xac\x8b\x75\x9b\xc0\x17\x60\x4d\xea\x93\x61\x4c\x28\xcc\x02\x95\x27\xcc\x27\x73\xda\x5e\xba\x28\x8e\xda\xd5\x8d\x13\x70\x9c\x6e\xc4\xde\x3e\x6e\xf3\xba\x8f\xc9\x47\xfb\xd5\x97\x1e\xe2\xf9\xca\x7f\x68\x79\x73\x12\xbb\xfb\x9d\xc8\x39\x5d\x9c\x96\x08\x1e\x94\x13\xfd\x4b\x66\xf3\xf8\x8a\x4c\x01\xed\x6d\x89\x51\x3c\x85\xad\x5d\x18\x37\x1e\x29\x65\x80\x00\x57\xef\x61\xc7\xc8\x19\x00\xbb\x37\x38\xf6\xa2\x66\x7c\x05\xad\x16\x5c\xbe\xed\x2f\xf5\x7f\xcd\xc4\x6a\x49\xc0\x8b\xfa\x75\xbf\xbd\x64\x1d\x78\x50\xa3\x2e\x3f\xfd\x54\xec\xf2\xa5\x10\xcd\xad\x3a\x3c\x35\xbe\xcb\xc7\xa1\xe3\xed\x48\x97\x67\x1b\xaa\x99\xc0\x60\x36\xb9\x93\x77\x43\x64\xbd\x8a\x05\x39\x42\x12\x93\x24\xec\x26\xa4\xb2\x65\x34\xeb\x9f\xf6\x5e\x1e\x4d\xf5\x0b\x16\xc4\xc8\x06\x6d\xdf\x49\x56\x9b\xb0\xd6\x92\xa3\x29\xaa\xda\x81\xb6\x90\xf4\x9a\x41\xd1\xd6\x7b\x27\x44\x89\x65\x88\xc6\xbc\x34\xe6\x53\xe0\xfd\x3b\x0f\xd9\x08\x5a\x3f\xf2\xbc\xeb\xfc\x5a\xd1\xc0\xa9\x00\xd1\xd6\xe1\x5b\xd3\x00\x6e\x38\x2b\xd1\x5e\xb3\x4e\x19\xd1\x68\x3f\x7c\x79\x50\x4c\x5e\x08\xb3\x0f\xbe\x62\x6b\x7a\xa9\x7f\x98\xa5\x78\x63\x01\x1b\x19\x3d\xe7\x45\xf1\xc7\x5b\xae\xa2\x50\x4c\x23\xdb\xf0\xc5\x4b\x44\x5e\x4c\x4f\xf7\x2b\x79\x74\xdf\x66\xca\x20\x6f\xe3\xf6\xb3\x78\x05\x44\x33\x7c\xd2\x9d\xca\xc4\xfd\xc3\xd3\xf6\xf0\x86\x49\xd1\x77\x15\xf3\xf4\x4d\xf0\x9c\x67\x06\x74\x08\x7f\x02\xd3\x3c\xba\xef\xa7\x60\x59\xa7\x38\x42\x42\xac\x78\x96\x29\x23\xf9\x08\x60\xce\xa4\x03\x17\xbb\x49\xb8\x94\x3d\x33\x8e\x40\x17\xca\xf5\x59\x42\xba\xc7\x33\x1c\x9b\xf7\x9f\xbc\xff\x7f\x01\x00\x00\xff\xff\x8d\x6f\xc4\x6b\x33\x1f\x01\x00" func flowtransactionschedulerCdcBytes() ([]byte, error) { return bindataRead( @@ -264,7 +264,7 @@ func flowtransactionschedulerCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowTransactionScheduler.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x94, 0x85, 0x6d, 0x8a, 0xa2, 0x7, 0x1d, 0xd5, 0xf3, 0xc4, 0x8c, 0x1, 0x2, 0xaa, 0x9, 0x60, 0x40, 0x82, 0x21, 0x29, 0x28, 0xcf, 0x83, 0x78, 0xfd, 0x46, 0xd4, 0xda, 0xe1, 0x16, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x8e, 0xe8, 0xae, 0xde, 0xc4, 0x81, 0xe1, 0xce, 0x34, 0x74, 0x73, 0xba, 0x71, 0xb7, 0x92, 0xc1, 0x3e, 0x9c, 0xed, 0xc9, 0x9a, 0xf5, 0xf2, 0x82, 0x73, 0xe1, 0xc9, 0xad, 0x1d, 0x84, 0x1b}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 70fcf882..c264dad6 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -303,12 +303,12 @@ // storageFees/scripts/get_storage_fee_min.cdc (115B) // transactionScheduler/admin/execute_transaction.cdc (579B) // transactionScheduler/admin/process_scheduled_transactions.cdc (612B) -// transactionScheduler/admin/set_config_details.cdc (5.041kB) +// transactionScheduler/admin/set_config_details.cdc (4.446kB) // transactionScheduler/cancel_transaction.cdc (1.255kB) // transactionScheduler/schedule_transaction.cdc (5.811kB) // transactionScheduler/schedule_transaction_by_handler.cdc (2.373kB) // transactionScheduler/scripts/get_canceled_transactions.cdc (134B) -// transactionScheduler/scripts/get_config.cdc (154B) +// transactionScheduler/scripts/get_config.cdc (178B) // transactionScheduler/scripts/get_estimate.cdc (868B) // transactionScheduler/scripts/get_slot_available_effort.cdc (285B) // transactionScheduler/scripts/get_status.cdc (235B) @@ -6453,7 +6453,7 @@ func transactionschedulerAdminProcess_scheduled_transactionsCdc() (*asset, error return a, nil } -var _transactionschedulerAdminSet_config_detailsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\xcc\xe6\xb0\xb0\x01\xd7\xb9\x14\x45\x61\x34\x0d\xba\xe9\xa6\x0d\xe0\x00\x8b\xb8\xe9\x65\xb1\x07\x46\x1a\x49\x04\x28\x52\xe0\x87\x95\x74\xe1\xff\x5e\x48\x94\x25\x52\x5f\x91\x02\x2f\x76\x7d\x92\xc9\xc7\x37\xc3\x37\xe4\x90\x43\x9a\x66\x42\x6a\xb8\xb8\x65\x22\xff\x47\x12\xae\x48\xa0\xa9\xe0\xfb\x20\xc1\xd0\x30\x94\x17\x8b\x85\x6e\x9a\x97\x0b\x70\x7e\x29\x79\xa6\xa9\x49\xef\x78\x48\x0f\x34\x34\x84\x7d\x8c\x22\x21\xf5\x16\x1e\xef\xb8\xfe\xe5\xe7\xeb\xb5\x8f\xa6\xbc\x40\x7f\x7c\xc6\xc0\x14\x5c\xa3\x60\xc5\x84\xde\x27\x44\x62\x68\x61\x3b\x9a\xd2\x21\x6c\x26\xa9\x90\x54\xbf\x58\xe4\x03\x2a\x94\x07\xdc\xc2\xd7\x02\xfc\xeb\x69\xcc\x71\x74\x50\x45\x3f\x3e\x24\x25\xcf\x7f\x12\x4d\xf6\xf4\x3f\xbc\xff\xb0\x85\xc7\x5b\xfa\x3c\xe8\xcb\x2d\xe2\xbd\x61\x9a\x66\x8c\xa2\x54\x0e\x73\x39\xa8\xcd\x2c\x31\x32\x3c\x6c\x06\x0c\x90\x07\x84\x07\xc8\x30\x74\xe2\xa4\x1c\x61\xda\x68\xc1\x18\x06\x8d\xd2\x63\x12\x36\xd8\x1e\xee\x82\x7a\x05\x5f\x17\x76\x7e\x98\x11\x89\x4b\x12\x04\xc2\x70\xbd\x05\x62\x74\xb2\xfc\x20\xa4\x14\xf9\xbf\x84\x19\x5c\xc3\x9e\x1c\xb0\xfa\xbc\x53\xca\xe0\x5e\x0b\x49\x62\xbc\x21\x19\x79\xa2\x8c\xea\x97\x1b\xc1\xb5\x2c\x0c\xca\x35\x7c\x32\x4f\x8c\xaa\xa4\xe9\x5c\xc3\x5f\xa8\x47\x86\xac\xe0\xfd\x1f\xd6\xf6\xc9\xa5\xe2\x77\x79\x09\x4f\xa5\x0f\x40\x38\x20\xd7\x54\x33\x0c\x0b\x59\x51\x22\x0f\x10\xb4\x00\x9d\x20\xd8\x15\x55\xaf\x6d\x90\xa8\x84\x91\x01\xd6\x3c\x0c\x35\xa8\x53\xf7\x03\x46\x70\x05\xd5\x4c\x37\xca\xfa\xb4\xb1\x76\x7e\x2b\xe7\x3d\xb4\x69\x36\x8f\x59\x48\x34\xde\x08\x1e\xd1\x78\x05\xef\x07\x71\x2d\x87\x7e\x5f\x46\x52\xa4\x5b\xb8\xac\x8c\x5d\x2a\xbf\x7f\xe5\x05\xed\xfa\x1a\x32\xc2\x69\xb0\xbc\xb8\x11\x86\x85\xc0\x85\x3e\xa9\xe0\xcd\x7c\x68\xd6\x17\xab\x85\x2b\x60\x8c\xba\x14\x29\x30\x52\x22\xd7\x10\x94\xde\x7b\xd2\x54\x5d\x76\x5e\x70\x05\x83\xf3\x8a\xb1\x02\x2d\x1d\x1b\x05\x43\x42\xe3\xe4\x81\xd8\xa5\x32\x46\xf0\xa9\xda\x47\x9b\xbf\x69\x9c\x6c\x64\x35\xc2\xa3\x4a\x31\xa4\x26\x9d\x45\x76\x5f\x0e\xe9\xa7\x63\x22\x9f\xc5\xb5\x13\x79\x43\x54\x33\x1d\x88\x04\x8e\x79\x95\x84\x8a\x8d\xff\x2a\x53\x9d\x6e\xe0\xca\x59\xd1\xc5\x6f\x9a\x3a\x5b\x3f\x2c\x9b\xde\x74\xf8\x79\x1a\xd7\x97\x77\xeb\x99\x1e\x58\x49\xcf\xe5\x83\x65\x9b\xef\xc5\x4e\xe4\xe7\x72\x61\x27\xf2\x2f\xef\x6a\xf3\xc7\x76\x64\xcb\x9c\xf8\x03\xc4\xb5\xf4\xe3\xbb\x46\x75\xaa\x07\xdf\x2c\xa6\x53\x1d\x78\x25\xa2\xfe\x39\x3d\x25\xac\xf6\x0c\x3f\x73\x58\xfd\x1b\xc3\x77\x8a\xec\x6c\x27\xbe\x41\x70\x67\xfb\xd0\x8e\x6f\xfd\x49\xa3\x32\xb3\xcb\x2a\x19\xc3\x55\xff\x55\xb1\x15\x46\x27\x7d\x77\x42\x3c\x27\xcc\x27\xb3\x9f\xdd\x33\xaf\xad\xd4\xbc\xa0\xd5\x94\xfe\xd9\xf7\x36\xd2\x32\x04\x35\xa3\x73\xfc\x39\x62\xfa\x1b\xe6\xd8\x56\x96\x95\xc9\xb0\xa3\x6b\xb9\x31\xbb\xaa\xee\x4e\xe8\xb7\x6b\x6a\x0d\x9e\x51\xd1\x8a\xf0\x6c\x7a\x56\x7c\x6f\x52\x33\x6d\x56\xbd\x23\xa9\xbf\x1d\xba\xaa\xde\x7b\xa3\xde\x2e\xad\x63\xfd\x8c\xfa\xba\xac\x67\x13\xd9\x25\x9d\xa6\xb4\x7b\xcf\x0d\x24\x12\x8d\x40\x0a\xf1\xaa\x4b\xee\x1a\x04\x67\x2f\x60\x8a\x5b\x3b\xe5\x71\x79\x0d\x8e\x28\xb2\x50\x81\x4e\x88\x06\x22\x11\x32\x29\x0e\x34\xc4\x10\x88\x02\x2e\xf8\x4f\x9c\x32\x20\x32\x36\x29\x72\xad\x6c\x81\x41\x15\x38\xb5\xb2\x77\xbb\xe4\x98\xdb\x34\xb7\x1d\x9e\xe4\xeb\xd7\xea\xea\x4e\x3d\xad\x08\x1f\xe8\x28\xca\x06\x3f\xf1\x0e\x00\xa7\x55\xef\xfd\xed\x3d\x46\x7a\x71\x93\x8a\xfe\xde\xe6\xae\x85\x5e\xd8\xa4\x97\x02\x27\xe3\x4f\x78\x24\xa8\x33\xd9\xe8\xeb\x80\xf7\xb7\x57\xf3\xa6\x7b\xda\x13\x82\xbf\xd7\x5f\x7b\x40\x68\xb7\x74\x5d\x68\x23\x26\xbf\x35\x0c\x76\x75\x6d\x0c\x42\x27\x3d\x55\xf4\x36\xf7\x18\xe9\x83\xcd\x78\xdf\x18\xe9\x1c\x33\xd6\x01\xd7\x16\xfd\xba\x5a\x55\x75\x75\x93\x6e\xea\x5e\xf7\xa9\x61\xa3\xea\x9a\xd9\x49\x16\xf5\xa7\x2d\xfd\x8f\x8b\xe3\xff\x01\x00\x00\xff\xff\x26\xc5\x10\x4a\xb1\x13\x00\x00" +var _transactionschedulerAdminSet_config_detailsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\xcc\xe6\xb0\xb0\x01\xd7\xbe\x14\x45\x61\x34\x0d\xba\xe9\xa6\x0d\x90\x00\x8b\x78\xd3\xcb\x62\x0f\x8c\x34\x92\x08\x50\xa4\xc0\x0f\xcb\xe9\x22\xff\xbd\x90\x28\x4b\xa4\xbe\x2c\x2d\x5c\xac\x4e\x36\xf9\xf8\x66\xf8\x46\x1a\xf2\xd1\x34\x13\x52\xc3\xd5\x1d\x13\xf9\x67\x49\xb8\x22\x81\xa6\x82\xef\x83\x04\x43\xc3\x50\x5e\x2d\x16\xba\x19\x5e\x2e\xc0\x79\x52\x72\xa4\xa9\x49\xef\x79\x48\x0f\x34\x34\x84\x7d\x8c\x22\x21\xf5\x0e\x9e\xef\xb9\xfe\xe5\xe7\x9b\xb5\x8f\xa6\xbc\x40\x7f\x3c\x62\x60\x0a\xae\x51\xb0\x62\x42\xef\x13\x22\x31\xb4\xb0\x07\x9a\xd2\x21\x6c\x26\xa9\x90\x54\xbf\x5a\xe4\x13\x2a\x94\x07\xdc\xc1\xb7\x02\xfc\xeb\x69\xcd\x5b\x6b\x11\x13\xf9\x27\x6f\xdd\x58\x84\x94\x1c\xff\x24\x9a\xec\xe9\xbf\xf8\xf8\x61\x07\xcf\x77\xf4\x38\x98\xc5\x1d\xe2\xa3\x61\x9a\x66\x8c\xa2\x54\x4e\x1a\xe5\xa2\x76\x1a\x12\x23\xc3\xc3\x66\xc1\x00\x79\x40\x78\x80\x0c\x43\xa7\x42\xca\x49\xb8\x8d\x16\x8c\x61\xd0\x68\x3c\xb6\xb5\x06\xdb\xc3\xdd\xa5\xd6\xc7\x27\x4c\xc5\x81\x30\x37\xfa\x0a\xbe\x2d\xac\x04\x98\x11\x89\x4b\x12\x04\xc2\x70\xbd\x03\x62\x74\xb2\xfc\x20\xa4\x14\xf9\x3f\x84\x19\x5c\xc3\x9e\x1c\xb0\xfa\x79\xaf\x94\xc1\xbd\x16\x92\xc4\x78\x4b\x32\xf2\x42\x19\xd5\xaf\xb7\x82\x6b\x59\xe4\x24\xd7\xf0\xc9\xbc\x30\xaa\x92\x66\x72\x0d\x7f\xa1\x1e\x59\xb2\x82\xf7\x7f\xd8\xd8\xa7\x94\x8a\x67\xbb\x85\x97\x32\x07\x20\x1c\x90\x6b\xaa\x19\x86\x85\xf2\x28\x91\x07\x08\x5a\x80\x4e\x10\xec\xeb\x56\xbf\xf8\x20\x51\x09\x23\x03\xac\x79\x18\x6a\x50\xa7\xe9\x27\x8c\xe0\x1a\xaa\x9d\x6e\x94\xcd\x69\x63\xe3\xfc\x56\xee\x7b\xe8\x8b\xda\x3c\x67\x21\xd1\x78\x2b\x78\x44\xe3\x15\xbc\x1f\xc4\xb5\x12\xfa\x7d\x19\x49\x91\xee\x60\x5b\x05\xdb\x2a\x7f\x7e\xe5\x15\xea\xe6\x06\x32\xc2\x69\xb0\xbc\xba\x15\x86\x85\xc0\x85\x3e\xa9\xe0\xed\x7c\x68\xd7\x57\xab\x85\x2b\x60\x8c\xba\x14\x29\x30\x52\x22\xd7\x10\x94\xd9\x7b\xd2\x54\x53\x76\x5f\x70\x0d\x83\xfb\x8a\xb1\x02\x2d\x9d\x18\x05\x43\x42\xe3\xe4\x89\xd8\x57\x65\x8c\xe0\xf4\xe1\x6e\xfe\xa6\x71\xb2\x91\xd5\x0a\x8f\x2a\xc5\x90\x9a\x74\x16\xd9\x63\xb9\xa4\x9f\x8e\x89\x7c\x16\xd7\x83\xc8\x1b\xa2\x9a\xe9\x40\x24\x70\xcc\xab\x0e\x55\xf4\x86\xb3\x4c\x75\xfb\x82\x6b\xe7\x8d\x2e\x9e\x69\xea\xec\xfc\xb2\x6c\x7a\x7b\xe5\x97\x69\x5c\x5f\xdf\xad\x67\x66\x60\x25\xbd\x54\x0e\x96\x6d\x7e\x16\x0f\x22\xbf\x54\x0a\x0f\x22\xff\xfa\xae\x0e\xff\xd6\x29\xad\xdf\xf9\xa7\x54\xd7\x9e\x0a\x17\xae\xae\x7f\x06\xfd\xa0\xf2\xce\x4e\xe2\x7f\xa8\xef\xec\x1c\x06\x0b\x4c\xa3\xb2\x11\xc8\xea\xdb\x85\xeb\xfe\x6b\x47\xab\x8c\xce\xd7\xde\x29\xf1\x9c\x32\x9f\xc2\x7e\x71\x5b\x64\x5b\xa9\x79\x45\xab\x29\xfd\x56\xf9\x7d\xa4\x65\x09\x6a\x46\xa7\x5b\x3a\x62\x5a\x41\x87\xa5\x4d\x9b\x42\x39\xea\xfa\x15\xec\xca\xfb\xe8\xad\xfa\x7e\x85\x9d\xe8\x17\x14\xd9\x65\xbd\x98\xce\x2e\xe9\x4c\xa9\xb7\x5b\x08\x24\x12\x8d\x40\x0a\xf1\xaa\x63\x7c\x0d\x82\xb3\x57\x30\xc5\xbd\x84\xf2\xb8\x3c\xe8\x23\x8a\x2c\x54\xa0\x13\xa2\x81\x48\x84\x4c\x8a\x03\x0d\x31\x04\xa2\x80\x0b\xfe\x13\xa7\x0c\x88\x8c\x4d\x8a\x5c\x2b\x7b\x85\xa2\x0a\x1c\xab\xe0\x9d\x9f\x1c\x73\xfb\x65\xee\x86\x37\x79\xfe\xe2\x50\xdd\x1a\xa6\x79\x90\x81\x89\xe2\x62\xe4\xf7\x8a\x01\xe0\x34\xf3\xd2\x3f\xde\x13\xa4\x17\x37\xc9\xf3\xf4\x0e\x77\x23\xf4\xc2\x26\x19\x25\xa7\x49\x4d\xf3\x48\xfd\xe3\xdd\x94\xb2\x2e\x68\x6a\x0b\x1e\xf5\x5f\xde\xdf\xde\x82\x36\xd3\xd3\x4c\x9a\xdf\x48\xce\x59\xb4\xf6\x48\x37\x85\x36\x62\xb2\x9b\x1b\x9c\xea\xc6\x18\x84\x4e\x32\x83\xbd\xc3\x3d\x41\xfa\x60\x33\x1c\xe4\xc8\xe4\x58\xb0\x33\x7b\x6a\xbb\x50\xff\x7f\x97\x38\x46\xfd\xd9\x83\x2c\x1b\xb3\xe4\xfb\x1c\x55\xf9\x9c\xa6\x39\xd6\xb3\xae\xf5\xdb\xa8\xda\xc3\x38\xad\xad\xfe\x69\xd9\xdf\x16\x6f\xff\x05\x00\x00\xff\xff\xd9\xf2\x1e\xef\x5e\x11\x00\x00" func transactionschedulerAdminSet_config_detailsCdcBytes() ([]byte, error) { return bindataRead( @@ -6469,7 +6469,7 @@ func transactionschedulerAdminSet_config_detailsCdc() (*asset, error) { } info := bindataFileInfo{name: "transactionScheduler/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{0x9e, 0x5a, 0xca, 0x67, 0x33, 0xc, 0x17, 0xe7, 0x73, 0x8b, 0x3f, 0x41, 0x64, 0xa5, 0x5c, 0x62, 0xeb, 0x35, 0xb, 0xe, 0x6, 0x4d, 0xf9, 0xd7, 0x60, 0xd, 0xc4, 0xc1, 0xd5, 0x2d, 0x7a, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x67, 0x1, 0x64, 0xbc, 0x87, 0x25, 0x19, 0x90, 0x9d, 0x4e, 0xda, 0x95, 0x99, 0xd3, 0xb, 0x9, 0xc1, 0x21, 0x2f, 0x48, 0xb5, 0xf2, 0x65, 0xdf, 0xc7, 0xff, 0x62, 0xac, 0x9e, 0xf, 0x4a}} return a, nil } @@ -6553,7 +6553,7 @@ func transactionschedulerScriptsGet_canceled_transactionsCdc() (*asset, error) { return a, nil } -var _transactionschedulerScriptsGet_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x50\x72\xcb\xc9\x2f\x0f\x29\x4a\xcc\x2b\x4e\x4c\x2e\xc9\xcc\xcf\x0b\x4e\xce\x48\x4d\x29\xcd\x49\x2d\x52\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\xc6\xa5\x47\x0f\xce\x72\xce\xcf\x4b\xcb\x4c\xaf\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x53\xc0\xa9\x2d\x3d\xb5\x04\xa2\x41\x43\x93\xab\x96\x0b\x10\x00\x00\xff\xff\x07\x8b\x23\x23\x9a\x00\x00\x00" +var _transactionschedulerScriptsGet_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcb\x41\x0a\xc2\x30\x10\x46\xe1\x7d\x4e\xf1\xd3\x55\xb2\xf1\x00\x82\x2b\xc1\x0b\xe8\x05\xc2\x38\xad\x81\xe9\x44\x26\x13\x5c\x94\xde\x5d\xa8\xd2\x5d\x77\x8f\x07\x5f\x99\xdf\xd5\x1c\xc3\x4d\xea\xe7\x61\x59\x5b\x26\x2f\x55\xef\xf4\xe2\x67\x17\xb6\x21\x84\x4c\xc4\xad\xc5\x2c\x92\x30\x76\xc5\x9c\x8b\xc6\x74\xc6\x72\x64\x4e\x7b\x5d\xab\x8e\x65\x5a\xb1\x04\x00\x10\x76\xd0\x76\x70\xc1\x21\x9e\xd8\x7f\x2c\xa6\x4d\x19\x7b\x37\xfd\xc3\xb0\x86\x6f\x00\x00\x00\xff\xff\x79\xa3\x41\x79\xb2\x00\x00\x00" func transactionschedulerScriptsGet_configCdcBytes() ([]byte, error) { return bindataRead( @@ -6569,7 +6569,7 @@ func transactionschedulerScriptsGet_configCdc() (*asset, error) { } info := bindataFileInfo{name: "transactionScheduler/scripts/get_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x18, 0xb2, 0x51, 0x67, 0xa4, 0x59, 0x90, 0x29, 0xea, 0x3c, 0x4d, 0x90, 0x71, 0xe3, 0xf9, 0x58, 0x1, 0xce, 0x17, 0x11, 0x36, 0x48, 0x96, 0x53, 0xcc, 0x7e, 0x54, 0xe3, 0x6f, 0x89, 0x97}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0xa0, 0x32, 0x43, 0xfd, 0xaf, 0x23, 0xc6, 0x74, 0x85, 0x19, 0x7b, 0x56, 0x4b, 0x47, 0x7a, 0x1a, 0xfe, 0x7d, 0x73, 0x76, 0x98, 0x9a, 0xfe, 0x7, 0x72, 0x9b, 0x7d, 0x6b, 0xca, 0x4f, 0xab}} return a, nil } diff --git a/tests/scheduled_transaction_test_helpers.cdc b/tests/scheduled_transaction_test_helpers.cdc index 360ae92c..018c375e 100644 --- a/tests/scheduled_transaction_test_helpers.cdc +++ b/tests/scheduled_transaction_test_helpers.cdc @@ -15,17 +15,21 @@ access(all) let statusScheduled = UInt8(1) access(all) let statusExecuted = UInt8(2) access(all) let statusCanceled = UInt8(3) +access(all) let slotTotalEffortLimit: UInt64 = 17500 + access(all) let basicEffort: UInt64 = 1000 access(all) let mediumEffort: UInt64 = 5000 access(all) let maxEffort: UInt64 = 9999 -access(all) let lowPriorityMaxEffort: UInt64 = 5000 -access(all) let mediumPriorityMaxEffort: UInt64 = 15000 -access(all) let highPriorityMaxEffort: UInt64 = 30000 +access(all) let minEffort: UInt64 = 100 + +access(all) let lowPriorityMaxEffort: UInt64 = 2500 +access(all) let mediumPriorityMaxEffort: UInt64 = 7500 +access(all) let highPriorityMaxEffort: UInt64 = 15000 -access(all) let highPriorityEffortReserve: UInt64 = 20000 -access(all) let mediumPriorityEffortReserve: UInt64 = 5000 -access(all) let sharedEffortLimit: UInt64 = 10000 +access(all) let highPriorityEffortReserve: UInt64 = 10000 +access(all) let mediumPriorityEffortReserve: UInt64 = 2500 +access(all) let sharedEffortLimit: UInt64 = 5000 access(all) let canceledTransactionsLimit: UInt = 1000 @@ -183,13 +187,14 @@ access(all) fun setConfigDetails( minimumExecutionEffort: UInt64?, slotSharedEffortLimit: UInt64?, priorityEffortReserve: {UInt8: UInt64}?, - priorityEffortLimit: {UInt8: UInt64}?, + lowPriorityEffortLimit: UInt64?, maxDataSizeMB: UFix64?, priorityFeeMultipliers: {UInt8: UFix64}?, refundMultiplier: UFix64?, canceledTransactionsLimit: UInt?, collectionEffortLimit: UInt64?, collectionTransactionsLimit: Int?, + txRemovalLimit: UInt?, shouldFail: String? ) { let setConfigDetailsCode = Test.readFile("../transactions/transactionScheduler/admin/set_config_details.cdc") @@ -201,13 +206,14 @@ access(all) fun setConfigDetails( minimumExecutionEffort, slotSharedEffortLimit, priorityEffortReserve, - priorityEffortLimit, + lowPriorityEffortLimit, maxDataSizeMB, priorityFeeMultipliers, refundMultiplier, canceledTransactionsLimit, collectionEffortLimit, - collectionTransactionsLimit] + collectionTransactionsLimit, + txRemovalLimit] ) let setConfigDetailsResult = Test.executeTransaction(setConfigDetailsTx) if let error = shouldFail { @@ -240,10 +246,12 @@ access(all) fun setFeeParameters( } access(all) fun getConfigDetails(): {FlowTransactionScheduler.SchedulerConfig} { - var config = _executeScript( + var configResult = _executeScript( "../transactions/transactionScheduler/scripts/get_config.cdc", [] - ).returnValue! as! {FlowTransactionScheduler.SchedulerConfig} + ) + Test.expect(configResult, Test.beSucceeded()) + var config = configResult.returnValue! as! {FlowTransactionScheduler.SchedulerConfig} return config } diff --git a/tests/transactionScheduler_manager_test.cdc b/tests/transactionScheduler_manager_test.cdc index c92c0e89..8329b173 100644 --- a/tests/transactionScheduler_manager_test.cdc +++ b/tests/transactionScheduler_manager_test.cdc @@ -56,13 +56,14 @@ access(all) fun testManagerScheduleByHandler() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: 2, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: nil ) diff --git a/tests/transactionScheduler_misc_test.cdc b/tests/transactionScheduler_misc_test.cdc index b766486d..91aa7629 100644 --- a/tests/transactionScheduler_misc_test.cdc +++ b/tests/transactionScheduler_misc_test.cdc @@ -52,13 +52,14 @@ access(all) fun testScheduledTransactionCancellationLimits() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: 10, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: nil ) @@ -281,32 +282,21 @@ access(all) fun testScheduledTransactionEstimateReturnNil() { scheduleTransaction( timestamp: timeInFuture, fee: feeAmount, - effort: maxEffort, + effort: sharedEffortLimit, priority: highPriority, data: testData, testName: "Estimate Return Nil: Scheduled 2", failWithErr: nil ) - // Schedule a high priority transaction - scheduleTransaction( - timestamp: timeInFuture, - fee: feeAmount, - effort: maxEffort, - priority: highPriority, - data: testData, - testName: "Estimate Return Nil: Scheduled 3", - failWithErr: nil - ) - let estimate = getEstimate( data: testData, timestamp: timeInFuture, priority: highPriority, - executionEffort: maxEffort + executionEffort: sharedEffortLimit ) Test.assertEqual(nil, estimate.flowFee) Test.assertEqual(nil, estimate.timestamp) - Test.assertEqual("Invalid execution effort: \(maxEffort) is greater than the priority's available effort for the requested timestamp.", estimate.error!) + Test.assertEqual("Invalid execution effort: \(sharedEffortLimit) is greater than the priority's available effort for the requested timestamp.", estimate.error!) } diff --git a/tests/transactionScheduler_schedule_test.cdc b/tests/transactionScheduler_schedule_test.cdc index 40d06fc3..6fa2d938 100644 --- a/tests/transactionScheduler_schedule_test.cdc +++ b/tests/transactionScheduler_schedule_test.cdc @@ -207,28 +207,28 @@ access(all) fun testScheduleAndEffortUsed() { // Common transactions that we will use multiple times in certain test cases - let lowTransactionWith300Effort = ScheduledTransaction( + let lowTransactionWith150Effort = ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 300, + executionEffort: 150, data: testData, fees: feeAmount, failWithErr: nil ) - let mediumTransactionWith4000Effort = ScheduledTransaction( + let mediumTransactionWith2000Effort = ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 4000, + executionEffort: 2000, data: testData, fees: feeAmount, failWithErr: nil ) - let highTransactionWith8000Effort = ScheduledTransaction( + let highTransactionWith4000Effort = ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -253,7 +253,7 @@ access(all) fun testScheduleAndEffortUsed() { executionEffort: 0, data: testData, fees: feeAmount, - failWithErr: "Invalid execution effort: 0 is less than the minimum execution effort of 10" + failWithErr: "Invalid execution effort: 0 is less than the minimum execution effort of 100" ) ], transactionsIndicesToCancel: [], @@ -275,7 +275,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 10, + executionEffort: 100, data: testData, fees: feeAmount, failWithErr: nil @@ -286,7 +286,7 @@ access(all) fun testScheduleAndEffortUsed() { futureDelta: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: lowPriorityMaxEffort - 10 + lowPriority: lowPriorityMaxEffort - 100 } }, expectedPendingQueues: { @@ -308,7 +308,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 10, + executionEffort: minEffort, data: testData, fees: feeAmount, failWithErr: nil @@ -324,7 +324,7 @@ access(all) fun testScheduleAndEffortUsed() { futureDelta + 1.0: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: lowPriorityMaxEffort - 10 + lowPriority: lowPriorityMaxEffort - minEffort } }, expectedPendingQueues: { @@ -342,7 +342,7 @@ access(all) fun testScheduleAndEffortUsed() { executionEffort: lowPriorityMaxEffort + 1, data: testData, fees: feeAmount, - failWithErr: "Invalid execution effort: 5001 is greater than the priority's max effort of 5000" + failWithErr: "Invalid execution effort: \(lowPriorityMaxEffort + 1) is greater than the priority's max effort of \(lowPriorityMaxEffort)" ) ], transactionsIndicesToCancel: [], @@ -361,26 +361,26 @@ access(all) fun testScheduleAndEffortUsed() { ScheduleAndEffortUsedTestCase( name: "Low Priority: Many low priority transactions scheduled for same timestamp", transactions: [ - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, - lowTransactionWith300Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, + lowTransactionWith150Effort, ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 300, + executionEffort: 150, data: testData, fees: feeAmount, failWithErr: nil @@ -391,12 +391,12 @@ access(all) fun testScheduleAndEffortUsed() { futureDelta: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: 200 + lowPriority: 100 }, futureDelta + 1.0: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: 4700 + lowPriority: lowPriorityMaxEffort - 150 } }, expectedPendingQueues: { @@ -413,7 +413,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 10, + executionEffort: minEffort, data: testData, fees: feeAmount, failWithErr: nil @@ -423,7 +423,7 @@ access(all) fun testScheduleAndEffortUsed() { expectedAvailableEfforts: { futureDelta: { highPriority: highPriorityMaxEffort, - mediumPriority: mediumPriorityMaxEffort - 10, + mediumPriority: mediumPriorityMaxEffort - minEffort, lowPriority: lowPriorityMaxEffort } }, @@ -438,7 +438,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: maxEffort, + executionEffort: mediumPriorityMaxEffort, data: testData, fees: feeAmount, failWithErr: nil @@ -446,7 +446,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: maxEffort, + executionEffort: mediumPriorityMaxEffort, data: testData, fees: feeAmount, failWithErr: nil @@ -455,13 +455,13 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: highPriorityMaxEffort - 4999, - mediumPriority: mediumPriorityMaxEffort - maxEffort, + highPriority: highPriorityMaxEffort - sharedEffortLimit, + mediumPriority: 0, lowPriority: lowPriorityMaxEffort }, futureDelta + 1.0: { - highPriority: highPriorityMaxEffort - 4999, - mediumPriority: mediumPriorityMaxEffort - maxEffort, + highPriority: highPriorityMaxEffort - sharedEffortLimit, + mediumPriority: 0, lowPriority: lowPriorityMaxEffort } }, @@ -480,7 +480,7 @@ access(all) fun testScheduleAndEffortUsed() { executionEffort: maxEffort + 1, data: testData, fees: feeAmount, - failWithErr: "Invalid execution effort: \(maxEffort + 1) is greater than the maximum transaction effort of 9999" + failWithErr: "Invalid execution effort: \(maxEffort + 1) is greater than the maximum transaction effort of \(maxEffort)" ) ], transactionsIndicesToCancel: [], @@ -501,37 +501,37 @@ access(all) fun testScheduleAndEffortUsed() { ScheduleAndEffortUsedTestCase( name: "Medium Priority: Many medium priority transactions scheduled for same timestamp", transactions: [ - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort, - mediumTransactionWith4000Effort + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort, + mediumTransactionWith2000Effort ], transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: highPriorityMaxEffort-7000, - mediumPriority: 3000, + highPriority: highPriorityMaxEffort - 3500, + mediumPriority: 1500, lowPriority: lowPriorityMaxEffort }, futureDelta + 1.0: { - highPriority: highPriorityMaxEffort-7000, - mediumPriority: 3000, + highPriority: highPriorityMaxEffort - 3500, + mediumPriority: 1500, lowPriority: lowPriorityMaxEffort }, futureDelta + 2.0: { - highPriority: highPriorityMaxEffort-7000, - mediumPriority: 3000, + highPriority: highPriorityMaxEffort - 3500, + mediumPriority: 1500, lowPriority: lowPriorityMaxEffort }, futureDelta + 3.0: { highPriority: highPriorityMaxEffort, - mediumPriority: 11000, + mediumPriority: mediumPriorityMaxEffort - 2000, lowPriority: lowPriorityMaxEffort } }, @@ -551,7 +551,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 10, + executionEffort: minEffort, data: testData, fees: feeAmount, failWithErr: nil @@ -560,7 +560,7 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: highPriorityMaxEffort - 10, + highPriority: highPriorityMaxEffort - minEffort, mediumPriority: mediumPriorityMaxEffort, lowPriority: lowPriorityMaxEffort } @@ -573,22 +573,6 @@ access(all) fun testScheduleAndEffortUsed() { ScheduleAndEffortUsedTestCase( name: "High priority: Max effort fits in slot and uses max effort. Other high priority transactions fail in the same slot", transactions: [ - ScheduledTransaction( - requestedDelta: futureDelta, - priority: highPriority, - executionEffort: maxEffort, - data: testData, - fees: feeAmount, - failWithErr: nil - ), - ScheduledTransaction( - requestedDelta: futureDelta, - priority: highPriority, - executionEffort: maxEffort, - data: testData, - fees: feeAmount, - failWithErr: nil - ), ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, @@ -609,8 +593,8 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: highPriorityMaxEffort - 3*maxEffort, - mediumPriority: mediumPriorityEffortReserve + 3, + highPriority: highPriorityMaxEffort - maxEffort, + mediumPriority: mediumPriorityMaxEffort, lowPriority: lowPriorityMaxEffort }, futureDelta + 1.0: { @@ -620,8 +604,8 @@ access(all) fun testScheduleAndEffortUsed() { } }, expectedPendingQueues: { - futureDelta: [1,2,3], - futureDelta + 1.0: [1,2,3] + futureDelta: [1], + futureDelta + 1.0: [1] }, expectedPendingQueueAfterExecution: [] ), @@ -653,13 +637,13 @@ access(all) fun testScheduleAndEffortUsed() { ScheduleAndEffortUsedTestCase( name: "High Priority: Many high priority transactions scheduled for the same timestamp", transactions: [ - highTransactionWith8000Effort, - highTransactionWith8000Effort, - highTransactionWith8000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: highPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -668,12 +652,12 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: 6000, - mediumPriority: 11000, + highPriority: highPriorityMaxEffort - 12000, + mediumPriority: 5500, lowPriority: lowPriorityMaxEffort }, futureDelta + 1.0: { - highPriority: highPriorityMaxEffort - 8000, + highPriority: highPriorityMaxEffort - 4000, mediumPriority: mediumPriorityMaxEffort, lowPriority: lowPriorityMaxEffort } @@ -700,23 +684,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9000, - data: testData, - fees: feeAmount, - failWithErr: nil - ), - ScheduledTransaction( - requestedDelta: futureDelta, - priority: highPriority, - executionEffort: 9000, - data: testData, - fees: feeAmount, - failWithErr: nil - ), - ScheduledTransaction( - requestedDelta: futureDelta, - priority: highPriority, - executionEffort: 3000, + executionEffort: 6000, data: testData, fees: feeAmount, failWithErr: nil @@ -768,8 +736,8 @@ access(all) fun testScheduleAndEffortUsed() { } }, expectedPendingQueues: { - futureDelta: [1,2,3,4,5], - futureDelta + 1.0: [1,2,3,4,5,6,7] + futureDelta: [1,2,3], + futureDelta + 1.0: [1,2,3,4,5] }, expectedPendingQueueAfterExecution: [] ), @@ -779,15 +747,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 9000, - data: testData, - fees: feeAmount, - failWithErr: nil - ), - ScheduledTransaction( - requestedDelta: futureDelta, - priority: mediumPriority, - executionEffort: 6000, + executionEffort: 7500, data: testData, fees: feeAmount, failWithErr: nil @@ -803,23 +763,15 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9000, + executionEffort: 1001, data: testData, fees: feeAmount, - failWithErr: nil + failWithErr: "Invalid execution effort: 1001 is greater than the priority's available effort for the requested timestamp." ), ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 2001, - data: testData, - fees: feeAmount, - failWithErr: "Invalid execution effort: 2001 is greater than the priority's available effort for the requested timestamp." - ), - ScheduledTransaction( - requestedDelta: futureDelta, - priority: highPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil @@ -834,21 +786,21 @@ access(all) fun testScheduleAndEffortUsed() { } }, expectedPendingQueues: { - futureDelta: [1,2,3,4,5], - futureDelta + 1.0: [1,2,3,4,5] + futureDelta: [1,2,3], + futureDelta + 1.0: [1,2,3] }, expectedPendingQueueAfterExecution: [] ), ScheduleAndEffortUsedTestCase( name: "Mixed priorities: High and medium use most of shared limit, low priority fits in remaining but doesn't use the high or medium effort", transactions: [ - highTransactionWith8000Effort, - highTransactionWith8000Effort, - highTransactionWith8000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: mediumPriorityEffortReserve + 4000, + executionEffort: mediumPriorityEffortReserve + 2000, data: testData, fees: feeAmount, failWithErr: nil @@ -856,7 +808,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 2001, + executionEffort: 1001, data: testData, fees: feeAmount, failWithErr: nil @@ -864,7 +816,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 2001, + executionEffort: 1001, data: testData, fees: feeAmount, failWithErr: nil @@ -872,7 +824,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil @@ -881,14 +833,14 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: 2000, - mediumPriority: 2000, + highPriority: 1000, + mediumPriority: 1000, lowPriority: 0 }, futureDelta + 1.0: { highPriority: highPriorityMaxEffort, - mediumPriority: mediumPriorityMaxEffort-2001, - lowPriority: lowPriorityMaxEffort - 2001 + mediumPriority: mediumPriorityMaxEffort-1001, + lowPriority: lowPriorityMaxEffort - 1001 } }, expectedPendingQueues: { @@ -913,7 +865,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9000, + executionEffort: 4500, data: testData, fees: feeAmount, failWithErr: nil @@ -921,7 +873,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9000, + executionEffort: 4500, data: testData, fees: feeAmount, failWithErr: nil @@ -929,7 +881,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9000, + executionEffort: 4500, data: testData, fees: feeAmount, failWithErr: nil @@ -937,7 +889,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -968,7 +920,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil @@ -976,18 +928,18 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil ), - highTransactionWith8000Effort, - highTransactionWith8000Effort, - highTransactionWith8000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 6000, + executionEffort: 3000, data: testData, fees: feeAmount, failWithErr: nil @@ -995,7 +947,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil @@ -1005,13 +957,13 @@ access(all) fun testScheduleAndEffortUsed() { expectedAvailableEfforts: { futureDelta: { highPriority: 0, - mediumPriority: 3000, - lowPriority: 1000 + mediumPriority: 1500, + lowPriority: 500 }, futureDelta + 1.0: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: 3000 + lowPriority: 1500 } }, expectedPendingQueues: { @@ -1023,10 +975,11 @@ access(all) fun testScheduleAndEffortUsed() { ScheduleAndEffortUsedTestCase( name: "Low priority gets rescheduled: Low Priorities get pushed to multiple slots", transactions: [ + // Schedule two low priority transactions for the same timestamp ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 3000, + executionEffort: 1500, data: testData, fees: feeAmount, failWithErr: nil @@ -1034,15 +987,16 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 2000, + executionEffort: 1000, data: testData, fees: feeAmount, failWithErr: nil ), + // Schedule medium transactions to fill up the medium slots and shared limit ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -1050,15 +1004,16 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 7000, + executionEffort: 3500, data: testData, fees: feeAmount, failWithErr: nil ), + // Schedule high transactions for the next timestamp so that the low priority transactions get pushed to the next timestamp ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: highPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -1066,7 +1021,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: highPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -1074,7 +1029,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: highPriority, - executionEffort: 8000, + executionEffort: 4000, data: testData, fees: feeAmount, failWithErr: nil @@ -1082,15 +1037,16 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: highPriority, - executionEffort: 6000, + executionEffort: 3000, data: testData, fees: feeAmount, failWithErr: nil ), + // Schedule medium transaction for the next timestamp to fill up the medium slots so that the low priority transactions get pushed to the next timestamp ScheduledTransaction( requestedDelta: futureDelta + 1.0, priority: mediumPriority, - executionEffort: mediumPriorityEffortReserve - 2000, + executionEffort: mediumPriorityEffortReserve - 1000, data: testData, fees: feeAmount, failWithErr: nil @@ -1098,7 +1054,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9500, + executionEffort: 4750, data: testData, fees: feeAmount, failWithErr: nil @@ -1107,7 +1063,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 9500, + executionEffort: 4750, data: testData, fees: feeAmount, failWithErr: nil @@ -1116,19 +1072,19 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: 1000, + highPriority: 500, mediumPriority: 0, - lowPriority: 1000 + lowPriority: 500 }, futureDelta + 1.0: { highPriority: 0, - mediumPriority: 2000, + mediumPriority: 1000, lowPriority: 0 }, futureDelta + 2.0: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: 2000 + lowPriority: 1000 } }, expectedPendingQueues: { @@ -1145,7 +1101,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: lowPriority, - executionEffort: 3000, + executionEffort: 1500, data: "cancel", fees: feeAmount, failWithErr: nil @@ -1156,7 +1112,7 @@ access(all) fun testScheduleAndEffortUsed() { futureDelta: { highPriority: highPriorityMaxEffort, mediumPriority: mediumPriorityMaxEffort, - lowPriority: lowPriorityMaxEffort - 3000 + lowPriority: lowPriorityMaxEffort - 1500 } }, expectedPendingQueues: { @@ -1366,13 +1322,13 @@ access(all) fun testScheduleAndEffortUsed() { fees: feeAmount, failWithErr: nil ), - highTransactionWith8000Effort, - highTransactionWith8000Effort, - highTransactionWith8000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, + highTransactionWith4000Effort, ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 6000, + executionEffort: 3000, data: testData, fees: feeAmount, failWithErr: nil @@ -1380,7 +1336,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: lowPriorityMaxEffort, + executionEffort: mediumPriorityEffortReserve, data: testData, fees: feeAmount, failWithErr: nil @@ -1411,7 +1367,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: mediumPriority, - executionEffort: 2000, + executionEffort: 1000, data: "fail", fees: feeAmount, failWithErr: nil @@ -1421,7 +1377,7 @@ access(all) fun testScheduleAndEffortUsed() { expectedAvailableEfforts: { futureDelta: { highPriority: highPriorityMaxEffort, - mediumPriority: mediumPriorityMaxEffort - 2000, + mediumPriority: mediumPriorityMaxEffort - 1000, lowPriority: lowPriorityMaxEffort } }, @@ -1436,7 +1392,7 @@ access(all) fun testScheduleAndEffortUsed() { ScheduledTransaction( requestedDelta: futureDelta, priority: highPriority, - executionEffort: 3000, + executionEffort: 1500, data: "schedule", fees: feeAmount, failWithErr: nil @@ -1445,7 +1401,7 @@ access(all) fun testScheduleAndEffortUsed() { transactionsIndicesToCancel: [], expectedAvailableEfforts: { futureDelta: { - highPriority: highPriorityMaxEffort - 3000, + highPriority: highPriorityMaxEffort - 1500, mediumPriority: mediumPriorityMaxEffort, lowPriority: lowPriorityMaxEffort } @@ -1460,11 +1416,11 @@ access(all) fun testScheduleAndEffortUsed() { /// Test case to test transactions over collection effort limit /// var transactionsOverCollectionEffortLimit: [ScheduledTransaction] = [] - while UInt64(transactionsOverCollectionEffortLimit.length)*maxEffort <= collectionEffortLimit + maxEffort*2 { + while UInt64(transactionsOverCollectionEffortLimit.length)*mediumPriorityMaxEffort <= collectionEffortLimit + mediumPriorityMaxEffort*2 { transactionsOverCollectionEffortLimit.append(ScheduledTransaction( requestedDelta: futureDelta+UFix64(transactionsOverCollectionEffortLimit.length), priority: mediumPriority, - executionEffort: maxEffort, + executionEffort: mediumPriorityMaxEffort, data: testData, fees: feeAmount, failWithErr: nil diff --git a/tests/transactionScheduler_test.cdc b/tests/transactionScheduler_test.cdc index 7bf452ef..e6479770 100644 --- a/tests/transactionScheduler_test.cdc +++ b/tests/transactionScheduler_test.cdc @@ -82,13 +82,29 @@ access(all) fun testGetSizeOfData() { size = getSizeOfData(data: testData) Test.assertEqual(0.00003000 as UFix64, size) - // let largeArray: [Int] = [] - // while largeArray.length < 10000 { - // largeArray.append(1) - // } + size = getSizeOfData(data: 0x0000000000000001) + Test.assertEqual(0.00000000 as UFix64, size) + + let largeArray: [Int] = [] + while largeArray.length < 10000 { + largeArray.append(1) + } - // size = getSizeOfData(data: largeArray) - // Test.assertEqual(0.05286100 as UFix64, size) + size = getSizeOfData(data: largeArray) + Test.assertEqual(0.05337100 as UFix64, size) + + // let currentTime = getCurrentBlock().timestamp + // let futureTime = currentTime + 100.0 + + // let estimate = FlowTransactionScheduler.estimate( + // data: testData, + // timestamp: futureTime, + // priority: FlowTransactionScheduler.Priority.Medium, + // executionEffort: 1000 + // ) + + // size = getSizeOfData(data: estimate) + // Test.assertEqual(0.00021000 as UFix64, size) } /** --------------------------------------------------------------------------------- @@ -190,7 +206,7 @@ access(all) fun testEstimate() { data: nil, expectedFee: nil, expectedTimestamp: nil, - expectedError: "Invalid execution effort: 50000 is greater than the maximum transaction effort of 9999" + expectedError: "Invalid execution effort: 50000 is greater than the maximum transaction effort of \(maxEffort)" ), EstimateTestCase( name: "Excessive medium priority effort returns error", @@ -200,17 +216,17 @@ access(all) fun testEstimate() { data: nil, expectedFee: nil, expectedTimestamp: nil, - expectedError: "Invalid execution effort: 10000 is greater than the maximum transaction effort of 9999" + expectedError: "Invalid execution effort: 10000 is greater than the maximum transaction effort of \(maxEffort)" ), EstimateTestCase( name: "Excessive low priority effort returns error", timestamp: futureTime + 10.0, priority: FlowTransactionScheduler.Priority.Low, - executionEffort: 5001, + executionEffort: lowPriorityMaxEffort + 1, data: nil, expectedFee: nil, expectedTimestamp: nil, - expectedError: "Invalid execution effort: 5001 is greater than the priority's max effort of 5000" + expectedError: "Invalid execution effort: \(lowPriorityMaxEffort + 1) is greater than the priority's max effort of \(lowPriorityMaxEffort)" ), // Valid cases - should return EstimatedScheduledTransaction with no error @@ -228,9 +244,9 @@ access(all) fun testEstimate() { name: "Medium priority minimum effort", timestamp: futureTime + 4.0, priority: FlowTransactionScheduler.Priority.Medium, - executionEffort: 10, + executionEffort: minEffort, data: nil, - expectedFee: 0.00006245, + expectedFee: 0.00017495, expectedTimestamp: futureTime + 4.0, expectedError: nil ), @@ -327,13 +343,14 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: 1.1, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid refund multiplier: The multiplier must be between 0.0 and 1.0 but got 1.10000000" ) @@ -342,13 +359,14 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 10.0, lowPriority: 0.9}, refundMultiplier: nil, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid priority fee multiplier: Low priority multiplier must be greater than or equal to 1.0 but got 0.90000000" ) @@ -357,13 +375,14 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 3.0, lowPriority: 4.0}, refundMultiplier: nil, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid priority fee multiplier: Medium priority multiplier must be greater than or equal to 4.00000000 but got 3.00000000" ) @@ -372,58 +391,30 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: {highPriority: 5.0, mediumPriority: 6.0, lowPriority: 4.0}, refundMultiplier: nil, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid priority fee multiplier: High priority multiplier must be greater than or equal to 6.00000000 but got 5.00000000" ) - setConfigDetails( - maximumIndividualEffort: nil, - minimumExecutionEffort: nil, - slotSharedEffortLimit: nil, - priorityEffortReserve: {highPriority: 40000, mediumPriority: 30000, lowPriority: 10000}, - priorityEffortLimit: {highPriority: 30000, mediumPriority: 30000, lowPriority: 10000}, - maxDataSizeMB: nil, - priorityFeeMultipliers: nil, - refundMultiplier: nil, - canceledTransactionsLimit: nil, - collectionEffortLimit: nil, - collectionTransactionsLimit: nil, - shouldFail: "Invalid priority effort limit: High priority effort limit must be greater than or equal to the priority effort reserve of 40000" - ) - - setConfigDetails( - maximumIndividualEffort: nil, - minimumExecutionEffort: nil, - slotSharedEffortLimit: nil, - priorityEffortReserve: {highPriority: 30000, mediumPriority: 40000, lowPriority: 10000}, - priorityEffortLimit: {highPriority: 30000, mediumPriority: 30000, lowPriority: 10000}, - maxDataSizeMB: nil, - priorityFeeMultipliers: nil, - refundMultiplier: nil, - canceledTransactionsLimit: nil, - collectionEffortLimit: nil, - collectionTransactionsLimit: nil, - shouldFail: "Invalid priority effort limit: Medium priority effort limit must be greater than or equal to the priority effort reserve of 40000" - ) - setConfigDetails( maximumIndividualEffort: nil, minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: {highPriority: 30000, mediumPriority: 30000, lowPriority: 20000}, - priorityEffortLimit: {highPriority: 30000, mediumPriority: 30000, lowPriority: 10000}, + lowPriorityEffortLimit: 10000, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid priority effort limit: Low priority effort limit must be greater than or equal to the priority effort reserve of 20000" ) @@ -432,14 +423,15 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: nil, - collectionEffortLimit: 30000 as UInt64, + collectionEffortLimit: slotTotalEffortLimit - 1, collectionTransactionsLimit: nil, - shouldFail: "Invalid collection effort limit: Collection effort limit must be greater than 35000 but got 30000" + txRemovalLimit: nil, + shouldFail: "Invalid collection effort limit: Collection effort limit must be greater than \(slotTotalEffortLimit) but got \(slotTotalEffortLimit - 1)" ) setConfigDetails( @@ -447,13 +439,14 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: nil, collectionEffortLimit: nil, collectionTransactionsLimit: -1, + txRemovalLimit: nil, shouldFail: "Invalid collection transactions limit: Collection transactions limit must be greater than or equal to 0 but got -1" ) @@ -462,13 +455,14 @@ access(all) fun testConfigDetails() { minimumExecutionEffort: nil, slotSharedEffortLimit: nil, priorityEffortReserve: nil, - priorityEffortLimit: nil, + lowPriorityEffortLimit: nil, maxDataSizeMB: nil, priorityFeeMultipliers: nil, refundMultiplier: nil, canceledTransactionsLimit: 0, collectionEffortLimit: nil, collectionTransactionsLimit: nil, + txRemovalLimit: nil, shouldFail: "Invalid canceled transactions limit: Canceled transactions limit must be greater than or equal to 1 but got 0" ) @@ -478,16 +472,16 @@ access(all) fun testConfigDetails() { ---------------- */ let oldConfig = getConfigDetails() Test.assertEqual(9999 as UInt64,oldConfig.maximumIndividualEffort) - Test.assertEqual(10 as UInt64,oldConfig.minimumExecutionEffort) - Test.assertEqual(35000 as UInt64,oldConfig.slotTotalEffortLimit) - Test.assertEqual(10000 as UInt64,oldConfig.slotSharedEffortLimit) - Test.assertEqual(20000 as UInt64,oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.High]!) - Test.assertEqual(5000 as UInt64,oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Medium]!) + Test.assertEqual(100 as UInt64,oldConfig.minimumExecutionEffort) + Test.assertEqual(slotTotalEffortLimit as UInt64,oldConfig.slotTotalEffortLimit) + Test.assertEqual(sharedEffortLimit as UInt64,oldConfig.slotSharedEffortLimit) + Test.assertEqual(highPriorityEffortReserve as UInt64,oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.High]!) + Test.assertEqual(mediumPriorityEffortReserve as UInt64,oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Medium]!) Test.assertEqual(0 as UInt64,oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Low]!) - Test.assertEqual(30000 as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.High]!) - Test.assertEqual(15000 as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Medium]!) - Test.assertEqual(5000 as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]!) - Test.assertEqual(3.0,oldConfig.maxDataSizeMB) + Test.assertEqual(highPriorityMaxEffort as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.High]!) + Test.assertEqual(mediumPriorityMaxEffort as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Medium]!) + Test.assertEqual(lowPriorityMaxEffort as UInt64,oldConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]!) + Test.assertEqual(0.1,oldConfig.maxDataSizeMB) Test.assertEqual(10.0,oldConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.High]!) Test.assertEqual(5.0,oldConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.Medium]!) Test.assertEqual(2.0,oldConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.Low]!) @@ -495,35 +489,37 @@ access(all) fun testConfigDetails() { Test.assertEqual(1000 as UInt,oldConfig.canceledTransactionsLimit) Test.assertEqual(500000 as UInt64,oldConfig.collectionEffortLimit) Test.assertEqual(150 as Int,oldConfig.collectionTransactionsLimit) + Test.assertEqual(200 as UInt,oldConfig.getTxRemovalLimit()) setConfigDetails( maximumIndividualEffort: 14999, - minimumExecutionEffort: 10, + minimumExecutionEffort: 100, slotSharedEffortLimit: 20000, priorityEffortReserve: nil, - priorityEffortLimit: {highPriority: 30000, mediumPriority: 30000, lowPriority: 10000}, + lowPriorityEffortLimit: nil, maxDataSizeMB: 1.0, priorityFeeMultipliers: {highPriority: 20.0, mediumPriority: 10.0, lowPriority: 4.0}, refundMultiplier: nil, canceledTransactionsLimit: 2000, collectionEffortLimit: 800000, collectionTransactionsLimit: 90, + txRemovalLimit: 210, shouldFail: nil ) // Verify new config details let newConfig = getConfigDetails() Test.assertEqual(14999 as UInt64,newConfig.maximumIndividualEffort) - Test.assertEqual(10 as UInt64,newConfig.minimumExecutionEffort) - Test.assertEqual(45000 as UInt64,newConfig.slotTotalEffortLimit) + Test.assertEqual(100 as UInt64,newConfig.minimumExecutionEffort) + Test.assertEqual(32500 as UInt64,newConfig.slotTotalEffortLimit) Test.assertEqual(20000 as UInt64,newConfig.slotSharedEffortLimit) Test.assertEqual(oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.High]!,newConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.High]!) Test.assertEqual(oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Medium]!,newConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Medium]!) Test.assertEqual(oldConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Low]!,newConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Low]!) Test.assertEqual(30000 as UInt64,newConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.High]!) - Test.assertEqual(30000 as UInt64,newConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Medium]!) - Test.assertEqual(10000 as UInt64,newConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]!) + Test.assertEqual(22500 as UInt64,newConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Medium]!) + Test.assertEqual(2500 as UInt64,newConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]!) Test.assertEqual(1.0,newConfig.maxDataSizeMB) Test.assertEqual(20.0,newConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.High]!) Test.assertEqual(10.0,newConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.Medium]!) @@ -864,4 +860,42 @@ access(all) fun testSortedTimestampsEdgeCases() { Test.assertEqual(2.0, sortedResult[1]) Test.assertEqual(3.0, sortedResult[2]) Test.assertEqual(100.0, sortedResult[99]) -} \ No newline at end of file +} + + +// access(all) fun testLargeArrayProcessing() { + // let currentTime = getCurrentBlock().timestamp + // let futureTime = currentTime + 100.0 + + // let largeArray: [Int] = [] + // while largeArray.length < 18000 { + // largeArray.append(1) + // } + + // scheduleTransaction( + // timestamp: futureTime, + // fee: 10.0, + // effort: 1000, + // priority: mediumPriority, + // data: largeArray, + // testName: "testLargeArrayProcessing", + // failWithErr: nil + // ) + + // scheduleTransaction( + // timestamp: futureTime, + // fee: 10.0, + // effort: 1000, + // priority: mediumPriority, + // data: largeArray, + // testName: "testLargeArrayProcessing", + // failWithErr: nil + // ) + + // // move time forward by futureDelta + // Test.moveTime(by: Fix64(100.0)) + // processTransactions() + + // processTransactions() + +// } \ No newline at end of file diff --git a/transactions/transactionScheduler/admin/set_config_details.cdc b/transactions/transactionScheduler/admin/set_config_details.cdc index 5c3ebcd7..22fecaf1 100644 --- a/transactions/transactionScheduler/admin/set_config_details.cdc +++ b/transactions/transactionScheduler/admin/set_config_details.cdc @@ -5,13 +5,14 @@ transaction( minimumExecutionEffort: UInt64?, slotSharedEffortLimit: UInt64?, priorityEffortReserve: {UInt8: UInt64}?, - priorityEffortLimit: {UInt8: UInt64}?, + lowPriorityEffortLimit: UInt64?, maxDataSizeMB: UFix64?, priorityFeeMultipliers: {UInt8: UFix64}?, refundMultiplier: UFix64?, canceledTransactionsLimit: UInt?, collectionEffortLimit: UInt64?, - collectionTransactionsLimit: Int?) { + collectionTransactionsLimit: Int?, + txRemovalLimit: UInt?) { 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) @@ -29,11 +30,7 @@ transaction( FlowTransactionScheduler.Priority.Medium: currentConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Medium]!, FlowTransactionScheduler.Priority.Low: currentConfig.priorityEffortReserve[FlowTransactionScheduler.Priority.Low]! } - var newLimits: {FlowTransactionScheduler.Priority: UInt64} = { - FlowTransactionScheduler.Priority.High: currentConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.High]!, - FlowTransactionScheduler.Priority.Medium: currentConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Medium]!, - FlowTransactionScheduler.Priority.Low: currentConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]! - } + var newMultipliers: {FlowTransactionScheduler.Priority: UFix64} = { FlowTransactionScheduler.Priority.High: currentConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.High]!, FlowTransactionScheduler.Priority.Medium: currentConfig.priorityFeeMultipliers[FlowTransactionScheduler.Priority.Medium]!, @@ -47,13 +44,7 @@ transaction( FlowTransactionScheduler.Priority.Low: reserves[lowRawValue]! } } - if let limits = priorityEffortLimit { - newLimits = { - FlowTransactionScheduler.Priority.High: limits[highRawValue]!, - FlowTransactionScheduler.Priority.Medium: limits[mediumRawValue]!, - FlowTransactionScheduler.Priority.Low: limits[lowRawValue]! - } - } + if let multipliers = priorityFeeMultipliers { newMultipliers = { FlowTransactionScheduler.Priority.High: multipliers[highRawValue]!, @@ -68,13 +59,14 @@ transaction( minimumExecutionEffort: minimumExecutionEffort ?? currentConfig.minimumExecutionEffort, slotSharedEffortLimit: slotSharedEffortLimit ?? currentConfig.slotSharedEffortLimit, priorityEffortReserve: newReserves, - priorityEffortLimit: newLimits, + lowPriorityEffortLimit: lowPriorityEffortLimit ?? currentConfig.priorityEffortLimit[FlowTransactionScheduler.Priority.Low]!, maxDataSizeMB: maxDataSizeMB ?? currentConfig.maxDataSizeMB, priorityFeeMultipliers: newMultipliers, refundMultiplier: refundMultiplier ?? currentConfig.refundMultiplier, canceledTransactionsLimit: canceledTransactionsLimit ?? currentConfig.canceledTransactionsLimit, collectionEffortLimit: collectionEffortLimit ?? currentConfig.collectionEffortLimit, - collectionTransactionsLimit: collectionTransactionsLimit ?? currentConfig.collectionTransactionsLimit + collectionTransactionsLimit: collectionTransactionsLimit ?? currentConfig.collectionTransactionsLimit, + txRemovalLimit: txRemovalLimit ?? currentConfig.getTxRemovalLimit() ) // set the new config diff --git a/transactions/transactionScheduler/scripts/get_config.cdc b/transactions/transactionScheduler/scripts/get_config.cdc index 12f298a7..50612497 100644 --- a/transactions/transactionScheduler/scripts/get_config.cdc +++ b/transactions/transactionScheduler/scripts/get_config.cdc @@ -1,5 +1,6 @@ import "FlowTransactionScheduler" access(all) fun main(): {FlowTransactionScheduler.SchedulerConfig} { - return FlowTransactionScheduler.getConfig() + let config = FlowTransactionScheduler.getConfig() + return config }