From 72994c43db8d478d2837f191f3c662081f9af528 Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Tue, 20 Feb 2024 08:43:53 -0800 Subject: [PATCH 1/6] add service event definition and doc --- contracts/FlowServiceAccount.cdc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 5b93ccbfc..744d74df7 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -15,6 +15,13 @@ pub contract FlowServiceAccount { pub event IsAccountCreationRestrictedUpdated(isRestricted: Bool) + /// A service event which is emitted to indicate that the Protocol State version is being upgraded. + /// This acts as a signal to begin using the upgraded Protocol State + /// version when this service event is sealed and processed. + /// Nodes running a software version which does not support `newProtocolVersion` + /// will stop processing new blocks until they are upgraded. + pub event ProtocolStateVersionUpgrade(newProtocolVersion: UInt) + /// A fixed-rate fee charged to execute a transaction pub var transactionFee: UFix64 From f21ab6c17c7053b3f12320a1c307f8d4808870b3 Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Mon, 26 Feb 2024 15:04:42 -0800 Subject: [PATCH 2/6] move service event to version beacon --- contracts/FlowServiceAccount.cdc | 7 ------- contracts/NodeVersionBeacon.cdc | 14 +++++++++++--- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 744d74df7..5b93ccbfc 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -15,13 +15,6 @@ pub contract FlowServiceAccount { pub event IsAccountCreationRestrictedUpdated(isRestricted: Bool) - /// A service event which is emitted to indicate that the Protocol State version is being upgraded. - /// This acts as a signal to begin using the upgraded Protocol State - /// version when this service event is sealed and processed. - /// Nodes running a software version which does not support `newProtocolVersion` - /// will stop processing new blocks until they are upgraded. - pub event ProtocolStateVersionUpgrade(newProtocolVersion: UInt) - /// A fixed-rate fee charged to execute a transaction pub var transactionFee: UFix64 diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 895a61eda..2bfc9ab80 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -134,9 +134,10 @@ pub contract NodeVersionBeacon { ) } - /// Event emitted when the version table is updated. - /// It contains the current version and all the upcoming versions - /// sorted by block height. + /// A service event emitted when the version table is updated. + /// The version is the software version which must be used for executing a height range of blocks. + /// The version pertains to Execution and Verification Nodes. + /// The table contains the current version and all the upcoming versions sorted by block height. /// The sequence increases by one each time an event is emitted. /// It can be used to verify no events were missed. pub event VersionBeacon( @@ -144,6 +145,13 @@ pub contract NodeVersionBeacon { sequence: UInt64 ) + /// A service event which is emitted to indicate that the Protocol State version is being upgraded. + /// This acts as a signal to begin using the upgraded Protocol State version + /// after this service event is sealed, and after view `activeView` is entered. + /// Nodes running a software version which does not support `newProtocolVersion` + /// will stop processing new blocks when they reach view `activeAtView`. + pub event ProtocolStateVersionUpgrade(newProtocolVersion: UInt64, activeView: UInt64) + /// Event emitted any time the version boundary freeze period is updated. /// freeze period is measured in blocks (from the current block). pub event NodeVersionBoundaryFreezePeriodChanged(freezePeriod: UInt64) From b3026e89aa6d2963ba2a516ba660963a983cccce Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Tue, 27 Feb 2024 09:39:52 -0800 Subject: [PATCH 3/6] add heartbeat/admin process for proto state version --- contracts/NodeVersionBeacon.cdc | 66 +++++++++++++++++++--- lib/go/contracts/internal/assets/assets.go | 6 +- 2 files changed, 62 insertions(+), 10 deletions(-) diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 2bfc9ab80..52e029ec6 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -18,6 +18,10 @@ /// The contract itself can be used to query the current version and the next upcoming version. pub contract NodeVersionBeacon { + /// ========================= + /// Execution State Versioning + /// ========================= + /// Struct representing software version as Semantic Version /// along with helper functions /// For reference, see https://semver.org/ @@ -145,13 +149,6 @@ pub contract NodeVersionBeacon { sequence: UInt64 ) - /// A service event which is emitted to indicate that the Protocol State version is being upgraded. - /// This acts as a signal to begin using the upgraded Protocol State version - /// after this service event is sealed, and after view `activeView` is entered. - /// Nodes running a software version which does not support `newProtocolVersion` - /// will stop processing new blocks when they reach view `activeAtView`. - pub event ProtocolStateVersionUpgrade(newProtocolVersion: UInt64, activeView: UInt64) - /// Event emitted any time the version boundary freeze period is updated. /// freeze period is measured in blocks (from the current block). pub event NodeVersionBoundaryFreezePeriodChanged(freezePeriod: UInt64) @@ -288,6 +285,13 @@ pub contract NodeVersionBeacon { emit NodeVersionBoundaryFreezePeriodChanged(freezePeriod: newFreezePeriod) } + + /// Adds a pending protocol state version upgrade, which will be emitted + /// as a service event during the next heartbeat. + pub fun setPendingProtocolStateVersionUpgrade(newProtocolVersion: UInt64, activeView: UInt64) { + let pendingUpgrade = NodeVersionBeacon.ViewActivatedVersion(version: newProtocolVersion, activeView: activeView) + NodeVersionBeacon.storePendingProtocolStateVersionUpgrade(upgrade: pendingUpgrade) + } } /// Heartbeat resource that emits the version beacon event and keeps track of upcoming versions. @@ -299,6 +303,8 @@ pub contract NodeVersionBeacon { pub fun heartbeat() { self.checkFirstUpcomingBoundary() + self.emitProtocolStateVersionUpgradeEventIfNeeded() + if (!NodeVersionBeacon.emitEventOnNextHeartbeat) { return } @@ -344,6 +350,17 @@ pub contract NodeVersionBeacon { // If we passed a boundary re-emit the VersionBeacon event NodeVersionBeacon.emitEventOnNextHeartbeat = true } + + /// Emit a ProtocolStateVersionUpgrade event, if a pending upgrade is in storage. + access(self) fun emitProtocolStateVersionUpgradeEventIfNeeded() { + let pendingUpgrade = NodeVersionBeacon.getPendingProtocolStateVersionUpgrade() + if pendingUpgrade == nil { + return + } + emit NodeVersionBeacon.ProtocolStateVersionUpgrade( + newProtocolVersion: pendingUpgrade!.version, + activeView: pendingUpgrade!.activeView) + } } /// getCurrentVersionBoundaries returns the current version boundaries. @@ -503,6 +520,41 @@ pub contract NodeVersionBeacon { return self.versionBoundaryBlockList[0] } + /// ========================= + /// Protocol State Versioning + /// ========================= + + /// ViewActivatedVersion stores a version and a view. It indicates a version upgrade + /// so that `version` will become active at view `activeView`. + pub struct ViewActivatedVersion { + pub let version: UInt64 + pub let activeView: UInt64 + + init(version: UInt64, activeView: UInt64) { + self.version = version + self.activeView = activeView + } + } + + /// A service event which is emitted to indicate that the Protocol State version is being upgraded. + /// This acts as a signal to begin using the upgraded Protocol State version + /// after this service event is sealed, and after view `activeView` is entered. + /// Nodes running a software version which does not support `newProtocolVersion` + /// will stop processing new blocks when they reach view `activeAtView`. + pub event ProtocolStateVersionUpgrade(newProtocolVersion: UInt64, activeView: UInt64) + + /// Removes the pending ProtocolStateVersionUpgrade from storage and returns it. + /// If no ProtocolStateVersionUpgrade was in storage, returns nil. + access(contract) fun getPendingProtocolStateVersionUpgrade(): ViewActivatedVersion? { + return self.account.load(from: /storage/PendingProtocolStateVersionUpgrade) + } + + /// Stores the pending ProtocolStateVersionUpgrade to storage. + /// No ProtocolStateVersionUpgrade may already be stored, otherwise the transaction will revert. + access(contract) fun storePendingProtocolStateVersionUpgrade(upgrade: ViewActivatedVersion) { + self.account.load(from: /storage/PendingProtocolStateVersionUpgrade) + } + init(versionUpdateFreezePeriod: UInt64) { self.AdminStoragePath = /storage/NodeVersionBeaconAdmin self.HeartbeatStoragePath = /storage/NodeVersionBeaconHeartbeat diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 72944a9ba..d799e5879 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -8,7 +8,7 @@ // FlowStorageFees.cdc (9.156kB) // FlowToken.cdc (11.433kB) // LockedTokens.cdc (29.28kB) -// NodeVersionBeacon.cdc (22.585kB) +// NodeVersionBeacon.cdc (25.693kB) // RandomBeaconHistory.cdc (6.953kB) // StakingProxy.cdc (5.483kB) // epochs/FlowClusterQC.cdc (17.938kB) @@ -244,7 +244,7 @@ func lockedtokensCdc() (*asset, error) { return a, nil } -var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7c\xdd\x73\x1b\x37\x92\xf8\xbb\xfe\x8a\xb6\x1f\xbc\x64\x4c\x51\xca\xfe\x7e\x75\x75\xa5\x12\x95\x72\x7c\xeb\x8d\xef\x72\x59\xd7\xc6\xc9\x3d\xb8\x54\x57\xe0\x4c\x0f\x89\xf3\x10\x60\x00\x50\x32\xe3\xf5\xff\x7e\x85\x06\x66\x06\x5f\x1c\x52\x92\xf7\xbe\xfc\x90\x88\x9c\x41\xa3\xbb\xd1\xdf\xdd\xe0\xc5\xc5\x05\xbc\x5f\x23\xfc\x24\x6b\xfc\x15\x95\xe6\x52\x7c\x8f\xac\x92\x02\x2a\x29\x8c\x62\x95\x81\xb5\x6c\x6b\x0d\x66\x8d\xb0\x65\xda\x00\x13\x35\x34\x3b\xb3\x53\x08\x5b\x25\x8d\xac\x64\x0b\x77\x6e\xa5\x9e\x9f\x59\x78\x66\xcd\x0c\xe8\xb5\xdc\xb5\x35\x2c\x11\x76\x1a\x6b\x30\x12\xf0\x13\x56\x3b\x83\x17\x6b\x26\xea\x16\x61\xd9\xca\xea\xa3\x06\x66\x80\x31\x58\xf1\x3b\x14\xee\x2b\x58\x23\x5f\xad\x8d\x03\x75\xd6\xe1\xa7\x51\xdd\xf1\x0a\x81\x55\x95\xdc\x89\x10\xa9\x0c\xf3\xf9\x0f\xc8\x94\x59\x22\x33\xa0\x50\xcb\x9d\xaa\x90\xc0\xdc\xaf\x79\xb5\x06\xae\xed\xb7\x5b\x29\x34\x5f\xb6\x08\x8d\x54\x80\x1b\x6e\x0c\x17\x2b\x02\x17\x33\x01\xef\x50\x98\xf9\x80\x06\x7d\x26\xd6\x30\x2e\xdc\xfe\xd5\x4e\x29\xfb\xa5\xe7\x01\xf1\x87\xb5\x2d\x3d\xdb\x6d\x2b\xb9\xb1\x90\x63\x06\x0d\x90\xb8\x76\xbb\x63\x6d\xbf\x50\x7b\x30\x7c\x83\xb4\xb4\x03\x67\x98\x45\x93\x6b\xd8\x6d\x6b\x66\xb0\x26\x00\x52\x01\xeb\xdf\x58\xca\x9d\xa8\x99\xda\x3b\xd2\x58\xb5\xc6\x9a\xb6\x39\x3b\x78\xb6\xf3\x57\xf5\x86\x8b\x9e\x3b\x04\xdd\x1f\x12\xab\x6b\x10\x78\x9f\x02\xe7\xa8\xbb\x8d\xab\x35\x13\x2b\x04\xfc\xc4\x35\x31\xcd\xcb\x42\xbe\x60\x0e\x6f\x0e\x3d\x82\x8a\x09\x90\xa2\xdd\xc3\xd2\x9d\x8d\x03\x5a\x03\x6f\x2c\xf1\x7b\x90\x55\xb5\x53\xc0\x1a\x83\x2a\x62\x72\x28\x21\xf0\xb2\x83\xfc\x0b\xb1\xe6\x8d\x42\xfc\x1d\xdf\xa1\xe2\xb2\xee\xf8\xcc\xb5\x25\xce\x0a\x9f\xd0\x16\x15\x12\x4d\x21\x6b\xd4\xb0\x66\x77\x08\x28\xe4\x6e\xb5\xf6\x5c\x97\xc4\x3e\x63\xff\x88\xb9\xef\xb0\x0b\x0e\xef\xe0\xbe\x44\x18\x6b\xb5\xb4\x82\xdf\x11\xb5\xdc\x13\x0d\x2c\x62\xfa\x0c\x96\x3b\xe3\x78\xc0\x1b\xaf\x36\xa8\x10\x98\x42\x10\x32\x93\x9c\x90\x79\xf7\xdc\xac\xb9\x28\x09\x5f\x01\x21\xa9\xa0\x83\x1e\x1e\xec\x01\x96\xf5\x14\xf6\xda\xcf\x8d\xc6\xb6\x21\xba\x02\x5d\xfe\x6d\x47\xc2\x7a\x40\xfc\xdd\x5e\x9f\x4c\x46\xc5\xfc\x6c\xbb\x5b\x0e\xb0\x73\xa3\xf3\xf9\xec\x0c\x00\xc0\x62\xf1\xb3\x51\xbb\xca\xaa\xf0\x56\xa1\x46\x41\xb2\xa6\x65\x63\xee\x59\x20\x52\x4c\xc3\xcf\xb8\x61\xc2\xf0\xaa\xd3\xdc\x1e\x00\x6b\xa5\x58\x11\xb3\x60\x8d\xed\x16\x15\x34\x3b\x51\x19\xab\x86\xfd\x3b\x6f\xa4\x02\x85\x0d\x2a\x14\xf6\x48\x34\x22\xac\x8d\xd9\xea\xab\x8b\x0b\x8d\x9b\x3b\x54\x73\xa9\x56\x17\xf4\xba\xc5\x5c\x3b\x9c\x7e\xa6\x47\xf0\x99\xbe\xef\x40\xbd\x96\x9b\xad\x14\x28\x8c\x86\x1a\x1b\x2e\x2c\xbe\x0c\x74\x87\xdd\x5d\x80\x5d\x07\xae\x45\x03\x1b\xf6\x1f\x52\x5d\xc1\x2f\x6f\x85\xf9\xc7\xfc\x21\x17\x87\x1f\x6e\x99\xa9\xd6\x07\x1f\x2a\xfc\x2b\xb6\xc8\x34\x5e\x59\x4e\x72\xb1\xfa\xee\xac\x7f\x89\x0b\x6e\x26\xe1\xc6\xb3\x68\xa7\x59\x04\x7a\x56\x82\x35\x0d\x88\xb7\xff\xac\x8c\xcc\x09\x22\x2c\x1c\x49\x85\xc7\x76\x0b\xfb\xd8\xfe\x3f\x7f\x4c\x7b\xc2\xc2\xed\x5d\x78\xdc\x23\x61\xdf\xe9\x3f\xf4\x2f\x7e\x39\x8b\x4e\xe3\xaf\x68\x76\x4a\xe8\x5e\x50\xb8\xe8\x4e\xad\x91\x6a\xc3\x0c\x4c\x70\xbe\x9a\xc3\xdd\x35\x21\x7b\x33\xbf\x26\xac\x6e\xe6\xd7\xb4\xfd\xcd\xf9\xf5\xb0\xc5\xcd\x34\x82\xcc\x34\x30\xcf\x86\x88\xeb\xcd\x4e\x80\x91\xee\xc1\x64\xda\x71\x2a\xe1\x93\x3d\x1a\x27\x58\xaf\xa5\x42\xff\xca\x22\x60\xdf\x7c\x00\x11\x2d\xa4\x7f\xf3\x4a\x8a\x8a\x99\xc9\xf3\xf9\xf3\x91\xa7\xf9\x93\xf8\x08\x46\xb7\x98\x3e\x79\x0f\x62\xe0\xf8\x1e\xd1\x57\xa4\x3a\x16\xa8\x3d\xd5\x73\xe5\xcf\x98\x37\xc0\x8d\x73\x32\x1a\x5e\x80\xa2\xe3\x8c\xd6\xf1\x26\x13\x8c\x67\x0b\x10\xbc\x4d\x58\x6e\xff\xb9\xe5\x19\xe7\x7b\x5a\xcf\x9f\xf7\x74\x27\x30\x9f\xc5\xc8\x06\x52\x36\x02\xb7\x28\x94\xdf\xc0\xeb\x9d\x36\x72\x43\x86\x82\x29\x66\xa4\xd2\xf0\xcd\x45\x59\x6c\x8d\xda\x11\x0f\xbc\xcc\x56\x52\x91\x97\x5e\x29\x64\xce\x25\x32\x11\xad\xdb\x32\x6d\x2d\x73\xf8\x3a\xc5\x69\xac\xd5\x08\xd2\x7a\x96\x7b\x1e\x28\x4b\x27\xaf\xf6\xc5\x3f\x3b\x98\xef\xd7\x4c\x4c\xfe\xdd\xbd\x7b\xe5\x01\x4d\xaf\xe0\x7b\x29\x53\x86\xf2\x06\x26\x81\xbe\x3f\x5b\xb8\x45\xee\x63\x6a\x18\x22\x2e\xf5\x6b\x6e\xc2\x25\x09\x83\xc3\x4f\x07\xf6\x25\x43\x32\xec\x6b\x3f\x1e\xdd\x97\xd6\xdc\x84\x4b\xc6\x0e\xb6\xdf\xcb\x59\xa5\x7e\x2f\xfa\x78\x6c\x2f\xb7\xe6\x26\x5c\x12\xef\x05\x45\x29\xa2\xc3\x3a\x66\xcf\x4e\x10\x0c\x08\x48\xb3\x4b\xf1\xb7\x1d\x6b\xad\xd3\xfe\x3a\x42\xf2\x17\xf5\x27\x0b\xf0\xbd\x3c\x4d\x5a\x42\xc6\xa4\xe2\x46\xcb\xa7\xf0\xb7\xbf\x0d\x8f\x3b\xd8\xee\xd1\x23\xb9\xd1\xa2\xd6\x5f\x55\x47\x7e\x44\xad\x4f\x57\x10\x4f\xf2\xb3\x12\xcd\x03\xf7\xbe\x0e\x85\x7f\x8f\xc3\xee\xa8\x7d\xdc\x49\x17\xc9\x7e\x1c\xb5\x36\x3b\x8a\xe9\x89\x56\x3d\x86\xb6\x47\xcb\xae\x0f\x6e\x22\x63\x07\x2f\x5e\x44\xa1\x4d\x64\x91\xfa\x87\x3e\xb0\x59\x14\xed\xc1\xc9\x8c\xf8\x06\x3f\xb1\xca\xb4\xfb\x6f\x4e\x61\xc9\x29\xdc\xd0\x46\xf1\xca\x3c\x49\x97\x63\x51\x1e\x08\x0e\x42\xb5\x9e\xea\x52\xc4\x16\x30\x20\x22\xde\x66\x58\x97\xf3\xcb\xf9\xe5\x90\x37\x84\x98\xff\x8e\x4a\x3a\x34\x29\xce\x4a\x83\x71\x8f\xa5\x7f\xc3\x87\xb9\x97\x7d\x88\x7b\xd9\x87\xb7\x97\x71\x68\x2b\x78\x3b\x4d\x51\xf2\x49\x48\x56\x25\xe8\xb2\x1e\xcb\x68\x2e\x92\x24\x3f\xcc\x3c\xcc\x1a\xb9\x72\x69\x6b\x9a\x45\x74\x99\x4f\x97\xbe\x7f\xce\x82\x78\x5a\xf6\x03\x25\xbb\x2e\x18\xff\x87\xff\x9f\xbd\xe3\x37\xed\xf8\x90\x04\xf9\x05\x08\xb3\x74\xc9\xb4\x10\xca\x07\xeb\x60\x11\xe2\x91\xbf\xda\x45\xd8\x8b\x2c\xc5\x19\x3d\x60\x7b\x88\x7d\xe9\x62\x0e\xbf\x58\x63\x45\xa1\xb5\xcb\xf5\xb0\x85\x3b\xd6\xee\x10\xfa\xc5\xf6\x0c\x7a\x0e\x2f\xb1\x91\x2a\x2e\x94\x2c\xe3\xb2\xd5\x7c\x38\x43\xbe\xd9\xb6\xbc\xb1\x99\x33\xd6\x2b\x84\xca\x0a\x66\x25\x6b\x1c\x5e\x79\x9f\x22\x64\x35\x8e\x25\xe5\x86\x4b\x3a\xed\x35\x1b\x92\x0a\x27\xa4\x03\x98\xb7\x54\xd0\x61\xed\x3d\xdb\x3b\x22\x1b\xae\xb4\x01\x6c\x71\x43\xc5\x1e\x11\x22\xdc\x9d\xfb\xf7\x76\x8f\x1f\xb9\x36\xb9\x90\x27\x12\x62\xa5\xfd\xb0\xd0\x58\x61\x08\x16\x75\x59\x45\xa8\x2c\xa9\x8a\xa4\xf0\xa3\xc3\x8d\x44\xe7\x72\x16\xc7\x62\xbd\x08\x05\x3b\xce\xfa\x37\x32\x35\xfa\x13\x15\xbb\xba\x4a\xd7\xfd\x1a\xc5\x68\x8d\x2b\xe2\xe8\xe3\x8b\x6d\x3d\x14\x2d\x95\x71\x75\x98\xb8\xc2\x18\x1e\xbf\xc6\xdf\x76\x28\x2a\xb4\xea\xac\xac\x41\xd0\xf6\x7d\x29\x10\x90\x55\xbe\x42\xc4\x44\x56\xb6\x9b\x43\x84\x6b\x5c\x25\xb9\x43\xc5\x9b\x3d\x08\xe9\x96\x69\xb8\x47\x85\xb0\xe1\xd6\x6c\x0f\xa7\xed\x40\x46\x75\x90\xe1\x24\x62\x61\xe1\xa8\xaf\xe0\x43\x72\x6c\xb7\x03\xe3\x3b\x22\x22\x6b\x31\x3d\x74\x0e\x4c\x14\xea\x8d\xbd\x06\x34\x54\x1b\x82\xad\x2b\x23\x95\x0e\x27\x7b\x63\x83\x4c\xef\x14\x5a\x93\xd8\x95\x77\x27\x8d\x92\x9b\xbc\x84\x37\x4d\xc9\x0f\x4b\x41\x1e\x83\xb0\x38\xf5\xda\x95\xd2\x26\x4d\xf0\x5d\x47\x64\x40\xdf\x6b\x26\xa4\xe0\x15\x6b\x41\x1b\xa9\xd8\x0a\xad\xa9\x5f\x93\xe9\x28\x97\x8a\xe3\x42\xe8\x80\x94\x55\x26\x7a\xf6\xb3\x83\xf3\x8e\x99\xb5\x4d\xe9\xfb\x0f\x4f\xd8\x33\x2f\x4f\xc7\xfb\xf6\xcf\x8f\xef\xfd\x7d\x68\x9f\xb8\xa8\xf1\x13\xd6\xa5\x4a\x2c\x2d\x60\x55\x85\x5a\x4f\x3a\x03\x39\x0d\xdd\x47\xc7\xf3\x2b\xf8\xec\x98\x9a\x59\x9a\x2f\xd0\xe5\x63\x83\x61\x75\x6a\xf5\x4a\x29\xb6\xef\xd4\xb4\x50\xb2\x8c\xb5\xee\x10\x32\x77\x4c\x1d\xb4\x8c\x57\xf0\xc1\x61\x75\x3b\x90\xfe\xd6\x52\x7b\xcc\xa4\x82\x6c\x0e\x17\x23\x7b\xfc\x66\x3d\x50\xa9\xa8\x80\xc0\x9b\xb1\x12\xec\x7e\x84\x02\x32\xf8\xbf\xf8\x85\x03\x53\x1d\xf6\xdf\xc5\xec\x3b\x5c\xb3\xe5\xce\xd8\x89\xdd\x66\x89\xca\xd2\xd0\x29\x13\x35\x60\x42\x65\x92\x02\xa7\x24\x6a\xae\xb9\x91\x71\xbe\xdf\xcc\x97\xb0\x7d\x79\xd9\x58\xa3\x29\xef\xad\xf9\x7a\x7c\x8d\x3c\x25\x24\x2d\x96\x9f\x7a\xcc\x6f\x0a\x3a\x1d\x88\xb8\x94\x2d\x32\x01\x4d\xcb\x56\x44\xe9\x47\xc4\x2d\x85\x61\x8a\x55\x1f\xed\x51\xb1\x52\xcf\x06\x04\x62\x4d\x54\x2d\xb1\x37\x78\x52\x38\x49\x58\x77\x1a\x36\x82\xa4\x5d\x43\xe6\xf2\x2f\xe2\x27\xfc\x64\x7a\xa5\x74\x81\xf1\x80\xdf\x2b\xa0\x86\x94\xcb\xbd\x4d\xe0\x3d\x92\x7e\xce\xaf\x71\x98\x92\xf9\x91\xc3\x98\x58\x94\x23\x0a\x09\xad\x9f\x53\x53\x3f\x60\x14\x37\x77\x08\xad\x0d\x13\xcc\x1e\x7f\xa1\xad\xd3\x2d\xdb\x30\x4e\x1a\xec\xcc\xb7\xb1\x62\x11\xc7\x52\xd6\x3e\xf5\x50\xdd\x26\x71\x05\xfc\x55\x5d\x6b\xab\x42\xce\x51\xe8\x42\x8b\x6a\x9e\x67\x21\x68\xd2\x28\x24\x33\x49\xc9\x0b\x69\xf9\x65\xab\xb0\x50\x90\x49\xa0\x44\x11\xed\x0d\xac\xd0\xbc\x76\x2a\x44\xb6\x62\x32\x9d\xf7\x3d\xa5\xdc\x60\x8f\xc8\x6b\xb1\x0e\x7a\x05\xcf\x5f\x33\x61\xb5\x4c\xa3\xb9\x70\xdc\x28\xf5\xeb\xac\x34\x93\x46\x7b\xf5\x96\xaa\xfb\xcb\x9b\x35\x81\xd6\xa4\x50\x13\x6d\xfe\x7c\xa4\x4c\x46\x89\x9f\x33\x0c\xa4\x26\x46\xba\x04\x52\x4b\xfa\xce\xc9\xda\x3d\x6f\xdb\x50\x19\x48\x13\x48\x3c\xed\x37\xaf\xbd\x7d\xb0\xa7\xce\xda\x16\x63\xca\x72\x9e\x1c\x52\x0f\x58\xd0\xd6\x67\x59\xd5\xdb\x97\x72\x17\xc7\xf9\xfb\x61\xe4\xe8\x6e\x7d\x8d\xf7\x08\x76\x0f\x82\xb8\x48\x65\x25\x2b\x05\x7a\xdc\x73\x21\xa3\xbe\x1a\xd7\x70\x6f\x33\x17\xe1\x05\xdf\xb2\x5d\x48\xb3\xb6\x46\x0a\x6d\x0e\x1e\x9a\xa2\x5a\x0a\x3c\x50\x3c\x1c\xad\x11\x5e\x5c\xc0\xbf\xa1\xb3\xc7\x46\x02\x17\x1a\x95\x3b\xf0\x65\x1c\x02\x18\x77\xe4\x52\xd5\x68\x03\xb1\xb6\xcf\x2b\x02\x40\x9d\xc9\x67\x02\xb8\xc0\xa6\xe1\x15\xa7\x5c\xb6\x5d\x49\xc5\xcd\x7a\xe3\x5a\x93\x9c\xcc\x93\x95\x62\xfc\xb4\xc5\xca\x8a\x0c\x99\x12\x0b\xbe\xf5\xbe\x35\x85\x9c\x85\xe0\xbd\xd4\xd9\x8c\x38\x46\xc4\x9a\x36\x7e\x8a\x3c\x0c\x09\x52\x8b\x62\x65\xe2\x5a\xea\xfd\x9a\xdb\xd4\x01\x6e\xe0\x5b\x78\xf1\xe2\x01\xc0\x3e\xf0\xf3\x6f\x6f\xe1\x66\xd4\x4e\x14\x4e\xdc\x62\xcc\xe1\x1c\xbe\x1d\x51\xc7\x07\x50\xe4\x0e\x72\x62\xdd\x0a\x9f\x8d\xe1\x32\xcd\xc4\x41\x48\x12\x2c\x2b\x0e\xbe\x25\xdf\x67\x9c\x69\x00\x02\x3b\x41\x05\x43\x6e\x48\x52\x53\xfd\xb1\xe1\x81\xcd\x89\xbf\xbd\x72\x31\x24\x6c\x25\xb7\xd9\x8a\x91\xc0\xc0\x86\x09\x2a\x96\x32\xd3\xe5\x6f\x36\x3b\x72\x14\x24\xf6\xe2\xe2\x02\x16\x37\x76\x3b\x3f\x05\xa2\xd0\x7a\x17\x07\x97\xfa\xa2\xa6\xf3\x96\x35\x7e\x2a\xe2\xf2\xc7\x1c\x17\x32\x65\xc2\x50\xdf\x99\x39\x4a\x14\x6e\x5b\x56\x75\x2d\x76\x2b\xd5\x84\xcd\xc3\x71\xb1\x92\x8e\xf7\x0e\xfc\x0c\x34\xa7\x44\x90\x14\x20\xa8\x34\xc8\xd6\x86\x10\x58\xc4\xf7\xff\x75\xf8\x5a\xb4\x7a\xd8\x96\x83\xc2\x23\xdd\x0e\x05\x7a\x0b\xcc\xab\xf0\x1b\xfe\x09\xeb\x77\xf6\xfd\x02\xd2\xc6\x2b\x2a\x6f\x5b\x5c\xb1\x96\xb2\xdd\xca\x79\x96\x35\xdb\x6e\x51\x78\x4c\x87\xc9\x01\xbb\x55\x37\x22\x50\x38\x3a\x3d\x4f\x4d\x5b\x2e\xab\x65\x09\x5a\x1c\x6a\xad\x9d\x0c\xc0\xc7\x29\x93\x07\xeb\xbb\xd5\xb6\xb4\x0b\x37\xfc\x15\x45\x20\xff\x84\x2d\x52\xe4\x21\x8e\x45\xef\x10\xc4\x20\x35\xad\x4a\xc3\x90\x42\xe9\xec\xb4\xc8\xe3\xbf\x25\xd2\x70\x34\x04\x51\xc6\x13\x82\x8b\xf2\xb1\xa6\xc6\xa9\xab\xcb\xfc\x0b\x46\xbc\x9a\x5e\xc1\xf3\x9f\x82\x42\x1a\xcd\x42\x60\xdd\xab\x7c\xf0\xea\xff\xea\x98\x86\xca\x99\x1b\x79\x17\x57\x4f\x36\x6c\x4b\xc9\x89\xd5\xd4\x4e\x02\xe9\xdc\xbf\x8f\x03\xee\xd3\xd9\xac\x68\x93\xc9\x47\xdc\x5f\xc1\xa8\x3f\x08\xc2\x03\x35\x20\x16\x19\xee\xbe\x16\xf3\x7f\x39\x3c\xc8\x9c\xf3\x10\x22\x5c\x3e\x34\x44\xb0\x01\xc2\x57\x08\x08\x98\x26\x2f\xff\xb0\x9d\x17\x51\xdd\x7d\x16\x6f\xbc\x41\xad\xd9\x0a\xaf\xe0\x79\x96\x55\xf8\x60\x95\x93\x30\xce\xac\xbe\x0c\xbe\x8f\x26\xd3\xe8\x85\xce\x0a\x84\x92\xf0\x3c\x11\xaa\x07\xb0\xde\x4b\x29\xc5\x31\xb9\x68\x3a\x7f\x67\xbd\xe3\x9a\x75\x81\x70\x63\x1d\x9f\x13\xa5\xbd\xdc\x75\x6e\xcd\x47\x32\x0a\x2b\xa9\xea\xc8\xf9\x16\x43\x05\x6f\x0c\x68\x8a\x8e\xdc\xb0\x83\xcd\xea\x5a\x21\xb5\x3f\xa9\x92\xe2\xa5\xd2\x61\xc0\x03\xf7\x2c\x9b\xa6\x97\xd7\x59\x0a\x7b\x89\x15\xdb\x69\x1c\x04\x9a\xc4\xfd\xde\xb2\x52\x19\x54\x8f\xf6\xa4\x7e\x48\xe5\xc5\x0b\x78\xac\x2f\x7d\x06\x37\x8f\xf7\xa6\xa5\xe1\x85\xd3\x7d\x78\x1a\x3a\x06\xfe\x37\x71\xc5\xbf\xf8\x22\x40\xb1\x90\xc5\x45\xb9\x60\xc5\x7d\x85\xaa\x51\xf2\x77\x14\xa7\x54\x0b\x42\x17\x39\x11\x78\x5f\x2a\x26\x65\x6e\x5b\x6a\x73\x12\x17\x46\xdc\x31\x05\x44\xe9\x76\xcf\x1d\xd1\xb0\xdc\x35\x0d\x2a\x17\x6b\x4b\x03\x5b\x25\xb7\xa8\xda\xbd\x45\xff\x59\xea\xf3\x52\xb1\xfb\x33\x9a\xe2\xb4\xeb\x3c\xcb\xa8\xab\x20\xac\xe8\x5b\x75\x87\xc2\x8d\x6c\x9f\xc1\x47\x5b\xa6\x77\x5e\x7a\x89\x7b\x69\x83\xcc\x10\x81\x19\x68\xd6\x90\x6a\x6d\xd8\xc7\xbe\xbe\xf7\x5f\x10\x48\x8e\xb2\x3f\xe5\xfe\x89\x49\x75\xf8\x31\xe3\xa8\x0d\x1f\x42\x6f\xbd\x7f\x90\xff\xf9\x70\xaa\xfa\xde\x66\x87\xf1\xa7\xa0\xf2\x6a\x15\xe6\x1e\xff\xe0\xeb\xb4\xfe\x24\xda\x7d\x38\xf5\x4b\x89\x88\xa2\x8c\x25\xea\xc1\xa4\x60\xc3\xea\x77\x14\x08\x74\xce\xa2\xe4\xa5\x32\x46\x16\xe4\xec\x81\xb1\x2b\x5c\x17\x58\xfb\xe2\xc5\x69\x3b\x25\xe7\x5c\x82\x35\xcb\x20\x0d\xfe\x91\x54\xd2\x1a\x7b\xaf\x94\xd6\x84\x2f\x15\xb2\x8f\x59\x31\x74\xdf\xd5\x6f\x5c\x40\xc3\x68\x52\x78\x0e\xef\xbb\x07\x01\x10\x37\x98\x4e\x7c\xcd\xd2\x8b\x58\xc1\x1f\xea\x52\x1f\x20\xe4\xd1\x07\x1b\xbb\x3e\xae\x89\x96\x6c\x11\xce\xe8\x40\xdc\xc5\xcd\x1b\x57\x4e\x62\xed\xde\xba\xd4\x8b\x77\x41\xba\x8d\x85\x3f\x22\x6e\xb5\x2f\xd9\xcb\xa6\x74\x2f\x02\xfa\x5e\xac\xbb\xa1\xe1\xe0\xf7\x71\x0b\xb5\xd4\x97\x08\x6b\xa4\x24\xbc\xdd\x77\x53\xf5\xc9\xc5\x90\xa1\x97\x13\xfa\xef\xf4\xf6\xc8\x70\x39\xa5\x0f\x1f\xa8\xd3\x1b\x8e\x78\x10\xf2\xb3\xa1\xcb\x61\xc9\xa0\x37\xeb\x9d\xea\xde\xd1\x7b\x6d\x70\x63\xe9\x12\x9a\xd1\x68\x79\x5e\x29\x1f\xb8\x16\x56\xcb\x87\x1e\xc4\x90\x9e\x8c\x43\xf6\x0d\x05\xd2\xe3\xdc\x33\xf6\xe0\x26\xc5\xd1\xec\x6a\x8d\xd5\xc7\x37\x25\x6b\x34\x99\xe6\x93\x8f\xcf\x4e\xcf\x8d\x0e\xcf\x42\x3e\xa8\x40\x36\x92\x7a\xb9\xb1\xc8\x9c\x24\xbb\x24\x6f\x8b\x4c\x0a\x0d\xf3\x7c\xbb\xc1\x4b\xfe\x9a\xbe\x3e\x99\x16\xa7\xd4\x7c\x67\xc6\xee\x3c\x25\x86\x9f\xba\x3d\x14\x1a\xf6\x29\xd3\x72\x4d\x8e\xa7\x01\x0a\x34\x65\x5f\xe5\x36\x70\x18\x06\xc8\x19\x30\xde\x53\xca\x06\xb4\x5f\x91\xbd\xcb\xd5\xa3\x6f\x77\x05\x5f\xf5\x83\x14\x3e\xea\xb3\x7a\xa3\x93\x4c\x3e\x1e\x75\x85\x28\x98\xf7\x99\xbd\x14\x7f\x30\x49\xef\x2e\xf1\x65\xee\xae\x10\xcd\x43\xda\x77\x99\xd8\xf7\x5d\x4e\x5f\x2d\xa4\x86\xe4\x11\xc9\x1b\xe7\x44\x31\x00\x38\xb2\xe4\x65\x90\x0b\x1e\x8a\x8e\x5f\x5b\x7d\xf4\x14\x84\x85\x4e\x5f\x34\xec\x29\xcd\x5c\x54\xd8\x4b\xb0\x29\x57\x3d\x3f\x2c\xa2\x63\x4a\x9f\xcf\x74\x3f\x39\x80\x2b\xaa\xfd\x13\xa3\xd6\x70\xf5\x1d\x53\x3d\x1f\x5c\xf7\x7f\x71\x7a\xca\x54\xa8\x08\xc4\xb0\xae\x9f\x90\x51\x25\xac\x78\x58\x91\x21\x42\xe3\x16\xae\x17\x25\x16\x15\xaa\x8c\x09\x27\xe2\xcf\x2f\xb3\x7a\x44\x7a\xdc\xc9\xfa\x92\x9c\x1f\x48\x3e\x8b\x6d\x30\xd1\x75\x21\x1e\x21\x16\x19\x36\xff\x73\xd2\x5b\xd7\xc0\x7b\x0a\xc8\x98\xb2\x23\xc9\xdf\xdb\x06\xee\xb1\x1b\xdd\x66\x83\xd6\x2b\x3c\x27\xb7\x70\xe0\x82\xea\x13\xeb\x9a\x03\x3e\x10\x07\x7c\x23\x6e\xd2\x1f\x6b\x79\x2a\x2f\x9d\x3c\xba\xe8\xfa\xa4\x7e\xb0\x45\xb3\x8d\xaf\xa9\x30\xdd\x37\x92\x3a\x43\xef\xe3\xba\xd2\x3d\xdc\x3e\xb8\xb2\xd6\x6d\xd4\x87\x17\x9c\x6e\xe1\x26\x16\xf9\x07\x5f\xa8\x28\xad\x58\xc0\x87\xdb\x4c\x54\x9f\x6c\x27\x9d\xb6\xf8\x6b\xb3\xe1\x75\xd9\x7f\xde\x69\xd3\x8d\x66\x52\xd5\x89\x69\x9a\xf0\x99\x97\x40\x74\xfc\xb4\xb9\xf9\xac\x77\x84\xc0\x0c\xb4\xe8\xd7\xf9\x32\xda\xb1\x21\xa9\x0c\x7a\xc8\x96\x39\xf5\x99\xea\xe3\x8a\xf8\xa1\xd8\xa0\x78\x52\xf6\x7c\x42\xa1\xf7\x36\xdb\xf5\xf6\x59\x7e\xe3\xac\xe3\x69\x40\xd7\x11\x45\x3c\xff\xd6\xb5\xd9\xab\x76\x57\x27\xf7\xb1\xad\x6b\x96\x75\x9f\x9a\x0c\x09\xfa\xd2\xca\x71\xe6\xb1\xb4\x61\xca\x6a\x5a\x81\x83\x65\xb9\xf9\xee\xbb\xc7\x1b\xbf\x69\x56\x88\xa6\xd1\x0b\x51\x3f\xa1\xfd\x96\xe7\x07\x8e\xa4\x6b\xb8\x1c\x99\x88\xf0\x9a\x4e\x45\xd9\x7e\xde\xb7\xb3\x13\x7d\x25\x96\x19\xb8\xcc\xe3\x56\xcf\xb1\xcb\xb1\x33\xea\xda\x03\xf4\xf2\x59\xb1\xde\x7f\x4d\x84\xe7\x28\xf6\x93\xf5\x0f\xab\xee\xf0\x5c\xd6\x1e\xa7\x28\xb4\x77\x49\x4c\x5d\x2b\xe1\x88\xeb\x3e\x24\xcb\x87\xee\x51\x1c\xe9\x28\x06\xd6\x74\xac\xb2\x3a\xed\x6a\xa9\xf9\x3d\x8b\x87\x77\x31\x0f\xa0\x9a\x26\x0e\x61\xf5\xaa\x54\x58\x88\x4b\x06\xe5\xd1\x6b\x3f\xcb\x58\x5c\x7f\x60\x1c\xdb\x73\xe3\xa7\x34\xc8\xef\xe2\xfb\x31\x5e\x50\x62\x3a\x9e\x1e\xa4\x1c\x78\xe3\xef\xa4\x3b\x54\x55\x7e\x74\xc3\xb4\x43\xd4\x4a\xb5\xe1\xbf\x1e\x78\xa0\xb0\xca\x7e\x1f\x61\xb8\x5d\xf1\xaf\x6c\xdf\xa1\x18\xdf\xbb\x38\xc9\xa3\x1e\xb9\x78\x60\x55\xb1\xd3\xec\x05\x5c\x5a\x9f\x1e\x8e\x24\x7a\xab\xd0\xeb\xbc\xc0\x3b\x54\x70\xe9\x47\x17\x3a\x22\x2f\x83\x9b\x13\xde\x5f\x6d\x59\xe0\x9b\x78\x43\x7a\xcb\x7d\xb4\x7b\xaa\x31\xfd\x5c\xaa\x70\x3a\x20\x37\x74\x27\xa8\xaf\x13\xba\x2f\xbd\x51\x77\x38\x2e\xf1\x54\x34\x93\xab\xd2\x03\x37\xc2\x1b\x32\x05\x93\x62\xf7\x3c\x0f\x9c\x58\x31\xde\x1c\xa0\x7d\x9d\x09\x8a\xc0\xa0\x84\xa6\x70\x1c\x55\x8f\xc4\x6d\x74\xa6\x7f\x1d\x62\x95\xb0\x01\xee\x34\xb0\x8f\x60\xd6\x5c\x1b\xa9\x68\x42\x7e\xbc\x08\x1d\x2a\xd1\x01\xa3\x19\x6a\xcf\x01\x65\x1d\x52\xdc\x4c\x68\xbf\x0b\x38\xfb\x55\x04\xea\x74\xfe\xd1\x3e\xb7\x25\x4b\x3e\x42\xee\xb8\x5c\xf8\xf5\x61\xce\x92\x45\xf0\x54\x67\xd0\xd6\x03\xdb\x08\xd1\xff\xcc\x4e\x77\x56\xd6\xa6\x54\x72\xb3\x65\x86\x7e\x0a\xc7\x9b\x15\xf7\xce\x81\x43\x3b\xe2\x33\x26\xd8\x34\x58\x19\x7e\x87\xaf\xc2\xf4\xb5\x6f\xc4\x1d\xbb\xbf\x14\xf1\x52\x23\x53\xd5\xfa\x8d\x54\xaf\x5b\xa9\x51\x9b\x1f\x7a\x94\xa2\xe2\x7f\x3c\xa8\x53\x46\x60\x7a\x06\x4f\x91\xb2\xf2\x85\xbd\x77\x6c\x85\x85\x4b\x7b\x5b\xb2\x27\x6f\x83\xac\xac\x7f\x82\xea\xdd\xc1\x87\x46\x1a\xd6\xfe\x48\xea\x5a\x7e\x81\xae\xc3\x15\xcb\x89\xf4\xea\x20\xd8\x82\x9b\x49\x8f\xc4\x2c\xda\x75\x96\x6d\x33\xf3\x70\x4f\xa8\x52\xfa\xcb\xac\x2b\xfa\x01\x0e\x96\x64\xfa\xee\xa1\xdb\xca\x3e\x77\x7f\xe5\xaf\x04\xfb\xdb\xf4\x73\xf8\x94\xbf\xea\x09\x5e\x78\x0c\x13\x21\xef\x69\x2e\x44\x13\x8c\xf0\xb3\x01\xc4\xc8\xbc\x3b\xbd\xc2\xb5\x77\x88\xac\xbb\x49\xeb\x9c\xa9\xde\xb5\xc6\xb5\xa2\xcb\x77\xc7\xc6\xf5\x80\xa3\xb6\xd4\x1f\x3a\x85\x82\x65\x4a\x65\x29\x1b\x2c\x23\x6c\x6f\x16\x70\x79\x05\xcf\xe9\xef\x8d\x4d\x16\x97\x98\xde\xfc\x1f\x6e\x07\x5f\xc6\x8d\xa8\xee\x6c\x6e\x1c\x08\xff\xa9\x08\x25\x58\x99\xf8\x8a\xf8\xf4\x1e\x3f\xb9\xdb\x27\x46\x5d\xf5\x8a\x48\xfa\x26\x13\x9b\x2e\xd9\xf0\x65\xa1\x68\xff\x44\x38\x43\x68\x25\xb1\xfa\x12\x6d\x8e\xa2\xee\x5e\x0e\x56\xbe\x2c\x21\xd0\xbf\x3a\xb6\x7d\x00\x6f\x7c\xf3\x41\x93\x0f\x16\x1c\xca\xc4\x2f\x16\xc3\x26\x45\x3f\x50\x90\x28\x2f\x80\xf6\xbf\x81\x04\xfa\x3f\x12\x5b\x10\x7c\x18\x6c\x82\xfb\x7f\xda\x12\xb4\xff\x9a\x6e\x9e\xd0\x86\x41\xa3\xae\x6f\xae\x5b\x5e\x21\xdd\x03\xbc\x0a\x08\x9a\xc1\x6e\xfb\x5e\x5e\xf5\x44\xa5\xd6\xc6\x6d\xfd\x84\xac\xea\x4b\x6a\xf1\xff\xde\x0c\xfa\x72\x16\xdc\x5a\xe2\xc2\x7a\x37\xe7\xc2\x86\xd1\x39\xea\x7d\x70\x51\x43\xe5\x5c\x9a\xbf\xe3\xfc\x11\xf7\x96\x8d\x9e\xa4\xf7\x74\x8d\xca\xcd\x47\x6b\xb8\x5e\x80\x61\x6a\xd5\x89\x0d\xed\x90\x5d\x13\x72\xb3\x31\x8f\x70\x97\xbd\x5f\xce\x32\x9a\x21\xbc\x6b\xfb\x29\xd2\xe0\x7a\x74\xd3\x61\x45\x23\xd2\x7b\x29\xea\x48\xc4\xdb\xce\x46\x8c\x8b\x46\x62\x16\x78\x13\x0f\xcf\x1e\x0b\xaa\x82\x3a\xd0\xc8\x2f\x15\x9c\xb2\xbc\x64\xf0\x68\x9e\xd8\x66\x5c\xdd\x31\x12\xf5\x3a\xb2\x23\x2d\x36\x71\xa9\xc2\x7e\xa9\x7c\x57\x23\xa1\xee\xe2\x02\x7e\x94\x72\x0b\x3b\x61\x78\xdb\xc1\xa4\xae\x0f\x2a\x0d\x95\x92\x7a\x80\xed\x6a\x18\x04\xfd\xda\xc3\x4b\xd5\x43\xc1\x86\xd7\xb0\x80\x09\xbd\xf5\xd2\xbd\x35\x85\x0b\xf8\x63\x56\xaf\x19\xe5\xc2\x86\xd7\xe9\xb0\xe1\x91\xdf\xb7\x19\x05\x95\xd4\x2e\x12\x54\xc2\x4d\xae\x4f\x41\xac\x30\x70\xd9\x10\xe1\x7e\x9a\x33\x1e\xb6\x3e\x0a\x10\xce\x33\x51\x79\x28\x85\xe5\xb2\xe3\x97\x9c\x63\x5e\x0a\x36\x3c\x1e\xdb\x38\xd8\x53\xf0\x84\x5d\xdb\x13\xed\xb3\xb6\x94\xc6\x13\x98\x06\x2f\x73\x7d\x78\xda\x31\x96\x09\xf4\xb2\xef\x77\x3c\x70\xee\x5f\x0a\x06\x85\x22\xae\xfe\x87\xd9\x9a\xfe\xb2\x54\x63\x31\x39\x25\x4e\x1f\x50\xbd\xbc\x0d\x63\x40\x0a\x7d\x0f\x5e\xab\x2d\x8d\x03\x12\xf4\xf4\xa2\x37\x2c\xe0\xc2\xdf\xe5\xbe\xc8\x1c\x0f\xbd\x1c\xaf\x2f\x5d\xd8\x1e\x85\xd1\x2f\x48\x2a\x24\x74\x23\x84\x11\x7f\xce\xcd\x30\x1c\xd9\x4d\xde\xd9\xec\xec\xd5\xbb\xb7\xa0\xf9\x66\xdb\xfa\xce\xfa\x46\x2a\x04\x25\x97\x36\x8e\x8b\x2c\x30\x31\xb9\x14\xa3\x15\x7f\x58\x22\x0e\xa9\x21\xf9\x6d\x8f\xa0\x9d\xf5\xd9\x2e\x0f\x2f\x26\x5d\xd9\x2f\xbe\x8c\x2e\x1b\xae\x63\x2f\xe0\x43\xba\xfe\x76\x74\x69\x32\x0e\x75\xf0\x6c\x63\x20\xa7\xb4\xf7\x4e\x28\xd5\x91\x61\x0f\x4f\xa8\xef\xc1\xb9\x19\x05\xdf\x0d\x70\x3f\xf2\x31\xcc\xf3\x18\x09\x1a\xfd\xaf\x60\x86\xa2\x1e\x6f\x7d\xf2\x65\x03\x7a\xdb\x0f\x2e\xcd\x35\xbb\xc3\xc9\xf5\x79\x45\xe1\xba\xbb\x84\x3b\x99\xda\x40\xe5\xaa\x2c\xca\xd3\x53\xc0\xfc\x30\xcc\x0e\x05\xa0\x4a\x52\xdd\x05\x3a\x5f\xce\xe0\x3f\x03\x00\x00\xff\xff\x83\xa3\x5c\xcf\x39\x58\x00\x00" +var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7c\x5b\x73\x5b\x37\x92\xf0\xbb\x7e\x05\xec\x07\x0f\x99\xd0\x94\x32\xdf\x57\x5b\x5b\x2a\x51\x29\xc7\x13\x4f\xbc\x9b\xcd\xb8\x26\x8e\xf7\xc1\xa5\x5a\x83\xe7\xf4\x21\xb1\x3e\x04\x38\x00\x28\x99\xe3\xf1\x7f\xdf\x42\xe3\x72\x70\xe3\x21\x25\x79\x66\x2f\x7e\x48\x44\x12\x68\x74\x37\x1a\x7d\x07\xce\xcf\xcf\xc9\xdb\x35\x90\x5f\x44\x0b\xef\x40\x2a\x26\xf8\x0f\x40\x1b\xc1\x49\x23\xb8\x96\xb4\xd1\x64\x2d\xfa\x56\x11\xbd\x06\xb2\xa5\x4a\x13\xca\x5b\xd2\xed\xf4\x4e\x02\xd9\x4a\xa1\x45\x23\x7a\x72\x6b\x67\xaa\xf9\x99\x81\xa7\xd7\x54\x13\xb5\x16\xbb\xbe\x25\x4b\x20\x3b\x05\x2d\xd1\x82\xc0\x27\x68\x76\x1a\xce\xd7\x94\xb7\x3d\x90\x65\x2f\x9a\x8f\x8a\x50\x4d\x28\x25\x2b\x76\x0b\xdc\x7e\x45\xd6\xc0\x56\x6b\x6d\x41\x9d\x79\xfc\x14\xc8\x5b\xd6\x00\xa1\x4d\x23\x76\x3c\x46\xaa\xc0\x7c\xfe\x13\x50\xa9\x97\x40\x35\x91\xa0\xc4\x4e\x36\x80\x60\xee\xd6\xac\x59\x13\xa6\xcc\xb7\x5b\xc1\x15\x5b\xf6\x40\x3a\x21\x09\x6c\x98\xd6\x8c\xaf\x10\x5c\xca\x04\xb8\x05\xae\xe7\x03\x1a\xf8\x19\x59\x43\x19\xb7\xeb\x37\x3b\x29\xcd\x97\x8e\x07\xc8\x1f\xda\xf7\xf8\xdb\x6e\xdb\x88\x8d\x81\x9c\x32\x68\x80\xc4\x94\x5d\x1d\x5a\xf3\x85\xdc\x13\xcd\x36\x80\x53\x3d\x38\x4d\x0d\x9a\x4c\x91\xdd\xb6\xa5\x1a\x5a\x04\x20\x24\xa1\x61\xc4\x52\xec\x78\x4b\xe5\xde\x92\x46\x9b\x35\xb4\xb8\xcc\xd9\xc1\xbd\x9d\xbf\x68\x37\x8c\x07\xee\x20\x74\xb7\x49\xb4\x6d\x09\x87\xbb\x1c\x38\x03\xe5\x17\x6e\xd6\x94\xaf\x80\xc0\x27\xa6\x90\x69\x4e\x16\xca\x09\x73\xf2\xea\xd0\x4f\xa4\xa1\x9c\x08\xde\xef\xc9\xd2\xee\x8d\x05\xda\x12\xd6\x19\xe2\xf7\x44\x34\xcd\x4e\x12\xda\x69\x90\x09\x93\x63\x09\x21\xdf\x7a\xc8\xbf\x21\x6b\x5e\x49\x80\xbf\xc2\x1b\x90\x4c\xb4\x9e\xcf\x4c\x19\xe2\x8c\xf0\x71\x65\x50\x41\xd1\xe4\xa2\x05\x45\xd6\xf4\x16\x08\x70\xb1\x5b\xad\x1d\xd7\x05\xb2\x4f\x9b\x3f\x52\xee\x5b\xec\xa2\xcd\x3b\xb8\x2e\x12\x46\x7b\x25\x8c\xe0\x7b\xa2\x96\x7b\xa4\x81\x26\x4c\x9f\x91\xe5\x4e\x5b\x1e\xb0\xce\x1d\x1b\x90\x40\xa8\x04\xc2\x45\x21\x39\x31\xf3\xee\x98\x5e\x33\x5e\x13\xbe\x0a\x42\x42\x12\x0f\x3d\xde\xd8\x03\x2c\x0b\x14\x86\xd3\xcf\xb4\x82\xbe\x43\xba\xa2\xb3\xfc\x97\x1d\x0a\xeb\x01\xf1\xb7\x6b\x7d\xd2\x05\x15\xf3\xb3\xed\x6e\x39\xc0\x2e\x95\xce\xe7\xb3\x33\x42\x08\x31\x58\x2c\x0e\xfd\x0b\x23\x7e\x44\x85\x62\x16\xfd\x55\x53\x1d\x8e\x2e\xe3\xab\x13\x80\x84\x21\xbf\x6a\xb9\x6b\x8c\xaa\xd8\x4a\x50\xc0\x51\xa6\x95\xe8\xf4\x1d\x8d\x44\x97\x2a\xf2\x2b\x6c\x28\xd7\xac\xf1\xcb\x04\x00\xb4\x17\x7c\x85\x9b\x42\xd6\xd0\x6f\x41\x92\x6e\xc7\x1b\x83\x97\x0a\x63\x5e\x09\x49\x24\x74\x20\x81\x9b\xad\x57\x00\x64\xad\xf5\x56\x5d\x9e\x9f\x2b\xd8\xdc\x82\x9c\x0b\xb9\x3a\xc7\xe1\x86\x43\xca\xe2\xf4\x2b\xfe\x44\x3e\xe3\xf7\x1e\xd4\x4b\xb1\xd9\x0a\x0e\x5c\x2b\xd2\x42\xc7\x0c\xb9\x84\x12\xe5\xb1\xbb\x8d\xb0\xf3\xe0\x7a\xd0\x64\x43\xff\x53\xc8\x4b\xf2\xdb\x6b\xae\xff\xb9\xfc\x91\xf1\xc3\x3f\x6e\xa9\x6e\xd6\x07\x7f\x94\xf0\x67\xe8\x81\x2a\xb8\x34\x9c\x64\x7c\xf5\xfd\x59\x18\xc4\x38\xd3\x93\x78\xe1\x59\xb2\xd2\x2c\x01\x3d\xab\xc1\x9a\x46\xc4\x9b\x7f\x46\x16\xe7\x08\x91\x2c\x2c\x49\x95\x9f\xcd\x12\xe6\x67\xf3\xff\xf2\x67\x5c\x93\x2c\xec\xda\x95\x9f\x03\x12\x66\x4c\xf8\x10\x06\x7e\x39\x4b\x76\xe3\xcf\xa0\x77\x92\xab\x20\x28\x8c\xfb\x5d\xeb\x84\xdc\x50\x4d\x26\x30\x5f\xcd\xc9\xed\x15\x22\x7b\x3d\xbf\x42\xac\xae\xe7\x57\xb8\xfc\xf5\xf3\xab\x61\x89\xeb\x69\x02\x99\x2a\x42\x1d\x1b\x12\xae\x77\x3b\x4e\xb4\xb0\x3f\x4c\xa6\x9e\x53\x19\x9f\xcc\xd6\x58\xc1\x7a\x29\x24\xb8\x21\x8b\x88\x7d\xf3\x01\x44\x32\x11\xff\xcd\x1b\xc1\x1b\xaa\x27\x4f\xe7\x4f\x47\x7e\x2d\x7f\x49\xb7\x60\x74\x89\xe9\xa3\xd7\x40\x06\x8e\xaf\x91\x7c\x85\x47\xc7\x00\x35\xbb\xfa\x5c\xba\x3d\x66\x1d\x61\xda\x1a\x33\x45\x9e\x11\x89\xdb\x99\xcc\x63\x5d\x21\x18\x4f\x16\x84\xb3\x3e\x63\xb9\xf9\x67\xa7\x17\x9c\x0f\xb4\x3e\x7f\x1a\xe8\xce\x60\x3e\x49\x91\x8d\xa4\x6c\x04\x6e\x55\x28\xbf\x21\x2f\x77\x4a\x8b\x0d\x2a\x0a\x2a\xa9\x16\x52\x91\x6f\xce\xeb\x62\xab\xe5\x0e\x79\xe0\x64\xb6\x11\x12\xbd\x81\x95\x04\x6a\x4d\x2f\xe5\xc9\xbc\x2d\x55\xc6\x02\xc4\xc3\xd1\x1f\xa4\xbd\x02\x22\x8c\x05\xbb\x63\xd1\x61\xf1\xf2\x6a\x06\xfe\xd1\xc2\x7c\xbb\xa6\x7c\xf2\x1f\x76\xec\xa5\x03\x34\xbd\x24\x3f\x08\x91\x33\x94\x75\x64\x12\x9d\xf7\x27\x0b\x3b\xc9\x7e\xcc\x15\x43\xc2\xa5\x30\xe7\x3a\x9e\x92\x31\x38\xfe\x74\x60\x5d\x54\x24\xc3\xba\xe6\xe3\xd1\x75\x71\xce\x75\x3c\x65\x6c\x63\xc3\x5a\x56\x2b\x85\xb5\xf0\xe3\xb1\xb5\xec\x9c\xeb\x78\x4a\xba\x16\xa9\x4a\x11\x6e\xd6\x31\x7d\x76\x82\x60\x90\x88\x34\x33\x15\xfe\xb2\xa3\xbd\x71\x0e\xbe\x8e\x90\xfc\x49\xfe\x68\x00\xbe\x15\xa7\x49\x4b\xcc\x98\x5c\xdc\x70\xfa\x94\xfc\xed\x6f\xc3\xcf\x1e\xb6\xfd\xe9\x81\xdc\xe8\x41\xa9\xaf\x7a\x46\x7e\x06\xa5\x4e\x3f\x20\x8e\xe4\x27\x35\x9a\x07\xee\x7d\x1d\x0a\xff\x1e\x9b\xed\xa9\x7d\xd8\x4e\x57\xc9\x7e\x18\xb5\x26\x0a\x4b\xe9\x49\x66\x3d\x84\xb6\x07\xcb\xae\x73\x6e\x12\x65\x47\x9e\x3d\x4b\x5c\x9b\x44\x23\x85\x1f\x9d\x63\xb3\xa8\xea\x83\x93\x19\xf1\x0d\x7c\xa2\x8d\xee\xf7\xdf\x9c\xc2\x92\x53\xb8\xa1\xb4\x64\x8d\x7e\xd4\x59\x4e\x45\x79\x20\x38\x72\xd5\x02\xd5\x35\x8f\x2d\x62\x40\x42\xbc\x89\xe4\x2e\xe6\x17\xf3\x8b\x21\x3e\x89\x31\xff\x2b\x48\x61\xd1\x44\x3f\x2b\x77\xc6\x1d\x96\x6e\x84\x73\x73\x2f\x82\x8b\x7b\x11\xdc\xdb\x8b\xd4\xb5\xe5\xac\x9f\xe6\x28\xb9\x20\xa4\xc8\x46\xf8\xe8\xca\x30\x9a\xf1\x2c\x99\x10\x47\x1e\x7a\x0d\x4c\xda\xf0\x38\x8f\x22\x7c\x84\xe5\xd3\x04\x9f\x0b\x27\x1e\xa7\xfd\x84\x41\xb5\x75\xc6\xff\xe9\xff\x17\x63\xdc\xa2\x9e\x0f\x99\x93\x5f\x81\x30\xcb\xa7\x4c\x2b\xae\x7c\x34\x8f\x2c\x62\x3c\xca\xa1\xde\xc3\x5e\x14\x21\xce\xe8\x06\x9b\x4d\x0c\x29\x92\x39\xf9\xcd\x28\x2b\x74\xad\x6d\xac\x07\x3d\xb9\xa5\xfd\x0e\x48\x98\x6c\xf6\x20\x70\x78\x09\x9d\x90\x69\x42\x66\x99\xa6\xc7\xe6\xc3\x1e\xb2\xcd\xb6\x67\x9d\x89\xd0\xa1\x5d\x01\x69\x8c\x60\x36\xa2\x85\x61\xc8\xdb\x1c\x21\x73\xe2\x68\x96\xd6\xb8\xc0\xdd\x5e\xd3\x21\xa8\xb0\x42\x3a\x80\x79\x8d\x89\x23\xda\xdf\xd1\xbd\x25\xb2\x63\x52\x69\x02\x3d\x6c\x30\xa9\xc4\x63\x84\xfd\xbe\xff\x60\xd6\xf8\x99\x29\x5d\x0a\x79\x26\x21\x46\xda\x0f\x0b\x8d\x11\x86\x68\x92\x8f\x2a\xe2\xc3\x92\x1f\x91\x1c\x7e\xb2\xb9\x89\xe8\x5c\xcc\x52\x5f\x2c\x88\x50\xb4\xe2\x2c\x8c\x28\x8e\xd1\x8b\x90\x27\xb4\xe9\x35\x9f\x5b\xbb\x5b\x03\x1f\xcd\xaa\xa5\x5b\x14\x82\x39\xcb\xdd\x22\x1b\x60\x33\x89\x9b\x9d\xd2\x21\x27\x82\x27\xd7\xe6\x23\x30\x1e\x77\x7b\x29\x31\x57\x26\x3a\x97\xed\xac\x2f\xb3\x05\xe9\xd2\x89\x22\xca\x69\x18\x21\x78\x07\x92\x75\xac\xa1\xf8\xc5\x2f\xa2\x85\x0c\x82\x4b\x4f\x3d\x38\x1d\x49\x94\x90\xda\x66\xa8\xd2\xdc\x6b\xbc\x88\x82\xbf\xec\x80\x37\x60\x14\x90\x34\x2a\x4c\x99\xf1\x82\x03\x01\xda\xb8\xdc\x19\xe5\x45\x42\x73\x4e\x62\x79\xcd\xf2\x47\xb7\x86\xb0\x3d\xe1\xc2\x4e\x53\xe4\x0e\x24\x90\x0d\x33\x86\x66\x90\x4f\x0b\x32\xc9\x10\x0d\xb2\x93\x8a\x37\x03\x75\x49\xde\x67\x82\x76\x33\x88\x8a\x27\x22\xd1\x6f\xd3\x41\x72\x7e\x4c\xe4\x85\xf2\x4a\x26\x36\x9c\xd9\x0e\xb3\x66\x66\xdb\x98\x68\xab\x42\x54\x8c\xd8\x00\x55\x3b\x09\x46\x89\xfb\xc4\xf7\xa4\x93\x62\x53\x26\x37\xa7\x39\xf9\x71\x92\xcc\x61\x10\xa7\xed\x5e\xda\x24\xe3\xa4\x8b\xbe\xf3\x44\x46\xf4\xbd\xa4\x5c\x70\xd6\xd0\x9e\x28\x2d\x24\x5d\x81\x31\x4e\x6b\x14\xdb\x7a\x12\x3d\x4d\x11\x0f\x48\x99\xe3\x8f\xbf\xfd\x6a\xe1\xbc\xa1\x7a\x7d\x49\xa2\x0f\x8f\x58\xb3\x4c\xdc\xa7\xeb\x86\xdf\x8f\xaf\xfd\x43\xac\x51\x19\x6f\xe1\x13\xb4\xb5\x1c\x35\x4e\xa0\x4d\x03\x4a\x4d\xbc\x4a\x9f\xc6\x06\xcf\xf3\xfc\x92\x7c\xb6\x4c\x2d\x74\xe3\x17\xe2\x23\xc8\xc1\x14\xd8\x63\xf5\x42\x4a\xba\xf7\xc7\xb3\x92\xcc\x4d\x4f\xdd\x21\x64\x6e\xa9\x3c\xa8\xcb\x2f\xc9\x7b\x8b\xd5\xcd\x40\xfa\x6b\x43\xed\x31\x23\x60\x74\xd2\xc1\x34\x6d\xc0\x6f\x16\x80\x0a\x89\x29\x0f\xd6\x8d\x25\xa7\xf7\x23\x14\xa0\x89\xfa\xcd\x4d\x1c\x98\x6a\xb1\xff\x3e\x65\xdf\xe1\x6c\xb6\xd3\xc8\x7c\xb7\x59\x82\x1c\xf4\x2a\x99\x60\x69\x2a\x3e\x4c\x82\xc3\x14\x45\xcd\x2a\xeb\x82\xf3\x61\x31\x97\xdc\x77\x89\x77\x6d\x94\xa5\xb8\x33\xea\xeb\xe1\xd5\x83\x9c\x90\xbc\x8c\x70\xea\x36\xbf\xaa\x9c\xe9\x48\xc4\x85\xe8\x81\x72\xd2\xf5\x74\x85\x94\x7e\x04\xd8\xa2\xe3\x28\x69\xf3\xd1\x6c\x15\xad\x55\xb3\x08\x07\x68\x91\xaa\x25\x04\x85\x27\xb8\x95\x84\xb5\x3f\x61\x23\x48\x9a\x39\xa8\x2e\xff\xc4\x7f\x81\x4f\x3a\x1c\x4a\xeb\xca\xc7\xc6\x18\x4b\x75\x36\x5b\xa0\x23\xeb\x91\x55\xba\xde\xa5\x8e\x55\x61\x47\x0e\x63\x62\x50\x4e\x28\x44\xb4\x7e\xcd\x55\xfd\x80\x51\x5a\xf6\x42\xb4\x36\x94\x53\xb3\xfd\x95\x82\x97\x9f\xb6\xa1\x0c\x4f\xb0\x55\xdf\xda\x88\x45\xea\xfd\x19\xfd\x14\xa0\xda\x45\xd2\x9c\xfd\x8b\xb6\x55\xe6\x08\x59\x43\xa1\x2a\xc5\xbb\x79\x19\x37\x81\xce\xfd\xa6\x42\x25\x65\x03\xf2\x84\xd1\x56\x42\x25\x85\x94\x41\x49\x7c\xf0\x6b\xb2\x02\xfd\xd2\x1e\x21\xd4\x15\x93\xe9\x3c\x54\xdb\x4a\x85\x3d\x22\xaf\xd5\xcc\xed\x25\x79\xfa\x92\x72\x73\xca\x14\xe8\x73\xcb\x8d\x5a\x25\xd3\x48\x33\x9e\x68\x77\xbc\x85\xf4\x7f\x39\xb5\xc6\xc1\xa8\x14\x2c\x2f\xce\x9f\x8e\x24\xf6\x30\x54\xb5\x8a\x01\x8f\x89\x16\x36\xe4\x55\x02\xbf\xb3\xb2\x76\xc7\xfa\x3e\x3e\x0c\x78\x12\x50\x3c\xcd\x37\x2f\x9d\x7e\x30\xbb\x4e\xfb\x1e\x52\xca\x4a\x9e\x1c\x3a\x1e\x64\x81\x4b\x9f\x15\x79\x7a\x97\x7c\x5e\x1c\xe7\xef\xfb\x91\xad\xbb\x71\x59\xe9\x23\xd8\xdd\x0b\xe2\x22\x97\x95\x22\x79\xe9\x70\x2f\x85\x0c\x2b\x8e\x4c\x91\x3b\x13\x6b\x71\x27\xf8\x86\xed\x5c\xe8\xb5\x51\x52\xd0\x2b\x48\x54\x51\x2b\x38\x1c\x48\x77\x8e\x66\x35\xcf\xcf\xc9\xbf\x83\xd5\xc7\x5a\x10\xc6\x15\x48\xbb\xe1\xcb\xd4\x05\xd0\x76\xcb\x85\x6c\xc1\x38\x62\x7d\x88\x84\x22\x40\x5e\xe5\x53\x4e\x18\x87\xae\x63\x0d\xc3\xe8\xbb\x5f\x09\xc9\xf4\x7a\x63\x8b\xb6\x0c\xd5\x93\x91\x62\xf8\xb4\x85\xc6\x88\x0c\xaa\x12\x03\xbe\x77\xb6\x35\x87\x5c\xba\xde\x5e\xea\x4c\x0c\x9f\x22\x62\x54\x1b\x3b\x45\x1e\x86\x90\xae\x07\xbe\xd2\x69\xf6\xf7\x6e\xcd\x4c\x88\x43\xae\xc9\x77\xe4\xd9\xb3\x7b\x00\x7b\xcf\x9e\x7f\x77\x43\xae\x47\xf5\x44\x65\xc7\x0d\xc6\x8c\x3c\x27\xdf\x8d\x1c\xc7\x7b\x50\x64\x37\x72\x62\xcc\x0a\x9b\x8d\xe1\x32\x2d\xc4\x81\x0b\x14\x2c\x23\x0e\xae\x59\x21\xc4\xc8\xb9\x03\x42\x76\x1c\x53\x9c\x4c\xa3\xa4\xe6\xe7\xc7\xb8\x07\x26\x8a\xff\xee\xd2\xfa\x90\x64\x2b\x98\x89\x56\xb4\x20\x94\x18\x37\x41\xa6\x52\xa6\x7d\x9c\x69\xa2\x23\x4b\x41\xa6\x2f\xce\xcf\xc9\xe2\xda\x2c\xe7\xfa\x63\x24\x18\xeb\x62\xe1\x62\xe4\xa8\xbd\xb5\x6c\xe1\x53\x15\x97\xdf\x97\xb8\xa0\x2a\xe3\x1a\x2b\xf2\xd4\x52\x22\x61\xdb\xd3\xc6\x37\x1f\x18\xa9\x46\x6c\xee\x8f\x8b\x91\x74\xb8\xb3\xe0\x67\x44\x31\x0c\x04\xf1\x00\x44\xb9\x11\xd1\x1b\x17\x02\xaa\xf8\xfe\x3f\x8f\xaf\x41\x2b\xc0\x36\x1c\xe4\x0e\xe9\x7e\x28\x29\x18\x60\xee\x08\xbf\x62\x9f\xa0\x7d\x63\xc6\x57\x90\xd6\xee\xa0\xb2\xbe\x87\x15\xed\x31\xca\x6d\xac\x65\x59\xd3\xed\x16\xb8\xc3\x74\xe8\xa9\x30\x4b\xf9\xe6\x89\xca\xd6\xa9\x79\xae\xda\x4a\x59\xad\x4b\xd0\xe2\x50\x31\xf0\x64\x00\xce\x4f\x99\xdc\xfb\xbc\x9b\xd3\x96\xd7\x0d\x87\xbf\x12\x0f\xe4\x0f\xd0\x03\x7a\x1e\xfc\x98\xf7\x4e\x22\x1f\xa4\xc5\x59\xb9\x1b\x52\x49\xf6\x9d\xe6\x79\xfc\xb7\x78\x1a\x96\x86\xc8\xcb\x78\x84\x73\x51\xdf\xd6\x5c\x39\xf9\x7c\xcc\xbf\x42\xc2\xab\xe9\x25\x79\xfa\x4b\x94\xfa\xc3\xee\x0d\x68\xc3\x91\x8f\x86\xfe\xaf\xf6\x69\x30\x01\xbb\x11\xb7\x69\xf6\x64\x43\xb7\x18\x9c\x98\x93\xea\x25\x10\xf7\xfd\x87\xd4\xe1\x3e\x9d\xcd\x12\x17\x99\x7c\x84\xfd\x25\x19\xb5\x07\x91\x7b\x20\x07\xc4\x12\xc5\x1d\x72\x31\xff\x97\xdd\x83\xc2\x38\x0f\x2e\xc2\xc5\x7d\x5d\x04\xe3\x20\x7c\x05\x87\x80\x2a\xb4\xf2\xf7\x5b\x79\x91\x54\x0a\x66\xe9\xc2\x1b\x50\x8a\xae\xe0\x92\x3c\x2d\xa2\x0a\xe7\xac\x32\x14\xc6\x99\x39\x2f\x83\xed\xc3\x9e\x3d\x1c\xe0\xb5\x40\x2c\x09\x4f\x33\xa1\xba\x07\xeb\x9d\x94\xa2\x1f\x53\x8a\xa6\xb5\x77\xc6\x3a\xae\xa9\x77\x84\x3b\x63\xf8\xac\x28\xed\xc5\xce\x9b\x35\xe7\xc9\x48\x68\x84\x6c\x13\xe3\x5b\x75\x15\x9c\x32\xc0\xfe\x42\x34\xc3\x16\x36\x6d\x5b\x09\x58\xb0\xc5\x4c\x8a\x93\x4a\x8b\x01\x8b\xcc\xb3\xe8\xba\x20\xaf\xb3\x1c\xf6\x12\x1a\xba\x53\x30\x08\x34\x8a\xfb\x9d\x61\xa5\xd4\x20\x1f\x6c\x49\x5d\x5b\xcd\xb3\x67\xe4\xa1\xb6\xf4\x09\xb9\x7e\xb8\x35\xad\xb5\x5b\x9c\x6e\xc3\x73\xd7\x31\xb2\xbf\x99\x29\xfe\xcd\x25\x01\xaa\x89\x2c\xc6\xeb\x09\x2b\xe6\x32\x54\x9d\x14\x7f\x05\x7e\x4a\xb6\x20\x36\x91\x13\x0e\x77\xb5\x64\x52\x61\xb6\x85\xd2\x27\x71\x61\xc4\x1c\xa3\x43\x94\x2f\xf7\xd4\x12\x4d\x96\xbb\xae\x03\x69\x7d\x6d\xa1\xc9\x56\x8a\x2d\xc8\x7e\x6f\xd0\x7f\x92\xdb\xbc\x5c\xec\xfe\x08\xba\xda\x07\x3c\x2f\x22\xea\x26\x72\x2b\x42\x71\xf1\x90\xbb\x51\xac\x33\xd8\x68\xc3\x74\x6f\xa5\x97\xb0\x17\xc6\xc9\x8c\x11\x98\x11\x45\x3b\x3c\x5a\x1b\xfa\x31\xe4\xf7\xfe\x01\x8e\xe4\x28\xfb\x73\xee\x9f\x18\x54\xc7\x1f\x0b\x8e\x1a\xf7\x21\xb6\xd6\xfb\x7b\xd9\x9f\xf7\xa7\x1e\xdf\x9b\x62\x33\x7e\x8c\x32\xaf\xe6\xc0\xdc\xc1\xef\x5c\x9e\xd6\xed\x44\xbf\x8f\xfb\xa1\x31\x10\x91\x18\xb1\x24\x35\x98\x1c\x6c\x9c\xfd\x4e\x1c\x01\x6f\x2c\x6a\x56\xaa\x60\x64\x45\xce\xee\xe9\xbb\x92\xab\x0a\x6b\x9f\x3d\x3b\x6d\xa5\x6c\x9f\x6b\xb0\x66\x05\xa4\xc1\x3e\xe2\x91\x34\xca\xde\x1d\x4a\xa3\xc2\x97\x12\xe8\xc7\x22\x19\xba\xf7\xf9\x1b\xeb\xd0\x60\x39\x52\xcd\xc9\x5b\xff\x43\x04\xc4\xb6\xec\x23\x5f\x8b\xf0\x22\x3d\xe0\xf7\x35\xa9\xf7\x10\xf2\xe4\x83\xf1\x5d\x1f\x56\x44\xcb\x96\x38\xd8\x55\x84\xd9\x5d\x4a\xb6\xc0\x5b\xc3\x89\x70\x2b\x46\x61\x57\xba\x67\xc3\x6e\xbb\x92\xb4\x85\x99\xd3\xef\x99\x83\x9e\x00\x74\xfd\x09\x71\x25\xbb\xdd\x49\xdf\x13\x52\x4b\xd4\x93\xd4\x14\xbc\xb1\xa8\xbc\x71\x98\x60\x7b\xfc\x3b\x5f\x54\x41\x34\x8c\x45\xf0\x3f\xbf\xf3\x45\x76\xdf\xb8\x41\x1b\xcd\x6e\xe1\x1d\x83\xbb\x43\x86\x02\x5b\xbf\xed\x22\x0e\x60\x55\x21\x18\x10\x2f\x0c\x30\xaa\xa1\x75\x3f\x4d\x42\x4d\xbf\x44\x21\x5d\x7a\xf8\x7b\x7a\x44\x54\x94\x16\x12\x4e\x20\xda\xed\xc1\x65\x86\x7b\xbc\xb3\x24\xed\x28\x28\x4b\x92\x56\x17\x99\x6d\x53\xb5\xbe\x10\xbb\x5d\x26\xca\xf9\x08\xb0\x55\xae\x18\x23\xba\xda\x5d\x20\x12\xaa\xec\xf6\x56\x92\x85\x1f\x3c\x52\x6c\xef\x58\x02\x59\x03\xa6\x57\xfa\xbd\xbf\x49\x92\x5d\x86\x1a\xaa\x74\xb1\x67\x96\xdf\x98\x1a\x2e\x64\x05\xc7\x10\x6b\xf8\x71\xbb\x11\x22\x3f\x1b\xea\x57\x86\x0c\x1c\x19\x89\x9f\xda\x2b\x0d\x1b\x43\x17\x57\x14\xaf\x39\x94\x35\x90\x81\x6b\x71\x1d\x64\x10\xda\x21\xf0\x1c\x87\xec\x4a\x45\xa8\xa1\x4b\x41\x0f\xe0\x26\xd5\x6b\x02\xcd\x1a\x9a\x8f\xaf\x6a\x76\x66\x92\xe9\x1e\x1c\x6e\x18\x31\x22\x3b\x18\xfe\xbe\xee\x7e\x01\x68\xa1\xcd\x01\xb0\x8e\x4c\x9e\x9c\x1e\x36\x1f\x6e\xec\xbd\x57\xee\x74\x24\x2a\xb7\x3d\xbe\x75\x22\xcb\x8a\xd9\xa4\xd2\x4b\x51\x2e\x37\x38\x50\xef\xf2\xe1\x93\x69\x55\x39\xba\xa2\x9d\x59\x79\x8a\x3b\x76\xea\xf2\xa4\xd2\xcb\x91\x33\xad\x54\xf2\x69\xa3\x48\x85\xa6\xe2\xab\xd2\x3c\x0e\x7d\x22\x25\x03\xc6\xcb\x8d\xc5\x6d\x83\x17\x68\x0a\xcb\xf3\x15\x2a\xa1\xd1\x57\xa1\xc7\xc6\x05\x04\xe6\xe0\xa9\x2c\xc9\x93\xf6\x6d\x93\x24\xce\x73\x49\x1f\xc1\x7f\xa7\xb3\xb2\x6e\xe6\xe6\xd8\x0b\x76\xd8\xdc\x6b\xc6\x52\xbe\x0f\x05\x70\x97\x48\xc6\x5a\xf5\x11\xc9\x1b\xe7\x44\xd5\x14\x1c\x99\xf2\x6d\x94\x26\x38\x64\x67\x5f\x9a\x03\xed\x28\x88\x73\xe0\x2e\x9f\x1c\x28\x2d\xbc\x97\xb8\xcc\x64\xa2\xf1\x76\x7e\x58\x44\xc7\xb4\x46\x79\x41\xe1\xd1\xbe\x7d\xf5\xd8\x3f\x32\xa0\x89\x67\xdf\x52\x19\xf8\x60\x1b\x43\x16\xa7\x47\xd3\x95\x64\x51\x0a\xeb\xea\x11\xc1\x76\xc6\x8a\xfb\xe5\x9f\x12\x34\x6e\xc8\xd5\xa2\xc6\xa2\x4a\x02\x3a\xe3\x44\xfa\xf9\xdb\x22\x55\x95\x6f\x77\x36\xbf\x26\xe7\x07\xf2\x12\xd5\x0a\x29\xf7\x05\xaa\x07\x88\x45\x81\xcd\xff\x9c\xcc\x87\xad\xed\x3e\x06\x64\x4a\xd9\x91\xbc\xc0\xeb\x8e\xdc\x81\xbf\x87\x40\x87\x53\x2f\xe1\x39\x9a\x85\x03\xb7\xba\x1f\x99\xf2\xae\xe0\x83\x7d\x84\x66\x45\x4a\x46\x1c\x09\xef\x64\x61\x7f\x8e\x8f\x19\x9c\x63\x8a\x25\x2d\xee\xdb\xe5\x46\xb4\xd4\xfd\x9c\x95\x87\x39\xef\xab\x93\xe2\x88\x69\x2e\x95\x39\xe4\x7b\x69\xbe\xf8\x53\x11\xb8\x59\xb4\xc6\x90\x29\x16\xa9\x45\x39\x29\x82\x4f\xfc\xe1\x28\x7d\x81\x38\x16\xc9\x27\xd5\x62\x93\x22\x78\x18\xf1\x98\x1c\xf9\xf5\x9e\xdd\xbc\x3f\xf1\xdc\x77\x53\xf8\x86\x64\xba\x71\x99\x57\xaa\x42\xb9\xd9\xdb\x7c\x17\x23\xd4\xde\x31\x08\x8e\xba\x11\xa1\x51\x77\xae\xe2\x7f\x55\x84\x08\x5d\x05\x97\xce\xac\xcd\x58\x90\xf7\x37\x85\xd6\x7a\xb4\xc9\xb4\x8a\xd3\x3d\x3b\x10\x3f\x37\xf0\x2f\x3b\xa5\x7d\xcb\x39\xe6\xa6\xa9\xc2\x3e\xc0\x79\x0d\x84\xe7\xa7\xa2\x1d\xcc\x82\x4f\x44\xa8\x26\x3d\xb8\x79\x2e\xd9\x7e\xac\x95\xb2\x80\x1e\xb3\x65\x8e\xd5\xe8\xf6\xb8\x4e\x7e\x5f\x2d\x63\x3e\x2a\xc7\x76\x42\x39\xe8\xa6\x58\xf5\xe6\x49\x79\x93\xd6\xf3\x34\xa2\xeb\x88\x4e\x7e\xfe\x9d\x6d\xc6\x69\xfa\x5d\x9b\xbd\x67\x61\xbc\x34\xd1\x86\x30\x77\x48\xe3\x2d\x8d\x1c\x17\xce\x8b\xd2\x54\x1a\xa5\x5b\xe1\x60\x5d\x6e\xbe\xff\xfe\xe1\x76\x70\x5a\x94\xab\xb0\x41\x8b\xb7\x8f\x28\xd2\x97\xa1\xa2\x25\xe9\x8a\x5c\x8c\xf4\x4d\xb9\x93\x8e\xa5\x9b\x70\x7b\xc1\xeb\x89\x50\xaf\xa1\x9a\x5c\x94\x21\x8c\xe3\xd8\xc5\xd8\x1e\xf9\x22\x22\x0e\x3e\xab\x56\x05\xaf\x90\xf0\x12\xc5\x70\x63\xe8\x7e\x39\x60\x56\xca\xda\xc3\x0e\x0a\xae\x5d\x13\x53\x5b\x70\x3c\xe2\xc5\x1d\x92\xe5\x43\xf7\xc3\x8e\xf4\x1d\x44\xda\x74\xac\xfe\x32\xf5\x89\xb4\xf2\xfe\xd8\xfd\x7b\x1d\x0e\xa0\x9a\xc7\x90\x71\x8e\xbb\x96\xa4\x4a\xd3\x4f\xf5\x0b\x1a\xae\xe3\xb9\x3a\xff\xc0\xa5\x0d\xc7\x8d\x5f\xf2\x78\xcf\x87\x7a\x63\xbc\xc0\x1c\xc5\x78\xa4\x98\x73\xe0\x95\x7b\x6b\xc3\xa2\x2a\xcb\xad\x1b\x7a\xa2\x92\x86\x0b\x13\x09\xaa\x81\x07\x12\x9a\xe2\x7d\x99\xe1\xd6\xd8\xbf\xd1\xbd\x47\x31\xbd\x4f\x76\x92\x45\x3d\x72\xa1\xca\x1c\x45\x7f\xb2\x17\xe4\xc2\xd8\xf4\xb8\x71\xd9\x69\x85\x70\xe6\x39\xdc\x82\x24\x17\xae\xc1\xc9\x13\x79\x11\xdd\x08\x73\xf6\x6a\x4b\x23\xdb\xc4\x3a\x3c\xb7\xcc\x05\x3e\xa7\x2a\xd3\xcf\xb5\x3a\x88\x05\x72\x8d\x77\x1d\x43\x35\xc1\x7e\xe9\x94\xba\xc5\x71\x09\xa7\xa2\x99\x3d\x01\x31\x70\x23\xbe\xf9\x57\x51\x29\x66\xcd\xe7\x91\x11\xab\x86\x1e\x03\xb4\xaf\xd3\x67\x15\x29\x94\x58\x15\x8e\xa3\xea\x90\xb8\x49\xf6\xf4\xcf\x83\xaf\x12\xb7\xc9\xd8\x13\x18\x3c\x98\x35\x33\xf1\x00\xde\xa3\x19\x2f\x55\xc5\x87\xe8\x80\xd2\x8c\x4f\xcf\x81\xc3\x3a\x64\x3b\x0a\xa1\xfd\x3e\xe2\xec\x57\x11\xa8\xd3\xf9\x87\xeb\xdc\xd4\x34\xf9\x08\xb9\xe3\x72\xe1\xe6\xc7\xe1\x6b\xe1\xc1\x63\xca\x49\x19\x0b\x6c\x3c\x44\xf7\x4c\x59\xb8\x06\x48\x15\x69\xc4\x66\x4b\x35\x3e\x25\xe6\xd4\x8a\x1d\x73\x60\xd3\x8e\xd8\x8c\x09\x74\x1d\x60\x64\xf1\x22\xce\x64\x84\x2a\xcc\xb1\x7b\x99\x09\x2f\x15\x50\xd9\xac\x5f\x09\xf9\xb2\x17\x0a\x94\xfe\x29\xa0\x94\x94\x08\xd3\x76\xbe\x3a\x02\xd3\x33\xf2\x18\x29\xab\x5f\x44\x7e\x43\x57\x50\xb9\x8c\xbc\x45\x7d\xf2\x3a\x0a\xd0\xc3\x2f\x20\xdf\x1c\xfc\x51\x0b\x4d\xfb\x9f\xf1\xb8\xd6\x07\xe0\x35\xdf\x6a\x66\x19\x87\x0e\x82\xcd\x99\x9e\x04\x24\x66\xc9\xaa\xb3\x62\x99\x99\x83\x7b\x42\xc2\xda\x5d\xd2\x5f\xe1\xc3\x42\x34\x4b\xfa\xd8\x1f\xed\x52\xe6\x77\xfb\x57\x39\x24\x5a\x9f\x2c\x62\x6c\xca\xa1\x8e\xe0\x85\xc3\x30\x13\xf2\x40\x73\xc5\x9b\xa0\x88\x9f\x71\x20\x46\x6e\xc5\xe0\x10\xa6\x9c\x41\xa4\xfe\x85\x00\x6b\x4c\xd5\xae\xd7\xb6\x61\xa5\x7e\xc3\x74\xfc\x1c\x30\x50\x86\xfa\x43\xbb\x50\xd1\x4c\xb9\x2c\x15\xed\xa7\x88\xed\xf5\x82\x5c\x5c\x92\xa7\xf8\xb7\xbf\xbd\x9b\xbd\x68\x32\xbc\x7a\x70\x91\x96\xab\xfd\xde\x5c\x5b\x10\xee\x53\x15\x4a\x34\x33\xb3\x15\xe9\xee\x3d\xbc\xbf\x3f\x04\x46\x3e\x91\x89\x24\x7d\x53\x88\x8d\x0f\x36\x5c\x86\x30\x59\x3f\x13\xce\x18\x5a\x4d\xac\xbe\x24\x8b\x03\x6f\xfd\xe0\x68\xe6\xb7\x35\x04\xc2\xd0\xb1\xe5\x23\x78\xe3\x8b\x0f\x27\xf9\x60\xc2\xa1\x4e\xfc\x62\x31\x2c\x52\xb5\x03\x15\x89\x72\x02\x68\xfe\x1b\x49\xa0\xfb\x23\xd3\x05\xd1\x87\x41\x27\xd8\xff\xe7\x19\x22\xf3\xaf\xf3\x5d\xc7\x98\xef\x1b\x33\x7d\x73\xd5\xb3\x06\xf0\xb6\xf0\x65\x44\xd0\x8c\xec\xb6\x6f\xc5\x65\x20\x2a\xd7\x36\x76\xe9\x47\x44\x55\x5f\x72\x8d\xff\xf7\x66\xd0\x97\xb3\xe8\x6e\x23\xe3\xc6\xba\x59\x13\x36\x34\xd8\x62\x19\x8c\xf1\x96\x34\xd6\xa4\xb9\xb7\x1b\x3e\xc2\xde\xb0\xd1\x91\xf4\x16\x2f\x5b\xda\x5b\x14\x8a\x5c\x2d\x88\xa6\x72\xe5\xc5\x06\x57\x28\x2e\x13\xda\xb6\x89\x07\x98\xcb\x60\x97\x8b\x88\x66\x70\xef\xfa\xd0\x6b\x1e\x3d\xfb\xd0\x79\xac\xf0\x22\xc5\x5e\xf0\x36\x11\xf1\xde\xeb\x88\x71\xd1\xc8\xd4\x02\xeb\xd2\x16\xfb\x63\x4e\x55\x94\x07\x1a\x79\x81\xe5\x94\xe9\xf5\x74\x38\xf9\x03\x46\x5c\x7e\x1b\x91\x7a\x95\xe8\x91\x1e\xba\x34\x55\x61\xbe\x94\xae\xc0\x95\x51\x77\x7e\x4e\x7e\x16\x62\x4b\x76\x5c\xb3\xde\xc3\xc4\x02\x20\x48\x45\x1a\x29\xd4\x00\xdb\xe6\x30\x10\xfa\x95\x83\x97\x1f\x0f\x49\x36\xac\x25\x0b\x32\xc1\x51\xdf\xda\x51\x53\x72\x4e\x7e\x5f\xe4\x6b\x46\xb9\xb0\x61\x6d\xde\x92\x7c\xe4\xdd\xae\x51\x50\x23\x09\xf1\x6c\x7b\xaf\x4e\x41\xac\xd2\x96\xdd\x21\xe1\xae\xe7\x3b\xbd\x92\x71\x14\x20\x79\x5e\x88\xca\x7d\x29\xac\xa7\x1d\xbf\x94\x1c\x73\x52\xb0\x61\x69\x73\xd7\xc1\xf2\x92\x23\xec\xca\xec\x68\x88\xda\x72\x1a\x4f\x60\x1a\xf9\xb6\x3c\x0f\x8f\xdb\xc6\x3a\x81\x4e\xf6\xdd\x8a\x07\xf6\xfd\x4b\x45\xa1\xa0\xc7\x15\xde\x28\xe9\xc2\x95\xca\xce\x60\x72\x8a\x9f\x3e\xa0\x7a\x71\x93\xfb\x80\xc7\x9f\x5d\xf5\x05\x95\x47\xbd\xba\x5a\xeb\x0c\xc3\xba\x57\x72\x3b\x1a\x1f\x2f\x21\xb7\x0c\xee\xe6\xf8\xe8\x0d\x6f\x59\x93\x5d\xa0\x76\x95\xb3\x00\x18\x1b\x22\xa8\x26\x1f\xdc\x80\x0f\xbe\xd3\xae\x11\x1b\x70\x25\x1d\x13\xaa\x19\xa0\xe4\xc3\x50\xc6\xf9\x30\x2f\xc2\x95\x1a\x8a\x65\xbc\x12\xda\xd9\x0e\x3c\x9c\x54\x36\xd3\x65\x6f\x27\x65\x00\x4e\x69\xbf\x3b\xf2\x20\x52\x18\x32\x40\x22\x8b\x08\xec\xe1\x78\x37\x7f\x40\x27\xbc\x99\xed\xab\x4b\x98\xd5\xb7\xbb\x30\x34\xe5\x66\x12\x11\x3d\x9f\xb3\x84\xa8\xba\xd9\x66\x1d\x6f\xb4\x31\x31\x02\xf6\x3a\xb2\x15\xb7\x5e\xf7\x12\x56\x8c\x93\x9d\xf2\x1d\x33\x7e\xea\xa1\x35\x02\x44\xff\x56\x34\x53\x19\x09\xf8\x05\xed\xa1\x9d\x59\x71\xc2\x71\xc5\xee\x23\x8d\xc6\x92\xc4\x58\xe2\x8b\x3b\x44\xee\xb8\x7f\x64\xb7\xfe\x10\x50\x2b\xc0\xb6\xb3\xab\xdd\x76\x2b\xa4\x26\x1f\xca\xb2\xe3\x87\x00\x14\xc5\x51\x69\xb1\x25\x5b\x29\x8c\x1f\x62\x60\x73\xb8\xf3\x37\x00\x7c\xb6\x7f\x6f\x1f\xf3\x4e\x50\x7d\xa1\x33\x51\xb5\x24\x7e\xc5\x3e\xcf\x38\x18\xdc\x88\x5b\x77\x4d\xc1\x97\xa9\xc7\xca\xda\x78\x85\xca\x3f\xf4\x62\x38\xed\x73\xb1\x2c\x7a\x4f\xe8\x35\xbe\x1f\x32\x06\xe6\x8e\xc6\x25\xf0\x59\x80\xc2\x59\x7f\xe0\x25\x08\x17\x42\x9e\x52\xab\xbe\xac\x1e\xea\xef\x0f\x24\xa2\x5d\xe7\xe4\xbc\x17\xb4\xbd\xaa\x4d\xbc\x76\x5e\xf9\xb9\xc3\xf6\xfc\x38\x0e\x95\x97\xdf\x50\xe7\x9d\xca\x65\x2d\xd2\xee\x00\x2b\xa6\xa3\x53\x36\x74\x4f\x68\x2f\x81\xb6\x58\x63\x43\x25\xdb\xce\x86\x17\xfb\x6c\xd7\x57\xd4\x74\x89\x12\x2a\xe1\x16\xe4\xa1\x67\x40\xec\xbb\x7e\xf7\xec\xb9\xad\x71\x30\x56\x6c\xff\x18\x9e\xc7\x2a\xb7\x7c\x60\xa6\xa6\x70\x11\xaf\xfc\xc9\x23\xb2\x18\x30\x28\x82\x2b\x1c\x9c\xce\xaf\x3d\x5d\x34\x0a\x23\x4c\xc8\xaa\x00\x78\x37\x9a\xa2\x0f\xf0\x5c\x0f\xd7\x84\xfc\x1d\x14\xb3\x97\x2f\xde\xbc\x26\x8a\x6d\xb6\xbd\x6b\x24\xdc\x08\x09\x44\x8a\xe5\x4e\x69\x92\x44\x19\xe8\x48\xd4\xf2\x10\xd5\x47\xe1\xd2\xb4\x51\x6e\x86\xa2\xee\x9d\xcf\x66\x7a\x7c\x45\xff\xd2\x7c\xf1\x65\x74\xda\xf0\x30\xd1\x82\xbc\xcf\xe7\xdf\x8c\x4e\xcd\x2e\x06\x1c\xdc\xdb\x14\xc8\x29\xdd\x4c\x27\x94\xa3\x30\x78\x89\x77\x28\xb4\x1c\x59\xd5\xec\x2a\xde\xf6\x81\xbe\xa1\xff\xd9\x1c\x63\x70\x2f\xe5\xc7\xee\x5c\xba\xf4\xc9\xd7\x6e\x93\xa3\xa3\xe8\x2d\x4c\xae\x9e\x37\x98\x92\xb2\xcf\xd1\x4c\xa6\x26\x18\xbf\xac\x8b\xf2\xf4\x14\x30\x3f\x0d\xbd\xd6\x11\xa8\x9a\x54\xfb\xd3\xf6\xe5\x8c\xfc\x57\x00\x00\x00\xff\xff\xa4\x78\xd2\xe0\x5d\x64\x00\x00" func nodeversionbeaconCdcBytes() ([]byte, error) { return bindataRead( @@ -260,7 +260,7 @@ func nodeversionbeaconCdc() (*asset, error) { } info := bindataFileInfo{name: "NodeVersionBeacon.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x36, 0xb0, 0x47, 0x1b, 0xf3, 0xc3, 0x30, 0xb2, 0x45, 0xc3, 0xd9, 0xe2, 0x4b, 0x2c, 0x29, 0xa5, 0xef, 0x8c, 0x26, 0x11, 0x16, 0x67, 0x34, 0xe, 0x1b, 0xcf, 0xa, 0x2e, 0x1d, 0x1c, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x57, 0xa8, 0x9f, 0x4e, 0x54, 0xe5, 0x83, 0xc8, 0xf5, 0x51, 0xc2, 0x8b, 0x15, 0xdc, 0xfc, 0x1d, 0x8b, 0xa0, 0x59, 0x11, 0x2e, 0x3, 0x89, 0x5a, 0x71, 0xd3, 0xb4, 0xb6, 0x0, 0x56, 0x81}} return a, nil } From c8b8e1a85dd23288ad55e40168e086608c67e0ec Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Tue, 27 Feb 2024 11:34:34 -0800 Subject: [PATCH 4/6] add smoketest for setting protostate version --- contracts/NodeVersionBeacon.cdc | 12 +++-- lib/go/contracts/internal/assets/assets.go | 6 +-- lib/go/templates/internal/assets/assets.go | 23 +++++++++ .../node_version_beacon_templates.go | 9 ++++ lib/go/test/node_version_beacon_test.go | 51 +++++++++++++++++++ .../admin/set_protocol_state_version.cdc | 25 +++++++++ 6 files changed, 120 insertions(+), 6 deletions(-) create mode 100644 transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 52e029ec6..da4ff455b 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -353,7 +353,7 @@ pub contract NodeVersionBeacon { /// Emit a ProtocolStateVersionUpgrade event, if a pending upgrade is in storage. access(self) fun emitProtocolStateVersionUpgradeEventIfNeeded() { - let pendingUpgrade = NodeVersionBeacon.getPendingProtocolStateVersionUpgrade() + let pendingUpgrade = NodeVersionBeacon.popPendingProtocolStateVersionUpgrade() if pendingUpgrade == nil { return } @@ -545,14 +545,20 @@ pub contract NodeVersionBeacon { /// Removes the pending ProtocolStateVersionUpgrade from storage and returns it. /// If no ProtocolStateVersionUpgrade was in storage, returns nil. - access(contract) fun getPendingProtocolStateVersionUpgrade(): ViewActivatedVersion? { + access(contract) fun popPendingProtocolStateVersionUpgrade(): ViewActivatedVersion? { return self.account.load(from: /storage/PendingProtocolStateVersionUpgrade) } + /// Reads the pending ProtocolStateVersionUpgrade from storage, without removing it, and returns it. + /// If no ProtocolStateVersionUpgrade was in storage, returns nil. + pub fun peekPendingProtocolStateVersionUpgrade(): ViewActivatedVersion? { + return self.account.copy(from: /storage/PendingProtocolStateVersionUpgrade) + } + /// Stores the pending ProtocolStateVersionUpgrade to storage. /// No ProtocolStateVersionUpgrade may already be stored, otherwise the transaction will revert. access(contract) fun storePendingProtocolStateVersionUpgrade(upgrade: ViewActivatedVersion) { - self.account.load(from: /storage/PendingProtocolStateVersionUpgrade) + self.account.save(upgrade, to: /storage/PendingProtocolStateVersionUpgrade) } init(versionUpdateFreezePeriod: UInt64) { diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index d799e5879..daa2a29a0 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -8,7 +8,7 @@ // FlowStorageFees.cdc (9.156kB) // FlowToken.cdc (11.433kB) // LockedTokens.cdc (29.28kB) -// NodeVersionBeacon.cdc (25.693kB) +// NodeVersionBeacon.cdc (26.067kB) // RandomBeaconHistory.cdc (6.953kB) // StakingProxy.cdc (5.483kB) // epochs/FlowClusterQC.cdc (17.938kB) @@ -244,7 +244,7 @@ func lockedtokensCdc() (*asset, error) { return a, nil } -var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7c\x5b\x73\x5b\x37\x92\xf0\xbb\x7e\x05\xec\x07\x0f\x99\xd0\x94\x32\xdf\x57\x5b\x5b\x2a\x51\x29\xc7\x13\x4f\xbc\x9b\xcd\xb8\x26\x8e\xf7\xc1\xa5\x5a\x83\xe7\xf4\x21\xb1\x3e\x04\x38\x00\x28\x99\xe3\xf1\x7f\xdf\x42\xe3\x72\x70\xe3\x21\x25\x79\x66\x2f\x7e\x48\x44\x12\x68\x74\x37\x1a\x7d\x07\xce\xcf\xcf\xc9\xdb\x35\x90\x5f\x44\x0b\xef\x40\x2a\x26\xf8\x0f\x40\x1b\xc1\x49\x23\xb8\x96\xb4\xd1\x64\x2d\xfa\x56\x11\xbd\x06\xb2\xa5\x4a\x13\xca\x5b\xd2\xed\xf4\x4e\x02\xd9\x4a\xa1\x45\x23\x7a\x72\x6b\x67\xaa\xf9\x99\x81\xa7\xd7\x54\x13\xb5\x16\xbb\xbe\x25\x4b\x20\x3b\x05\x2d\xd1\x82\xc0\x27\x68\x76\x1a\xce\xd7\x94\xb7\x3d\x90\x65\x2f\x9a\x8f\x8a\x50\x4d\x28\x25\x2b\x76\x0b\xdc\x7e\x45\xd6\xc0\x56\x6b\x6d\x41\x9d\x79\xfc\x14\xc8\x5b\xd6\x00\xa1\x4d\x23\x76\x3c\x46\xaa\xc0\x7c\xfe\x13\x50\xa9\x97\x40\x35\x91\xa0\xc4\x4e\x36\x80\x60\xee\xd6\xac\x59\x13\xa6\xcc\xb7\x5b\xc1\x15\x5b\xf6\x40\x3a\x21\x09\x6c\x98\xd6\x8c\xaf\x10\x5c\xca\x04\xb8\x05\xae\xe7\x03\x1a\xf8\x19\x59\x43\x19\xb7\xeb\x37\x3b\x29\xcd\x97\x8e\x07\xc8\x1f\xda\xf7\xf8\xdb\x6e\xdb\x88\x8d\x81\x9c\x32\x68\x80\xc4\x94\x5d\x1d\x5a\xf3\x85\xdc\x13\xcd\x36\x80\x53\x3d\x38\x4d\x0d\x9a\x4c\x91\xdd\xb6\xa5\x1a\x5a\x04\x20\x24\xa1\x61\xc4\x52\xec\x78\x4b\xe5\xde\x92\x46\x9b\x35\xb4\xb8\xcc\xd9\xc1\xbd\x9d\xbf\x68\x37\x8c\x07\xee\x20\x74\xb7\x49\xb4\x6d\x09\x87\xbb\x1c\x38\x03\xe5\x17\x6e\xd6\x94\xaf\x80\xc0\x27\xa6\x90\x69\x4e\x16\xca\x09\x73\xf2\xea\xd0\x4f\xa4\xa1\x9c\x08\xde\xef\xc9\xd2\xee\x8d\x05\xda\x12\xd6\x19\xe2\xf7\x44\x34\xcd\x4e\x12\xda\x69\x90\x09\x93\x63\x09\x21\xdf\x7a\xc8\xbf\x21\x6b\x5e\x49\x80\xbf\xc2\x1b\x90\x4c\xb4\x9e\xcf\x4c\x19\xe2\x8c\xf0\x71\x65\x50\x41\xd1\xe4\xa2\x05\x45\xd6\xf4\x16\x08\x70\xb1\x5b\xad\x1d\xd7\x05\xb2\x4f\x9b\x3f\x52\xee\x5b\xec\xa2\xcd\x3b\xb8\x2e\x12\x46\x7b\x25\x8c\xe0\x7b\xa2\x96\x7b\xa4\x81\x26\x4c\x9f\x91\xe5\x4e\x5b\x1e\xb0\xce\x1d\x1b\x90\x40\xa8\x04\xc2\x45\x21\x39\x31\xf3\xee\x98\x5e\x33\x5e\x13\xbe\x0a\x42\x42\x12\x0f\x3d\xde\xd8\x03\x2c\x0b\x14\x86\xd3\xcf\xb4\x82\xbe\x43\xba\xa2\xb3\xfc\x97\x1d\x0a\xeb\x01\xf1\xb7\x6b\x7d\xd2\x05\x15\xf3\xb3\xed\x6e\x39\xc0\x2e\x95\xce\xe7\xb3\x33\x42\x08\x31\x58\x2c\x0e\xfd\x0b\x23\x7e\x44\x85\x62\x16\xfd\x55\x53\x1d\x8e\x2e\xe3\xab\x13\x80\x84\x21\xbf\x6a\xb9\x6b\x8c\xaa\xd8\x4a\x50\xc0\x51\xa6\x95\xe8\xf4\x1d\x8d\x44\x97\x2a\xf2\x2b\x6c\x28\xd7\xac\xf1\xcb\x04\x00\xb4\x17\x7c\x85\x9b\x42\xd6\xd0\x6f\x41\x92\x6e\xc7\x1b\x83\x97\x0a\x63\x5e\x09\x49\x24\x74\x20\x81\x9b\xad\x57\x00\x64\xad\xf5\x56\x5d\x9e\x9f\x2b\xd8\xdc\x82\x9c\x0b\xb9\x3a\xc7\xe1\x86\x43\xca\xe2\xf4\x2b\xfe\x44\x3e\xe3\xf7\x1e\xd4\x4b\xb1\xd9\x0a\x0e\x5c\x2b\xd2\x42\xc7\x0c\xb9\x84\x12\xe5\xb1\xbb\x8d\xb0\xf3\xe0\x7a\xd0\x64\x43\xff\x53\xc8\x4b\xf2\xdb\x6b\xae\xff\xb9\xfc\x91\xf1\xc3\x3f\x6e\xa9\x6e\xd6\x07\x7f\x94\xf0\x67\xe8\x81\x2a\xb8\x34\x9c\x64\x7c\xf5\xfd\x59\x18\xc4\x38\xd3\x93\x78\xe1\x59\xb2\xd2\x2c\x01\x3d\xab\xc1\x9a\x46\xc4\x9b\x7f\x46\x16\xe7\x08\x91\x2c\x2c\x49\x95\x9f\xcd\x12\xe6\x67\xf3\xff\xf2\x67\x5c\x93\x2c\xec\xda\x95\x9f\x03\x12\x66\x4c\xf8\x10\x06\x7e\x39\x4b\x76\xe3\xcf\xa0\x77\x92\xab\x20\x28\x8c\xfb\x5d\xeb\x84\xdc\x50\x4d\x26\x30\x5f\xcd\xc9\xed\x15\x22\x7b\x3d\xbf\x42\xac\xae\xe7\x57\xb8\xfc\xf5\xf3\xab\x61\x89\xeb\x69\x02\x99\x2a\x42\x1d\x1b\x12\xae\x77\x3b\x4e\xb4\xb0\x3f\x4c\xa6\x9e\x53\x19\x9f\xcc\xd6\x58\xc1\x7a\x29\x24\xb8\x21\x8b\x88\x7d\xf3\x01\x44\x32\x11\xff\xcd\x1b\xc1\x1b\xaa\x27\x4f\xe7\x4f\x47\x7e\x2d\x7f\x49\xb7\x60\x74\x89\xe9\xa3\xd7\x40\x06\x8e\xaf\x91\x7c\x85\x47\xc7\x00\x35\xbb\xfa\x5c\xba\x3d\x66\x1d\x61\xda\x1a\x33\x45\x9e\x11\x89\xdb\x99\xcc\x63\x5d\x21\x18\x4f\x16\x84\xb3\x3e\x63\xb9\xf9\x67\xa7\x17\x9c\x0f\xb4\x3e\x7f\x1a\xe8\xce\x60\x3e\x49\x91\x8d\xa4\x6c\x04\x6e\x55\x28\xbf\x21\x2f\x77\x4a\x8b\x0d\x2a\x0a\x2a\xa9\x16\x52\x91\x6f\xce\xeb\x62\xab\xe5\x0e\x79\xe0\x64\xb6\x11\x12\xbd\x81\x95\x04\x6a\x4d\x2f\xe5\xc9\xbc\x2d\x55\xc6\x02\xc4\xc3\xd1\x1f\xa4\xbd\x02\x22\x8c\x05\xbb\x63\xd1\x61\xf1\xf2\x6a\x06\xfe\xd1\xc2\x7c\xbb\xa6\x7c\xf2\x1f\x76\xec\xa5\x03\x34\xbd\x24\x3f\x08\x91\x33\x94\x75\x64\x12\x9d\xf7\x27\x0b\x3b\xc9\x7e\xcc\x15\x43\xc2\xa5\x30\xe7\x3a\x9e\x92\x31\x38\xfe\x74\x60\x5d\x54\x24\xc3\xba\xe6\xe3\xd1\x75\x71\xce\x75\x3c\x65\x6c\x63\xc3\x5a\x56\x2b\x85\xb5\xf0\xe3\xb1\xb5\xec\x9c\xeb\x78\x4a\xba\x16\xa9\x4a\x11\x6e\xd6\x31\x7d\x76\x82\x60\x90\x88\x34\x33\x15\xfe\xb2\xa3\xbd\x71\x0e\xbe\x8e\x90\xfc\x49\xfe\x68\x00\xbe\x15\xa7\x49\x4b\xcc\x98\x5c\xdc\x70\xfa\x94\xfc\xed\x6f\xc3\xcf\x1e\xb6\xfd\xe9\x81\xdc\xe8\x41\xa9\xaf\x7a\x46\x7e\x06\xa5\x4e\x3f\x20\x8e\xe4\x27\x35\x9a\x07\xee\x7d\x1d\x0a\xff\x1e\x9b\xed\xa9\x7d\xd8\x4e\x57\xc9\x7e\x18\xb5\x26\x0a\x4b\xe9\x49\x66\x3d\x84\xb6\x07\xcb\xae\x73\x6e\x12\x65\x47\x9e\x3d\x4b\x5c\x9b\x44\x23\x85\x1f\x9d\x63\xb3\xa8\xea\x83\x93\x19\xf1\x0d\x7c\xa2\x8d\xee\xf7\xdf\x9c\xc2\x92\x53\xb8\xa1\xb4\x64\x8d\x7e\xd4\x59\x4e\x45\x79\x20\x38\x72\xd5\x02\xd5\x35\x8f\x2d\x62\x40\x42\xbc\x89\xe4\x2e\xe6\x17\xf3\x8b\x21\x3e\x89\x31\xff\x2b\x48\x61\xd1\x44\x3f\x2b\x77\xc6\x1d\x96\x6e\x84\x73\x73\x2f\x82\x8b\x7b\x11\xdc\xdb\x8b\xd4\xb5\xe5\xac\x9f\xe6\x28\xb9\x20\xa4\xc8\x46\xf8\xe8\xca\x30\x9a\xf1\x2c\x99\x10\x47\x1e\x7a\x0d\x4c\xda\xf0\x38\x8f\x22\x7c\x84\xe5\xd3\x04\x9f\x0b\x27\x1e\xa7\xfd\x84\x41\xb5\x75\xc6\xff\xe9\xff\x17\x63\xdc\xa2\x9e\x0f\x99\x93\x5f\x81\x30\xcb\xa7\x4c\x2b\xae\x7c\x34\x8f\x2c\x62\x3c\xca\xa1\xde\xc3\x5e\x14\x21\xce\xe8\x06\x9b\x4d\x0c\x29\x92\x39\xf9\xcd\x28\x2b\x74\xad\x6d\xac\x07\x3d\xb9\xa5\xfd\x0e\x48\x98\x6c\xf6\x20\x70\x78\x09\x9d\x90\x69\x42\x66\x99\xa6\xc7\xe6\xc3\x1e\xb2\xcd\xb6\x67\x9d\x89\xd0\xa1\x5d\x01\x69\x8c\x60\x36\xa2\x85\x61\xc8\xdb\x1c\x21\x73\xe2\x68\x96\xd6\xb8\xc0\xdd\x5e\xd3\x21\xa8\xb0\x42\x3a\x80\x79\x8d\x89\x23\xda\xdf\xd1\xbd\x25\xb2\x63\x52\x69\x02\x3d\x6c\x30\xa9\xc4\x63\x84\xfd\xbe\xff\x60\xd6\xf8\x99\x29\x5d\x0a\x79\x26\x21\x46\xda\x0f\x0b\x8d\x11\x86\x68\x92\x8f\x2a\xe2\xc3\x92\x1f\x91\x1c\x7e\xb2\xb9\x89\xe8\x5c\xcc\x52\x5f\x2c\x88\x50\xb4\xe2\x2c\x8c\x28\x8e\xd1\x8b\x90\x27\xb4\xe9\x35\x9f\x5b\xbb\x5b\x03\x1f\xcd\xaa\xa5\x5b\x14\x82\x39\xcb\xdd\x22\x1b\x60\x33\x89\x9b\x9d\xd2\x21\x27\x82\x27\xd7\xe6\x23\x30\x1e\x77\x7b\x29\x31\x57\x26\x3a\x97\xed\xac\x2f\xb3\x05\xe9\xd2\x89\x22\xca\x69\x18\x21\x78\x07\x92\x75\xac\xa1\xf8\xc5\x2f\xa2\x85\x0c\x82\x4b\x4f\x3d\x38\x1d\x49\x94\x90\xda\x66\xa8\xd2\xdc\x6b\xbc\x88\x82\xbf\xec\x80\x37\x60\x14\x90\x34\x2a\x4c\x99\xf1\x82\x03\x01\xda\xb8\xdc\x19\xe5\x45\x42\x73\x4e\x62\x79\xcd\xf2\x47\xb7\x86\xb0\x3d\xe1\xc2\x4e\x53\xe4\x0e\x24\x90\x0d\x33\x86\x66\x90\x4f\x0b\x32\xc9\x10\x0d\xb2\x93\x8a\x37\x03\x75\x49\xde\x67\x82\x76\x33\x88\x8a\x27\x22\xd1\x6f\xd3\x41\x72\x7e\x4c\xe4\x85\xf2\x4a\x26\x36\x9c\xd9\x0e\xb3\x66\x66\xdb\x98\x68\xab\x42\x54\x8c\xd8\x00\x55\x3b\x09\x46\x89\xfb\xc4\xf7\xa4\x93\x62\x53\x26\x37\xa7\x39\xf9\x71\x92\xcc\x61\x10\xa7\xed\x5e\xda\x24\xe3\xa4\x8b\xbe\xf3\x44\x46\xf4\xbd\xa4\x5c\x70\xd6\xd0\x9e\x28\x2d\x24\x5d\x81\x31\x4e\x6b\x14\xdb\x7a\x12\x3d\x4d\x11\x0f\x48\x99\xe3\x8f\xbf\xfd\x6a\xe1\xbc\xa1\x7a\x7d\x49\xa2\x0f\x8f\x58\xb3\x4c\xdc\xa7\xeb\x86\xdf\x8f\xaf\xfd\x43\xac\x51\x19\x6f\xe1\x13\xb4\xb5\x1c\x35\x4e\xa0\x4d\x03\x4a\x4d\xbc\x4a\x9f\xc6\x06\xcf\xf3\xfc\x92\x7c\xb6\x4c\x2d\x74\xe3\x17\xe2\x23\xc8\xc1\x14\xd8\x63\xf5\x42\x4a\xba\xf7\xc7\xb3\x92\xcc\x4d\x4f\xdd\x21\x64\x6e\xa9\x3c\xa8\xcb\x2f\xc9\x7b\x8b\xd5\xcd\x40\xfa\x6b\x43\xed\x31\x23\x60\x74\xd2\xc1\x34\x6d\xc0\x6f\x16\x80\x0a\x89\x29\x0f\xd6\x8d\x25\xa7\xf7\x23\x14\xa0\x89\xfa\xcd\x4d\x1c\x98\x6a\xb1\xff\x3e\x65\xdf\xe1\x6c\xb6\xd3\xc8\x7c\xb7\x59\x82\x1c\xf4\x2a\x99\x60\x69\x2a\x3e\x4c\x82\xc3\x14\x45\xcd\x2a\xeb\x82\xf3\x61\x31\x97\xdc\x77\x89\x77\x6d\x94\xa5\xb8\x33\xea\xeb\xe1\xd5\x83\x9c\x90\xbc\x8c\x70\xea\x36\xbf\xaa\x9c\xe9\x48\xc4\x85\xe8\x81\x72\xd2\xf5\x74\x85\x94\x7e\x04\xd8\xa2\xe3\x28\x69\xf3\xd1\x6c\x15\xad\x55\xb3\x08\x07\x68\x91\xaa\x25\x04\x85\x27\xb8\x95\x84\xb5\x3f\x61\x23\x48\x9a\x39\xa8\x2e\xff\xc4\x7f\x81\x4f\x3a\x1c\x4a\xeb\xca\xc7\xc6\x18\x4b\x75\x36\x5b\xa0\x23\xeb\x91\x55\xba\xde\xa5\x8e\x55\x61\x47\x0e\x63\x62\x50\x4e\x28\x44\xb4\x7e\xcd\x55\xfd\x80\x51\x5a\xf6\x42\xb4\x36\x94\x53\xb3\xfd\x95\x82\x97\x9f\xb6\xa1\x0c\x4f\xb0\x55\xdf\xda\x88\x45\xea\xfd\x19\xfd\x14\xa0\xda\x45\xd2\x9c\xfd\x8b\xb6\x55\xe6\x08\x59\x43\xa1\x2a\xc5\xbb\x79\x19\x37\x81\xce\xfd\xa6\x42\x25\x65\x03\xf2\x84\xd1\x56\x42\x25\x85\x94\x41\x49\x7c\xf0\x6b\xb2\x02\xfd\xd2\x1e\x21\xd4\x15\x93\xe9\x3c\x54\xdb\x4a\x85\x3d\x22\xaf\xd5\xcc\xed\x25\x79\xfa\x92\x72\x73\xca\x14\xe8\x73\xcb\x8d\x5a\x25\xd3\x48\x33\x9e\x68\x77\xbc\x85\xf4\x7f\x39\xb5\xc6\xc1\xa8\x14\x2c\x2f\xce\x9f\x8e\x24\xf6\x30\x54\xb5\x8a\x01\x8f\x89\x16\x36\xe4\x55\x02\xbf\xb3\xb2\x76\xc7\xfa\x3e\x3e\x0c\x78\x12\x50\x3c\xcd\x37\x2f\x9d\x7e\x30\xbb\x4e\xfb\x1e\x52\xca\x4a\x9e\x1c\x3a\x1e\x64\x81\x4b\x9f\x15\x79\x7a\x97\x7c\x5e\x1c\xe7\xef\xfb\x91\xad\xbb\x71\x59\xe9\x23\xd8\xdd\x0b\xe2\x22\x97\x95\x22\x79\xe9\x70\x2f\x85\x0c\x2b\x8e\x4c\x91\x3b\x13\x6b\x71\x27\xf8\x86\xed\x5c\xe8\xb5\x51\x52\xd0\x2b\x48\x54\x51\x2b\x38\x1c\x48\x77\x8e\x66\x35\xcf\xcf\xc9\xbf\x83\xd5\xc7\x5a\x10\xc6\x15\x48\xbb\xe1\xcb\xd4\x05\xd0\x76\xcb\x85\x6c\xc1\x38\x62\x7d\x88\x84\x22\x40\x5e\xe5\x53\x4e\x18\x87\xae\x63\x0d\xc3\xe8\xbb\x5f\x09\xc9\xf4\x7a\x63\x8b\xb6\x0c\xd5\x93\x91\x62\xf8\xb4\x85\xc6\x88\x0c\xaa\x12\x03\xbe\x77\xb6\x35\x87\x5c\xba\xde\x5e\xea\x4c\x0c\x9f\x22\x62\x54\x1b\x3b\x45\x1e\x86\x90\xae\x07\xbe\xd2\x69\xf6\xf7\x6e\xcd\x4c\x88\x43\xae\xc9\x77\xe4\xd9\xb3\x7b\x00\x7b\xcf\x9e\x7f\x77\x43\xae\x47\xf5\x44\x65\xc7\x0d\xc6\x8c\x3c\x27\xdf\x8d\x1c\xc7\x7b\x50\x64\x37\x72\x62\xcc\x0a\x9b\x8d\xe1\x32\x2d\xc4\x81\x0b\x14\x2c\x23\x0e\xae\x59\x21\xc4\xc8\xb9\x03\x42\x76\x1c\x53\x9c\x4c\xa3\xa4\xe6\xe7\xc7\xb8\x07\x26\x8a\xff\xee\xd2\xfa\x90\x64\x2b\x98\x89\x56\xb4\x20\x94\x18\x37\x41\xa6\x52\xa6\x7d\x9c\x69\xa2\x23\x4b\x41\xa6\x2f\xce\xcf\xc9\xe2\xda\x2c\xe7\xfa\x63\x24\x18\xeb\x62\xe1\x62\xe4\xa8\xbd\xb5\x6c\xe1\x53\x15\x97\xdf\x97\xb8\xa0\x2a\xe3\x1a\x2b\xf2\xd4\x52\x22\x61\xdb\xd3\xc6\x37\x1f\x18\xa9\x46\x6c\xee\x8f\x8b\x91\x74\xb8\xb3\xe0\x67\x44\x31\x0c\x04\xf1\x00\x44\xb9\x11\xd1\x1b\x17\x02\xaa\xf8\xfe\x3f\x8f\xaf\x41\x2b\xc0\x36\x1c\xe4\x0e\xe9\x7e\x28\x29\x18\x60\xee\x08\xbf\x62\x9f\xa0\x7d\x63\xc6\x57\x90\xd6\xee\xa0\xb2\xbe\x87\x15\xed\x31\xca\x6d\xac\x65\x59\xd3\xed\x16\xb8\xc3\x74\xe8\xa9\x30\x4b\xf9\xe6\x89\xca\xd6\xa9\x79\xae\xda\x4a\x59\xad\x4b\xd0\xe2\x50\x31\xf0\x64\x00\xce\x4f\x99\xdc\xfb\xbc\x9b\xd3\x96\xd7\x0d\x87\xbf\x12\x0f\xe4\x0f\xd0\x03\x7a\x1e\xfc\x98\xf7\x4e\x22\x1f\xa4\xc5\x59\xb9\x1b\x52\x49\xf6\x9d\xe6\x79\xfc\xb7\x78\x1a\x96\x86\xc8\xcb\x78\x84\x73\x51\xdf\xd6\x5c\x39\xf9\x7c\xcc\xbf\x42\xc2\xab\xe9\x25\x79\xfa\x4b\x94\xfa\xc3\xee\x0d\x68\xc3\x91\x8f\x86\xfe\xaf\xf6\x69\x30\x01\xbb\x11\xb7\x69\xf6\x64\x43\xb7\x18\x9c\x98\x93\xea\x25\x10\xf7\xfd\x87\xd4\xe1\x3e\x9d\xcd\x12\x17\x99\x7c\x84\xfd\x25\x19\xb5\x07\x91\x7b\x20\x07\xc4\x12\xc5\x1d\x72\x31\xff\x97\xdd\x83\xc2\x38\x0f\x2e\xc2\xc5\x7d\x5d\x04\xe3\x20\x7c\x05\x87\x80\x2a\xb4\xf2\xf7\x5b\x79\x91\x54\x0a\x66\xe9\xc2\x1b\x50\x8a\xae\xe0\x92\x3c\x2d\xa2\x0a\xe7\xac\x32\x14\xc6\x99\x39\x2f\x83\xed\xc3\x9e\x3d\x1c\xe0\xb5\x40\x2c\x09\x4f\x33\xa1\xba\x07\xeb\x9d\x94\xa2\x1f\x53\x8a\xa6\xb5\x77\xc6\x3a\xae\xa9\x77\x84\x3b\x63\xf8\xac\x28\xed\xc5\xce\x9b\x35\xe7\xc9\x48\x68\x84\x6c\x13\xe3\x5b\x75\x15\x9c\x32\xc0\xfe\x42\x34\xc3\x16\x36\x6d\x5b\x09\x58\xb0\xc5\x4c\x8a\x93\x4a\x8b\x01\x8b\xcc\xb3\xe8\xba\x20\xaf\xb3\x1c\xf6\x12\x1a\xba\x53\x30\x08\x34\x8a\xfb\x9d\x61\xa5\xd4\x20\x1f\x6c\x49\x5d\x5b\xcd\xb3\x67\xe4\xa1\xb6\xf4\x09\xb9\x7e\xb8\x35\xad\xb5\x5b\x9c\x6e\xc3\x73\xd7\x31\xb2\xbf\x99\x29\xfe\xcd\x25\x01\xaa\x89\x2c\xc6\xeb\x09\x2b\xe6\x32\x54\x9d\x14\x7f\x05\x7e\x4a\xb6\x20\x36\x91\x13\x0e\x77\xb5\x64\x52\x61\xb6\x85\xd2\x27\x71\x61\xc4\x1c\xa3\x43\x94\x2f\xf7\xd4\x12\x4d\x96\xbb\xae\x03\x69\x7d\x6d\xa1\xc9\x56\x8a\x2d\xc8\x7e\x6f\xd0\x7f\x92\xdb\xbc\x5c\xec\xfe\x08\xba\xda\x07\x3c\x2f\x22\xea\x26\x72\x2b\x42\x71\xf1\x90\xbb\x51\xac\x33\xd8\x68\xc3\x74\x6f\xa5\x97\xb0\x17\xc6\xc9\x8c\x11\x98\x11\x45\x3b\x3c\x5a\x1b\xfa\x31\xe4\xf7\xfe\x01\x8e\xe4\x28\xfb\x73\xee\x9f\x18\x54\xc7\x1f\x0b\x8e\x1a\xf7\x21\xb6\xd6\xfb\x7b\xd9\x9f\xf7\xa7\x1e\xdf\x9b\x62\x33\x7e\x8c\x32\xaf\xe6\xc0\xdc\xc1\xef\x5c\x9e\xd6\xed\x44\xbf\x8f\xfb\xa1\x31\x10\x91\x18\xb1\x24\x35\x98\x1c\x6c\x9c\xfd\x4e\x1c\x01\x6f\x2c\x6a\x56\xaa\x60\x64\x45\xce\xee\xe9\xbb\x92\xab\x0a\x6b\x9f\x3d\x3b\x6d\xa5\x6c\x9f\x6b\xb0\x66\x05\xa4\xc1\x3e\xe2\x91\x34\xca\xde\x1d\x4a\xa3\xc2\x97\x12\xe8\xc7\x22\x19\xba\xf7\xf9\x1b\xeb\xd0\x60\x39\x52\xcd\xc9\x5b\xff\x43\x04\xc4\xb6\xec\x23\x5f\x8b\xf0\x22\x3d\xe0\xf7\x35\xa9\xf7\x10\xf2\xe4\x83\xf1\x5d\x1f\x56\x44\xcb\x96\x38\xd8\x55\x84\xd9\x5d\x4a\xb6\xc0\x5b\xc3\x89\x70\x2b\x46\x61\x57\xba\x67\xc3\x6e\xbb\x92\xb4\x85\x99\xd3\xef\x99\x83\x9e\x00\x74\xfd\x09\x71\x25\xbb\xdd\x49\xdf\x13\x52\x4b\xd4\x93\xd4\x14\xbc\xb1\xa8\xbc\x71\x98\x60\x7b\xfc\x3b\x5f\x54\x41\x34\x8c\x45\xf0\x3f\xbf\xf3\x45\x76\xdf\xb8\x41\x1b\xcd\x6e\xe1\x1d\x83\xbb\x43\x86\x02\x5b\xbf\xed\x22\x0e\x60\x55\x21\x18\x10\x2f\x0c\x30\xaa\xa1\x75\x3f\x4d\x42\x4d\xbf\x44\x21\x5d\x7a\xf8\x7b\x7a\x44\x54\x94\x16\x12\x4e\x20\xda\xed\xc1\x65\x86\x7b\xbc\xb3\x24\xed\x28\x28\x4b\x92\x56\x17\x99\x6d\x53\xb5\xbe\x10\xbb\x5d\x26\xca\xf9\x08\xb0\x55\xae\x18\x23\xba\xda\x5d\x20\x12\xaa\xec\xf6\x56\x92\x85\x1f\x3c\x52\x6c\xef\x58\x02\x59\x03\xa6\x57\xfa\xbd\xbf\x49\x92\x5d\x86\x1a\xaa\x74\xb1\x67\x96\xdf\x98\x1a\x2e\x64\x05\xc7\x10\x6b\xf8\x71\xbb\x11\x22\x3f\x1b\xea\x57\x86\x0c\x1c\x19\x89\x9f\xda\x2b\x0d\x1b\x43\x17\x57\x14\xaf\x39\x94\x35\x90\x81\x6b\x71\x1d\x64\x10\xda\x21\xf0\x1c\x87\xec\x4a\x45\xa8\xa1\x4b\x41\x0f\xe0\x26\xd5\x6b\x02\xcd\x1a\x9a\x8f\xaf\x6a\x76\x66\x92\xe9\x1e\x1c\x6e\x18\x31\x22\x3b\x18\xfe\xbe\xee\x7e\x01\x68\xa1\xcd\x01\xb0\x8e\x4c\x9e\x9c\x1e\x36\x1f\x6e\xec\xbd\x57\xee\x74\x24\x2a\xb7\x3d\xbe\x75\x22\xcb\x8a\xd9\xa4\xd2\x4b\x51\x2e\x37\x38\x50\xef\xf2\xe1\x93\x69\x55\x39\xba\xa2\x9d\x59\x79\x8a\x3b\x76\xea\xf2\xa4\xd2\xcb\x91\x33\xad\x54\xf2\x69\xa3\x48\x85\xa6\xe2\xab\xd2\x3c\x0e\x7d\x22\x25\x03\xc6\xcb\x8d\xc5\x6d\x83\x17\x68\x0a\xcb\xf3\x15\x2a\xa1\xd1\x57\xa1\xc7\xc6\x05\x04\xe6\xe0\xa9\x2c\xc9\x93\xf6\x6d\x93\x24\xce\x73\x49\x1f\xc1\x7f\xa7\xb3\xb2\x6e\xe6\xe6\xd8\x0b\x76\xd8\xdc\x6b\xc6\x52\xbe\x0f\x05\x70\x97\x48\xc6\x5a\xf5\x11\xc9\x1b\xe7\x44\xd5\x14\x1c\x99\xf2\x6d\x94\x26\x38\x64\x67\x5f\x9a\x03\xed\x28\x88\x73\xe0\x2e\x9f\x1c\x28\x2d\xbc\x97\xb8\xcc\x64\xa2\xf1\x76\x7e\x58\x44\xc7\xb4\x46\x79\x41\xe1\xd1\xbe\x7d\xf5\xd8\x3f\x32\xa0\x89\x67\xdf\x52\x19\xf8\x60\x1b\x43\x16\xa7\x47\xd3\x95\x64\x51\x0a\xeb\xea\x11\xc1\x76\xc6\x8a\xfb\xe5\x9f\x12\x34\x6e\xc8\xd5\xa2\xc6\xa2\x4a\x02\x3a\xe3\x44\xfa\xf9\xdb\x22\x55\x95\x6f\x77\x36\xbf\x26\xe7\x07\xf2\x12\xd5\x0a\x29\xf7\x05\xaa\x07\x88\x45\x81\xcd\xff\x9c\xcc\x87\xad\xed\x3e\x06\x64\x4a\xd9\x91\xbc\xc0\xeb\x8e\xdc\x81\xbf\x87\x40\x87\x53\x2f\xe1\x39\x9a\x85\x03\xb7\xba\x1f\x99\xf2\xae\xe0\x83\x7d\x84\x66\x45\x4a\x46\x1c\x09\xef\x64\x61\x7f\x8e\x8f\x19\x9c\x63\x8a\x25\x2d\xee\xdb\xe5\x46\xb4\xd4\xfd\x9c\x95\x87\x39\xef\xab\x93\xe2\x88\x69\x2e\x95\x39\xe4\x7b\x69\xbe\xf8\x53\x11\xb8\x59\xb4\xc6\x90\x29\x16\xa9\x45\x39\x29\x82\x4f\xfc\xe1\x28\x7d\x81\x38\x16\xc9\x27\xd5\x62\x93\x22\x78\x18\xf1\x98\x1c\xf9\xf5\x9e\xdd\xbc\x3f\xf1\xdc\x77\x53\xf8\x86\x64\xba\x71\x99\x57\xaa\x42\xb9\xd9\xdb\x7c\x17\x23\xd4\xde\x31\x08\x8e\xba\x11\xa1\x51\x77\xae\xe2\x7f\x55\x84\x08\x5d\x05\x97\xce\xac\xcd\x58\x90\xf7\x37\x85\xd6\x7a\xb4\xc9\xb4\x8a\xd3\x3d\x3b\x10\x3f\x37\xf0\x2f\x3b\xa5\x7d\xcb\x39\xe6\xa6\xa9\xc2\x3e\xc0\x79\x0d\x84\xe7\xa7\xa2\x1d\xcc\x82\x4f\x44\xa8\x26\x3d\xb8\x79\x2e\xd9\x7e\xac\x95\xb2\x80\x1e\xb3\x65\x8e\xd5\xe8\xf6\xb8\x4e\x7e\x5f\x2d\x63\x3e\x2a\xc7\x76\x42\x39\xe8\xa6\x58\xf5\xe6\x49\x79\x93\xd6\xf3\x34\xa2\xeb\x88\x4e\x7e\xfe\x9d\x6d\xc6\x69\xfa\x5d\x9b\xbd\x67\x61\xbc\x34\xd1\x86\x30\x77\x48\xe3\x2d\x8d\x1c\x17\xce\x8b\xd2\x54\x1a\xa5\x5b\xe1\x60\x5d\x6e\xbe\xff\xfe\xe1\x76\x70\x5a\x94\xab\xb0\x41\x8b\xb7\x8f\x28\xd2\x97\xa1\xa2\x25\xe9\x8a\x5c\x8c\xf4\x4d\xb9\x93\x8e\xa5\x9b\x70\x7b\xc1\xeb\x89\x50\xaf\xa1\x9a\x5c\x94\x21\x8c\xe3\xd8\xc5\xd8\x1e\xf9\x22\x22\x0e\x3e\xab\x56\x05\xaf\x90\xf0\x12\xc5\x70\x63\xe8\x7e\x39\x60\x56\xca\xda\xc3\x0e\x0a\xae\x5d\x13\x53\x5b\x70\x3c\xe2\xc5\x1d\x92\xe5\x43\xf7\xc3\x8e\xf4\x1d\x44\xda\x74\xac\xfe\x32\xf5\x89\xb4\xf2\xfe\xd8\xfd\x7b\x1d\x0e\xa0\x9a\xc7\x90\x71\x8e\xbb\x96\xa4\x4a\xd3\x4f\xf5\x0b\x1a\xae\xe3\xb9\x3a\xff\xc0\xa5\x0d\xc7\x8d\x5f\xf2\x78\xcf\x87\x7a\x63\xbc\xc0\x1c\xc5\x78\xa4\x98\x73\xe0\x95\x7b\x6b\xc3\xa2\x2a\xcb\xad\x1b\x7a\xa2\x92\x86\x0b\x13\x09\xaa\x81\x07\x12\x9a\xe2\x7d\x99\xe1\xd6\xd8\xbf\xd1\xbd\x47\x31\xbd\x4f\x76\x92\x45\x3d\x72\xa1\xca\x1c\x45\x7f\xb2\x17\xe4\xc2\xd8\xf4\xb8\x71\xd9\x69\x85\x70\xe6\x39\xdc\x82\x24\x17\xae\xc1\xc9\x13\x79\x11\xdd\x08\x73\xf6\x6a\x4b\x23\xdb\xc4\x3a\x3c\xb7\xcc\x05\x3e\xa7\x2a\xd3\xcf\xb5\x3a\x88\x05\x72\x8d\x77\x1d\x43\x35\xc1\x7e\xe9\x94\xba\xc5\x71\x09\xa7\xa2\x99\x3d\x01\x31\x70\x23\xbe\xf9\x57\x51\x29\x66\xcd\xe7\x91\x11\xab\x86\x1e\x03\xb4\xaf\xd3\x67\x15\x29\x94\x58\x15\x8e\xa3\xea\x90\xb8\x49\xf6\xf4\xcf\x83\xaf\x12\xb7\xc9\xd8\x13\x18\x3c\x98\x35\x33\xf1\x00\xde\xa3\x19\x2f\x55\xc5\x87\xe8\x80\xd2\x8c\x4f\xcf\x81\xc3\x3a\x64\x3b\x0a\xa1\xfd\x3e\xe2\xec\x57\x11\xa8\xd3\xf9\x87\xeb\xdc\xd4\x34\xf9\x08\xb9\xe3\x72\xe1\xe6\xc7\xe1\x6b\xe1\xc1\x63\xca\x49\x19\x0b\x6c\x3c\x44\xf7\x4c\x59\xb8\x06\x48\x15\x69\xc4\x66\x4b\x35\x3e\x25\xe6\xd4\x8a\x1d\x73\x60\xd3\x8e\xd8\x8c\x09\x74\x1d\x60\x64\xf1\x22\xce\x64\x84\x2a\xcc\xb1\x7b\x99\x09\x2f\x15\x50\xd9\xac\x5f\x09\xf9\xb2\x17\x0a\x94\xfe\x29\xa0\x94\x94\x08\xd3\x76\xbe\x3a\x02\xd3\x33\xf2\x18\x29\xab\x5f\x44\x7e\x43\x57\x50\xb9\x8c\xbc\x45\x7d\xf2\x3a\x0a\xd0\xc3\x2f\x20\xdf\x1c\xfc\x51\x0b\x4d\xfb\x9f\xf1\xb8\xd6\x07\xe0\x35\xdf\x6a\x66\x19\x87\x0e\x82\xcd\x99\x9e\x04\x24\x66\xc9\xaa\xb3\x62\x99\x99\x83\x7b\x42\xc2\xda\x5d\xd2\x5f\xe1\xc3\x42\x34\x4b\xfa\xd8\x1f\xed\x52\xe6\x77\xfb\x57\x39\x24\x5a\x9f\x2c\x62\x6c\xca\xa1\x8e\xe0\x85\xc3\x30\x13\xf2\x40\x73\xc5\x9b\xa0\x88\x9f\x71\x20\x46\x6e\xc5\xe0\x10\xa6\x9c\x41\xa4\xfe\x85\x00\x6b\x4c\xd5\xae\xd7\xb6\x61\xa5\x7e\xc3\x74\xfc\x1c\x30\x50\x86\xfa\x43\xbb\x50\xd1\x4c\xb9\x2c\x15\xed\xa7\x88\xed\xf5\x82\x5c\x5c\x92\xa7\xf8\xb7\xbf\xbd\x9b\xbd\x68\x32\xbc\x7a\x70\x91\x96\xab\xfd\xde\x5c\x5b\x10\xee\x53\x15\x4a\x34\x33\xb3\x15\xe9\xee\x3d\xbc\xbf\x3f\x04\x46\x3e\x91\x89\x24\x7d\x53\x88\x8d\x0f\x36\x5c\x86\x30\x59\x3f\x13\xce\x18\x5a\x4d\xac\xbe\x24\x8b\x03\x6f\xfd\xe0\x68\xe6\xb7\x35\x04\xc2\xd0\xb1\xe5\x23\x78\xe3\x8b\x0f\x27\xf9\x60\xc2\xa1\x4e\xfc\x62\x31\x2c\x52\xb5\x03\x15\x89\x72\x02\x68\xfe\x1b\x49\xa0\xfb\x23\xd3\x05\xd1\x87\x41\x27\xd8\xff\xe7\x19\x22\xf3\xaf\xf3\x5d\xc7\x98\xef\x1b\x33\x7d\x73\xd5\xb3\x06\xf0\xb6\xf0\x65\x44\xd0\x8c\xec\xb6\x6f\xc5\x65\x20\x2a\xd7\x36\x76\xe9\x47\x44\x55\x5f\x72\x8d\xff\xf7\x66\xd0\x97\xb3\xe8\x6e\x23\xe3\xc6\xba\x59\x13\x36\x34\xd8\x62\x19\x8c\xf1\x96\x34\xd6\xa4\xb9\xb7\x1b\x3e\xc2\xde\xb0\xd1\x91\xf4\x16\x2f\x5b\xda\x5b\x14\x8a\x5c\x2d\x88\xa6\x72\xe5\xc5\x06\x57\x28\x2e\x13\xda\xb6\x89\x07\x98\xcb\x60\x97\x8b\x88\x66\x70\xef\xfa\xd0\x6b\x1e\x3d\xfb\xd0\x79\xac\xf0\x22\xc5\x5e\xf0\x36\x11\xf1\xde\xeb\x88\x71\xd1\xc8\xd4\x02\xeb\xd2\x16\xfb\x63\x4e\x55\x94\x07\x1a\x79\x81\xe5\x94\xe9\xf5\x74\x38\xf9\x03\x46\x5c\x7e\x1b\x91\x7a\x95\xe8\x91\x1e\xba\x34\x55\x61\xbe\x94\xae\xc0\x95\x51\x77\x7e\x4e\x7e\x16\x62\x4b\x76\x5c\xb3\xde\xc3\xc4\x02\x20\x48\x45\x1a\x29\xd4\x00\xdb\xe6\x30\x10\xfa\x95\x83\x97\x1f\x0f\x49\x36\xac\x25\x0b\x32\xc1\x51\xdf\xda\x51\x53\x72\x4e\x7e\x5f\xe4\x6b\x46\xb9\xb0\x61\x6d\xde\x92\x7c\xe4\xdd\xae\x51\x50\x23\x09\xf1\x6c\x7b\xaf\x4e\x41\xac\xd2\x96\xdd\x21\xe1\xae\xe7\x3b\xbd\x92\x71\x14\x20\x79\x5e\x88\xca\x7d\x29\xac\xa7\x1d\xbf\x94\x1c\x73\x52\xb0\x61\x69\x73\xd7\xc1\xf2\x92\x23\xec\xca\xec\x68\x88\xda\x72\x1a\x4f\x60\x1a\xf9\xb6\x3c\x0f\x8f\xdb\xc6\x3a\x81\x4e\xf6\xdd\x8a\x07\xf6\xfd\x4b\x45\xa1\xa0\xc7\x15\xde\x28\xe9\xc2\x95\xca\xce\x60\x72\x8a\x9f\x3e\xa0\x7a\x71\x93\xfb\x80\xc7\x9f\x5d\xf5\x05\x95\x47\xbd\xba\x5a\xeb\x0c\xc3\xba\x57\x72\x3b\x1a\x1f\x2f\x21\xb7\x0c\xee\xe6\xf8\xe8\x0d\x6f\x59\x93\x5d\xa0\x76\x95\xb3\x00\x18\x1b\x22\xa8\x26\x1f\xdc\x80\x0f\xbe\xd3\xae\x11\x1b\x70\x25\x1d\x13\xaa\x19\xa0\xe4\xc3\x50\xc6\xf9\x30\x2f\xc2\x95\x1a\x8a\x65\xbc\x12\xda\xd9\x0e\x3c\x9c\x54\x36\xd3\x65\x6f\x27\x65\x00\x4e\x69\xbf\x3b\xf2\x20\x52\x18\x32\x40\x22\x8b\x08\xec\xe1\x78\x37\x7f\x40\x27\xbc\x99\xed\xab\x4b\x98\xd5\xb7\xbb\x30\x34\xe5\x66\x12\x11\x3d\x9f\xb3\x84\xa8\xba\xd9\x66\x1d\x6f\xb4\x31\x31\x02\xf6\x3a\xb2\x15\xb7\x5e\xf7\x12\x56\x8c\x93\x9d\xf2\x1d\x33\x7e\xea\xa1\x35\x02\x44\xff\x56\x34\x53\x19\x09\xf8\x05\xed\xa1\x9d\x59\x71\xc2\x71\xc5\xee\x23\x8d\xc6\x92\xc4\x58\xe2\x8b\x3b\x44\xee\xb8\x7f\x64\xb7\xfe\x10\x50\x2b\xc0\xb6\xb3\xab\xdd\x76\x2b\xa4\x26\x1f\xca\xb2\xe3\x87\x00\x14\xc5\x51\x69\xb1\x25\x5b\x29\x8c\x1f\x62\x60\x73\xb8\xf3\x37\x00\x7c\xb6\x7f\x6f\x1f\xf3\x4e\x50\x7d\xa1\x33\x51\xb5\x24\x7e\xc5\x3e\xcf\x38\x18\xdc\x88\x5b\x77\x4d\xc1\x97\xa9\xc7\xca\xda\x78\x85\xca\x3f\xf4\x62\x38\xed\x73\xb1\x2c\x7a\x4f\xe8\x35\xbe\x1f\x32\x06\xe6\x8e\xc6\x25\xf0\x59\x80\xc2\x59\x7f\xe0\x25\x08\x17\x42\x9e\x52\xab\xbe\xac\x1e\xea\xef\x0f\x24\xa2\x5d\xe7\xe4\xbc\x17\xb4\xbd\xaa\x4d\xbc\x76\x5e\xf9\xb9\xc3\xf6\xfc\x38\x0e\x95\x97\xdf\x50\xe7\x9d\xca\x65\x2d\xd2\xee\x00\x2b\xa6\xa3\x53\x36\x74\x4f\x68\x2f\x81\xb6\x58\x63\x43\x25\xdb\xce\x86\x17\xfb\x6c\xd7\x57\xd4\x74\x89\x12\x2a\xe1\x16\xe4\xa1\x67\x40\xec\xbb\x7e\xf7\xec\xb9\xad\x71\x30\x56\x6c\xff\x18\x9e\xc7\x2a\xb7\x7c\x60\xa6\xa6\x70\x11\xaf\xfc\xc9\x23\xb2\x18\x30\x28\x82\x2b\x1c\x9c\xce\xaf\x3d\x5d\x34\x0a\x23\x4c\xc8\xaa\x00\x78\x37\x9a\xa2\x0f\xf0\x5c\x0f\xd7\x84\xfc\x1d\x14\xb3\x97\x2f\xde\xbc\x26\x8a\x6d\xb6\xbd\x6b\x24\xdc\x08\x09\x44\x8a\xe5\x4e\x69\x92\x44\x19\xe8\x48\xd4\xf2\x10\xd5\x47\xe1\xd2\xb4\x51\x6e\x86\xa2\xee\x9d\xcf\x66\x7a\x7c\x45\xff\xd2\x7c\xf1\x65\x74\xda\xf0\x30\xd1\x82\xbc\xcf\xe7\xdf\x8c\x4e\xcd\x2e\x06\x1c\xdc\xdb\x14\xc8\x29\xdd\x4c\x27\x94\xa3\x30\x78\x89\x77\x28\xb4\x1c\x59\xd5\xec\x2a\xde\xf6\x81\xbe\xa1\xff\xd9\x1c\x63\x70\x2f\xe5\xc7\xee\x5c\xba\xf4\xc9\xd7\x6e\x93\xa3\xa3\xe8\x2d\x4c\xae\x9e\x37\x98\x92\xb2\xcf\xd1\x4c\xa6\x26\x18\xbf\xac\x8b\xf2\xf4\x14\x30\x3f\x0d\xbd\xd6\x11\xa8\x9a\x54\xfb\xd3\xf6\xe5\x8c\xfc\x57\x00\x00\x00\xff\xff\xa4\x78\xd2\xe0\x5d\x64\x00\x00" +var _nodeversionbeaconCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3d\x5d\x73\x1b\x37\x92\xef\xfa\x15\xb0\x1f\xbc\x64\x42\x53\xca\xde\xd5\xd5\x95\x4a\x54\xca\xf1\xc6\x1b\xdf\xe5\xb2\xae\xd8\xf1\x3d\xb8\x54\x17\x70\xa6\x87\xc4\x79\x08\x70\x01\x50\x32\x37\xeb\xff\x7e\x85\xc6\xc7\xe0\x8b\x43\x4a\x72\xee\xcb\x0f\x1b\x91\x04\x1a\xdd\x8d\x46\x7f\x03\x7b\x7e\x7e\x4e\xde\xad\x81\xfc\x24\x5a\x78\x0f\x52\x31\xc1\xbf\x03\xda\x08\x4e\x1a\xc1\xb5\xa4\x8d\x26\x6b\xd1\xb7\x8a\xe8\x35\x90\x2d\x55\x9a\x50\xde\x92\x6e\xa7\x77\x12\xc8\x56\x0a\x2d\x1a\xd1\x93\x5b\x3b\x53\xcd\xcf\x0c\x3c\xbd\xa6\x9a\xa8\xb5\xd8\xf5\x2d\x59\x02\xd9\x29\x68\x89\x16\x04\x3e\x41\xb3\xd3\x70\xbe\xa6\xbc\xed\x81\x2c\x7b\xd1\x7c\x54\x84\x6a\x42\x29\x59\xb1\x5b\xe0\xf6\x2b\xb2\x06\xb6\x5a\x6b\x0b\xea\xcc\xe3\xa7\x40\xde\xb2\x06\x08\x6d\x1a\xb1\xe3\x31\x52\x05\xe6\xf3\x1f\x80\x4a\xbd\x04\xaa\x89\x04\x25\x76\xb2\x01\x04\x73\xb7\x66\xcd\x9a\x30\x65\xbe\xdd\x0a\xae\xd8\xb2\x07\xd2\x09\x49\x60\xc3\xb4\x66\x7c\x85\xe0\x52\x26\xc0\x2d\x70\x3d\x1f\xd0\xc0\xcf\xc8\x1a\xca\xb8\x5d\xbf\xd9\x49\x69\xbe\x74\x3c\x40\xfe\xd0\xbe\xc7\xdf\x76\xdb\x46\x6c\x0c\xe4\x94\x41\x03\x24\xa6\xec\xea\xd0\x9a\x2f\xe4\x9e\x68\xb6\x01\x9c\xea\xc1\x69\x6a\xd0\x64\x8a\xec\xb6\x2d\xd5\xd0\x22\x00\x21\x09\x0d\x23\x96\x62\xc7\x5b\x2a\xf7\x96\x34\xda\xac\xa1\xc5\x65\xce\x0e\xee\xed\xfc\x45\xbb\x61\x3c\x70\x07\xa1\xbb\x4d\xa2\x6d\x4b\x38\xdc\xe5\xc0\x19\x28\xbf\x70\xb3\xa6\x7c\x05\x04\x3e\x31\x85\x4c\x73\xb2\x50\x4e\x98\x93\x57\x87\x7e\x22\x0d\xe5\x44\xf0\x7e\x4f\x96\x76\x6f\x2c\xd0\x96\xb0\xce\x10\xbf\x27\xa2\x69\x76\x92\xd0\x4e\x83\x4c\x98\x1c\x4b\x08\xf9\xda\x43\xfe\x05\x59\xf3\x4a\x02\xfc\x0d\xde\x80\x64\xa2\xf5\x7c\x66\xca\x10\x67\x84\x8f\x2b\x83\x0a\x8a\x26\x17\x2d\x28\xb2\xa6\xb7\x40\x80\x8b\xdd\x6a\xed\xb8\x2e\x90\x7d\xda\xfc\x91\x72\xdf\x62\x17\x6d\xde\xc1\x75\x91\x30\xda\x2b\x61\x04\xdf\x13\xb5\xdc\x23\x0d\x34\x61\xfa\x8c\x2c\x77\xda\xf2\x80\x75\xee\xd8\x80\x04\x42\x25\x10\x2e\x0a\xc9\x89\x99\x77\xc7\xf4\x9a\xf1\x9a\xf0\x55\x10\x12\x92\x78\xe8\xf1\xc6\x1e\x60\x59\xa0\x30\x9c\x7e\xa6\x15\xf4\x1d\xd2\x15\x9d\xe5\xbf\xee\x50\x58\x0f\x88\xbf\x5d\xeb\x93\x2e\xa8\x98\x9f\x6d\x77\xcb\x01\x76\xa9\x74\x7e\x3b\x3b\x23\x84\x10\x83\xc5\xe2\xd0\xbf\x30\xe2\x7b\x54\x28\x66\xd1\xb7\x9a\xea\x70\x74\x19\x5f\x9d\x00\x24\x0c\x79\xab\xe5\xae\x31\xaa\x62\x2b\x41\x01\x47\x99\x56\xa2\xd3\x77\x34\x12\x5d\xaa\xc8\x5b\xd8\x50\xae\x59\xe3\x97\x09\x00\x68\x2f\xf8\x0a\x37\x85\xac\xa1\xdf\x82\x24\xdd\x8e\x37\x06\x2f\x15\xc6\xbc\x12\x92\x48\xe8\x40\x02\x37\x5b\xaf\x00\xc8\x5a\xeb\xad\xba\x3c\x3f\x57\xb0\xb9\x05\x39\x17\x72\x75\x8e\xc3\x0d\x87\x94\xc5\xe9\x2d\xfe\x44\x7e\xc3\xef\x3d\xa8\x97\x62\xb3\x15\x1c\xb8\x56\xa4\x85\x8e\x19\x72\x09\x25\xca\x63\x77\x1b\x61\xe7\xc1\xf5\xa0\xc9\x86\xfe\xa7\x90\x97\xe4\x97\xd7\x5c\xff\x73\xf9\x23\xe3\x87\x7f\xdc\x52\xdd\xac\x0f\xfe\x28\xe1\x67\xe8\x81\x2a\xb8\x34\x9c\x64\x7c\xf5\xed\x59\x18\xc4\x38\xd3\x93\x78\xe1\x59\xb2\xd2\x2c\x01\x3d\xab\xc1\x9a\x46\xc4\x9b\x7f\x46\x16\xe7\x08\x91\x2c\x2c\x49\x95\x9f\xcd\x12\xe6\x67\xf3\xdf\xf2\x67\x5c\x93\x2c\xec\xda\x95\x9f\x03\x12\x66\x4c\xf8\x10\x06\x7e\x3e\x4b\x76\xe3\x67\xd0\x3b\xc9\x55\x10\x14\xc6\xfd\xae\x75\x42\x6e\xa8\x26\x13\x98\xaf\xe6\xe4\xf6\x0a\x91\xbd\x9e\x5f\x21\x56\xd7\xf3\x2b\x5c\xfe\xfa\xf9\xd5\xb0\xc4\xf5\x34\x81\x4c\x15\xa1\x8e\x0d\x09\xd7\xbb\x1d\x27\x5a\xd8\x1f\x26\x53\xcf\xa9\x8c\x4f\x66\x6b\xac\x60\xbd\x14\x12\xdc\x90\x45\xc4\xbe\xf9\x00\x22\x99\x88\xff\xe6\x8d\xe0\x0d\xd5\x93\xa7\xf3\xa7\x23\xbf\x96\xbf\xa4\x5b\x30\xba\xc4\xf4\xd1\x6b\x20\x03\xc7\xd7\x48\xbe\xc2\xa3\x63\x80\x9a\x5d\x7d\x2e\xdd\x1e\xb3\x8e\x30\x6d\x8d\x99\x22\xcf\x88\xc4\xed\x4c\xe6\xb1\xae\x10\x8c\x27\x0b\xc2\x59\x9f\xb1\xdc\xfc\xb3\xd3\x0b\xce\x07\x5a\x9f\x3f\x0d\x74\x67\x30\x9f\xa4\xc8\x46\x52\x36\x02\xb7\x2a\x94\x5f\x91\x97\x3b\xa5\xc5\x06\x15\x05\x95\x54\x0b\xa9\xc8\x57\xe7\x75\xb1\xd5\x72\x87\x3c\x70\x32\xdb\x08\x89\xde\xc0\x4a\x02\xb5\xa6\x97\xf2\x64\xde\x96\x2a\x63\x01\xe2\xe1\xe8\x0f\xd2\x5e\x01\x11\xc6\x82\xdd\xb1\xe8\xb0\x78\x79\x35\x03\xff\x6c\x61\xbe\x5b\x53\x3e\xf9\x0f\x3b\xf6\xd2\x01\x9a\x5e\x92\xef\x84\xc8\x19\xca\x3a\x32\x89\xce\xfb\x93\x85\x9d\x64\x3f\xe6\x8a\x21\xe1\x52\x98\x73\x1d\x4f\xc9\x18\x1c\x7f\x3a\xb0\x2e\x2a\x92\x61\x5d\xf3\xf1\xe8\xba\x38\xe7\x3a\x9e\x32\xb6\xb1\x61\x2d\xab\x95\xc2\x5a\xf8\xf1\xd8\x5a\x76\xce\x75\x3c\x25\x5d\x8b\x54\xa5\x08\x37\xeb\x98\x3e\x3b\x41\x30\x48\x44\x9a\x99\x0a\x7f\xdd\xd1\xde\x38\x07\x5f\x46\x48\xfe\x22\xbf\x37\x00\xdf\x89\xd3\xa4\x25\x66\x4c\x2e\x6e\x38\x7d\x4a\xfe\xfe\xf7\xe1\x67\x0f\xdb\xfe\xf4\x40\x6e\xf4\xa0\xd4\x17\x3d\x23\x3f\x82\x52\xa7\x1f\x10\x47\xf2\x93\x1a\xcd\x03\xf7\xbe\x0c\x85\xbf\xc7\x66\x7b\x6a\x1f\xb6\xd3\x55\xb2\x1f\x46\xad\x89\xc2\x52\x7a\x92\x59\x0f\xa1\xed\xc1\xb2\xeb\x9c\x9b\x44\xd9\x91\x67\xcf\x12\xd7\x26\xd1\x48\xe1\x47\xe7\xd8\x2c\xaa\xfa\xe0\x64\x46\x7c\x05\x9f\x68\xa3\xfb\xfd\x57\xa7\xb0\xe4\x14\x6e\x28\x2d\x59\xa3\x1f\x75\x96\x53\x51\x1e\x08\x8e\x5c\xb5\x40\x75\xcd\x63\x8b\x18\x90\x10\x6f\x22\xb9\x8b\xf9\xc5\xfc\x62\x88\x4f\x62\xcc\xff\x06\x52\x58\x34\xd1\xcf\xca\x9d\x71\x87\xa5\x1b\xe1\xdc\xdc\x8b\xe0\xe2\x5e\x04\xf7\xf6\x22\x75\x6d\x39\xeb\xa7\x39\x4a\x2e\x08\x29\xb2\x11\x3e\xba\x32\x8c\x66\x3c\x4b\x26\xc4\x91\x87\x5e\x03\x93\x36\x3c\xce\xa3\x08\x1f\x61\xf9\x34\xc1\x6f\x85\x13\x8f\xd3\x7e\xc0\xa0\xda\x3a\xe3\xff\xf4\x8f\xc5\x18\xb7\xa8\xe7\x43\xe6\xe4\x57\x20\xcc\xf2\x29\xd3\x8a\x2b\x1f\xcd\x23\x8b\x18\x8f\x72\xa8\xf7\xb0\x17\x45\x88\x33\xba\xc1\x66\x13\x43\x8a\x64\x4e\x7e\x31\xca\x0a\x5d\x6b\x1b\xeb\x41\x4f\x6e\x69\xbf\x03\x12\x26\x9b\x3d\x08\x1c\x5e\x42\x27\x64\x9a\x90\x59\xa6\xe9\xb1\xf9\xb0\x87\x6c\xb3\xed\x59\x67\x22\x74\x68\x57\x40\x1a\x23\x98\x8d\x68\x61\x18\xf2\x2e\x47\xc8\x9c\x38\x9a\xa5\x35\x2e\x70\xb7\xd7\x74\x08\x2a\xac\x90\x0e\x60\x5e\x63\xe2\x88\xf6\x77\x74\x6f\x89\xec\x98\x54\x9a\x40\x0f\x1b\x4c\x2a\xf1\x18\x61\xbf\xef\xdf\x99\x35\x7e\x64\x4a\x97\x42\x9e\x49\x88\x91\xf6\xc3\x42\x63\x84\x21\x9a\xe4\xa3\x8a\xf8\xb0\xe4\x47\x24\x87\x9f\x6c\x6e\x22\x3a\x17\xb3\xd4\x17\x0b\x22\x14\xad\x38\x0b\x23\x8a\x63\xf4\x22\xe4\x09\x6d\x7a\xcd\xe7\xd6\xee\xd6\xc0\x47\xb3\x6a\xe9\x16\x85\x60\xce\x72\xb7\xc8\x06\xd8\x4c\xe2\x66\xa7\x74\xc8\x89\xe0\xc9\xb5\xf9\x08\x8c\xc7\xdd\x5e\x4a\xcc\x95\x89\xce\x65\x3b\xeb\xcb\x6c\x41\xba\x74\xa2\x88\x72\x1a\x46\x08\xde\x83\x64\x1d\x6b\x28\x7e\xf1\x93\x68\x21\x83\xe0\xd2\x53\x0f\x4e\x47\x12\x25\xa4\xb6\x19\xaa\x34\xf7\x1a\x2f\xa2\xe0\xaf\x3b\xe0\x0d\x18\x05\x24\x8d\x0a\x53\x66\xbc\xe0\x40\x80\x36\x2e\x77\x46\x79\x91\xd0\x9c\x93\x58\x5e\xb3\xfc\xd1\xad\x21\x6c\x4f\xb8\xb0\xd3\x14\xb9\x03\x09\x64\xc3\x8c\xa1\x19\xe4\xd3\x82\x4c\x32\x44\x83\xec\xa4\xe2\xcd\x40\x5d\x92\x0f\x99\xa0\xdd\x0c\xa2\xe2\x89\x48\xf4\xdb\x74\x90\x9c\xef\x13\x79\xa1\xbc\x92\x89\x0d\x67\xb6\xc3\xac\x99\xd9\x36\x26\xda\xaa\x10\x15\x23\x36\x40\xd5\x4e\x82\x51\xe2\x3e\xf1\x3d\xe9\xa4\xd8\x94\xc9\xcd\x69\x4e\x7e\x9c\x24\x73\x18\xc4\x69\xbb\x97\x36\xc9\x38\xe9\xa2\xef\x3c\x91\x11\x7d\x2f\x29\x17\x9c\x35\xb4\x27\x4a\x0b\x49\x57\x60\x8c\xd3\x1a\xc5\xb6\x9e\x44\x4f\x53\xc4\x03\x52\xe6\xf8\xe3\x6f\x6f\x2d\x9c\x37\x54\xaf\x2f\x49\xf4\xe1\x11\x6b\x96\x89\xfb\x74\xdd\xf0\xfb\xf1\xb5\xbf\x8b\x35\x2a\xe3\x2d\x7c\x82\xb6\x96\xa3\xc6\x09\xb4\x69\x40\xa9\x89\x57\xe9\xd3\xd8\xe0\x79\x9e\x5f\x92\xdf\x2c\x53\x0b\xdd\xf8\x99\xf8\x08\x72\x30\x05\xf6\x58\xbd\x90\x92\xee\xfd\xf1\xac\x24\x73\xd3\x53\x77\x08\x99\x5b\x2a\x0f\xea\xf2\x4b\xf2\xc1\x62\x75\x33\x90\xfe\xda\x50\x7b\xcc\x08\x18\x9d\x74\x30\x4d\x1b\xf0\x9b\x05\xa0\x42\x62\xca\x83\x75\x63\xc9\xe9\xfd\x08\x05\x68\xa2\x7e\x71\x13\x07\xa6\x5a\xec\xbf\x4d\xd9\x77\x38\x9b\xed\x34\x32\xdf\x6d\x96\x20\x07\xbd\x4a\x26\x58\x9a\x8a\x0f\x93\xe0\x30\x45\x51\xb3\xca\xba\xe0\x7c\x58\xcc\x25\xf7\x5d\xe2\x5d\x1b\x65\x29\xee\x8c\xfa\x7a\x78\xf5\x20\x27\x24\x2f\x23\x9c\xba\xcd\xaf\x2a\x67\x3a\x12\x71\x21\x7a\xa0\x9c\x74\x3d\x5d\x21\xa5\x1f\x01\xb6\xe8\x38\x4a\xda\x7c\x34\x5b\x45\x6b\xd5\x2c\xc2\x01\x5a\xa4\x6a\x09\x41\xe1\x09\x6e\x25\x61\xed\x4f\xd8\x08\x92\x66\x0e\xaa\xcb\xbf\xf0\x9f\xe0\x93\x0e\x87\xd2\xba\xf2\xb1\x31\xc6\x52\x9d\xcd\x16\xe8\xc8\x7a\x64\x95\xae\xf7\xa9\x63\x55\xd8\x91\xc3\x98\x18\x94\x13\x0a\x11\xad\xb7\xb9\xaa\x1f\x30\x4a\xcb\x5e\x88\xd6\x86\x72\x6a\xb6\xbf\x52\xf0\xf2\xd3\x36\x94\xe1\x09\xb6\xea\x5b\x1b\xb1\x48\xbd\x3f\xa3\x9f\x02\x54\xbb\x48\x9a\xb3\x7f\xd1\xb6\xca\x1c\x21\x6b\x28\x54\xa5\x78\x37\x2f\xe3\x26\xd0\xb9\xdf\x54\xa8\xa4\x6c\x40\x9e\x30\xda\x4a\xa8\xa4\x90\x32\x28\x89\x0f\x7e\x4d\x56\xa0\x5f\xda\x23\x84\xba\x62\x32\x9d\x87\x6a\x5b\xa9\xb0\x47\xe4\xb5\x9a\xb9\xbd\x24\x4f\x5f\x52\x6e\x4e\x99\x02\x7d\x6e\xb9\x51\xab\x64\x1a\x69\xc6\x13\xed\x8e\xb7\x90\xfe\x2f\xa7\xd6\x38\x18\x95\x82\xe5\xc5\xf9\xd3\x91\xc4\x1e\x86\xaa\x56\x31\xe0\x31\xd1\xc2\x86\xbc\x4a\xe0\x77\x56\xd6\xee\x58\xdf\xc7\x87\x01\x4f\x02\x8a\xa7\xf9\xe6\xa5\xd3\x0f\x66\xd7\x69\xdf\x43\x4a\x59\xc9\x93\x43\xc7\x83\x2c\x70\xe9\xb3\x22\x4f\xef\x92\xcf\x8b\xe3\xfc\xfd\x30\xb2\x75\x37\x2e\x2b\x7d\x04\xbb\x7b\x41\x5c\xe4\xb2\x52\x24\x2f\x1d\xee\xa5\x90\x61\xc5\x91\x29\x72\x67\x62\x2d\xee\x04\xdf\xb0\x9d\x0b\xbd\x36\x4a\x0a\x7a\x05\x89\x2a\x6a\x05\x87\x03\xe9\xce\xd1\xac\xe6\xf9\x39\xf9\x77\xb0\xfa\x58\x0b\xc2\xb8\x02\x69\x37\x7c\x99\xba\x00\xda\x6e\xb9\x90\x2d\x18\x47\xac\x0f\x91\x50\x04\xc8\xab\x7c\xca\x09\xe3\xd0\x75\xac\x61\x18\x7d\xf7\x2b\x21\x99\x5e\x6f\x6c\xd1\x96\xa1\x7a\x32\x52\x0c\x9f\xb6\xd0\x18\x91\x41\x55\x62\xc0\xf7\xce\xb6\xe6\x90\x4b\xd7\xdb\x4b\x9d\x89\xe1\x53\x44\x8c\x6a\x63\xa7\xc8\xc3\x10\xd2\xf5\xc0\x57\x3a\xcd\xfe\xde\xad\x99\x09\x71\xc8\x35\xf9\x86\x3c\x7b\x76\x0f\x60\x1f\xd8\xf3\x6f\x6e\xc8\xf5\xa8\x9e\xa8\xec\xb8\xc1\x98\x91\xe7\xe4\x9b\x91\xe3\x78\x0f\x8a\xec\x46\x4e\x8c\x59\x61\xb3\x31\x5c\xa6\x85\x38\x70\x81\x82\x65\xc4\xc1\x35\x2b\x84\x18\x39\x77\x40\xc8\x8e\x63\x8a\x93\x69\x94\xd4\xfc\xfc\x18\xf7\xc0\x44\xf1\xdf\x5c\x5a\x1f\x92\x6c\x05\x33\xd1\x8a\x16\x84\x12\xe3\x26\xc8\x54\xca\xb4\x8f\x33\x4d\x74\x64\x29\xc8\xf4\xc5\xf9\x39\x59\x5c\x9b\xe5\x5c\x7f\x8c\x04\x63\x5d\x2c\x5c\x8c\x1c\xb5\xb7\x96\x2d\x7c\xaa\xe2\xf2\xc7\x12\x17\x54\x65\x5c\x63\x45\x9e\x5a\x4a\x24\x6c\x7b\xda\xf8\xe6\x03\x23\xd5\x88\xcd\xfd\x71\x31\x92\x0e\x77\x16\xfc\x8c\x28\x86\x81\x20\x1e\x80\x28\x37\x22\x7a\xe3\x42\x40\x15\xdf\x7f\xf0\xf8\x1a\xb4\x02\x6c\xc3\x41\xee\x90\xee\x87\x92\x82\x01\xe6\x8e\xf0\x2b\xf6\x09\xda\x37\x66\x7c\x05\x69\xed\x0e\x2a\xeb\x7b\x58\xd1\x1e\xa3\xdc\xc6\x5a\x96\x35\xdd\x6e\x81\x3b\x4c\x87\x9e\x0a\xb3\x94\x6f\x9e\xa8\x6c\x9d\x9a\xe7\xaa\xad\x94\xd5\xba\x04\x2d\x0e\x15\x03\x4f\x06\xe0\xfc\x94\xc9\xbd\xcf\xbb\x39\x6d\x79\xdd\x70\xf8\x2b\xf1\x40\xfe\x04\x3d\xa0\xe7\xc1\x8f\x79\xef\x24\xf2\x41\x5a\x9c\x95\xbb\x21\x95\x64\xdf\x69\x9e\xc7\xff\x88\xa7\x61\x69\x88\xbc\x8c\x47\x38\x17\xf5\x6d\xcd\x95\x93\xcf\xc7\xfc\x2b\x24\xbc\x9a\x5e\x92\xa7\x3f\x45\xa9\x3f\xec\xde\x80\x36\x1c\xf9\x68\xe8\xff\x69\x9f\x06\x13\xb0\x1b\x71\x9b\x66\x4f\x36\x74\x8b\xc1\x89\x39\xa9\x5e\x02\x71\xdf\xbf\x4b\x1d\xee\xd3\xd9\x2c\x71\x91\xc9\x47\xd8\x5f\x92\x51\x7b\x10\xb9\x07\x72\x40\x2c\x51\xdc\x21\x17\xf3\xff\xd9\x3d\x28\x8c\xf3\xe0\x22\x5c\xdc\xd7\x45\x30\x0e\xc2\x17\x70\x08\xa8\x42\x2b\x7f\xbf\x95\x17\x49\xa5\x60\x96\x2e\xbc\x01\xa5\xe8\x0a\x2e\xc9\xd3\x22\xaa\x70\xce\x2a\x43\x61\x9c\x99\xf3\x32\xd8\x3e\xec\xd9\xc3\x01\x5e\x0b\xc4\x92\xf0\x34\x13\xaa\x7b\xb0\xde\x49\x29\xfa\x31\xa5\x68\x5a\x7b\x67\xac\xe3\x9a\x7a\x47\xb8\x33\x86\xcf\x8a\xd2\x5e\xec\xbc\x59\x73\x9e\x8c\x84\x46\xc8\x36\x31\xbe\x55\x57\xc1\x29\x03\xec\x2f\x44\x33\x6c\x61\xd3\xb6\x95\x80\x05\x5b\xcc\xa4\x38\xa9\xb4\x18\xb0\xc8\x3c\x8b\xae\x0b\xf2\x3a\xcb\x61\x2f\xa1\xa1\x3b\x05\x83\x40\xa3\xb8\xdf\x19\x56\x4a\x0d\xf2\xc1\x96\xd4\xb5\xd5\x3c\x7b\x46\x1e\x6a\x4b\x9f\x90\xeb\x87\x5b\xd3\x5a\xbb\xc5\xe9\x36\x3c\x77\x1d\x23\xfb\x9b\x99\xe2\x5f\x5c\x12\xa0\x9a\xc8\x62\xbc\x9e\xb0\x62\x2e\x43\xd5\x49\xf1\x37\xe0\xa7\x64\x0b\x62\x13\x39\xe1\x70\x57\x4b\x26\x15\x66\x5b\x28\x7d\x12\x17\x46\xcc\x31\x3a\x44\xf9\x72\x4f\x2d\xd1\x64\xb9\xeb\x3a\x90\xd6\xd7\x16\x9a\x6c\xa5\xd8\x82\xec\xf7\x06\xfd\x27\xb9\xcd\xcb\xc5\xee\xcf\xa0\xab\x7d\xc0\xf3\x22\xa2\x6e\x22\xb7\x22\x14\x17\x0f\xb9\x1b\xc5\x3a\x83\x8d\x36\x4c\xf7\x56\x7a\x09\x7b\x61\x9c\xcc\x18\x81\x19\x51\xb4\xc3\xa3\xb5\xa1\x1f\x43\x7e\xef\xbf\xc1\x91\x1c\x65\x7f\xce\xfd\x13\x83\xea\xf8\x63\xc1\x51\xe3\x3e\xc4\xd6\x7a\x7f\x2f\xfb\xf3\xe1\xd4\xe3\x7b\x53\x6c\xc6\xf7\x51\xe6\xd5\x1c\x98\x3b\xf8\x83\xcb\xd3\xba\x9d\xe8\xf7\x71\x3f\x34\x06\x22\x12\x23\x96\xa4\x06\x93\x83\x8d\xb3\xdf\x89\x23\xe0\x8d\x45\xcd\x4a\x15\x8c\xac\xc8\xd9\x3d\x7d\x57\x72\x55\x61\xed\xb3\x67\xa7\xad\x94\xed\x73\x0d\xd6\xac\x80\x34\xd8\x47\x3c\x92\x46\xd9\xbb\x43\x69\x54\xf8\x52\x02\xfd\x58\x24\x43\xf7\x3e\x7f\x63\x1d\x1a\x2c\x47\xaa\x39\x79\xe7\x7f\x88\x80\xd8\x96\x7d\xe4\x6b\x11\x5e\xa4\x07\xfc\xbe\x26\xf5\x1e\x42\x9e\x7c\x30\xbe\xeb\xc3\x8a\x68\xd9\x12\x07\xbb\x8a\x30\xbb\x4b\xc9\x16\x78\x6b\x38\x11\x6e\xc5\x28\xec\x4a\xf7\x6c\xd8\x6d\x57\x92\xb6\x30\x73\xfa\x3d\x73\xd0\x13\x80\xae\x3f\x21\xae\x64\xb7\x3b\xe9\x7b\x42\x6a\x89\x7a\x92\x9a\x82\x37\x16\x95\x37\x0e\x13\x6c\x8f\x7f\xef\x8b\x2a\x88\x86\xb1\x08\xfe\xe7\xf7\xbe\xc8\xee\x1b\x37\x68\xa3\xd9\x2d\xbc\x67\x70\x77\xc8\x50\x60\xeb\xb7\x5d\xc4\x01\xac\x2a\x04\x03\xe2\x85\x01\x46\x35\xb4\xee\xa7\x49\xa8\xe9\x97\x28\xa4\x4b\x0f\x7f\x4f\x8f\x88\x8a\xd2\x42\xc2\x09\x44\xbb\x3d\xb8\xcc\x70\x8f\x77\x96\xa4\x1d\x05\x65\x49\xd2\xea\x22\xb3\x6d\xaa\xd6\x17\x62\xb7\xcb\x44\x39\x1f\x01\xb6\xca\x15\x63\x44\x57\xbb\x0b\x44\x42\x95\xdd\xde\x4a\xb2\xf0\x83\x47\x8a\xed\x1d\x4b\x20\x6b\xc0\xf4\x4a\xbf\xf7\x37\x49\xb2\xcb\x50\x43\x95\x2e\xf6\xcc\xf2\x1b\x53\xc3\x85\xac\xe0\x18\x62\x0d\x3f\x6e\x37\x42\xe4\x67\x43\xfd\xca\x90\x81\x23\x23\xf1\x53\x7b\xa5\x61\x63\xe8\xe2\x8a\xe2\x35\x87\xb2\x06\x32\x70\x2d\xae\x83\x0c\x42\x3b\x04\x9e\xe3\x90\x5d\xa9\x08\x35\x74\x29\xe8\x01\xdc\xa4\x7a\x4d\xa0\x59\x43\xf3\xf1\x55\xcd\xce\x4c\x32\xdd\x83\xc3\x0d\x23\x46\x64\x07\xc3\xdf\xd7\xdd\x4f\x00\x2d\xb4\x39\x00\xd6\x91\xc9\x93\xd3\xc3\xe6\xc3\x8d\xbd\xf7\xca\x9d\x8e\x44\xe5\xb6\xc7\xb7\x4e\x64\x59\x31\x9b\x54\x7a\x29\xca\xe5\x06\x07\xea\x7d\x3e\x7c\x32\xad\x2a\x47\x57\xb4\x33\x2b\x4f\x71\xc7\x4e\x5d\x9e\x54\x7a\x39\x72\xa6\x95\x4a\x3e\x6d\x14\xa9\xd0\x54\x7c\x55\x9a\xc7\xa1\x4f\xa4\x64\xc0\x78\xb9\xb1\xb8\x6d\xf0\x02\x4d\x61\x79\xbe\x42\x25\x34\xfa\x2a\xf4\xd8\xb8\x80\xc0\x1c\x3c\x95\x25\x79\xd2\xbe\x6d\x92\xc4\x79\x2e\xe9\x23\xf8\x1f\x74\x56\xd6\xcd\xdc\x1c\x7b\xc1\x0e\x9b\x7b\xcd\x58\xca\xf7\xa1\x00\xee\x12\xc9\x58\xab\x3e\x22\x79\xe3\x9c\xa8\x9a\x82\x23\x53\xbe\x8e\xd2\x04\x87\xec\xec\x4b\x73\xa0\x1d\x05\x71\x0e\xdc\xe5\x93\x03\xa5\x85\xf7\x12\x97\x99\x4c\x34\xde\xce\x0f\x8b\xe8\x98\xd6\x28\x2f\x28\x3c\xda\xb7\xaf\x1e\xfb\x47\x06\x34\xf1\xec\x5b\x2a\x03\x1f\x6c\x63\xc8\xe2\xf4\x68\xba\x92\x2c\x4a\x61\x5d\x3d\x22\xd8\xce\x58\x71\xbf\xfc\x53\x82\xc6\x0d\xb9\x5a\xd4\x58\x54\x49\x40\x67\x9c\x48\x3f\x7f\x5d\xa4\xaa\xf2\xed\xce\xe6\xd7\xe4\xfc\x40\x5e\xa2\x5a\x21\xe5\xbe\x40\xf5\x00\xb1\x28\xb0\xf9\xdf\x93\xf9\xb0\xb5\xdd\xc7\x80\x4c\x29\x3b\x92\x17\x78\xdd\x91\x3b\xf0\xf7\x10\xe8\x70\xea\x25\x3c\x47\xb3\x70\xe0\x56\xf7\x23\x53\xde\x15\x7c\xb0\x8f\xd0\xac\x48\xc9\x88\x23\xe1\x9d\x2c\xec\xcf\xf1\x31\x83\x73\x4c\xb1\xa4\xc5\x7d\xbb\xdc\x88\x96\xba\x9f\xb3\xf2\x30\xe7\x7d\x2b\xb6\x27\xb8\xd4\xd3\x5c\x2a\x73\xc8\xf7\xd2\x7c\xf1\xa7\x22\x70\xb3\x68\x8d\x21\x53\x2c\x52\x8b\x72\x52\x04\x9f\xf8\xc3\x51\xfa\x02\x71\x2c\x92\x4f\xaa\xc5\x26\x45\xf0\x30\xe2\x31\x39\xf2\xeb\x3d\xbb\x79\x7f\xe2\xb9\xef\xa6\xf0\x0d\xc9\x74\xe3\x32\xaf\x54\x85\x72\xb3\xb7\xf9\x2e\x46\xa8\xbd\x63\x10\x1c\x75\x23\x42\xa3\xee\x5c\xc5\xff\xaa\x08\x11\xba\x0a\x2e\x9d\x59\x9b\xb1\x20\x1f\x6e\x0a\xad\xf5\x68\x93\x69\x15\xa7\x7b\x76\x20\x7e\x6e\xe0\x5f\x76\x4a\xfb\x96\x73\xcc\x4d\x53\x85\x7d\x80\xf3\x1a\x08\xcf\x4f\x45\x3b\x98\x05\x9f\x88\x50\x4d\x7a\x70\xf3\x5c\xb2\xfd\x58\x2b\x65\x01\x3d\x66\xcb\x1c\xab\xd1\xed\x71\x9d\xfc\xa1\x5a\xc6\x7c\x54\x8e\xed\x84\x72\xd0\x4d\xb1\xea\xcd\x93\xf2\x26\xad\xe7\x69\x44\xd7\x11\x9d\xfc\xfc\x1b\xdb\x8c\xd3\xf4\xbb\x36\x7b\xcf\xc2\x78\x69\xa2\x0d\x61\xee\x90\xc6\x5b\x1a\x39\x2e\x9c\x17\xa5\xa9\x34\x4a\xb7\xc2\xc1\xba\xdc\x7c\xfb\xed\xc3\xed\xe0\xb4\x28\x57\x61\x83\x16\x6f\x1f\x51\xa4\x2f\x43\x45\x4b\xd2\x15\xb9\x18\xe9\x9b\x72\x27\x1d\x4b\x37\xe1\xf6\x82\xd7\x13\xa1\x5e\x43\x35\xb9\x28\x43\x18\xc7\xb1\x8b\xb1\x3d\xf2\x45\x44\x1c\x7c\x56\xad\x0a\x5e\x21\xe1\x25\x8a\xe1\xc6\xd0\xfd\x72\xc0\xac\x94\xb5\x87\x1d\x14\x5c\xbb\x26\xa6\xb6\xe0\x78\xc4\x8b\x3b\x24\xcb\x87\xee\x87\x1d\xe9\x3b\x88\xb4\xe9\x58\xfd\x65\xea\x13\x69\xe5\xfd\xb1\xfb\xf7\x3a\x1c\x40\x35\x8f\x21\xe3\x1c\x77\x2d\x49\x95\xa6\x9f\xea\x17\x34\x5c\xc7\x73\x75\xfe\x81\x4b\x1b\x8e\x1b\x3f\xe5\xf1\x9e\x0f\xf5\xc6\x78\x81\x39\x8a\xf1\x48\x31\xe7\xc0\x2b\xf7\xd6\x86\x45\x55\x96\x5b\x37\xf4\x44\x25\x0d\x17\x26\x12\x54\x03\x0f\x24\x34\xc5\xfb\x32\xc3\xad\xb1\x7f\xa3\x7b\x8f\x62\x7a\x9f\xec\x24\x8b\x7a\xe4\x42\x95\x39\x8a\xfe\x64\x2f\xc8\x85\xb1\xe9\x71\xe3\xb2\xd3\x0a\xe1\xcc\x73\xb8\x05\x49\x2e\x5c\x83\x93\x27\xf2\x22\xba\x11\xe6\xec\xd5\x96\x46\xb6\x89\x75\x78\x6e\x99\x0b\x7c\x4e\x55\xa6\xbf\xd5\xea\x20\x16\xc8\x35\xde\x75\x0c\xd5\x04\xfb\xa5\x53\xea\x16\xc7\x25\x9c\x8a\x66\xf6\x04\xc4\xc0\x8d\xf8\xe6\x5f\x45\xa5\x98\x35\x9f\x47\x46\xac\x1a\x7a\x0c\xd0\xbe\x4c\x9f\x55\xa4\x50\x62\x55\x38\x8e\xaa\x43\xe2\x26\xd9\xd3\x9f\x07\x5f\x25\x6e\x93\xb1\x27\x30\x78\x30\x6b\x66\xe2\x01\xbc\x47\x33\x5e\xaa\x8a\x0f\xd1\x01\xa5\x19\x9f\x9e\x03\x87\x75\xc8\x76\x14\x42\xfb\x6d\xc4\xd9\x2f\x22\x50\xa7\xf3\x0f\xd7\xb9\xa9\x69\xf2\x11\x72\xc7\xe5\xc2\xcd\x8f\xc3\xd7\xc2\x83\xc7\x94\x93\x32\x16\xd8\x78\x88\xee\x99\xb2\x70\x0d\x90\x2a\xd2\x88\xcd\x96\x6a\x7c\x4a\xcc\xa9\x15\x3b\xe6\xc0\xa6\x1d\xb1\x19\x13\xe8\x3a\xc0\xc8\xe2\x45\x9c\xc9\x08\x55\x98\x63\xf7\x32\x13\x5e\x2a\xa0\xb2\x59\xbf\x12\xf2\x65\x2f\x14\x28\xfd\x43\x40\x29\x29\x11\xa6\xed\x7c\x75\x04\xa6\x67\xe4\x31\x52\x56\xbf\x88\xfc\x86\xae\xa0\x72\x19\x79\x8b\xfa\xe4\x75\x14\xa0\x87\x5f\x40\xbe\x39\xf8\xa3\x16\x9a\xf6\x3f\xe2\x71\xad\x0f\xc0\x6b\xbe\xd5\xcc\x32\x0e\x1d\x04\x9b\x33\x3d\x09\x48\xcc\x92\x55\x67\xc5\x32\x33\x07\xf7\x84\x84\xb5\xbb\xa4\xbf\xc2\x87\x85\x68\x96\xf4\xb1\x3f\xda\xa5\xcc\xef\xf6\xaf\x72\x48\xb4\x3e\x59\xc4\xd8\x94\x43\x1d\xc1\x0b\x87\x61\x26\xe4\x81\xe6\x8a\x37\x41\x11\x3f\xe3\x40\x8c\xdc\x8a\xc1\x21\x4c\x39\x83\x48\xfd\x0b\x01\xd6\x98\xaa\x5d\xaf\x6d\xc3\x4a\xfd\x86\xe9\xf8\x39\x60\xa0\x0c\xf5\x87\x76\xa1\xa2\x99\x72\x59\x2a\xda\x4f\x11\xdb\xeb\x05\xb9\xb8\x24\x4f\xf1\x6f\x7f\x7b\x37\x7b\xd1\x64\x78\xf5\xe0\x22\x2d\x57\xfb\xbd\xb9\xb6\x20\xdc\xa7\x2a\x94\x68\x66\x66\x2b\xd2\xdd\x7b\x78\x7f\x7f\x08\x8c\x7c\x22\x13\x49\xfa\xaa\x10\x1b\x1f\x6c\xb8\x0c\x61\xb2\x7e\x26\x9c\x31\xb4\x9a\x58\x7d\x4e\x16\x07\xde\xfa\xc1\xd1\xcc\xaf\x6b\x08\x84\xa1\x63\xcb\x47\xf0\xc6\x17\x1f\x4e\xf2\xc1\x84\x43\x9d\xf8\xc5\x62\x58\xa4\x6a\x07\x2a\x12\xe5\x04\xd0\xfc\x6f\x24\x81\xee\x8f\x4c\x17\x44\x1f\x06\x9d\x60\xff\x9b\x67\x88\xcc\xbf\xce\x77\x1d\x63\xbe\x6f\xcc\xf4\xcd\x55\xcf\x1a\xc0\xdb\xc2\x97\x11\x41\x33\xb2\xdb\xbe\x13\x97\x81\xa8\x5c\xdb\xd8\xa5\x1f\x11\x55\x7d\xce\x35\xfe\xef\xcd\xa0\xcf\x67\xd1\xdd\x46\xc6\x8d\x75\xb3\x26\x6c\x68\xb0\xc5\x32\x18\xe3\x2d\x69\xac\x49\x73\x6f\x37\x7c\x84\xbd\x61\xa3\x23\xe9\x1d\x5e\xb6\xb4\xb7\x28\x14\xb9\x5a\x10\x4d\xe5\xca\x8b\x0d\xae\x50\x5c\x26\xb4\x6d\x13\x0f\x30\x97\xc1\x2e\x17\x11\xcd\xe0\xde\xf5\xa1\xd7\x3c\x7a\xf6\xa1\xf3\x58\xe1\x45\x8a\xbd\xe0\x6d\x22\xe2\xbd\xd7\x11\xe3\xa2\x91\xa9\x05\xd6\xa5\x2d\xf6\xc7\x9c\xaa\x28\x0f\x34\xf2\x02\xcb\x29\xd3\xeb\xe9\x70\xf2\x27\x8c\xb8\xfc\x36\x22\xf5\x2a\xd1\x23\x3d\x74\x69\xaa\xc2\x7c\x29\x5d\x81\x2b\xa3\xee\xfc\x9c\xfc\x28\xc4\x96\xec\xb8\x66\xbd\x87\x89\x05\x40\x90\x8a\x34\x52\xa8\x01\xb6\xcd\x61\x20\xf4\x2b\x07\x2f\x3f\x1e\x92\x6c\x58\x4b\x16\x64\x82\xa3\xbe\xb6\xa3\xa6\xe4\x9c\xfc\xb1\xc8\xd7\x8c\x72\x61\xc3\xda\xbc\x25\xf9\xc8\xbb\x5d\xa3\xa0\x46\x12\xe2\xd9\xf6\x5e\x9d\x82\x58\xa5\x2d\xbb\x43\xc2\x5d\xcf\x77\x7a\x25\xe3\x28\x40\xf2\xbc\x10\x95\xfb\x52\x58\x4f\x3b\x7e\x2e\x39\xe6\xa4\x60\xc3\xd2\xe6\xae\x83\xe5\x25\x47\xd8\x95\xd9\xd1\x10\xb5\xe5\x34\x9e\xc0\x34\xf2\x75\x79\x1e\x1e\xb7\x8d\x75\x02\x9d\xec\xbb\x15\x0f\xec\xfb\xe7\x8a\x42\x41\x8f\x2b\xbc\x51\xd2\x85\x2b\x95\x9d\xc1\xe4\x14\x3f\x7d\x40\xf5\xe2\x26\xf7\x01\x8f\x3f\xbb\xea\x0b\x2a\x8f\x7a\x75\xb5\xd6\x19\x86\x75\xaf\xe4\x76\x34\x3e\x5e\x42\x6e\x19\xdc\xcd\xf1\xd1\x1b\xde\xb2\x26\xbb\x40\xed\x2a\x67\x01\x30\x36\x44\x50\x4d\x7e\x75\x03\x7e\xf5\x9d\x76\x8d\xd8\x80\x2b\xe9\x98\x50\xcd\x00\x25\xbf\x0e\x65\x9c\x5f\xe7\x45\xb8\x52\x43\xb1\x8c\x57\x42\x3b\xdb\x81\x87\x93\xca\x66\xba\xec\xed\xa4\x0c\xc0\x29\xed\x77\x47\x1e\x44\x0a\x43\x06\x48\x64\x11\x81\x3d\x1c\xef\xe6\x0f\xe8\x84\x37\xb3\x7d\x75\x09\xb3\xfa\x76\x17\x86\xa6\xdc\x4c\x22\xa2\xe7\x73\x96\x10\x55\x37\xdb\xac\xe3\x8d\x36\x26\x46\xc0\x5e\x47\xb6\xe2\xd6\xeb\x5e\xc2\x8a\x71\xb2\x53\xbe\x63\xc6\x4f\x3d\xb4\x46\x80\xe8\xdf\x8a\x66\x2a\x23\x01\xbf\xa0\x3d\xb4\x33\x2b\x4e\x38\xae\xd8\x7d\xa4\xd1\x58\x92\x18\x4b\x7c\x71\x87\xc8\x1d\xf7\x8f\xec\xd6\x1f\x02\x6a\x05\xd8\x76\x76\xb5\xdb\x6e\x85\xd4\xe4\xd7\xb2\xec\xf8\x6b\x00\x8a\xe2\xa8\xb4\xd8\x92\xad\x14\xc6\x0f\x31\xb0\x39\xdc\xf9\x1b\x00\x3e\xdb\xbf\xb7\x8f\x79\x27\xa8\xbe\xd0\x99\xa8\x5a\x12\xbf\x60\x9f\x67\x1c\x0c\x6e\xc4\xad\xbb\xa6\xe0\xcb\xd4\x63\x65\x6d\xbc\x42\xe5\x1f\x7a\x31\x9c\xf6\xb9\x58\x16\xbd\x27\xf4\x1a\xdf\x0f\x19\x03\x73\x47\xe3\x12\xf8\x2c\x40\xe1\xac\x3f\xf0\x12\x84\x71\xde\x4e\xac\x55\x5f\x56\x0f\xf5\xb7\x07\x12\xd1\xae\x73\x72\xde\x0b\xda\x5e\xd5\x26\x5e\x3b\xaf\xfc\xdc\x61\x7b\x7e\x1c\x87\xe2\xc9\xaa\x9f\x81\xb6\x0f\x63\xf2\x0c\x1b\xdf\xc5\x4e\xdb\x5b\x6d\x66\x2a\xd3\xb3\xdf\x93\xf5\x3e\x60\xdf\x02\x7c\xfc\xfd\xd8\xdd\x88\xed\xfe\x77\x63\xf7\x5b\x6b\x62\x4e\xe5\xb7\x16\x69\x33\x86\xd5\x0a\xa3\x53\x36\x74\x4f\x68\x2f\x81\xb6\x58\xd2\x44\x9b\xd6\xce\x86\x07\x12\x6d\x93\x5d\xd4\xe3\x8a\x0a\x41\xc2\x2d\xc8\x43\xaf\xae\xd8\x67\x14\xef\xd9\xe2\x5c\xe3\x60\x6c\x47\x12\x9e\x2b\x7a\x0b\x07\x78\x1e\xfa\xd6\xb5\x78\x38\xeb\x63\x43\x57\x3e\xeb\x53\x33\x73\x88\x5e\xfe\xd0\x14\x59\x0c\x18\x14\x21\x2d\x0e\x4e\xe7\xd7\x1e\x8c\x1a\x85\x11\x26\x64\xb5\x17\xbc\x91\x4e\xd1\xf3\x7a\xae\x87\xcb\x59\xfe\xe6\x8f\xd9\xd2\x17\x6f\x5e\x13\xc5\x36\xdb\xde\xb5\x6f\x6e\x84\x04\x22\xc5\x72\xa7\x34\x49\x62\x3b\x74\xdf\x6a\xd9\x9f\xea\x53\x7c\x69\xb2\x2e\x37\xfe\x51\xcf\xd4\x6f\x66\x7a\xfc\x30\xc2\xa5\xf9\xe2\xf3\xe8\xb4\xe1\x39\xa8\x05\xf9\x90\xcf\xbf\x19\x9d\x9a\x5d\xc7\x38\xb8\xb7\x29\x90\x53\x7a\xc8\x4e\x28\x02\x62\xc8\x18\xef\x50\x68\xf4\xb2\x06\xd1\xf5\x19\xd8\x67\x11\x87\xae\x73\x73\x9a\xc1\xfd\xff\x13\xc4\x4e\x74\xba\xf4\xc9\x97\x9d\x8b\x13\x34\xb9\x7a\xde\x60\x22\xd0\x3e\x02\x34\x99\xda\x43\x53\x15\xe5\xe9\x29\x60\x7e\x18\x3a\xdc\x23\x50\x35\xa9\xf6\xa7\xed\xf3\x19\xf9\xaf\x00\x00\x00\xff\xff\x46\x68\xed\x4a\xd3\x65\x00\x00" func nodeversionbeaconCdcBytes() ([]byte, error) { return bindataRead( @@ -260,7 +260,7 @@ func nodeversionbeaconCdc() (*asset, error) { } info := bindataFileInfo{name: "NodeVersionBeacon.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x57, 0xa8, 0x9f, 0x4e, 0x54, 0xe5, 0x83, 0xc8, 0xf5, 0x51, 0xc2, 0x8b, 0x15, 0xdc, 0xfc, 0x1d, 0x8b, 0xa0, 0x59, 0x11, 0x2e, 0x3, 0x89, 0x5a, 0x71, 0xd3, 0xb4, 0xb6, 0x0, 0x56, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x90, 0x28, 0x80, 0x8d, 0x2c, 0x54, 0x6b, 0xee, 0xc8, 0x7b, 0x51, 0x1c, 0xb3, 0x32, 0xa3, 0x9b, 0xbf, 0x3e, 0xb4, 0x69, 0x40, 0xf6, 0xac, 0x5f, 0xa9, 0xdb, 0x57, 0xad, 0xda, 0x96, 0xe0}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index fa6092e8e..7605477da 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -215,6 +215,7 @@ // nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) // nodeVersionBeacon/admin/heartbeat.cdc (612B) +// nodeVersionBeacon/admin/set_protocol_state_version.cdc (1.062kB) // nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) // nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) // nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) @@ -4663,6 +4664,26 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { return a, nil } +var _nodeversionbeaconAdminSet_protocol_state_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xbc\x1f\x87\x5f\x41\x42\x76\x0e\x55\x0f\xa8\x34\x82\xc0\x81\x0b\x20\x68\x38\x67\xb3\x1e\xc3\xaa\xf6\xce\x6a\x3d\xc6\x89\x22\xbe\x7b\xb5\xb6\x11\x45\x10\xa9\x87\xde\x76\xc7\xe3\xf7\x67\xe6\xad\x29\x1c\x7b\xc1\x92\x53\xda\x91\x2f\x0d\xdb\x29\x29\xcd\x16\x99\xe7\x02\x0f\x6f\xcb\xd5\x6c\xbe\x9b\x6f\xb6\x8b\xd5\x72\x3a\x9f\x3c\xad\x96\x93\xd9\x6c\x33\xdf\x6e\xa3\x28\x49\x12\xfc\xf4\xca\x96\x4a\x8b\x61\x0b\x39\x28\x81\xca\x73\xae\xcb\x3f\xe1\x26\x69\x61\x2c\x84\x51\x3a\xd2\x26\x7b\x87\x82\xa5\x1a\xce\xb3\xb0\xe6\x1c\xa5\x28\x21\x1c\xdb\xe6\xb8\x45\x3d\x50\xd3\xd3\x15\x51\x9b\x3c\xc7\x2b\x69\x2e\x08\x81\xec\x48\x50\x82\xa3\xa1\x1a\x2f\xed\x7d\x67\xa8\x7e\x69\x7f\x5e\x64\x57\x45\x98\x12\x81\xff\x40\x70\xaa\x94\x21\xd8\xe3\x61\x08\x23\xf7\x50\x4d\x51\x50\x6a\x94\x50\xfe\x1e\x47\x91\x5c\xcc\xf5\x2d\xd5\xeb\x4e\x71\xe7\x6b\x84\xe7\x85\x95\x6f\x5f\x87\xb8\xb0\x9d\x6b\x03\x7c\x44\x11\x90\x93\x40\x05\xfb\x1b\xca\x46\xf8\xff\x66\xc6\x71\x33\x9b\xd0\xe9\x3c\x39\xe5\xa9\xaf\xb4\x96\x11\x26\x95\x1c\x26\x5a\x73\x65\x25\x20\x01\x40\x92\x60\xca\xde\x73\x0d\x05\x4f\x19\x79\xb2\x9a\xc2\x54\x83\xb1\x9b\x69\x9b\xc2\xe5\x54\x90\x15\x63\xf7\xf0\x54\x72\xe5\x35\x35\x38\x25\xe5\x59\x7c\xd6\x84\x31\x02\x61\xfc\xda\x20\x7f\xff\x4c\xe0\x8f\x7e\xc8\xc2\xe8\x36\x23\xed\xe7\xad\xb0\x57\x7b\x5a\x2b\x39\x0c\x1a\x0e\xe0\xf1\x11\x4e\x59\xa3\xfb\xbd\x27\xae\xf2\xd4\x7e\x11\xb4\x1c\x9f\x61\x60\xd3\x89\xec\x05\x88\x53\x18\x09\xbd\x91\xae\x84\x3a\xff\x57\xba\xe3\x92\x64\x4d\x36\x35\x76\x7f\x5e\xca\x36\xa4\xa8\x03\x7e\x76\x7b\xaf\x52\xba\xbb\xb3\xdb\xda\xf5\xfe\x2e\xe7\x4e\x48\x92\x00\x70\x5c\x0a\x3e\xda\x33\xee\x78\x70\x44\xbf\xfe\x42\xd0\x20\xee\x12\xfd\x1f\xc6\xe3\x3b\x52\x30\x42\xef\x9c\x79\xcb\x82\xca\xa5\x4a\x28\xed\xfd\x03\xe2\x8b\xaf\x86\xfb\x72\x0d\x9c\x5d\xfa\x9b\x07\x75\xcb\x7b\x8a\x4e\xd1\xef\x00\x00\x00\xff\xff\x37\xce\x44\x93\x26\x04\x00\x00" + +func nodeversionbeaconAdminSet_protocol_state_versionCdcBytes() ([]byte, error) { + return bindataRead( + _nodeversionbeaconAdminSet_protocol_state_versionCdc, + "nodeVersionBeacon/admin/set_protocol_state_version.cdc", + ) +} + +func nodeversionbeaconAdminSet_protocol_state_versionCdc() (*asset, error) { + bytes, err := nodeversionbeaconAdminSet_protocol_state_versionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_protocol_state_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0xcd, 0x4b, 0x16, 0xb5, 0x23, 0x44, 0x50, 0x4b, 0x53, 0xb3, 0xb9, 0x4d, 0x43, 0x6, 0xc, 0xe2, 0xdd, 0xb4, 0x42, 0xae, 0x6b, 0x27, 0x2f, 0x8e, 0x59, 0x63, 0xf9, 0x6b, 0xb, 0x7e, 0xa6}} + return a, nil +} + var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { @@ -6549,6 +6570,7 @@ var _bindata = map[string]func() (*asset, error){ "nodeVersionBeacon/admin/change_version_freeze_period.cdc": nodeversionbeaconAdminChange_version_freeze_periodCdc, "nodeVersionBeacon/admin/delete_version_boundary.cdc": nodeversionbeaconAdminDelete_version_boundaryCdc, "nodeVersionBeacon/admin/heartbeat.cdc": nodeversionbeaconAdminHeartbeatCdc, + "nodeVersionBeacon/admin/set_protocol_state_version.cdc": nodeversionbeaconAdminSet_protocol_state_versionCdc, "nodeVersionBeacon/admin/set_version_boundary.cdc": nodeversionbeaconAdminSet_version_boundaryCdc, "nodeVersionBeacon/scripts/get_current_node_version.cdc": nodeversionbeaconScriptsGet_current_node_versionCdc, "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc": nodeversionbeaconScriptsGet_current_node_version_as_stringCdc, @@ -6933,6 +6955,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "change_version_freeze_period.cdc": {nodeversionbeaconAdminChange_version_freeze_periodCdc, map[string]*bintree{}}, "delete_version_boundary.cdc": {nodeversionbeaconAdminDelete_version_boundaryCdc, map[string]*bintree{}}, "heartbeat.cdc": {nodeversionbeaconAdminHeartbeatCdc, map[string]*bintree{}}, + "set_protocol_state_version.cdc": {nodeversionbeaconAdminSet_protocol_state_versionCdc, map[string]*bintree{}}, "set_version_boundary.cdc": {nodeversionbeaconAdminSet_version_boundaryCdc, map[string]*bintree{}}, }}, "scripts": {nil, map[string]*bintree{ diff --git a/lib/go/templates/node_version_beacon_templates.go b/lib/go/templates/node_version_beacon_templates.go index 9a1a8f8f2..0c6568457 100644 --- a/lib/go/templates/node_version_beacon_templates.go +++ b/lib/go/templates/node_version_beacon_templates.go @@ -1,12 +1,15 @@ package templates import ( + _ "embed" + "github.com/onflow/flow-core-contracts/lib/go/templates/internal/assets" ) const ( // Admin Transactions setVersionBoundaryFilename = "nodeVersionBeacon/admin/set_version_boundary.cdc" + setProtocolStateVersionFilename = "nodeVersionBeacon/admin/set_protocol_state_version.cdc" deleteVersionBoundaryFilename = "nodeVersionBeacon/admin/delete_version_boundary.cdc" heartbeatFilename = "nodeVersionBeacon/admin/heartbeat.cdc" changeVersionFreezePeriodFilename = "nodeVersionBeacon/admin/change_version_freeze_period.cdc" @@ -26,6 +29,12 @@ func GenerateSetVersionBoundaryScript(env Environment) []byte { return []byte(ReplaceAddresses(code, env)) } +func GenerateSetProtocolStateVersionScript(env Environment) []byte { + code := assets.MustAssetString(setProtocolStateVersionFilename) + + return []byte(ReplaceAddresses(code, env)) +} + func GenerateDeleteVersionBoundaryScript(env Environment) []byte { code := assets.MustAssetString(deleteVersionBoundaryFilename) diff --git a/lib/go/test/node_version_beacon_test.go b/lib/go/test/node_version_beacon_test.go index 321e77d35..50babd508 100644 --- a/lib/go/test/node_version_beacon_test.go +++ b/lib/go/test/node_version_beacon_test.go @@ -178,6 +178,47 @@ func TestNodeVersionBeacon(t *testing.T) { require.Equal(t, versionMinor, uint8(version.Minor)) require.Equal(t, versionPatch, uint8(version.Patch)) }) + + t.Run("Should be able to set new protocol state version", func(t *testing.T) { + + changeTx := createTxWithTemplateAndAuthorizer(b, + templates.GenerateSetProtocolStateVersionScript(env), + versionBeaconAddress) + + newProtocolVersion := uint64(2) + err = changeTx.AddArgument(CadenceUInt64(newProtocolVersion)) + require.NoError(t, err) + activeView := uint64(1000) + err = changeTx.AddArgument(CadenceUInt64(activeView)) + require.NoError(t, err) + + txChangeResults := signAndSubmit( + t, b, changeTx, + []flow.Address{versionBeaconAddress}, + []crypto.Signer{versionBeaconSigner}, + false, + ) + // no events just yet + assert.Len(t, txChangeResults.Events, 0) + + checkTx := createTxWithTemplateAndAuthorizer(b, + templates.GenerateHeartbeatScript(env), + versionBeaconAddress) + + txCheckResults := signAndSubmit(t, b, checkTx, + []flow.Address{versionBeaconAddress}, + []crypto.Signer{versionBeaconSigner}, + false, + ) + + require.Empty(t, txCheckResults.Error) + require.Len(t, txCheckResults.Events, 1) + + event := ProtocolStateVersionUpgradeEvent(txCheckResults.Events[0]) + assert.Equal(t, newProtocolVersion, event.NewProtocolVersion()) + assert.Equal(t, activeView, event.ActiveView()) + + }) } type VersionBeaconEvent flow.Event @@ -205,3 +246,13 @@ func (v VersionBeaconEvent) VersionTable() (ret []struct { return } + +type ProtocolStateVersionUpgradeEvent flow.Event + +func (event ProtocolStateVersionUpgradeEvent) NewProtocolVersion() uint64 { + return event.Value.Fields[0].(cadence.UInt64).ToGoValue().(uint64) +} + +func (event ProtocolStateVersionUpgradeEvent) ActiveView() uint64 { + return event.Value.Fields[1].(cadence.UInt64).ToGoValue().(uint64) +} diff --git a/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc b/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc new file mode 100644 index 000000000..afbcb7b90 --- /dev/null +++ b/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc @@ -0,0 +1,25 @@ +import NodeVersionBeacon from 0xNODEVERSIONBEACONADDRESS + +/// Transaction that allows NodeVersionAdmin to specify a new protocol state version. +/// The new version will become active at view `activeView`. +/// If `activeView` is in the past, or 0, it will become active immediately. + +transaction(newProtocolVersion: UInt64, activeView: UInt64) { + + let adminRef: &NodeVersionBeacon.Admin + + prepare(acct: AuthAccount) { + // Borrow a reference to the NodeVersionAdmin implementing resource + self.adminRef = acct.borrow<&NodeVersionBeacon.Admin>(from: NodeVersionBeacon.AdminStoragePath) + ?? panic("Couldn't borrow NodeVersionBeacon.Admin Resource") + } + + execute { + self.adminRef.setPendingProtocolStateVersionUpgrade(newProtocolVersion: newProtocolVersion, activeView: activeView) + } + +// post { +// NodeVersionBeacon.peekPendingProtocolStateVersionUpgrade().version! == newProtocolVersion : "version not updated" +// NodeVersionBeacon.peekPendingProtocolStateVersionUpgrade().activeView! == activeView : "active view not updated" +// } +} From c28ccd31a0cb9c01ebd80d621f8d4c5c9f41023e Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Fri, 15 Mar 2024 10:33:07 -0400 Subject: [PATCH 5/6] Apply suggestions from code review --- lib/go/templates/node_version_beacon_templates.go | 2 -- .../admin/set_protocol_state_version.cdc | 11 ++++------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/lib/go/templates/node_version_beacon_templates.go b/lib/go/templates/node_version_beacon_templates.go index 0c6568457..9d9c876c4 100644 --- a/lib/go/templates/node_version_beacon_templates.go +++ b/lib/go/templates/node_version_beacon_templates.go @@ -1,8 +1,6 @@ package templates import ( - _ "embed" - "github.com/onflow/flow-core-contracts/lib/go/templates/internal/assets" ) diff --git a/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc b/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc index afbcb7b90..953df7c29 100644 --- a/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc +++ b/transactions/nodeVersionBeacon/admin/set_protocol_state_version.cdc @@ -1,8 +1,10 @@ import NodeVersionBeacon from 0xNODEVERSIONBEACONADDRESS /// Transaction that allows NodeVersionAdmin to specify a new protocol state version. -/// The new version will become active at view `activeView`. -/// If `activeView` is in the past, or 0, it will become active immediately. +/// The new version will become active at view `activeView` if the service event +/// is processed and applied to the protocol state within a block `B` such that +/// `B.view + ∆ < activeView`, for a protocol-defined safety threshold ∆. +/// Service events not meeting this threshold are discarded. transaction(newProtocolVersion: UInt64, activeView: UInt64) { @@ -17,9 +19,4 @@ transaction(newProtocolVersion: UInt64, activeView: UInt64) { execute { self.adminRef.setPendingProtocolStateVersionUpgrade(newProtocolVersion: newProtocolVersion, activeView: activeView) } - -// post { -// NodeVersionBeacon.peekPendingProtocolStateVersionUpgrade().version! == newProtocolVersion : "version not updated" -// NodeVersionBeacon.peekPendingProtocolStateVersionUpgrade().activeView! == activeView : "active view not updated" -// } } From f59efe400a8bd77c29a6124f797b466ae4927c15 Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Mon, 18 Mar 2024 09:53:01 -0400 Subject: [PATCH 6/6] generate --- lib/go/templates/internal/assets/assets.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 7605477da..a480c4a7d 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -215,7 +215,7 @@ // nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) // nodeVersionBeacon/admin/heartbeat.cdc (612B) -// nodeVersionBeacon/admin/set_protocol_state_version.cdc (1.062kB) +// nodeVersionBeacon/admin/set_protocol_state_version.cdc (963B) // nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) // nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) // nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) @@ -4664,7 +4664,7 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { return a, nil } -var _nodeversionbeaconAdminSet_protocol_state_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xbc\x1f\x87\x5f\x41\x42\x76\x0e\x55\x0f\xa8\x34\x82\xc0\x81\x0b\x20\x68\x38\x67\xb3\x1e\xc3\xaa\xf6\xce\x6a\x3d\xc6\x89\x22\xbe\x7b\xb5\xb6\x11\x45\x10\xa9\x87\xde\x76\xc7\xe3\xf7\x67\xe6\xad\x29\x1c\x7b\xc1\x92\x53\xda\x91\x2f\x0d\xdb\x29\x29\xcd\x16\x99\xe7\x02\x0f\x6f\xcb\xd5\x6c\xbe\x9b\x6f\xb6\x8b\xd5\x72\x3a\x9f\x3c\xad\x96\x93\xd9\x6c\x33\xdf\x6e\xa3\x28\x49\x12\xfc\xf4\xca\x96\x4a\x8b\x61\x0b\x39\x28\x81\xca\x73\xae\xcb\x3f\xe1\x26\x69\x61\x2c\x84\x51\x3a\xd2\x26\x7b\x87\x82\xa5\x1a\xce\xb3\xb0\xe6\x1c\xa5\x28\x21\x1c\xdb\xe6\xb8\x45\x3d\x50\xd3\xd3\x15\x51\x9b\x3c\xc7\x2b\x69\x2e\x08\x81\xec\x48\x50\x82\xa3\xa1\x1a\x2f\xed\x7d\x67\xa8\x7e\x69\x7f\x5e\x64\x57\x45\x98\x12\x81\xff\x40\x70\xaa\x94\x21\xd8\xe3\x61\x08\x23\xf7\x50\x4d\x51\x50\x6a\x94\x50\xfe\x1e\x47\x91\x5c\xcc\xf5\x2d\xd5\xeb\x4e\x71\xe7\x6b\x84\xe7\x85\x95\x6f\x5f\x87\xb8\xb0\x9d\x6b\x03\x7c\x44\x11\x90\x93\x40\x05\xfb\x1b\xca\x46\xf8\xff\x66\xc6\x71\x33\x9b\xd0\xe9\x3c\x39\xe5\xa9\xaf\xb4\x96\x11\x26\x95\x1c\x26\x5a\x73\x65\x25\x20\x01\x40\x92\x60\xca\xde\x73\x0d\x05\x4f\x19\x79\xb2\x9a\xc2\x54\x83\xb1\x9b\x69\x9b\xc2\xe5\x54\x90\x15\x63\xf7\xf0\x54\x72\xe5\x35\x35\x38\x25\xe5\x59\x7c\xd6\x84\x31\x02\x61\xfc\xda\x20\x7f\xff\x4c\xe0\x8f\x7e\xc8\xc2\xe8\x36\x23\xed\xe7\xad\xb0\x57\x7b\x5a\x2b\x39\x0c\x1a\x0e\xe0\xf1\x11\x4e\x59\xa3\xfb\xbd\x27\xae\xf2\xd4\x7e\x11\xb4\x1c\x9f\x61\x60\xd3\x89\xec\x05\x88\x53\x18\x09\xbd\x91\xae\x84\x3a\xff\x57\xba\xe3\x92\x64\x4d\x36\x35\x76\x7f\x5e\xca\x36\xa4\xa8\x03\x7e\x76\x7b\xaf\x52\xba\xbb\xb3\xdb\xda\xf5\xfe\x2e\xe7\x4e\x48\x92\x00\x70\x5c\x0a\x3e\xda\x33\xee\x78\x70\x44\xbf\xfe\x42\xd0\x20\xee\x12\xfd\x1f\xc6\xe3\x3b\x52\x30\x42\xef\x9c\x79\xcb\x82\xca\xa5\x4a\x28\xed\xfd\x03\xe2\x8b\xaf\x86\xfb\x72\x0d\x9c\x5d\xfa\x9b\x07\x75\xcb\x7b\x8a\x4e\xd1\xef\x00\x00\x00\xff\xff\x37\xce\x44\x93\x26\x04\x00\x00" +var _nodeversionbeaconAdminSet_protocol_state_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xcf\x4e\xdb\x4c\x14\xc5\xf7\x7e\x8a\x23\x16\xdf\x17\x54\xea\x74\x51\x75\x11\xd1\xa2\x04\xb2\x60\x13\x50\x52\x58\x67\x98\x39\x8e\x47\xb5\x67\xac\x99\x9b\x18\x54\xb1\xad\xfa\x9c\x7d\x92\x6a\x6c\xa7\x84\xa6\xec\xec\x3b\xf7\xfe\xce\xb9\x7f\x6c\xdd\xf8\x20\x58\x78\xc3\x7b\x86\x68\xbd\x9b\x51\x69\xef\x50\x04\x5f\xe3\xc3\xe3\xe2\xe6\x6a\x7e\x3f\x5f\xae\xae\x6f\x16\xb3\xf9\xf4\xf2\x66\x31\xbd\xba\x5a\xce\x57\xab\x2c\x1b\x8f\xc7\xf8\x1a\x94\x8b\x4a\x8b\xf5\x0e\x52\x2a\x81\xaa\x2a\xdf\xc6\x43\xdc\xd4\xd4\xd6\x41\x3c\x62\x43\x6d\x8b\x27\x28\x38\xb6\x68\x82\x17\xaf\x7d\x85\x28\x4a\x88\x5d\x9f\x9c\xf7\xd4\x92\x5d\xce\x10\x44\x6b\xab\x0a\x0f\xd4\xbe\x26\x92\xd8\x8e\x50\x82\x9d\x65\x8b\x75\xff\x7f\x6f\xd9\xae\x61\x0b\x48\x49\x44\x86\x9d\xd5\x04\x77\x74\xd2\x01\x6d\x4c\x7a\x9a\x31\xd2\x40\x39\x03\xd5\x34\x95\xa5\x49\xb6\x52\xc5\x5f\x66\x5a\x2b\xa5\x75\x50\x78\xa8\xbc\xfe\x86\xf5\x6c\x8d\xb8\xd5\x65\xd7\x61\xc7\x5b\xcf\xf2\x4e\xfd\x1d\x7e\xfd\xfc\x81\x73\x1c\x98\x38\x43\xe1\x03\xd4\x1f\xe4\x7b\xc3\xc2\x3a\x1a\x44\x55\x50\x9e\x20\x65\x60\x2c\x7d\x65\x52\x69\xdf\xee\xea\xd0\x6f\x84\xf3\x82\x9a\x14\xeb\x36\x90\xd2\xc6\x83\x12\x15\x08\x63\xa3\x56\xc1\xd0\xe4\x59\x26\x2f\xe3\x1f\x39\xb6\xb7\x83\xe6\x30\xf9\x09\xee\xae\x9d\x7c\xfa\x78\x76\xe0\x6f\x1f\x3b\xc5\xf7\x2c\x03\x2a\x0a\x54\x5a\xd0\x92\xc5\x04\xff\x1d\x5d\x41\xde\x6d\x2f\x65\x36\x81\x8d\x0a\x1c\x29\xad\x65\x82\xe9\x56\xca\xa9\xd6\x7e\xeb\x24\x91\x00\x60\x3c\xc6\xcc\x87\xe0\x5b\x28\x04\x16\x0c\x74\x9a\xfb\x01\x1f\xdd\x83\xad\x9b\x8a\x35\x5d\xd7\x65\x60\xf4\xdb\xa0\xd9\x71\x22\xab\x22\xdf\x7b\xc2\x67\x24\xc1\xfc\xa1\x23\x9f\xbf\x65\xf0\xcb\x28\x5d\xeb\xe4\xf8\x8a\xfb\xe7\x95\xf8\xa0\x36\xbc\x55\x52\x9e\x76\x1a\xc0\xc5\x05\x1a\xe5\xac\x1e\x9d\x5c\xfa\x6d\x65\xdc\xff\x82\x5e\xe3\x2d\x06\x96\x83\xc9\x93\x84\x78\x4e\x23\xe1\x23\xf5\x56\x38\xf4\xff\xca\x77\x1e\x29\xb7\x74\xc6\xba\xcd\x7e\x29\xab\x74\x5a\x03\xf8\xae\xd9\x04\x65\xf8\xcf\x9d\x1d\xc7\x5e\xef\xef\xe5\xbb\x37\xf2\x9c\xfd\x0e\x00\x00\xff\xff\x9e\xc5\xae\xd1\xc3\x03\x00\x00" func nodeversionbeaconAdminSet_protocol_state_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4680,7 +4680,7 @@ func nodeversionbeaconAdminSet_protocol_state_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_protocol_state_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0xcd, 0x4b, 0x16, 0xb5, 0x23, 0x44, 0x50, 0x4b, 0x53, 0xb3, 0xb9, 0x4d, 0x43, 0x6, 0xc, 0xe2, 0xdd, 0xb4, 0x42, 0xae, 0x6b, 0x27, 0x2f, 0x8e, 0x59, 0x63, 0xf9, 0x6b, 0xb, 0x7e, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xfb, 0x44, 0x74, 0x6a, 0x3d, 0x36, 0x4a, 0xc8, 0xfe, 0xb8, 0x1, 0x15, 0xde, 0x48, 0x3b, 0x4b, 0x2, 0x97, 0x68, 0x26, 0xec, 0x38, 0xea, 0x1b, 0x2e, 0x48, 0x90, 0xd8, 0xa, 0x95, 0xf9}} return a, nil }