From a1be91b436544b5bd67b5551dc38bbd62274bf4f Mon Sep 17 00:00:00 2001 From: Giovanni Sanchez <108043524+sisyphusSmiling@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:44:34 -0500 Subject: [PATCH] update NonFungibleToken-v2 implementation from source repo --- contracts/utility/NonFungibleToken.cdc | 42 +++++++++++----------- lib/go/contracts/internal/assets/assets.go | 12 +++---- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/contracts/utility/NonFungibleToken.cdc b/contracts/utility/NonFungibleToken.cdc index fae0e93..85667a9 100644 --- a/contracts/utility/NonFungibleToken.cdc +++ b/contracts/utility/NonFungibleToken.cdc @@ -58,7 +58,7 @@ access(all) contract NonFungibleToken { /// access(all) event Withdraw(id: UInt64, uuid: UInt64, from: Address?, type: String) - access(self) fun emitNFTWithdraw(id: UInt64, uuid: UInt64, from: Address?, type: String): Bool + access(self) view fun emitNFTWithdraw(id: UInt64, uuid: UInt64, from: Address?, type: String): Bool { emit Withdraw(id: id, uuid: uuid, from: from, type: type) return true @@ -70,7 +70,7 @@ access(all) contract NonFungibleToken { /// access(all) event Deposit(id: UInt64, uuid: UInt64, to: Address?, type: String) - access(self) fun emitNFTDeposit(id: UInt64, uuid: UInt64, to: Address?, type: String): Bool + access(self) view fun emitNFTDeposit(id: UInt64, uuid: UInt64, to: Address?, type: String): Bool { emit Deposit(id: id, uuid: uuid, to: to, type: type) return true @@ -82,7 +82,7 @@ access(all) contract NonFungibleToken { /// access(all) event Transfer(id: UInt64, uuid: UInt64, from: Address?, to: Address?, type: String) - access(self) fun emitNFTTransfer(id: UInt64, uuid: UInt64?, from: Address?, to: Address?, type: String?): Bool + access(self) view fun emitNFTTransfer(id: UInt64, uuid: UInt64?, from: Address?, to: Address?, type: String?): Bool { // The transfer method can return false even if it didn't do a transfer // in which case we don't want the event to be emitted @@ -99,7 +99,7 @@ access(all) contract NonFungibleToken { /// The event that should be emitted when an NFT is destroyed access(all) event Destroy(id: UInt64, uuid: UInt64, type: String) - access(self) fun emitNFTDestroy(id: UInt64, uuid: UInt64, type: String): Bool + access(self) view fun emitNFTDestroy(id: UInt64, uuid: UInt64, type: String): Bool { emit Destroy(id: id, uuid: uuid, type: type) return true @@ -122,7 +122,7 @@ access(all) contract NonFungibleToken { destroy() { pre { - //NonFungibleToken.emitNFTDestroy(id: self.getID(), uuid: self.uuid, type: self.getType().identifier) + NonFungibleToken.emitNFTDestroy(id: self.getID(), uuid: self.uuid, type: self.getType().identifier) } } } @@ -143,7 +143,7 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun withdraw(withdrawID: UInt64): @{NFT} { post { result.getID() == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - //NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) + NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) } } @@ -161,7 +161,7 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun withdrawWithUUID(_ uuid: UInt64): @{NFT} { post { result == nil || result!.uuid == uuid: "The ID of the withdrawn token must be the same as the requested ID" - //NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) + NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) } } @@ -170,7 +170,7 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun withdrawWithType(type: Type, withdrawID: UInt64): @{NFT} { post { result == nil || result.getID() == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - //NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) + NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) } } @@ -179,7 +179,7 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun withdrawWithTypeAndUUID(type: Type, uuid: UInt64): @{NFT} { post { result == nil || result!.uuid == uuid: "The ID of the withdrawn token must be the same as the requested ID" - //NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) + NonFungibleToken.emitNFTWithdraw(id: result.getID(), uuid: result.uuid, from: self.owner?.address, type: result.getType().identifier) } } } @@ -260,16 +260,15 @@ access(all) contract NonFungibleToken { /// deposit takes a NFT and adds it to the collections dictionary /// and adds the ID to the id array - access(all) fun deposit(token: @{NonFungibleToken.NFT}) - // { - // pre { - // // We emit the deposit event in the `Collection` interface - // // because the `Collection` interface is almost always the final destination - // // of tokens and deposit emissions from custom receivers could be confusing - // // and hard to reconcile to event listeners - // //NonFungibleToken.emitNFTDeposit(id: token.getID(), uuid: token.uuid, to: self.owner?.address, type: token.getType().identifier) - // } - // } + access(all) fun deposit(token: @{NonFungibleToken.NFT}) { + pre { + // We emit the deposit event in the `Collection` interface + // because the `Collection` interface is almost always the final destination + // of tokens and deposit emissions from custom receivers could be confusing + // and hard to reconcile to event listeners + NonFungibleToken.emitNFTDeposit(id: token.getID(), uuid: token.uuid, to: self.owner?.address, type: token.getType().identifier) + } + } /// Function for a direct transfer instead of having to do a deposit and withdrawal /// This can and should return false if the transfer doesn't succeed and true if it does succeed @@ -277,7 +276,8 @@ access(all) contract NonFungibleToken { access(Withdrawable) fun transfer(id: UInt64, receiver: Capability<&{NonFungibleToken.Receiver}>): Bool { pre { receiver.check(): "Could not borrow a reference to the NFT receiver" - //NonFungibleToken.emitNFTTransfer(id: id, uuid: self.borrowNFTSafe(id: id)?.uuid, from: self.owner?.address, to: receiver.borrow()?.owner?.address, type: self.borrowNFT(id).getType().identifier) + self.getIDs().contains(id): "The collection does not contain the specified ID" + NonFungibleToken.emitNFTTransfer(id: id, uuid: self.borrowNFTSafe(id: id)?.uuid, from: self.owner?.address, to: receiver.borrow()?.owner?.address, type: self.borrowNFT(id).getType().identifier) } } @@ -305,7 +305,7 @@ access(all) contract NonFungibleToken { access(all) view fun borrowNFTSafe(id: UInt64): &{NonFungibleToken.NFT}? { post { - (result == nil) || (result?.getID() == id): + (result == nil) || (result?.getID() == id): "Cannot borrow NFT reference: The ID of the returned reference does not match the ID that was specified" } return nil diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 8cc1f1b..b04a824 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,6 +1,6 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../contracts/ExampleToken-v2.cdc (12.437kB) +// ../../../contracts/ExampleToken-v2.cdc (12.39kB) // ../../../contracts/ExampleToken.cdc (12.028kB) // ../../../contracts/FungibleToken-v2.cdc (11.009kB) // ../../../contracts/FungibleToken.cdc (10.016kB) @@ -8,7 +8,7 @@ // ../../../contracts/FungibleTokenSwitchboard.cdc (18.059kB) // ../../../contracts/MultipleVaults.cdc (775B) // ../../../contracts/utility/MetadataViews.cdc (26.648kB) -// ../../../contracts/utility/NonFungibleToken.cdc (13.341kB) +// ../../../contracts/utility/NonFungibleToken.cdc (13.408kB) // ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.699kB) // ../../../contracts/utility/TokenForwarding.cdc (5.29kB) // ../../../contracts/utility/ViewResolver.cdc (1.749kB) @@ -81,7 +81,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3a\x5b\x73\xdb\x36\xd6\xef\xfe\x15\x27\xfa\x66\xfa\x49\x53\x5b\x72\x7a\xc9\xb6\x1a\x3b\x6e\x9a\xc4\xbb\x3b\xd3\x4e\x33\x89\x9a\x3e\x64\x32\x09\x44\x1e\x4a\xd8\x90\x00\x07\x00\x25\xab\x1e\xff\xf7\x1d\xdc\x48\x80\x17\x59\x96\xf3\xb4\x7a\xb1\x49\xe2\x1c\x9c\xfb\x0d\xa0\x45\xc9\x85\x82\xeb\x8a\xad\xe8\x32\xc7\x05\xff\x82\x0c\x32\xc1\x0b\x18\x45\xef\x46\x27\x6e\xe5\xef\xa8\x48\x4a\x14\x79\x4f\x71\x2b\xdd\xca\xe8\x5d\xbd\x32\x82\xef\x03\x1b\x5e\x50\xe3\xd0\x4f\x6f\x51\xf2\x7c\x83\xc2\x41\x85\xaf\x46\x27\xb3\x19\x78\xc2\xaa\x5c\xd1\x32\xc7\xf7\xa4\xca\x55\x4d\x59\xf4\x72\x74\x72\x42\x92\x04\xa5\x1c\x93\x3c\x9f\x40\xc2\x99\x12\x24\x51\xf0\xfa\x86\x14\xa5\xa3\x63\x1e\xef\x79\x7b\x72\x02\x00\x30\x9b\xcd\x60\xb1\x46\xc0\x0d\x32\x05\x6a\x4d\x14\x50\x09\x58\x50\xa5\x30\x85\xed\x1a\x19\x30\xdc\x82\xd2\x18\x24\x10\x81\x50\x50\xa6\x30\x35\xc0\xe1\x9e\x16\x81\xd9\x49\xfe\x6e\x96\x8c\x49\xc1\x2b\xa6\xe6\xf0\xe7\x35\xbd\x79\xf6\xc3\x29\xa8\x5d\x89\x73\x78\xa7\x04\x65\xab\x49\xb0\x3d\x57\x24\x07\x59\x95\x65\xbe\x03\x9e\x45\x44\x4b\xa0\x0c\xf0\x86\x4a\x85\x2c\xc1\xce\xa6\x1b\x22\x40\x69\xf0\x77\x06\xda\x6f\xd5\xe0\x7e\x91\x16\x94\xc1\x1b\xa2\xd6\x1d\xd8\x1c\x95\xfd\xfc\x4e\x71\x41\x56\xa8\x17\x69\xea\xea\x87\x06\xcb\x9f\x12\x85\x41\x22\x7b\xb1\x18\x1d\x0c\x62\x19\x84\x78\x53\x2d\x73\x9a\x58\x80\xe6\xff\xde\xf5\x6f\x31\x41\xba\x41\x31\x00\x52\x13\x7a\x5d\xb1\x44\x51\xce\x40\x71\x10\xa8\x2a\xc1\x40\xad\xd1\x08\x5e\x5a\xe5\xea\xc7\xda\x3c\xa8\x96\x73\x81\x4c\x75\xf9\xda\x50\xdc\x42\x56\x31\x58\xa1\x32\xd4\x2e\x34\x8e\xf1\x64\x0e\x1f\xf4\x7f\x1f\xe1\xd6\x80\xe8\x9f\x26\x50\xef\xf0\x42\x08\xb2\xab\xbf\x5f\xda\x7f\x2e\x7e\x09\xd5\x39\x35\xa8\x9e\x8f\x27\x1f\x6b\x68\x4f\xa6\x47\x60\x3e\xdc\x9d\xec\x27\x48\xbb\xd2\x20\x2d\x1b\xbd\xc7\x5b\xcc\xe0\x12\x24\xe6\xd9\x94\x24\x89\xb6\xc3\x69\x42\x4a\xb2\xa4\x39\x55\x14\xe5\x74\xc9\x85\xe0\xdb\x8b\x6f\xfa\xa8\x9b\x95\x46\xb4\x33\x0c\xbe\x99\x4f\x93\x7a\x1f\xfd\xbb\xba\x82\x92\x30\x9a\x8c\x47\x2f\x79\x95\xa7\xc0\xb8\x02\x8b\x16\x08\x08\xcc\x50\x68\x9b\xd5\xaa\xd0\x42\x37\x54\x81\xf0\xfe\xdd\xa0\x6a\x4b\xc2\x93\x3f\x6d\x18\x1d\x92\x89\x16\x87\xc3\xa8\x57\x8e\x3f\x19\x29\xcd\x41\x4b\x65\x32\x87\x17\x6c\xf7\x4e\x89\x2a\x51\x57\xff\xa3\x12\x0a\x79\xd7\x9c\x47\x82\xd2\xfe\x60\x68\xf2\x4f\xf5\xdb\xd7\x24\x59\x43\xa5\x7d\x5a\x2a\x2e\x50\x02\x61\x40\x99\x54\x44\x13\xc3\x33\xe0\x2c\xdf\x19\x8a\x0c\xb8\x8e\x40\x6a\x8d\xd4\xae\x26\x2b\x8c\xe2\x66\xe6\x3c\x4e\xba\x65\x0e\x86\xb0\x14\x56\x7c\x83\x82\x61\x0a\x4b\x8b\xad\x14\x68\xde\x97\x5c\x2a\xed\x83\x29\x35\x80\x35\x3a\xca\x5a\xd9\xca\x44\x5f\xb5\xc6\x9d\x89\xbb\x09\xc9\x73\x4c\xa7\xd1\xee\xc9\x1a\x93\x2f\x12\xd6\xa4\x2c\x91\x01\x51\x20\x2a\xa6\x68\x81\x06\x14\x75\x98\x27\x35\x85\x3a\xae\xb7\x70\xd4\xb8\x74\x56\xa8\x44\x82\x7a\x05\xb3\xfc\x2f\x11\x12\x81\x44\x67\x01\xc7\x99\x0e\x1b\x78\xa3\xb4\x84\xa2\x28\xe2\xe3\xca\xae\x46\xa7\xc9\x4d\x31\xa3\xcc\x00\x9f\x82\x34\x0a\x16\xa8\x49\x60\x1c\xb6\x64\x07\x19\xd7\xb4\x15\x24\xa7\x09\xe5\x95\xb4\xea\x50\xdc\xed\x69\xa5\xd8\x88\x86\x57\x6e\x5b\xca\x80\x50\x31\x85\x17\x20\x4b\x4c\x28\xc9\xc1\xe4\x1a\x61\xcc\x46\x73\x00\x0c\x31\x95\x1a\xd3\xb2\xa1\x41\x71\x93\xb5\x6a\x74\x4d\x46\x8b\x45\x11\xfa\x56\x8d\xd0\x90\x32\x8f\x55\x63\xfd\xc0\xe7\xd0\x50\x23\x26\x1b\xc1\x92\xe4\xde\x98\xd4\x9a\x4a\x6b\xb1\xf5\xda\x76\x06\x73\xab\xe3\xec\x15\x2c\xd4\x3e\x6a\x57\xca\x7d\x49\xa6\x17\xa2\x1c\x4e\x32\xbd\xeb\x85\xcf\x34\xbd\x39\xa6\xb1\x17\xed\x88\xd2\xd8\x81\xa3\x09\x4a\xa2\xd6\xda\xee\x04\x06\xde\x2c\xd7\xc6\xf1\xd5\xae\xa4\xda\xf6\x8c\x59\x19\xa7\x4b\xfb\xa5\x11\x04\xf9\x57\x98\xb5\xf2\xaa\x8e\xf8\xc1\x63\x18\xd5\x82\xe8\x60\x22\x9a\xec\x91\xcd\xdd\x30\x0f\x56\x4a\x31\x0b\x5e\x6d\x9e\x87\x35\xd9\x20\x10\xbf\xb4\x0e\x95\xbb\x43\x19\x69\x64\xa9\xf9\x68\x9e\xf6\xb1\x51\x76\x35\x76\x24\x17\xff\x2f\xeb\x22\xe2\x6b\x31\xf4\x36\x30\x95\xc3\x59\x0a\x0d\xac\x8f\xa9\x87\xe7\xfc\x60\x87\x0f\xd1\x4b\xfd\x33\x35\xc8\x70\x3d\x3e\xbd\x5e\xe8\xbf\xcf\xc7\x93\xd3\x23\x40\x5f\x51\x59\xe6\x64\x77\x24\xb4\x89\x21\xaf\x88\x22\x47\xc1\x2f\x9a\xb2\xf7\xf9\x38\x4e\xbb\x1f\xef\x93\xeb\x31\x75\x83\xfe\xc9\x2d\x55\xc9\xda\xaa\xe5\xb6\x43\x71\x42\x24\x1e\x2e\xef\x79\x07\x3e\xd0\xe3\xbd\x08\xc6\xbd\xd0\xfa\x97\x29\xa7\x95\xb9\xb7\xb7\x86\xcf\x87\x68\x74\x02\x44\x3e\xd9\x4f\x88\x5b\x7c\xd5\x55\x5e\x43\x4c\xad\xe4\xa3\xc8\x09\x4d\xe4\x00\x82\xea\xe5\x57\xbd\x14\x4d\x8e\x55\x59\x23\x95\x7e\xad\xe9\x9a\xb2\xc0\x94\x12\xb8\x8c\xdb\xe8\xe9\xef\xfa\xed\xb0\xb2\x8c\x8c\x68\x8e\xf3\x16\xd8\xbf\x16\x8b\x37\xd7\x34\xc7\xfd\x90\x95\xc8\xe7\x30\x5a\x2b\x55\xca\xf9\x6c\x46\xa4\x44\x25\xa7\x5b\x5c\x4a\xaa\xf0\x4c\xa3\x95\xd3\x84\x17\xb3\x1f\xb3\x67\xdf\xfd\xfc\x43\x72\x9e\xfc\x83\xfc\x94\xa4\xe9\xb3\x1f\xbe\x5f\x3e\x4d\x7e\xfa\xee\xbc\xf5\x81\xfc\xf8\x63\xb2\x7c\x9a\xfc\xfc\xfd\xb3\x4f\xd7\x39\xdf\x7e\xfa\x8b\x8b\xb4\x20\xe2\xcb\x54\x6e\x56\xa3\x41\x3a\x7a\x3c\xd7\xff\x8c\x44\x16\xa6\xe7\x1d\xd1\x82\xac\x70\x26\x37\xab\x6f\x6f\x8a\xbc\x1f\x5b\x57\x3b\x91\x68\x65\xbf\x6c\xe5\xf8\x83\xf9\xfc\xb1\x1f\xfc\x10\x7f\x72\xda\x1d\x96\x35\x23\x85\xe6\xc1\x35\x02\x35\x32\xdb\xec\x8f\x86\x05\x20\x77\xc5\x92\x6b\x15\xbd\xbe\x5e\xec\x59\x96\xa2\x4c\x04\x2d\x75\x8d\x3a\x87\xd1\x42\xa7\xac\xcc\x6f\x61\xaa\x34\x5d\x36\x56\x12\x53\x20\xa6\x54\x77\x4d\x87\xae\xea\xd6\x98\x97\xb0\xe3\x15\xa4\xb8\xc1\x9c\x9b\xff\x05\x30\x5d\xa5\x5e\x2f\xe0\xff\x38\xd3\x9a\x9c\xee\xd9\x1b\x6f\x14\x0a\x46\xf2\x3f\xdf\xfe\xd6\xb6\xc1\xd7\xcd\xa7\x71\x6d\x64\x6e\xef\xb3\x4c\x4d\x39\xcb\x34\x72\x2e\x56\xa3\x3d\x46\x90\xf3\x15\x97\x73\xa7\xc2\x3d\xa2\xe2\xba\x98\x95\xf3\x9e\xb0\x1a\xfe\x46\x6a\x4b\x95\x42\x31\x3a\x88\x58\xb7\xd8\x38\x81\xa6\xf5\xd3\x32\xe7\xc9\x97\x64\x4d\x28\x1b\xf5\x9b\x0b\x98\x9c\xd1\xf7\xf6\xe8\xd8\x11\x86\xb0\xe1\xe8\x11\x74\xa4\x51\xbf\xe9\x3b\x53\x57\xcf\xed\x6d\x4a\x33\xc1\x8b\x79\xa7\xfc\x1b\x66\xf4\x61\xdd\xa9\xad\x5a\x2d\xa1\x03\xd2\x3b\x28\x79\x79\x71\x0c\xbb\x5b\x54\xe4\xb7\xd9\x19\x36\xa1\xb8\x72\xef\xd4\x5a\xfb\xe2\x94\x25\x31\x00\x6c\xea\xce\x61\xb0\x52\xf0\x0d\x4d\xfd\x7e\xb3\x52\xd0\x0d\x51\xd8\x1d\x09\xdc\x4f\xf1\x6f\x94\x7d\xc1\xd4\x46\x4a\x63\x50\xbd\xea\xdd\x1b\x69\x2d\x07\x8f\x46\xe4\x79\x7a\x34\x22\xdb\xc6\xbe\x2e\x4a\xb5\x33\x8b\xfd\x60\x6e\x0e\xe3\xac\x62\xba\x8c\xfd\xe5\xb6\xa7\xa3\xbc\xbb\xc7\xff\x9d\x85\x5d\x9c\xd5\x23\x90\xf6\x46\xe3\x3d\x8e\xdd\xff\xe9\x48\xcf\x8e\xeb\xcf\x63\xab\xb9\x00\xcb\xb0\x43\x44\x13\xde\x48\x11\xc1\x97\x03\x78\xbb\xeb\x6b\x19\x18\xcd\x87\x7a\xab\x15\x2a\x8d\x9b\x0b\x85\x69\x33\x03\x05\x6e\x52\x95\xe9\x66\x85\xeb\xbe\x08\xe4\x54\x9a\x11\x85\x6d\x19\xa3\x81\x2b\x95\xb5\xa5\x9b\x2a\xbc\x74\x83\x0d\xd8\xd3\xed\xf4\xec\xab\x8d\xe6\xd6\x9a\xe4\xaf\x9c\xe7\x6d\x53\xd1\x51\x54\x7a\x28\x03\xd0\x5a\x7e\x09\xb7\xb1\x00\xe2\xd5\x1f\x8c\xe3\xaf\xd0\x6c\x36\x9e\x7c\x84\x4b\x50\xa2\xc2\xde\x3e\x2e\x02\x3c\xb8\x89\xa3\xb2\xcb\xd5\x58\xd5\x3e\x36\xb1\x84\xee\x69\x1d\x87\xe4\xf2\x41\x99\x8e\xf0\xea\x0a\x32\x92\x4b\xec\x57\x27\x50\x46\x15\x25\x39\xfd\xdb\xce\x27\xfc\x88\x86\xa8\x66\xd4\x63\x9c\xc9\x8c\xcf\x69\xd1\xa0\xd1\x80\xe3\xd6\x8c\x66\xd2\xee\x8c\x34\x7d\x1e\xe5\xa5\x47\xde\x51\x10\x4d\x91\x29\x9a\x51\x14\x70\x09\xa3\x4e\xa8\x1c\x75\x71\x06\xa1\x1f\x2e\xc3\xe9\xc7\xb8\xc1\x35\x0f\xf0\x4e\x9e\x74\x71\x34\xd1\x1c\x2e\x83\x2e\xfd\x01\x18\xc2\x44\x32\x8c\x23\x62\xc8\x4f\x07\x46\x01\xbe\x96\x7f\xfd\x13\x55\xa4\x0a\x37\x58\xdc\x33\x2c\x0b\x3c\xe4\x57\x0b\xa4\xbd\xc2\xaa\x64\x8f\xe1\xb4\xd5\xd1\xa2\x63\x4b\xd5\x3a\x15\x64\x1b\xbe\x8c\x16\x34\xc7\x2a\xc6\xa3\xc9\x17\x3b\x33\xb6\xe7\x5b\xae\x2a\x25\x62\x55\x15\xc8\x54\x04\x48\x58\x5a\x63\x77\xf1\xc0\x01\x99\x53\xbc\x7a\x5e\x3c\x1d\xdc\xfa\xdf\xca\xe5\x12\x1d\x64\xcc\xdc\x12\x8b\x92\x0b\x22\x76\x6e\xd2\xec\x8f\xec\x4c\x81\xac\x4b\x62\x9e\xa7\x11\x06\x73\x00\x64\xcf\xd2\x2c\x01\x02\x61\x89\x94\xad\x40\x09\xc2\x64\x86\x42\x60\x3a\xd5\x1b\x89\x60\x96\xc4\x70\x1b\xc4\x54\x8d\xc7\x4f\x83\xdd\xb6\x3c\x9a\x09\x1b\xcc\x76\xba\x0c\x92\x03\x55\x66\x90\x6c\x46\xb0\x25\xd7\xfd\x58\x4c\x13\xe6\x12\xcd\x84\xaa\x9f\x71\xa7\xf3\x38\x41\xfe\xe5\xe4\x48\x96\x39\xda\x11\x86\x97\x6c\xeb\xa0\x51\x27\xd7\x6e\xba\xde\xef\xb0\xd1\xe3\x99\x53\x52\x9f\x3d\x5d\x9c\x85\x13\xea\x26\x2c\x58\x88\xc9\x90\x89\x39\x31\x3c\xcc\xc2\x9c\xa8\xf9\xf2\x3f\x98\xb4\xcd\xcc\x98\x16\x49\x53\x19\xa1\xa1\x4a\xd6\xde\xe4\x34\xd4\x72\x2e\xbe\x65\x28\xe4\x01\x56\x47\x25\x90\x3c\xe7\x5b\x6b\x55\x29\x4a\x25\xb8\x3d\xc7\x90\x7a\x7b\x4b\xda\x12\x13\x52\x49\x6c\x0c\x39\xf6\x2b\x4d\x72\x60\xb0\xda\x34\x51\x78\x4a\xdc\x00\xde\x4c\xcd\xdf\xbb\x11\xa5\x27\x76\x4d\x62\xbe\x96\x88\x4c\xdb\x9a\xac\x0a\xdd\x06\xb2\xd4\x9e\x27\x64\xdc\x9c\x8b\x38\x43\x33\x14\xfa\xd3\x8d\x01\x93\xaa\xc7\x5f\x4e\x21\xae\x69\xe8\x2f\xc6\xda\x41\xbe\x6e\x54\xe0\xe2\xcc\x3a\x30\x91\x4f\xfa\x6c\xed\x60\x4b\xfb\xd6\xe2\xeb\x04\x28\xfd\x8b\xbe\xc0\x25\x9c\x4f\xcf\xa3\xef\x5e\x25\x71\xb8\xec\x26\xe1\xfb\xbc\xc8\x47\x81\xce\x71\xbd\x0f\xfa\x73\x78\x59\xcf\x86\x2f\xbe\x69\x49\xca\x87\xf9\xbb\xe7\x7d\xd2\xf2\xb8\xdf\x7b\xa9\x19\xee\x3b\x7e\xeb\x9d\x27\x82\x77\x09\xa2\xa7\x15\x13\x98\xd0\x92\x22\x0b\x87\xda\x9d\xad\x3d\xf5\xb6\xa9\xf4\x4f\xae\x81\xec\xa9\x92\xf7\x74\x83\x75\xf5\xb6\x97\x92\xf7\xae\x33\x6c\x33\xf1\xca\x5a\x9a\x59\xef\x39\x67\x3e\x22\xbb\xa3\xb5\x10\x8f\xe8\xe3\x28\xe0\x66\x1a\x9b\xee\xc5\x59\x24\xe4\xc1\x08\xd4\x6e\x14\x0e\x0c\x45\x71\xf2\xb1\x7a\xd4\x5c\x00\x09\x23\xcb\xdf\x28\x78\x27\xf1\xf9\x74\x42\x9b\x6c\x41\xf2\x5c\x27\x1e\x97\x35\xa6\xf0\xc2\x9e\xfb\x15\x95\xb4\xd9\xc3\x56\xcb\xfe\xc4\xb2\x83\xd1\xf4\xe0\x4e\x60\x1a\x77\x9d\x8d\xda\x47\xb4\xfa\x05\x17\xa9\x3d\x52\x34\x61\xcc\x7e\x8f\x31\xda\xd9\x82\x3b\x2b\x24\x76\xdc\xe4\x25\xed\x03\x84\xac\xcf\xf0\xec\x28\x4a\x97\x9a\x87\x45\x98\x6e\x67\x76\x48\x5e\xba\x27\xcd\x9c\x4f\xcf\x07\x34\x0c\x8b\x3f\x5e\xfd\x31\x87\xb7\xb8\xa1\xda\xda\x68\x06\x02\x0b\xbe\x21\xb9\x66\x20\xa9\xa4\xe2\x85\x0d\x19\x55\xa2\xb8\x90\x50\x12\x29\x31\x8c\xb2\xf0\x0e\x11\xfc\xe8\x68\x45\xd5\xba\x5a\x9a\xc9\x91\x9d\x73\xcd\xb2\x9c\x96\x72\x56\x56\x79\x3e\x7b\xfa\xfd\xd3\x1a\xce\x45\xa1\x71\xdb\xfb\x69\x16\x47\xba\xe7\x9a\xf4\x9e\xee\x76\xa8\x9d\x6b\x0f\x82\xc2\x4f\x67\xfd\x55\x1d\x44\x2d\x9e\xfd\x2f\xb8\x0b\x60\x0f\x8a\x4f\x60\xe0\xe8\xdb\xa7\x59\x9b\x80\x8d\xae\x89\xb9\x3c\xe4\xcc\xc4\x1e\x8d\xeb\x14\xe6\x8f\x93\x1f\x76\x8c\xec\xce\xa9\x6f\x23\x13\xd4\x68\xec\x3d\xa7\x03\xdd\x51\x03\xc8\x60\xe3\x53\x53\x03\x68\xe3\x2e\xbc\x93\xa9\xe0\x3a\xd5\xe9\xa0\x53\x86\x10\x6d\xb7\x3c\xc8\xbc\x1b\xd2\x8f\x29\xbf\x8e\x51\xfb\xb7\x7d\x65\x19\x16\x74\xe0\xd6\x99\xfd\xeb\x6f\x9d\xc5\xdd\xed\x34\x68\x77\x1e\x57\xe5\xb5\x8c\xac\x37\xca\x86\xe6\xf6\xa8\xe8\xfa\x75\x23\xeb\xd7\x8d\xaa\x5f\x21\xa2\xf6\xf9\xcf\x71\x91\xb4\x56\x23\xdc\x13\x46\xef\xfa\xee\xce\x69\xcd\xb8\xb8\xd6\x54\xe1\xfe\x82\xd0\x29\x60\x96\x61\xa2\xe8\x06\xf3\x1d\x2c\x2b\xc1\x4c\x2b\xd5\x14\xb4\x1d\x95\xff\x52\x12\x41\x0a\xb0\xe9\xba\xae\x76\x83\xa9\x03\x67\x8a\xd0\x16\x1a\x23\xc3\x4a\xb0\x16\xb6\x47\x44\xf9\x63\x22\x7c\x5b\x13\x9a\x22\xe7\xf4\xae\x70\xee\xaa\x21\xcc\x04\xbe\x46\xd5\x8b\x43\x79\x9b\x91\x4a\xb8\xd0\xb8\x67\x1c\x07\x9e\x9e\x9f\xeb\x92\x37\x5e\xd2\xbe\xb0\x09\x97\x30\x73\xd6\x19\x4d\x9e\xed\xbd\xcf\x28\x3f\xbe\xb4\x96\xd0\xdc\xd1\x32\x8e\xd6\x8e\x98\xc6\x38\xdd\x65\x57\xed\x1b\x64\x83\xda\xcd\x28\x8b\x6e\x7f\x59\x94\xf5\xbf\x51\x63\xd0\x6f\x71\x6d\x06\x27\x31\x5f\xed\x2b\xa4\x70\xe9\xea\xff\x81\x8b\x30\x4f\x7a\xc0\xdf\x84\x63\x9e\x36\x74\x78\xfb\xa4\x05\xdc\xbd\x5c\xda\x03\x1f\x5f\xf6\x78\xd2\x52\x4b\xfb\x98\x46\x8b\x6d\xec\xa6\xd4\xa7\xa0\xf8\xbc\x9f\xcb\x49\x9f\x82\x7a\x6e\xa4\xb4\xce\x60\x82\xc1\x07\xde\x94\xbc\x55\xc6\xe8\x85\x9f\x5d\xac\xf9\x0c\x05\xaa\x35\xb7\x2d\xe3\x0a\xd5\x0b\x33\x7e\x75\x83\x4b\xff\x4d\xad\x05\xaf\x56\xd6\x14\x3e\x7b\x3e\x3f\x83\xc9\xd7\x19\x49\x42\x8d\xfb\xd6\x13\x3e\x87\x13\xa8\xcf\xbd\x98\xdc\xe7\x7e\x44\x91\xe9\x84\x86\xfb\x92\x94\x7b\x6f\x65\x7a\x09\x53\x29\x2b\xbc\xf8\xc6\x9d\x44\x0c\x48\xb7\x57\x47\x11\x3a\x23\x6a\xb9\x1e\xb7\x48\x38\x05\xa2\xe6\xbd\xa6\x35\x89\x28\xf7\x6d\xc9\x03\xa9\x1e\xec\x21\x1f\xcf\x48\x40\x51\xc0\x44\xd7\xc4\x03\xd3\xd3\x8c\xd8\x52\xaf\xf1\x5e\x5b\xad\x8d\x07\x76\x6e\x99\xb9\x01\x0e\xcc\xbc\x1d\xa4\x7c\xaa\xb9\x3b\xf9\x6f\x00\x00\x00\xff\xff\x3c\x94\x64\x1a\x95\x30\x00\x00" +var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3a\x5b\x73\xdb\x36\xd6\xef\xfe\x15\x27\xfa\x66\xfa\x49\x53\x5b\x72\x7a\xc9\xb6\x1a\x3b\x6e\x9a\xc4\xbb\x3b\xd3\x4e\x33\x89\x9a\x3e\x64\x32\x09\x44\x1e\x4a\xd8\x90\x00\x07\x00\x25\xab\x1e\xff\xf7\x1d\xdc\x48\x80\x17\x59\x96\xf3\xb4\x7a\xb1\x49\xe2\x1c\x9c\xfb\x0d\xa0\x45\xc9\x85\x82\xeb\x8a\xad\xe8\x32\xc7\x05\xff\x82\x0c\x32\xc1\x0b\x18\x45\xef\x46\x27\x6e\xe5\xef\xa8\x48\x4a\x14\x79\x4f\x71\x2b\xdd\xca\xe8\x5d\xbd\x32\x82\xef\x03\x1b\x5e\x50\xe3\xd0\x4f\x6f\x51\xf2\x7c\x83\xc2\x41\x85\xaf\x46\x27\x27\x24\x49\x50\xca\x31\xc9\xf3\x09\x24\x9c\x29\x41\x12\x05\xaf\x6f\x48\x51\x3a\xc4\xf3\x18\xc9\xed\xc9\x09\x00\xc0\x6c\x36\x83\xc5\x1a\x01\x37\xc8\x14\xa8\x35\x51\x40\x25\x60\x41\x95\xc2\x14\xb6\x6b\x64\xc0\x70\x0b\x4a\x63\x90\x40\x04\x42\x41\x99\xc2\xd4\x00\x87\x7b\x5a\x04\x66\x27\xf9\xbb\x59\x32\x26\x05\xaf\x98\x9a\xc3\x9f\xd7\xf4\xe6\xd9\x0f\xa7\xa0\x76\x25\xce\xe1\x9d\x12\x94\xad\x26\xc1\xf6\x5c\x91\x1c\x64\x55\x96\xf9\x0e\x78\x16\x11\x2d\x81\x32\xc0\x1b\x2a\x15\xb2\x04\x3b\x9b\x6e\x88\x00\xa5\xc1\xdf\x19\x68\xbf\x55\x83\xfb\x45\x5a\x50\x06\x6f\x88\x5a\x77\x60\x73\x54\xf6\xf3\x3b\xc5\x05\x59\xa1\x5e\xa4\xa9\xab\x1f\x1a\x2c\x7f\x4a\x14\x06\x89\xec\xc5\xf2\x9e\x54\xb9\x1a\xc4\x32\x08\xf1\xa6\x5a\xe6\x34\xb1\x00\xcd\xff\xbd\xeb\xdf\x62\x82\x74\x83\x62\x00\xa4\x26\xf4\xba\x62\x89\xa2\x9c\x81\xe2\x20\x50\x55\x82\x81\x5a\xa3\x11\xbc\xb4\xca\xd5\x8f\xb5\x79\x50\x2d\xe7\x02\x99\xea\xf2\xb5\xa1\xb8\x85\xac\x62\xb0\x42\x65\xa8\x5d\x68\x1c\xe3\xc9\x1c\x3e\xe8\xff\x3e\xc2\xad\x01\xd1\x3f\x4d\xa0\xde\xe1\x85\x10\x64\x57\x7f\xbf\xb4\xff\x5c\xfc\x12\xaa\x73\x6a\x50\x3d\x1f\x4f\x3e\xd6\xd0\x9e\x4c\x8f\xc0\x7c\xb8\x3b\xd9\x4f\x90\xf6\x8d\x41\x5a\x36\x7a\x8f\xb7\x98\xc1\x25\x48\xcc\xb3\x29\x49\x12\x6d\x87\xd3\x84\x94\x64\x49\x73\xaa\x28\xca\xe9\x92\x0b\xc1\xb7\x17\xdf\xf4\x51\x37\x2b\x8d\x68\x67\x18\x7c\x33\x9f\x26\xf5\x3e\xfa\x77\x75\x05\x25\x61\x34\x19\x8f\x5e\xf2\x2a\x4f\x81\x71\x05\x16\x2d\x10\x10\x98\xa1\xd0\x36\xab\x55\xa1\x85\x6e\xa8\x02\xe1\x1d\xb6\x41\xd5\x96\x84\x27\x7f\xda\x30\x3a\x24\x13\x2d\x0e\x87\x51\xaf\x1c\x7f\x32\x52\x9a\x83\x96\xca\x64\x0e\x2f\xd8\xee\x9d\x12\x55\xa2\xae\xfe\x47\x25\x14\xf2\xae\x39\x8f\x04\xa5\xfd\xc1\xd0\xe4\x9f\xea\xb7\xaf\x49\xb2\x86\x4a\xfb\xb4\x54\x5c\xa0\x04\xc2\x80\x32\xa9\x88\x26\x86\x67\xc0\x59\xbe\x33\x14\x19\x70\x1d\x81\xd4\x1a\xa9\x5d\x4d\x56\x18\xc5\xcd\xcc\x79\x9c\x74\xcb\x1c\x0c\x61\x29\xac\xf8\x06\x05\xc3\x14\x96\x16\x5b\x29\xd0\xbc\x2f\xb9\x54\xda\x07\x53\x6a\x00\x6b\x74\x94\xb5\xd2\x8f\x89\xbe\x6a\x8d\x3b\x13\x77\x13\x92\xe7\x98\x4e\xa3\xdd\x93\x35\x26\x5f\x24\xac\x49\x59\x22\x03\xa2\x40\x54\x4c\xd1\x02\x0d\x28\xea\x30\x4f\x6a\x0a\x75\x5c\x6f\xe1\xa8\x71\xe9\xac\x50\x89\x04\xf5\x0a\x66\xf9\x5f\x22\x24\x02\x89\xce\x02\x8e\x33\x1d\x36\xf0\x46\x69\x09\x45\x51\xc4\xc7\x95\x5d\x8d\x4e\x93\x9b\x62\x46\x99\x01\x3e\x05\x69\x14\x2c\x50\x93\xc0\x38\x6c\xc9\x0e\x32\xae\x69\x2b\x48\x4e\x13\xca\x2b\x69\xd5\xa1\xb8\xdb\xd3\x4a\xb1\x11\x0d\xaf\xdc\xb6\x94\x01\xa1\x62\x0a\x2f\x40\x96\x98\x50\x92\x83\xc9\x35\xc2\x98\x8d\xe6\x00\x18\x62\x2a\x35\xa6\x65\x43\x83\xe2\x26\x6b\xd5\xe8\x9a\x8c\x16\x8b\x22\xf4\xad\x1a\xa1\x21\x65\x1e\xab\xc6\xfa\x81\xcf\xa1\xa1\x46\x4c\x36\x82\x25\xc9\xbd\x31\xa9\x35\x95\xd6\x62\xeb\xb5\xed\x0c\xe6\x56\xc7\xd9\x2b\x58\xa8\x7d\xd4\xae\x94\xfb\x92\x4c\x2f\x44\x39\x9c\x64\x7a\xd7\x0b\x9f\x69\x7a\x73\x4c\x63\x2f\xda\x11\xa5\xb1\x03\x47\x13\x94\x44\xad\xb5\xdd\x09\x0c\xbc\x59\xae\x8d\xe3\xab\x5d\x49\xb5\xed\x19\xb3\x32\x4e\x97\xf6\x4b\x23\x08\xf2\xaf\x30\x6b\xe5\x55\x1d\xf1\x83\xc7\x30\xaa\x05\xd1\xc1\x44\x34\xd9\x23\x9b\xbb\x61\x1e\xac\x94\x62\x16\xbc\xda\x3c\x0f\x6b\xb2\x41\x20\x7e\x69\x1d\x2a\x77\x87\x32\xd2\xc8\x52\xf3\xd1\x3c\xed\x63\xa3\xec\x6a\xec\x48\x2e\xfe\x5f\xd6\x45\xc4\xd7\x62\xe8\x6d\x60\x2a\x87\xb3\x14\x1a\x58\x1f\x53\x0f\xcf\xf9\xc1\x0e\x1f\xa2\x97\xfa\x67\x6a\x90\xe1\x02\x7b\x7a\xbd\xd0\x7f\x9f\x8f\x27\xa7\x47\x80\xbe\xa2\xb2\xcc\xc9\xee\x48\x68\x13\x43\x5e\x11\x45\x8e\x82\x5f\x34\x65\xef\xf3\x71\x9c\x76\x3f\xde\x27\xd7\x63\xea\x06\xfd\x93\x5b\xaa\x92\xb5\x55\xcb\x6d\x87\xe2\x84\x48\x3c\x5c\xde\xf3\x0e\x7c\xa0\xc7\x7b\x11\x8c\x7b\xa1\xf5\x2f\x53\x4e\x2b\x73\x6f\x6f\x0d\x9f\x0f\xd1\xe8\x04\x88\x7c\xb2\x9f\x10\xb7\xf8\xaa\xab\xbc\x86\x98\x5a\xc9\x47\x91\x13\x9a\xc8\x01\x04\xd5\xcb\xaf\x7a\x29\x9a\x1c\xab\xb2\x46\x2a\xfd\x5a\xd3\x35\x65\x81\x29\x25\x70\x19\xf7\xc5\xd3\xdf\xf5\xdb\x61\x65\x19\x19\xd1\x1c\xe7\x2d\xb0\x7f\x2d\x16\x6f\xae\x69\x8e\xfb\x21\x2b\x91\xcf\x61\xb4\x56\xaa\x94\xf3\xd9\x8c\x48\x89\x4a\x4e\xb7\xb8\x94\x54\xe1\x99\x46\x2b\xa7\x09\x2f\x66\x3f\x66\xcf\xbe\xfb\xf9\x87\xe4\x3c\xf9\x07\xf9\x29\x49\xd3\x67\x3f\x7c\xbf\x7c\x9a\xfc\xf4\xdd\x79\xeb\x03\xf9\xf1\xc7\x64\xf9\x34\xf9\xf9\xfb\x67\x9f\xae\x73\xbe\xfd\xf4\x17\x17\x69\x41\xc4\x97\xa9\xdc\xac\x46\x83\x74\xf4\x78\xae\xff\x19\x89\x2c\x4c\xcf\x3b\xa2\x05\x59\xe1\x4c\x6e\x56\xdf\xde\x14\x79\x3f\xb6\xae\x76\x22\xd1\xca\x7e\xd9\xca\xf1\x07\xf3\xf9\x63\x3f\xf8\x21\xfe\xe4\xb4\x3b\x2c\x6b\x46\x0a\xcd\x83\x6b\x04\x6a\x64\xb6\xd9\x1f\x0d\x0b\x40\xee\x8a\x25\xd7\x2a\x7a\x7d\xbd\xd8\xb3\x2c\x45\x99\x08\x5a\xea\x1a\x75\x0e\xa3\x85\x4e\x59\x99\xdf\xc2\x54\x69\xba\x6c\xac\x24\xa6\x40\x4c\xa9\xee\x9a\x0e\x5d\xd5\xad\x31\x2f\x61\xc7\x2b\x48\x71\x83\x39\x37\xff\x0b\x60\xba\x4a\xbd\x5e\xc0\xff\x71\xa6\x35\x39\xdd\xb3\x37\xde\x28\x14\x8c\xe4\x7f\xbe\xfd\xad\x6d\x83\xaf\x9b\x4f\xe3\xda\xc8\xdc\xde\x67\x99\x9a\x72\x96\x69\xe4\x5c\xac\x46\x7b\x8c\x20\xe7\x2b\x2e\xe7\x4e\x85\x7b\x44\xc5\x75\x31\x2b\xe7\x3d\x61\x35\xfc\x8d\xd4\x96\x2a\x85\x62\x74\x10\xb1\x6e\xb1\x71\x02\x4d\xeb\xa7\x65\xce\x93\x2f\xc9\x9a\x50\x36\xea\x37\x17\x30\x39\xa3\xef\xed\xd1\xb1\x23\x0c\x61\xc3\xd1\x23\xe8\x48\xa3\x7e\xd3\x77\xa6\xae\x9e\xdb\xdb\x94\x66\x82\x17\xf3\x4e\xf9\x37\xcc\xe8\xc3\xba\x53\x5b\xb5\x5a\x42\x07\xa4\x77\x50\xf2\xf2\xe2\x18\x76\xb7\xa8\xc8\x6f\xb3\x33\x6c\x42\x71\xe5\xde\xa9\xb5\xf6\xc5\x29\x4b\x62\x00\xd8\xd4\x9d\xc3\x60\xa5\xe0\x1b\x9a\xfa\xfd\x66\xa5\xa0\x1b\xa2\xb0\x3b\x12\xb8\x9f\xe2\xdf\x28\xfb\x82\xa9\x8d\x94\xc6\xa0\x7a\xd5\xbb\x37\xd2\x5a\x0e\x1e\x8d\xc8\xf3\xf4\x68\x44\xb6\x8d\x7d\x5d\x94\x6a\x67\x16\xfb\xc1\xdc\x1c\xc6\x59\xc5\x74\x19\xfb\xcb\x6d\x4f\x47\x79\x77\x8f\xff\x3b\x0b\xbb\x38\xab\x47\x20\xed\x8d\xc6\x7b\x1c\xbb\xff\xd3\x91\x9e\x1d\xd7\x9f\xc7\x56\x73\x01\x96\x61\x87\x88\x26\xbc\x91\x22\x82\x2f\x07\xf0\x76\xd7\xd7\x32\x30\x9a\x0f\xf5\x56\x2b\x54\x1a\x37\x17\x0a\xd3\x66\x06\x0a\xdc\xa4\x2a\xd3\xcd\x0a\xd7\x7d\x11\xc8\xa9\x34\x23\x0a\xdb\x32\x46\x03\x57\x2a\x6b\x4b\x37\x55\x78\xe9\x06\x1b\xb0\xa7\xdb\xe9\xd9\x57\x1b\xcd\xad\x35\xc9\x5f\x39\xcf\xdb\xa6\xa2\xa3\xa8\xf4\x50\x06\xa0\xb5\xfc\x12\x6e\x63\x01\xc4\xab\x3f\x18\xc7\x5f\xa1\xd9\x6c\x3c\xf9\x08\x97\xa0\x44\x85\xbd\x7d\x5c\x04\x78\x70\x13\x47\x65\x97\xab\xb1\xaa\x7d\x6c\x62\x09\xdd\xd3\x3a\x0e\xc9\xe5\x83\x32\x1d\xe1\xd5\x15\x64\x24\x97\xd8\xaf\x4e\xa0\x8c\x2a\x4a\x72\xfa\xb7\x9d\x4f\xf8\x11\x0d\x51\xcd\xa8\xc7\x38\x93\x19\x9f\xd3\xa2\x41\xa3\x01\xc7\xad\x19\xcd\xa4\xdd\x19\x69\xfa\x3c\xca\x4b\x8f\xbc\xa3\x20\x9a\x22\x53\x34\xa3\x28\xe0\x12\x46\x9d\x50\x39\xea\xe2\x0c\x42\x3f\x5c\x86\xd3\x8f\x71\x83\x6b\x1e\xe0\x9d\x3c\xe9\xe2\x68\xa2\x39\x5c\x06\x5d\xfa\x03\x30\x84\x89\x64\x18\x47\xc4\x90\x9f\x0e\x8c\x02\x7c\x2d\xff\xfa\x27\xaa\x48\x15\x6e\xb0\xb8\x67\x58\x16\x78\xc8\xaf\x16\x48\x7b\x85\x55\xc9\x1e\xc3\x69\xab\xa3\x45\xc7\x96\xaa\x75\x2a\xc8\x36\x7c\x19\x2d\x68\x8e\x55\x8c\x47\x93\x2f\x76\x66\x6c\xcf\xb7\x5c\x55\x4a\xc4\xaa\x2a\x90\xa9\x08\x90\xb0\xb4\xc6\xee\xe2\x81\x03\x32\x67\x78\xf5\xbc\x78\x3a\xb8\xf5\xbf\x95\xcb\x25\x3a\xc8\x98\xb9\x25\x16\x25\x17\x44\xec\xdc\xa4\xd9\x1f\xd9\x99\x02\x59\x97\xc4\x3c\x4f\x23\x0c\xe6\x00\xc8\x9e\xa5\x59\x02\x04\xc2\x12\x29\x5b\x81\x12\x84\xc9\x0c\x85\xc0\x74\xaa\x37\x12\xc1\x2c\x89\xe1\x36\x88\xa9\x1a\x8f\x9f\x06\xbb\x6d\x79\x34\x13\x36\x98\xed\x74\x19\x24\x07\xaa\xcc\x20\xd9\x8c\x60\x4b\xae\xfb\xb1\x98\x26\xcc\x25\x9a\x09\x55\x3f\xe3\x4e\xe7\x71\x82\xfc\xcb\xc9\x91\x2c\x73\xb4\x23\x0c\x2f\xd9\xd6\x41\xa3\x4e\xae\xdd\x74\xbd\xdf\x61\xa3\xc7\x33\xa7\xa4\x3e\x7b\xba\x38\x0b\x27\xd4\x4d\x58\xb0\x10\x93\x21\x13\x73\x62\x78\x98\x85\x39\x51\xf3\xe5\x7f\x30\x69\x9b\x99\x31\x2d\x92\xa6\x32\x42\x43\x95\xac\xbd\xc9\x69\xa8\xe5\x5c\x7c\xcb\x50\xc8\x03\xac\x8e\x4a\x20\x79\xce\xb7\xd6\xaa\x52\x94\x4a\x70\x7b\x8e\x21\xf5\xf6\x96\xb4\x25\x26\xa4\x92\xd8\x18\x72\xec\x57\x9a\xe4\xc0\x60\xb5\x69\xa2\xf0\x94\xb8\x01\xbc\x99\x9a\xbf\x77\x23\x4a\x4f\xec\x9a\xc4\x7c\x2d\x11\x99\xb6\x35\x59\x15\xba\x0d\x64\xa9\x3d\x4f\xc8\xb8\x39\x17\x71\x86\x66\x28\xf4\xa7\x1b\x03\x26\x55\x8f\xbf\x9c\x42\x5c\xd3\xd0\x5f\x8c\xb5\x83\x7c\xdd\xa8\xc0\xc5\x99\x75\x60\x22\x9f\xf4\xd9\xda\xc1\x96\xf6\xad\xc5\xd7\x09\x50\xfa\x17\x7d\x81\x4b\x38\x9f\x9e\x47\xdf\xbd\x4a\xe2\x70\xd9\x4d\xc2\xf7\x79\x91\x8f\x02\x9d\xe3\x7a\x1f\xf4\xe7\xf0\xb2\x9e\x0d\x5f\x7c\xd3\x92\x94\x0f\xf3\x77\xcf\xfb\xa4\xe5\x71\xbf\xf7\x52\x33\xdc\x77\xfc\xd6\x3b\x4f\x04\xef\x12\x44\x4f\x2b\x26\x30\xa1\x25\x45\x16\x0e\xb5\x3b\x5b\x7b\xea\x6d\x53\xe9\x9f\x5c\x03\xd9\x53\x25\xef\xe9\x06\xeb\xea\x6d\x2f\x25\xef\x5d\x67\xd8\x66\xe2\x95\xb5\x34\xb3\xde\x73\xce\x7c\x44\x76\x47\x6b\x21\x1e\xd1\xc7\x51\xc0\xcd\x34\x36\xdd\x8b\xb3\x48\xc8\x83\x11\xa8\xdd\x28\x1c\x18\x8a\xe2\xe4\x63\xf5\xa8\xb9\x00\x12\x46\x96\xbf\x51\xf0\x4e\xe2\xf3\xe9\x84\x36\xd9\x82\xe4\xb9\x4e\x3c\x2e\x6b\x4c\xe1\x85\x3d\xf7\x2b\x2a\x69\xb3\x87\xad\x96\xfd\x89\x65\x07\xa3\xe9\xc1\x9d\xc0\x34\xee\x3a\x1b\xb5\x8f\x68\xf5\x0b\x2e\x52\x7b\xa4\x68\xc2\x98\xfd\x1e\x63\xb4\xb3\x05\x77\x56\x48\xec\xb8\xc9\x4b\xda\x07\x08\x59\x9f\xe1\xd9\x51\x94\x2e\x35\x0f\x8b\x30\xdd\xce\xec\x90\xbc\x74\x4f\x9a\x39\x9f\x9e\x0f\x68\x18\x16\x7f\xbc\xfa\x63\x0e\x6f\x71\x43\xb5\xb5\xd1\x0c\x04\x16\x7c\x43\x72\xcd\x40\x52\x49\xc5\x0b\x1b\x32\xaa\x44\x71\x21\xa1\x24\x52\x62\x18\x65\xe1\x1d\x22\xf8\xd1\xd1\x8a\xaa\x75\xb5\x34\x93\x23\x3b\xe7\x9a\x65\x39\x2d\xe5\xac\xac\xf2\x7c\xf6\xf4\xfb\xa7\x35\x9c\x8b\x42\xe3\xb6\xf7\xd3\x2c\x8e\x74\xcf\x35\xe9\x3d\xdd\xed\x50\x3b\xd7\x1e\x04\x85\x9f\xce\xfa\xab\x3a\x88\x5a\x3c\xfb\x5f\x70\x17\xc0\x1e\x14\x9f\xc0\xc0\xd1\xb7\x4f\xb3\x36\x01\x1b\x5d\x13\x73\x79\xc8\x99\x89\x3d\x1a\xd7\x29\xcc\x1f\x27\x3f\xec\x18\xd9\x9d\x53\xdf\x46\x26\xa8\xd1\xd8\x7b\x4e\x07\xba\xa3\x06\x90\xc1\xc6\xa7\xa6\x06\xd0\xc6\x5d\x78\x27\x53\xc1\x75\xaa\xd3\x41\xa7\x0c\x21\xda\x6e\x79\x90\x79\x37\xa4\x1f\x53\x7e\x1d\xa3\xf6\x6f\xfb\xca\x32\x2c\xe8\xc0\xad\x33\xfb\xd7\xdf\x3a\x8b\xbb\xdb\x69\xd0\xee\x3c\xae\xca\x6b\x19\x59\x6f\x94\x0d\xcd\xed\x51\xd1\xf5\xeb\x46\xd6\xaf\x1b\x55\xbf\x42\x44\xed\xf3\x9f\xe3\x22\x69\xad\x46\xb8\x27\x8c\xde\xf5\xdd\x9d\xd3\x9a\x71\x71\xad\xa9\xc2\xfd\x05\xa1\x53\xc0\x2c\xc3\x44\xd1\x0d\xe6\x3b\x58\x56\x82\x99\x56\xaa\x29\x68\x3b\x2a\xff\xa5\x24\x82\x14\x60\xd3\x75\x5d\xed\x06\x53\x07\xce\x14\xa1\x2d\x34\x46\x86\x95\x60\x2d\x6c\x8f\x88\xf2\xc7\x44\xf8\xb6\x26\x34\x45\xce\xe9\x5d\xe1\xdc\x55\x43\x98\x09\x7c\x8d\xaa\x17\x87\xf2\x36\x23\x95\x70\xa1\x71\xcf\x38\x0e\x3c\x3d\x3f\xd7\x25\x6f\xbc\xa4\x7d\x61\x13\x2e\x61\xe6\xac\x33\x9a\x3c\xdb\x7b\x9f\x51\x7e\x7c\x69\x2d\xa1\xb9\xa3\x65\x1c\xad\x1d\x31\x8d\x71\xba\xcb\xae\xda\x37\xc8\x06\xb5\x9b\x51\x16\xdd\xfe\xb2\x28\xeb\x7f\xa3\xc6\xa0\xdf\xe2\xda\x0c\x4e\x62\xbe\xda\x57\x48\xe1\xd2\xd5\xff\x03\x17\x61\x9e\xf4\x80\xbf\x09\xc7\x3c\x6d\xe8\xf0\xf6\x49\x0b\xb8\x7b\xb9\xb4\x07\x3e\xbe\xec\xf1\xa4\xa5\x96\xf6\x31\x8d\x16\xdb\xd8\x4d\xa9\x4f\x41\xf1\x79\x3f\x97\x93\x3e\x05\xf5\xdc\x48\x69\x9d\xc1\x04\x83\x0f\xbc\x29\x79\xab\x8c\xd1\x0b\x3f\xbb\x58\xf3\x19\x0a\x54\x6b\x6e\x5b\xc6\x15\xaa\x17\x66\xfc\xea\x06\x97\xfe\x9b\x5a\x0b\x5e\xad\xac\x29\x7c\xf6\x7c\x7e\x06\x93\xaf\x33\x92\x84\x1a\xf7\xad\x27\x7c\x0e\x27\x50\x9f\x7b\x31\xb9\xcf\xfd\x88\x22\xd3\x09\x0d\xf7\x25\x29\xf7\xde\xca\xf4\x12\xa6\x52\x56\x78\xf1\x8d\x3b\x89\x18\x90\x6e\xaf\x8e\x22\x74\x46\xd4\x72\x3d\x6e\x91\x70\x0a\x44\xcd\x7b\x4d\x6b\x12\x51\xee\xdb\x92\x07\x52\x3d\xd8\x43\x3e\x9e\x91\x80\xa2\x80\x89\xae\x89\x07\xa6\xa7\x19\xb1\xa5\x5e\xe3\xbd\xb6\x5a\x1b\x0f\xec\xdc\x32\x73\x03\x1c\x98\x79\x3b\x48\xf9\x54\x73\x77\xf2\xdf\x00\x00\x00\xff\xff\x11\x3b\x52\x79\x66\x30\x00\x00" func exampletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -97,7 +97,7 @@ func exampletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x45, 0x66, 0x78, 0x53, 0x40, 0x1a, 0x39, 0xff, 0xec, 0x67, 0x57, 0x38, 0x71, 0x5a, 0x26, 0x7d, 0xea, 0x24, 0x28, 0x84, 0x4d, 0x19, 0xee, 0x6e, 0x77, 0x9e, 0x7f, 0x49, 0xe0, 0x49, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x3b, 0xb8, 0x17, 0xd3, 0xfa, 0x73, 0xba, 0xe6, 0x8f, 0xe7, 0x32, 0x88, 0xef, 0x79, 0x14, 0x34, 0x32, 0xc5, 0x5, 0xa0, 0xc2, 0x37, 0x84, 0x80, 0x12, 0xd9, 0x7c, 0xa9, 0x8e, 0x2a, 0x22}} return a, nil } @@ -241,7 +241,7 @@ func utilityMetadataviewsCdc() (*asset, error) { return a, nil } -var _utilityNonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x6f\xe3\xb6\xb2\x7f\xd7\xa7\x98\x4d\x81\xae\x5d\xb8\xce\xc5\xc5\xc5\x7d\x30\x4e\x4f\xba\xdd\x34\x07\x01\x0e\xd2\x62\xd7\x6d\x1f\x8a\xa2\x61\xa4\xb1\xcd\xae\x44\xaa\x24\x65\xd7\xc8\xe6\xbb\x1f\xcc\x90\x94\x28\x4b\x4e\xe2\x6c\x0b\x9c\x87\xee\x43\xd6\x96\xc5\x1f\x87\xf3\xe7\xc7\x99\x21\xcf\xbf\xf8\x22\xcb\x3e\xfb\x0c\x96\x1b\x84\xab\x52\xef\xe0\x46\xab\x2f\xaf\x1a\xb5\x96\x77\x25\xc2\x52\x7f\x40\x05\xd6\x09\x55\x08\x53\xf0\x8b\xb7\x37\x5a\xc5\xdf\xf9\xe7\x5b\xc8\xb5\x72\x46\xe4\x0e\xa4\x72\x68\x56\x22\xc7\x2c\x23\xbc\xf6\x2b\xb8\x8d\x70\x20\xca\x72\x0c\x3d\x8e\xb6\x60\x37\xba\x29\x0b\x7a\xb0\xd2\xa6\x02\xa7\xe7\xd9\xf5\x0a\x04\x34\x16\x0d\xec\x84\x72\x16\x9c\x86\x02\xeb\x52\xef\x41\x80\xc2\x1d\xdc\x5c\x2d\x5b\x80\x19\xb8\x0d\x4a\xd3\x89\xb3\x63\x38\x85\x58\x64\x4e\x83\xac\xea\x12\x2b\x54\x8e\x5e\x83\xc3\x55\x74\xc2\xce\x59\xf8\x14\xa7\x6a\xac\x83\x95\x2e\x49\x3d\xb4\x08\x1a\x6f\x9a\x12\x2d\x08\x55\x80\x12\x95\x54\xeb\x8c\x97\xe8\x7a\xab\xb6\x35\xe6\x72\x25\xd1\xce\x83\xe6\xae\x96\xb7\x60\xd0\xea\xc6\x44\x15\xe5\xda\x60\xfb\x08\xdc\xbe\x0e\xba\x32\x58\x1b\xb4\x48\x4b\x16\x8a\x57\x29\x15\xa3\xdb\x4a\x18\xd7\x8a\x16\x80\xdf\xea\xb2\xc4\xdc\x49\xad\x6e\xe1\x5d\x0f\xbf\x83\x26\x54\xeb\xb4\x21\xa9\x59\xa3\xaf\x6d\xd0\x5e\x1c\x3b\xcf\xae\xc9\x84\x79\xd9\x14\xfc\xd2\x0a\x77\xb0\x6a\x14\xff\xc6\x9a\x17\xac\x01\x92\x42\xef\x14\x1a\x7a\x84\xc2\xca\x72\x9f\x55\x7a\x8b\xe0\x48\x8f\x96\x04\x25\xb5\xe8\xc6\x81\x5e\xf1\xdb\xe9\x14\x2c\xef\xf7\x46\x6f\x65\x81\xe6\x96\xdf\xbc\x7d\x87\x39\xca\x2d\x7d\x6d\xc5\x6d\x95\x68\x79\x1d\x36\x7d\x02\x05\xe6\xa5\x30\x98\x08\xb7\x93\x6e\x03\x56\x57\x08\xb5\x41\x06\xad\xb5\x65\x35\x15\x92\xdf\xc8\x82\x56\x7f\x6f\xa4\x41\x16\xaa\xd3\x19\xad\x23\x58\x37\x47\xe3\x84\x54\xc1\xa6\x0c\x74\x87\x1b\xb1\x95\xda\xb4\x51\x60\xbd\x83\xec\x81\x44\xb0\x58\x0b\x23\x1c\xc2\x1d\xe6\xa2\x21\x31\x1d\xac\xe5\x16\x2d\xcf\xc1\x8e\x4b\x1f\xc4\x9d\x2c\xa5\xdb\xd3\x4c\x76\x43\xe3\x04\x18\x5c\xa1\x41\x95\x23\xf9\xa6\x77\xdc\x54\x24\x12\x57\xab\x72\x0f\xf8\x47\xad\x6d\xc0\x5b\x49\x2c\x0b\xef\x75\xdd\xda\xa5\x02\xad\x10\xb4\x81\x4a\x1b\xcc\x82\xce\x3b\x75\xcd\xe1\x9a\x62\xcf\xea\x20\x18\x09\x65\x0f\xa5\xaa\xc4\x07\x84\xbc\xb1\x4e\x57\xad\x11\x82\xd2\x7a\x71\xd3\x37\x04\x45\xa3\x86\xad\x30\x52\x37\x04\x29\xd5\x3a\xd8\x82\xe0\xbd\x3f\xcc\xb3\xec\x9b\x3d\x34\x96\xf4\xd9\x22\xf3\x12\x3a\xa0\x59\x10\x4a\xaf\xd8\x25\xfb\x3e\x6e\x21\x17\x0a\x2c\xaa\x22\xa3\x51\xc6\x3b\x4b\xf4\xb6\x1a\xd1\x7c\xe9\xf4\x97\xf4\xff\x8c\xe7\x26\xc7\x23\x93\xa9\x35\xc9\xc7\x93\x30\x19\x90\x58\x02\x72\x24\xd4\x12\x4a\x2c\xd6\x68\xb2\x41\x38\x2d\x35\x4f\x15\xa3\x8e\xbc\x5e\x69\xb7\x41\xc3\x22\xce\x5a\x36\x62\x6a\xb1\xa4\x9b\x3d\x43\x17\x46\xf8\xd0\xb8\xb9\x5a\x66\x2b\xa3\xab\x81\x4d\x99\x9e\x14\xe4\x91\x41\x0a\xac\xb5\x95\xae\xb5\x24\x68\xd5\x9b\xeb\xb5\xcd\xfa\x3e\x9a\x6b\xb2\x84\xf3\xee\xeb\x8c\x50\x76\x85\x66\x9e\x65\x5f\x9c\x67\x99\xac\x6a\x6d\x1c\xfc\x28\x71\x47\x04\x50\x6e\xd1\x00\x4b\x71\x96\x3e\x3a\xcb\xb2\xf3\xf3\x73\xe6\xfa\x8a\xdc\x3c\x65\xcf\x84\x00\xe1\x3b\x16\x22\xfd\x95\xcc\x5a\x96\x3c\x3a\x4c\xc5\x16\x4c\x5c\x43\xda\x84\xfe\xcf\xcf\xcf\x33\x91\xe7\x68\xed\x44\x94\xe5\xb4\x9b\x64\x40\xbb\xf7\x59\x06\x00\x70\x7e\x0e\x6f\x14\xa0\x72\xd2\x05\xc4\x95\x36\x9e\x70\xd8\x90\x1b\x6c\xb5\x2c\x4a\xe6\x15\x6f\x7e\x5e\xa3\x80\x1f\x45\x53\x3a\x06\x4a\x67\x4d\xe1\x7e\x8a\xa3\xef\x4a\x8c\x53\x9e\xc3\xb7\x5b\x2f\x3c\xb9\xb9\x05\xac\xa4\x73\x58\xc0\x8e\xec\x24\xfc\x14\xf4\x3c\xce\xac\x66\xed\x40\xa9\x0a\x99\x0b\x17\x65\xf3\x7c\x38\xa0\xbb\x80\xec\x60\x27\x12\x14\x16\x7a\x1e\xa1\x5a\xc8\xeb\xc1\x68\x69\x41\x69\xe7\x09\x95\x16\xa6\x1b\xe5\x5e\x5b\x66\x71\xb1\xc6\x19\xdc\x12\xd0\x2d\x5b\x06\xee\x10\x6e\x95\x2c\x6f\xfb\xb8\x3d\x6d\x6c\x53\x3d\x4c\x64\xb1\x80\x1f\xae\x95\xfb\xff\xff\x9b\x41\xd3\xa4\xdf\x08\x75\x01\x6f\x8a\xc2\xa0\xb5\x17\x33\xde\x95\x16\xf0\xde\x19\xa9\xd6\xd3\x2c\xc5\xb5\x58\xae\xa6\xe4\xc0\xac\xba\x9b\xab\xe5\xa7\xa2\x2f\xe0\x1b\xad\x4b\x9e\xe2\x9e\xff\xd2\x3f\xc2\xee\xcb\x2d\x8b\x88\x4a\x7f\x23\x26\xfd\x8d\x78\xf4\x77\xda\x22\x18\x74\x8d\x51\xe0\x4c\x83\xfc\xec\x61\xd4\x03\x8e\x99\x3f\x04\x2a\x16\xcc\x06\xbd\xdd\x6c\x60\x43\x17\x3d\x23\x30\xf6\x73\x1c\x23\xc5\x7f\xca\x7c\x97\xfe\xdd\x47\xf4\xeb\xf4\x0b\x6d\xf7\x49\xd0\xc7\x0d\x97\xc2\x1e\xda\x8d\x00\x9d\x3e\xd9\x66\xcb\xc0\x7d\x03\xf5\x13\xb1\x61\x67\xd0\x90\x4f\xde\x61\xdf\xb4\x81\x3a\x68\x1b\x8e\x2c\x6a\xb0\xf0\x54\x42\x3b\x69\x88\xb4\x84\xfb\x9f\x30\x4a\x94\xe7\x14\xaf\x7f\xa9\x95\x9e\x9c\xeb\xe2\x94\xc9\x2e\xc6\x0d\x17\x54\x19\xb5\x03\x15\xba\x8d\x2e\x78\x1f\x0e\x66\x59\x89\xd2\x7a\x5d\x83\x5c\x91\x23\x17\xb2\x50\xaf\x1d\xa5\x03\xa2\x1d\x97\xe2\x49\x05\xbb\x8d\xcc\x37\x90\x0b\x8b\xb0\x43\x28\x34\xbd\x4f\x59\x3d\xc7\x46\x30\x9b\x4e\xac\xd5\x0e\x97\x2b\x5e\x21\xbc\xfa\x0a\x94\x2c\xe1\xf3\xcf\x7d\xa2\x1c\xbe\x76\x62\xb7\x3e\xd7\x53\x52\xdf\xe9\x5e\x1d\xb0\xc5\xc0\x03\x5f\x4d\x7b\x78\x87\x6e\xc8\xae\x08\x48\xab\xbf\x7f\xfa\xc5\x43\xcf\xbd\x44\xeb\x8c\xde\xbf\xd0\x71\x63\x25\x40\x94\xc1\x38\x41\x47\x63\x34\xc1\xbf\x3f\x16\xcb\xa7\x10\xc3\x49\x60\x8f\x51\x41\x07\x34\xa0\x82\xd3\x28\xe0\xba\x5f\x5a\x86\xc4\xcb\xfa\x52\xad\x2b\x20\x8f\x06\xee\xb0\xd0\xa0\xf1\x8b\x5e\x02\x35\x6f\x33\xa9\x34\x32\xbc\xb1\x1a\x25\x7f\x6f\x10\xae\x2f\xc3\xd6\x21\xf2\x0d\xdb\x66\x23\x6c\xfb\x6e\x3a\xdf\x56\xfa\x62\x0a\xd6\xe8\xae\x2f\x27\xd3\xa8\xbb\x71\x27\x22\x13\xcc\x49\x2f\x89\x27\xa5\xc1\x74\x0c\x99\xa4\xb7\x04\xfe\xf3\x72\x5f\xe3\x2f\xfd\x88\x4e\xf0\x7f\xfe\x25\xfd\xe1\xe1\x18\x34\xa1\x1a\xaf\x03\x42\x9e\xfc\xca\x93\x2d\x80\xc0\xa7\x0b\x78\xa3\xf6\xef\x9d\x69\x72\x77\x71\x74\x22\x25\xcb\xfe\x4c\xed\xb7\xe0\xc1\x93\xe9\x81\x06\xa8\x7e\xeb\x3f\xf1\x63\x0f\x13\xc7\xf9\x88\x73\xb2\xda\x82\x82\xa3\x77\xb5\xaa\x8c\x2e\x16\x5f\xa2\x45\x4c\xa6\x73\x59\x50\x96\xb8\x92\x68\xfa\x71\xff\x70\x3c\x88\x13\xdf\xd3\x50\x61\x21\xa9\xfe\x8b\xd9\x5d\x48\x49\xfb\x15\xe6\x29\x6e\x18\x6b\xe3\x03\xa7\xbb\x8a\x55\x02\xe5\xc5\xb5\xd1\xbf\x61\xee\xdb\x21\x31\xdf\x20\x96\x74\xb1\x2c\xf5\xe5\xd6\x0f\x3f\x5c\x5f\x52\x5d\xa8\xb4\x7b\xdc\x29\x1b\x8b\x96\x5e\x9e\x84\xe0\x1d\xf7\x4a\xe6\xfc\x23\x1e\xf9\x93\xa7\xaa\xae\x14\x62\x1e\x4a\x94\x51\xc7\x65\x75\x2b\x8d\x25\x33\x85\xab\xcc\x39\x97\x8e\xc3\x53\xe8\x80\x24\x0c\xd2\x86\x21\x2c\xbf\xef\x17\xe8\x74\xe0\xbb\x52\x5a\x87\x8a\x4a\xc8\xf0\x7b\x19\x00\x63\x91\xe5\x41\xb2\x9e\x4a\x5b\x59\x0d\x56\x7a\x8b\x6d\xa7\xa5\x95\x39\xc9\xd7\xa8\xda\xf1\x2f\x49\xde\xa5\xf8\x67\x51\x96\xbd\x4d\x8e\xf3\xbf\x42\xa3\x4f\xdb\x7d\xf7\x67\x4f\xd4\xcd\xe5\x14\x0d\xb9\xbe\x24\xf6\x7e\xc4\x2e\x69\x99\xe2\x03\x30\x4a\x39\x89\x1f\xae\x2f\x23\x79\x4c\x17\xf0\xf5\xfd\xcd\xd5\xf2\xe1\x30\x86\xb4\x75\x23\x41\x64\xd0\x36\xa5\x8b\x01\x02\x5f\x7d\x05\x29\xe4\xd9\xd2\xcb\x17\x72\xd5\xae\x5a\xf1\x79\x30\x13\xeb\x9d\xaf\x3d\xad\xa8\x90\x14\xcd\x7d\x30\xfc\xbd\x41\x4b\x5b\xd4\xf5\xe5\xd9\x09\x71\xdb\xcb\xe7\xfb\x92\xc5\xd0\x0d\x4f\xd3\x14\x9f\x83\x97\x73\xea\x8b\xb9\xf0\x19\x4d\x8c\xeb\x0e\xe3\x84\xc8\xee\x19\xef\x4d\xe9\xd0\xa8\x34\x98\x43\xe2\x63\x07\xf4\xaf\xf0\x0f\xda\x74\x0c\x0e\xdf\x0d\x5d\xb2\x34\x44\x37\x62\x8b\xdc\x9c\x81\x55\x89\x7f\x48\xdf\x75\xe9\x61\xa6\x71\xbc\xf1\x3d\x36\x69\xfc\x8e\x46\xe1\x5c\xa1\x68\x93\xa3\xc6\x26\x99\x11\x8d\xfd\x29\xf6\x5b\xb6\xff\x0b\x4d\xbd\x36\xa2\xc0\x59\xec\x85\x05\x19\x62\x85\x98\xd0\x02\xb7\xe8\xc8\x2f\xed\x41\x4c\xa4\x6f\x86\x86\xd0\xf5\xa5\x25\xc4\x0e\x8f\x12\xc1\x5a\xe6\x1f\x18\x25\xdf\x68\x4d\x29\x1d\x65\x77\x3d\x2c\xef\x49\x76\x4c\x45\x75\x5d\x4a\xdf\x3f\x72\x1b\xac\xfa\x66\x58\x7e\x77\xf9\xdd\x02\x96\x61\x64\x59\xfa\xd8\x6d\x44\x59\xee\xbd\x26\x75\x4d\x21\x29\xca\x36\x3f\xd8\xd7\x68\x67\x70\xd7\xb8\x90\x54\x1a\xb9\xde\x38\x50\x7a\xd7\xc3\x8d\x74\xa3\x57\x20\xe0\xae\x59\x53\x4a\xfa\x56\x14\xdc\x82\x1b\xe5\x05\x52\x2c\xeb\xea\x69\x7e\x98\x05\x85\x49\xe7\xa3\x7b\xf6\x1c\xc2\x78\x32\xe4\xa3\x00\x93\x5f\x7b\xf9\xd6\x8b\xc2\x9e\xc2\x9d\xb2\xe5\x8f\x1f\xc3\x83\x57\x1c\x58\xf4\xd8\x63\xff\x1d\xff\xa9\xda\x09\xe3\x44\xbb\xf3\x10\x32\x7b\x88\xae\x67\x6c\x17\xcb\x8d\xb4\xa1\x95\x18\x22\x1b\xee\xf6\xbd\x16\x83\x4f\x2f\xb9\x01\xea\x88\x40\xaa\xa6\x74\xb2\x2e\xd1\x37\x27\xc9\xf1\x4f\x73\x27\xd6\x8d\x57\x18\x7d\x9c\xc1\x9f\xb4\xab\x0c\xdc\xeb\xef\x6d\xe6\xb9\x6e\xf6\x46\x15\xcf\x64\x99\xc4\xd9\x5c\x74\x36\x0e\xe2\xff\x6a\x77\x0b\xeb\xeb\x79\xdd\xdf\x74\xf6\x97\xf8\x19\x3c\xa3\x50\x89\xcd\x19\x0b\x77\xe8\x76\x88\x2a\xa9\x53\xec\x29\x85\x4a\x6c\xb2\xe8\xc3\x52\xa5\x6d\x1b\x1d\xf5\x68\x76\x4d\x9b\xf8\x5d\x6f\xfc\xa8\x37\x77\x2e\x1a\x4f\x55\xd9\x79\x6f\x4d\x3c\x3b\x7c\xda\x31\xdd\x58\xeb\x2c\x8e\x5f\xc0\x5b\x51\x87\x03\xb1\x7f\x7c\x7e\x1f\x8f\x24\x1f\xfe\x99\xf6\x33\x9e\xd2\x6d\xa8\x36\x62\x62\xf3\xc2\x0a\x30\xce\x1d\xcf\x46\xe2\x94\xb1\x96\x71\xe2\x43\xa7\x54\xc1\x9f\x84\x59\x37\x7c\xcc\x41\xba\x13\x45\x91\xaa\xee\xed\xa8\x96\x47\x0b\x42\xd2\x52\x98\x65\xc2\x71\x12\x43\x73\xda\x2b\xf6\x48\x98\x35\xba\xf7\x4d\x5d\x6b\xe3\xb0\xb8\xb9\x5a\x92\x93\xda\x90\x90\x59\x10\x5c\x90\xc5\xe3\x3c\xe6\x8d\xd8\xa7\x91\xb6\x55\x39\x4f\x5d\x3b\xfb\x9c\xce\xc6\x60\x2e\x2a\x55\xef\x97\x1c\x2a\x64\x9e\x87\xa3\x2d\x88\xfb\x87\x23\x1d\x88\xb0\x90\x77\x41\xe6\x58\xa6\xf9\xba\x8c\x35\xb7\x96\x5b\xf4\xe9\x25\x55\x6d\x5e\x5a\xef\x76\x7d\x97\x3c\x84\x7c\x33\xca\xa8\x7e\x3c\x08\xb5\xf7\x90\xa1\xc9\xf7\x1b\x31\x51\xd2\xe9\x22\xf8\x02\x57\xed\x81\xd6\x63\x8a\x91\xf6\x50\x2f\x09\xcb\x0e\x6b\xf9\xbe\x62\xfa\xe5\x7c\xdb\x07\x4a\x7c\xfc\x9d\x3f\x2e\x6f\x8f\xe3\xfc\xaa\x55\x6e\xd0\x1d\x5c\x5a\x68\x87\xf8\x1a\x25\x1c\xd0\x17\xf1\xd2\x42\x7b\x4e\xc8\x45\x45\x38\x0b\x3c\x25\x24\x3a\x1f\x5e\xb4\x0d\x92\x59\x1b\x28\xb3\x84\x8b\x66\xe3\x2d\xbc\xe4\x24\xf5\x20\xaa\xde\x05\xd5\xf3\x89\x2c\xab\x3d\x1e\xb0\x41\x2d\xdc\x26\x59\xf8\xc0\xdc\xc7\x9c\xf5\xd2\xe3\xbc\xf7\x30\xdf\x0b\xb7\x21\x6f\x4d\xbe\x5e\x8c\x37\x58\xd2\x6e\xd9\xc3\x93\x52\xd6\xcd\x5d\x29\xf3\x4f\x15\xf2\x7b\x46\x89\x32\x76\xdf\x4e\x17\xf1\x46\x9b\x8a\x8b\xb4\x1d\x86\x24\xa3\xbb\x6e\x11\x5a\xb4\x03\x16\xef\x57\xc1\x22\x72\x7b\x0e\x85\xe4\xd7\x84\xf1\x77\x26\x38\x19\x89\x4d\x5e\x5f\xea\xf9\x13\x67\x4b\xf5\x9e\x42\x5a\x22\xbd\x4b\xc1\xc5\xb7\x20\x7a\xb0\x16\x4a\xad\xd6\x4c\x95\xe1\xec\xdd\x9f\xb2\x77\x77\x28\x84\x87\x37\x38\xa6\x75\x1b\x67\x1e\x30\x59\xb2\x9e\x36\x67\xea\xf7\x83\x06\x07\x7f\x07\x4c\x10\x51\x67\x44\xd8\x81\x11\xbc\xaa\x0f\x34\xa3\x15\x02\x86\xb3\xec\x44\x39\xed\x65\x8b\x0f\x18\x68\x45\x58\xb8\xfd\xfa\x7e\x90\xa7\x10\x8b\x0f\xf6\xc8\x4f\xa2\x59\x88\xdd\x5a\xa6\xad\x05\x9c\x15\x4d\x55\xed\xcf\x8e\x27\xbe\x7f\x26\xd3\xfe\x19\x74\x78\xf2\x02\x72\x83\xc2\xe1\xb7\x55\xed\xf6\x09\x9f\xf8\xa7\xbc\x0d\x23\xfd\x74\x64\xc3\x05\x7f\x79\xc5\xab\xe0\x30\x4d\x07\xab\xdb\x28\xd9\xb3\x8f\xe8\x1d\xef\xef\xe3\xa7\x09\xb4\xd8\x51\x61\x26\x9c\x4c\x77\xdf\x5f\xd0\x19\xb4\x93\xe9\xbc\x44\xb5\x76\x1b\x4a\xa6\xff\x27\x64\xd2\x7e\xb6\x22\xf5\xe4\x98\x42\xf3\xa2\x5f\x9d\x3d\xa7\xf8\x39\xb9\xfb\xfc\xe4\x8e\xf5\x57\x36\x74\x5f\xde\x92\x1d\x0b\xbe\x47\x73\x39\x9f\xca\x0d\x73\xb7\x4e\x60\x9b\x44\xfd\xc0\xad\x78\x54\xe8\x2f\x87\x91\x54\x15\x1a\x23\xf6\x27\xe4\x79\x63\x52\x4f\x53\x75\x0f\xec\xd2\x3f\xac\x09\x0f\xa1\x7f\x22\x90\x5e\x75\xf2\xcd\xfa\x90\x14\xf4\x6e\x2d\x76\x57\x87\xc6\xd1\x62\xf3\xee\xf8\x40\x26\x8e\xb2\x22\x07\x17\xe5\x4e\xec\xe3\x8d\x39\x25\x4a\x3e\x6c\x92\x4a\x1c\xe6\x6a\xc9\xc7\xee\x46\x11\xe9\xb3\x95\xb7\x92\xd6\xb2\xf2\xd9\x85\xda\xfb\x71\x3e\xed\x20\xfe\x0f\xb5\x74\x7b\x24\x71\x04\x9e\x40\x37\xc2\xf0\x0d\x12\x83\x94\x43\xc9\x12\x47\x8e\x2f\xc6\x87\x1f\x3f\xfb\xea\xae\x56\xb0\xf4\x87\x25\xa7\x7f\xd8\xdd\xb5\x78\xa4\xde\x6c\xc7\x3f\x52\x6e\x06\xa1\x8e\x27\xd4\x07\xc7\x54\x02\x0a\x69\x30\x77\x5d\x45\x28\x95\x75\x28\x0a\x52\x77\x77\x45\x8f\xef\x0c\x44\x95\x93\xa6\xba\x9b\x5e\xc3\xf6\x05\xef\x9f\xaa\xe8\xef\x95\xe1\x3a\x82\x3f\x01\xeb\x66\x2b\x34\x72\x7e\x60\x9b\x3c\x47\xf4\x6d\x12\x4e\xb1\xc3\x95\x05\x8d\x36\xfe\xf6\x58\x69\xf4\x69\x95\xe4\xc0\x78\x83\xd2\xf2\x59\x27\xa0\x11\x7d\x9e\x6f\x30\xff\x40\x54\x79\xf6\xd6\x5f\x6f\xd6\x0e\xee\xb4\x31\x7a\x97\x5e\x2a\x8d\x34\x40\xbc\x12\x87\x9e\xd2\xcf\x38\x72\x83\x82\x1d\xc8\xcf\x76\x73\xb5\x7c\x2f\x56\x18\x5e\x98\x5e\x3c\xa3\xb1\xa1\x17\xdd\x32\x3c\xc8\x64\x7a\x71\xc4\x1f\xfb\x33\x4d\x64\x31\xfd\x94\x9e\x9b\xdf\xd9\xba\xfa\x54\x79\x72\x8c\xdd\x21\xfa\xcd\x5f\x51\x37\x18\xe9\xe9\x84\x54\x9a\x37\xcd\x05\xfc\xec\x3d\xe1\x97\xfe\xd4\xff\x42\x17\x6e\xdb\x56\x7c\xab\xc8\x17\xc5\xfe\x16\x5f\x57\x21\x9d\x30\xdb\xbf\x79\x73\xa6\x09\xaf\x95\x1b\x5b\x66\x6c\xbc\x8d\xd5\xe3\x8f\xaf\x74\x46\x69\x64\xc8\xbb\x62\x55\x17\xb1\xdf\xfb\x80\xe3\x3b\xc9\x49\xf7\x30\xdd\xa1\x4e\x6e\x1e\x8e\x69\xb2\x95\x3e\x49\x3d\xa3\x66\x8f\x24\x94\x22\x04\x00\x16\xfd\x00\xe8\xdf\x9c\x3f\xd2\x6d\x4a\x32\xaf\x98\x8c\xf9\x7b\x4e\xa2\x80\x42\x38\xe1\xcf\xb8\xa8\x70\x88\xa7\x57\xbc\x17\xc8\x27\x8e\xd4\x3b\xd7\xfd\x15\x7a\xbd\xce\x11\x46\x18\x6b\x7e\x9e\x92\x97\x5e\xc5\xfc\xa6\x77\xfd\xf7\x6d\x5a\x67\xc7\x57\xbd\x58\xf6\x90\x2a\xd6\xe8\x68\x79\x82\x17\x4c\x6b\xb0\x6d\x49\xc9\xce\x9a\x54\x70\xe1\x22\x2f\x7d\x10\x52\x3d\x61\x52\x3f\x5d\x2a\xd6\xe4\x40\x19\xa3\xd5\xfa\xc3\x61\xf5\xf9\x6c\x75\x3c\x6e\x8b\x96\xb0\x9e\xb2\xc6\x60\xfe\xf1\xbc\x79\xd2\x6b\x46\x4f\xe1\xe3\xc7\xf8\xe8\x22\x3d\xff\x90\xc5\x74\x31\x18\x4b\xff\xce\xde\x0a\x95\xf0\xb7\x27\xeb\x60\x16\x3e\x02\x4d\x3a\xd8\x3e\x96\x7b\x2e\xde\x5e\x35\xa8\x84\xcb\x37\x6d\x02\x48\xb6\xda\x09\xdb\x35\x4a\x8f\xe5\xe6\x70\xac\xae\xf7\x7f\x1f\xb2\xff\x04\x00\x00\xff\xff\x2c\x64\xe0\xf4\x1d\x34\x00\x00" +var _utilityNonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x6f\xe3\xb6\xb2\x7f\xd7\xa7\x98\x4d\x81\xae\x5d\xb8\xce\xc5\xc5\xc5\x7d\x08\x6e\x6f\xba\xdd\x34\x07\x01\x0e\xd2\x62\xd7\x6d\x1f\x8a\xa2\x61\xa4\xb1\xcd\xae\x44\xaa\x24\x65\xd7\xc8\xe6\xbb\x1f\xcc\x90\x94\x28\x4b\x4e\xec\x4d\x0b\x1c\xe0\x74\x1f\xbc\xb1\x2c\xfe\x38\x9c\x3f\x3f\xce\x0c\x79\xfe\xc5\x17\x59\xf6\xd9\x67\xb0\x58\x23\x5c\x97\x7a\x0b\xb7\x5a\x7d\x79\xdd\xa8\x95\xbc\x2f\x11\x16\xfa\x03\x2a\xb0\x4e\xa8\x42\x98\x82\x5f\xbc\xbb\xd5\x2a\xfe\xce\x3f\xdf\x41\xae\x95\x33\x22\x77\x20\x95\x43\xb3\x14\x39\x66\x19\xe1\xb5\x5f\xc1\xad\x85\x03\x51\x96\x63\xe8\x71\xb4\x05\xbb\xd6\x4d\x59\xd0\x83\xa5\x36\x15\x38\x3d\xcf\x6e\x96\x20\xa0\xb1\x68\x60\x2b\x94\xb3\xe0\x34\x14\x58\x97\x7a\x07\x02\x14\x6e\xe1\xf6\x7a\xd1\x02\xcc\xc0\xad\x51\x9a\x4e\x9c\x2d\xc3\x29\xc4\x22\x73\x1a\x64\x55\x97\x58\xa1\x72\xf4\x1a\xec\xaf\xa2\x13\x76\xce\xc2\xa7\x38\x55\x63\x1d\x2c\x75\x49\xea\xa1\x45\xd0\x78\xd3\x94\x68\x41\xa8\x02\x94\xa8\xa4\x5a\x65\xbc\x44\xd7\x5b\xb5\xad\x31\x97\x4b\x89\x76\x1e\x34\x77\xbd\xb8\x03\x83\x56\x37\x26\xaa\x28\xd7\x06\xdb\x47\xe0\x76\x75\xd0\x95\xc1\xda\xa0\x45\x5a\xb2\x50\xbc\x4a\xa9\x18\xdd\x56\xc2\xb8\x56\xb4\x00\xfc\x56\x97\x25\xe6\x4e\x6a\x75\x07\xef\x7a\xf8\x1d\x34\xa1\x5a\xa7\x0d\x49\xcd\x1a\x7d\x6d\x83\xf6\xe2\xd8\x79\x76\x43\x26\xcc\xcb\xa6\xe0\x97\x96\xb8\x85\x65\xa3\xf8\x37\xd6\xbc\x60\x0d\x90\x14\x7a\xab\xd0\xd0\x23\x14\x56\x96\xbb\xac\xd2\x1b\x04\x47\x7a\xb4\x24\x28\xa9\x45\x37\x0e\xf4\x92\xdf\x4e\xa7\x60\x79\xbf\x37\x7a\x23\x0b\x34\x77\xfc\xe6\xdd\x3b\xcc\x51\x6e\xe8\x6b\x2b\x6e\xab\x44\xcb\xeb\xb0\xe9\x13\x28\x30\x2f\x85\xc1\x44\xb8\xad\x74\x6b\xb0\xba\x42\xa8\x0d\x32\x68\xad\x2d\xab\xa9\x90\xfc\x46\x16\xb4\xfa\x7b\x23\x0d\xb2\x50\x9d\xce\x68\x1d\xc1\xba\x39\x1a\x27\xa4\x0a\x36\x65\xa0\x7b\x5c\x8b\x8d\xd4\xa6\x8d\x02\xeb\x1d\x64\x07\x24\x82\xc5\x5a\x18\xe1\x10\xee\x31\x17\x0d\x89\xe9\x60\x25\x37\x68\x79\x0e\x76\x5c\xfa\x43\xdc\xcb\x52\xba\x1d\xcd\x64\xd7\x34\x4e\x80\xc1\x25\x1a\x54\x39\x92\x6f\x7a\xc7\x4d\x45\x22\x71\xb5\x2a\x77\x80\x7f\xd4\xda\x06\xbc\xa5\xc4\xb2\xf0\x5e\xd7\xad\x5d\x2a\xd0\x0a\x41\x1b\xa8\xb4\xc1\x2c\xe8\xbc\x53\xd7\x1c\x6e\x28\xf6\xac\x0e\x82\x91\x50\x76\x5f\xaa\x4a\x7c\x40\xc8\x1b\xeb\x74\xd5\x1a\x21\x28\xad\x17\x37\x7d\x43\x50\x34\x6a\xd8\x08\x23\x75\x43\x90\x52\xad\x82\x2d\x08\xde\xfb\xc3\x3c\xcb\xbe\xd9\x41\x63\x49\x9f\x2d\x32\x2f\xa1\x03\x9a\x05\xa1\xf4\x92\x5d\xb2\xef\xe3\x16\x72\xa1\xc0\xa2\x2a\x32\x1a\x65\xbc\xb3\x44\x6f\xab\x11\xcd\x97\x4e\x7f\x49\xff\xcf\x78\x6e\x72\x3c\x32\x99\x5a\x91\x7c\x3c\x09\x93\x01\x89\x25\x20\x47\x42\x2d\xa1\xc4\x62\x85\x26\x1b\x84\xd3\x42\xf3\x54\x31\xea\xc8\xeb\x95\x76\x6b\x34\x2c\xe2\xac\x65\x23\xa6\x16\x4b\xba\xd9\x31\x74\x61\x84\x0f\x8d\xdb\xeb\x45\xb6\x34\xba\x1a\xd8\x94\xe9\x49\x41\x1e\x19\xa4\xc0\x5a\x5b\xe9\x5a\x4b\x82\x56\xbd\xb9\x5e\xdb\xac\xef\xa3\xb9\x26\x4b\x38\xef\xbe\xce\x08\x65\x97\x68\xe6\x59\xf6\xc5\x79\x96\xc9\xaa\xd6\xc6\xc1\x8f\x12\xb7\x44\x00\xe5\x06\x0d\xb0\x14\x67\xe9\xa3\xb3\x2c\x3b\x3f\x3f\x67\xae\xaf\xc8\xcd\x53\xf6\x4c\x08\x10\xbe\x63\x21\xd2\x5f\xc9\xac\x65\xc9\xa3\xc3\x54\x6c\xc1\xc4\x35\xa4\x4d\xe8\xff\xfc\xfc\x3c\x13\x79\x8e\xd6\x4e\x44\x59\x4e\xbb\x49\x06\xb4\xfb\x90\x65\x00\x00\xe7\xe7\xf0\x46\x01\x2a\x27\x5d\x40\x5c\x6a\xe3\x09\x87\x0d\xb9\xc6\x56\xcb\xa2\x64\x5e\xf1\xe6\xe7\x35\x0a\xf8\x51\x34\xa5\x63\xa0\x74\xd6\x14\xee\xa7\x38\xfa\xbe\xc4\x38\xe5\x39\x7c\xbb\xf1\xc2\x93\x9b\x5b\xc0\x4a\x3a\x87\x05\x6c\xc9\x4e\xc2\x4f\x41\xcf\xe3\xcc\x6a\xd6\x0e\x94\xaa\x90\xb9\x70\x51\x36\xcf\x87\x03\xba\x0b\xc8\x0e\xb6\x22\x41\x61\xa1\xe7\x11\xaa\x85\xbc\x19\x8c\x96\x16\x94\x76\x9e\x50\x69\x61\xba\x51\xee\xb5\x65\x16\x17\x2b\x9c\xc1\x1d\x01\xdd\xb1\x65\xe0\x1e\xe1\x4e\xc9\xf2\xae\x8f\xdb\xd3\xc6\x26\xd5\xc3\x44\x16\x17\xf0\xc3\x8d\x72\xff\xfb\x3f\x33\x68\x9a\xf4\x1b\xa1\x5e\xc0\x9b\xa2\x30\x68\xed\xe5\x8c\x77\xa5\x0b\x78\xef\x8c\x54\xab\x69\x96\xe2\x5a\x2c\x97\x53\xd8\x48\xbf\x51\xb0\xfe\x6e\xaf\x17\x2f\x9d\xe2\x02\xbe\xd1\xba\xe4\x79\x1e\xf8\x93\xfe\x11\x76\x5f\x78\x59\x44\x54\xfa\x8c\x98\xf4\x19\xf1\xe8\x73\xda\x22\x18\x74\x8d\x51\xe0\x4c\x83\xfc\xec\x71\xd4\x0d\x0e\xf9\x40\x88\x56\x2c\x98\x12\x7a\x5b\xda\xc0\x90\x2e\xba\x47\xa0\xed\x63\xbc\x23\xc5\x7f\xce\x86\x57\xfe\xdd\x27\xf4\xeb\xf4\x4b\x0c\xf8\x22\xfc\xc3\xd6\x4b\x61\xf7\x8d\x47\x80\x4e\x9f\x6c\xb8\x45\x60\xc1\x81\x0d\x88\xe2\xb0\xb3\x6a\xc8\x2c\xef\xb1\x6f\xdf\x40\x22\xb4\x21\x47\x3e\x35\x58\x78\x52\xa1\x3d\x35\xc4\x5c\xb2\x0b\x3c\x63\x99\x28\xcf\x29\xae\xff\x22\x53\x3d\x3b\xe1\xe5\x29\x33\x5e\x8e\x5b\x2f\xe8\x33\xaa\x08\x2a\x74\x6b\x5d\xf0\xb6\x1c\x6c\xb3\x14\xa5\xf5\x0a\x07\xb9\x24\x97\x2e\x64\xa1\x5e\x3b\xca\x0e\x44\x3b\x2e\xc5\x93\x0a\xb6\x6b\x99\xaf\x21\x17\x16\x61\x8b\x50\x68\x7a\x9f\x92\x7c\x8e\x92\x60\x3b\x9d\x98\xac\x1d\x2e\x97\xbc\x42\x78\xf5\x15\x28\x59\xc2\xe7\x9f\xfb\xbc\x39\x7c\xed\xc4\x6e\x1d\xaf\xa7\xa4\xbe\xe7\xbd\xda\xe3\x8d\x81\x1b\xbe\x9a\xf6\xf0\xf6\x7d\x91\xfd\x11\x90\x56\xff\xf0\xfc\x8b\xfb\xee\x7b\x85\xd6\x19\xbd\xfb\x44\xef\x8d\x85\x01\x91\x07\xe3\x04\x1d\x8d\x11\x06\xff\xfe\x54\x40\x9f\x4c\x11\x27\x21\x3e\x45\x0a\x1d\xd0\x80\x14\x4e\x23\x83\x9b\x7e\xb9\x19\x92\x31\xeb\xcb\xb7\xae\xa8\x3c\x18\xc2\xc3\xe2\x83\xc6\x5f\xf4\x92\xaa\x79\x9b\x5d\xa5\xe1\xe1\x2d\xd6\x28\xf9\x7b\x83\x70\x73\x15\x76\x12\x91\xaf\xd9\x40\x6b\x61\xdb\x77\xd3\xf9\x5a\x9d\xae\xd0\xdd\x5c\x4d\xa6\x51\x77\xe3\x9e\x44\x76\x98\x93\x5e\x12\x77\x4a\x23\xea\x10\x32\x49\x6f\x09\xfc\xe7\xc5\xae\xc6\x5f\xfa\x61\x9d\xe0\xff\xfc\x4b\xfa\xc3\xe3\x21\x68\x42\x35\x5e\x07\x84\x3c\xf9\x95\x27\xbb\x00\x02\x9f\x5e\xc0\x1b\xb5\x7b\xef\x4c\x93\xbb\xcb\x83\x13\x29\x59\xf6\x67\x6a\xbf\x05\x37\x9e\x4c\xf7\x34\x40\x35\x5d\xff\x09\xfd\xdb\x4f\x25\xe7\x23\xae\xc9\x4a\x0b\xea\x8d\xbe\xd5\x2a\x32\x3a\x58\x7c\x89\x96\x30\x99\xce\x65\x41\x79\xe3\x52\xa2\xe9\x87\xfe\xe3\xe1\x38\x4e\x3c\x4f\x43\x85\x85\xa4\x8a\x30\xe6\x7b\x21\x49\xed\xd7\x9c\xa7\x38\x61\xac\x96\xf7\x5c\xee\x3a\xd6\x0d\x94\x29\xd7\x46\xff\x86\xb9\x6f\x90\xc4\xe4\x83\x88\xd2\xc5\x42\xd5\x17\x60\x3f\xfc\x70\x73\x45\x95\xa2\xd2\xee\x69\x97\x6c\x2c\x5a\x7a\x79\x12\x42\x77\xdc\x27\x99\xf6\x0f\xf8\xe3\x4f\x9e\xad\xba\xe2\x88\xa9\x28\x51\x46\x1d\x97\xd5\xad\x34\x16\xd1\x14\xac\x32\xe7\xec\x3a\x0e\x4f\xa1\x03\x92\x30\x48\x7b\x86\xb0\xfc\xbe\x5f\xa0\xd3\x81\xf2\x4a\x69\x1d\x2a\x2a\x2a\xc3\xef\x65\x00\x8c\x65\x97\x07\xc9\x7a\x2a\x6d\x65\x35\x58\xe9\x0d\xb6\xbd\x97\x56\xe6\x24\x79\xa3\xfa\xc7\xbf\x24\x79\xa3\xe2\x9f\x45\x59\xf6\xf6\x39\x4e\x06\x0b\x8d\x3e\x91\xf7\xfd\xa0\x1d\xb1\x37\x17\x58\x34\xe4\xe6\x8a\x08\xfc\x09\xbb\xa4\x85\x8b\x0f\xbf\x28\xe5\x24\xfe\x71\x73\x15\xa9\x63\x7a\x01\x5f\x3f\xdc\x5e\x2f\x1e\xf7\x23\x48\x5b\x37\x12\x42\x06\x6d\x53\xba\x18\x20\xf0\xd5\x57\x90\x42\x9e\x2d\xbc\x7c\x21\x71\xed\xea\x17\x9f\x14\x33\xad\xde\xfb\x6a\xd4\x8a\x0a\x49\xd1\xdc\x19\xc3\xdf\x1b\xb4\xb4\x4b\xdd\x5c\x9d\x1d\x1d\xb5\xbd\xd4\xbe\x2f\x57\x0c\xdc\xf0\x34\xcd\xf6\x39\x74\x39\xbd\xbe\x9c\x0b\x9f\xd2\xc4\xa8\xee\x30\x4e\x88\xeb\x9e\xe9\xde\x94\x0e\x8d\x4a\x43\x39\x64\x3e\x76\x40\xfd\x0a\xff\xa0\x0d\xc7\xe0\xf0\xdd\xd0\x35\x4b\x03\x74\x2d\x36\xc8\xcd\x1a\x58\x96\xf8\x87\xf4\x5d\x98\x1e\x66\x1a\xc5\x6b\xdf\x73\x93\xc6\xef\x66\x14\xcc\x15\x8a\x36\x3b\x6a\x6c\x92\x1a\xd1\xd8\x9f\x62\xff\x65\xf3\xdf\xd0\xd4\x2b\x23\x0a\x9c\xc5\xde\x58\x90\x21\x56\x8c\x09\x29\x70\xcb\x8e\xbc\xd2\xee\x45\x44\xfa\x66\x68\x10\xdd\x5c\x59\x42\xec\xf0\x28\x13\xac\x65\xfe\x81\x51\xf2\xb5\xd6\x94\xd3\x51\x7a\xd7\xc3\xf2\x7e\x64\xc7\x54\x54\xd7\xa5\xf4\xfd\x24\xb7\xc6\xaa\x6f\x86\xc5\x77\x57\xdf\x5d\xc0\x22\x8c\x2c\x4b\x1f\xb9\x8d\x28\xcb\x9d\xd7\xa4\xae\x29\x20\x45\xd9\xe6\x06\xbb\x1a\xed\x0c\xee\x1b\x17\xb2\x4a\x23\x57\x6b\x07\x4a\x6f\x7b\xb8\x91\x6c\xf4\x12\x04\xdc\x37\x2b\xca\x49\xdf\x8a\x82\x5b\x72\xa3\xac\x40\x8a\x65\x5d\x3d\xcf\x0e\xb3\xa0\x30\xe9\x7c\x6c\xcf\x8e\xa1\x8b\x67\x03\x3e\x0a\x30\xf9\xb5\x97\x6b\x7d\x52\xd0\x53\xb0\x53\xba\xfc\xf1\x63\x78\xf0\x8a\x03\x8b\x1e\x7b\xec\xff\xf4\xe8\x4f\x95\x4e\x18\x27\x5a\x9d\x87\x90\xd1\x43\x6c\x1d\xb1\x55\x2c\xd6\xd2\x86\xc6\x62\x88\x6b\xb8\xdf\xf5\x7a\x0d\x3e\xb1\xe4\x76\xa8\x23\xfa\xa8\x9a\xd2\xc9\xba\x44\xdf\xaa\x24\xb7\x3f\xcd\x99\x58\x37\x5e\x61\xf4\xe7\x0c\xfe\xa4\x1d\x65\xe0\x5c\x7f\x6f\x31\xc7\x39\xd9\x1b\x55\x1c\xc9\x30\x89\xab\xb9\xe8\x6a\x1c\xc0\xff\xd6\xce\x16\xd6\xd7\xf3\xb9\xbf\xa9\xec\x2f\xf0\x32\x38\xa2\x40\x89\x7d\x19\x0b\xf7\xe8\xb6\x88\x2a\xa9\x4f\xec\x29\x05\x4a\xec\xaf\xe8\xfd\x12\xa5\xed\x18\x1d\xf4\x67\x76\x4c\x9b\x78\x5d\x6f\xfc\xa8\x2f\x77\x0e\x1a\xcf\x57\xd9\x75\xef\x4c\x3c\x45\x7c\xde\x2d\xdd\x58\xd7\x2c\x8e\xbf\x80\xb7\xa2\x0e\x47\x63\xff\xf7\xf9\x43\x3c\x9c\x7c\xfc\xff\xb4\x8b\xf1\x9c\x6e\x43\x95\x11\x53\x9a\x4f\xac\xfc\xe2\xdc\xf1\x94\x24\x4e\x19\x6b\x18\x27\x3e\x74\x4a\x15\xfc\x97\x30\xab\x86\x0f\x3c\x48\x77\xa2\x28\x52\xd5\xbd\x1d\xd5\xf2\x68\x21\x48\x5a\x0a\xb3\x4c\x38\x4a\x62\x60\x4e\x7b\x45\x1e\x09\xb3\x42\xf7\xbe\xa9\x6b\x6d\x1c\x16\xb7\xd7\x0b\x72\x52\x1b\x52\x31\x0b\x82\x0b\xb1\x78\xb0\xc7\xac\x11\xbb\x33\xd2\xb6\x2a\xe7\xa9\x6b\x67\x8f\xe9\x67\x0c\xe6\xa2\x12\xf5\x61\xc1\xa1\x42\xe6\x79\x3c\xd8\x78\x78\x78\x3c\xd0\x77\x08\x0b\x79\x17\x64\x8e\xe5\x99\xaf\xc7\x58\x73\x2b\xb9\x41\x9f\x58\x52\xb5\xe6\xa5\xf5\x6e\xd7\x77\xc9\x7d\xc8\x37\xa3\x7c\xea\xc7\x83\x50\x3b\x0f\x19\xfa\x7b\xbf\x11\x0f\x25\xfd\x2d\x82\x2f\x70\xd9\x1e\x6d\x3d\xa5\x18\x69\xf7\xf5\x92\x70\xec\xb0\x86\xef\x2b\xa6\x5f\xc6\xb7\xdd\x9f\xc4\xc7\xdf\xf9\x83\xf3\xf6\x60\xce\xaf\x5a\xe5\x06\xdd\xde\xf5\x85\x76\x88\xaf\x4e\xc2\x51\x7d\x11\xaf\x2f\xb4\x27\x86\x5c\x4e\x84\x53\xc1\x53\x42\xa2\xf3\xe1\x8b\xb6\x31\x32\x6b\x03\x65\x96\x70\xd1\x6c\xbc\x71\x97\x9c\xa9\xee\x45\xd5\xbb\xa0\x7a\x3e\x9b\x65\xb5\xc7\xa3\x36\xa8\x85\x5b\x27\x0b\x1f\x98\xfb\x90\xb3\x5e\x79\x9c\xf7\x1e\xe6\x7b\xe1\xd6\xe4\xad\xc9\xd7\xcb\xf1\xc6\x4a\xda\x23\x7b\x7c\x56\xca\xba\xb9\x2f\x65\xfe\x52\x21\xbf\x67\x94\x28\x63\xf7\xed\x74\x11\x6f\xb5\xa9\xb8\x3c\xdb\x62\x48\x31\xba\x8b\x17\xa1\x31\x3b\x60\xf1\x7e\xfd\x2b\x22\xb7\xe7\x50\x48\x7e\x4d\x18\x7f\x7b\x82\x53\x91\xd8\xda\xf5\x45\x9e\x3f\x7b\xb6\x54\xe9\x29\xa4\x25\xd2\xbb\x14\x5c\x7c\x1f\xa2\x07\x6b\xa1\xd4\x6a\xc5\x54\x19\x4e\xe1\xfd\x79\x7b\x77\x9b\x42\x78\x78\x83\x63\x5a\xb7\x71\xe6\x01\x93\x25\xeb\x69\x33\xa6\x7e\x1f\x68\x70\xfa\xb7\xc7\x04\x11\x75\x46\x84\x1d\x18\xc1\xab\x7a\x4f\x33\x5a\x21\x60\x38\xd5\x4e\x94\xd3\x5e\xbb\xf8\x80\x81\x56\x84\x85\xbb\xaf\x1f\x06\x79\x0a\xb1\xf8\x60\x8f\x7c\x11\xcd\x42\xec\xd1\x32\x6d\x5d\xc0\x59\xd1\x54\xd5\xee\xec\x70\xda\xfb\x67\x32\xed\x9f\x41\x87\x27\x2f\x20\x37\x28\x1c\x7e\x5b\xd5\x6e\x97\xf0\x89\x7f\xca\xdb\x30\xd2\x4f\x07\x36\x5c\xf0\xd7\x58\xbc\x0a\xf6\x93\x74\xb0\xba\x8d\x92\x1d\xfb\x88\xde\xf2\xfe\x3e\x7e\x86\x40\x8b\x1d\x15\x66\xc2\xa9\x74\xf7\xfd\x13\x3a\x82\x76\x32\x9d\x97\xa8\x56\x6e\x4d\xa9\xf4\x7f\x85\x3c\xda\xcf\x56\xa4\x9e\x1c\x13\x68\x5e\xf4\xab\xb3\x63\x4a\x9f\x93\xbb\xce\xcf\xee\x58\x7f\x65\x23\xf7\xd3\x5b\xb1\x63\xc1\xf7\x64\x2e\xe7\x53\xb9\x61\xee\xd6\x09\x6c\x93\xa8\x1f\xb8\x15\x8f\x0a\x7d\xe5\x30\x92\x6a\x42\x63\xc4\xee\x84\x3c\x6f\x4c\xea\xe3\x0e\x65\x92\xc6\x7f\x7a\xc7\xc9\xf7\xe4\x43\x0e\xd0\xbb\xae\xd8\xdd\x19\x1a\x81\x8a\x2d\xba\xc3\xa3\x98\x24\xca\x8a\x9c\x59\x94\x5b\xb1\x8b\xf7\xe4\x94\x28\xf9\x38\x49\x2a\xd1\x0b\xbf\x04\xbc\xbb\x44\x44\x8a\x6b\x25\xad\xa4\xb5\xac\x65\xf6\x95\xf6\x4a\x9c\xcf\x2f\x88\xe8\x43\xc9\xdc\x9e\x39\x8c\x61\x13\xe2\x5a\x18\xbe\x2c\x62\x90\x32\x25\x59\xe2\xc8\xe1\xc4\x09\x87\x5a\xdd\xdd\x09\x96\x7a\xbf\xa6\xf4\x0f\xbb\xcb\x14\x4f\x14\x94\xed\xf8\x4f\xed\x5a\xf4\x4e\x9e\x04\x14\xd2\x60\xee\xba\x62\x4f\x2a\xeb\x50\x14\xa4\xe0\xee\x1e\x1e\xdf\x04\x88\x4a\x26\xf5\x74\xd7\xb9\x86\x7d\x09\xde\x1a\x55\xd1\xdf\x06\xc3\x25\x03\x7f\xa8\xd5\xcd\x56\x68\xe4\xad\xdf\x36\x79\x8e\xe8\xfb\x1f\x9c\x3d\x87\x8b\x08\x1a\x6d\xfc\xed\xa9\xaa\xe7\x65\x45\xe2\xc0\x6c\x83\xaa\xf1\xa8\xe8\x89\xe8\xf3\x7c\x8d\xf9\x07\x62\xc1\xb3\xb7\xfe\x0e\xb3\x76\x70\xaf\x8d\xd1\xdb\xf4\xe6\x68\x8c\x70\xa2\x8c\x38\x74\xd8\xa8\xe8\xce\x40\x89\xd0\x29\xe7\x16\x52\xd9\x89\x2c\xa6\x91\xd1\x3b\x2e\x6c\x8f\xaa\xc2\x6b\xbe\x27\xd2\x96\xd9\xa7\xf4\x41\x0e\x5c\xba\x60\x69\xfc\x52\x6e\xaf\x17\xef\xc5\x12\xc3\x0b\xd3\xcb\x23\x1a\x22\xfa\xa2\xd3\x91\x07\x99\x4c\x2f\x0f\xb8\x79\x7f\x26\x5a\xef\x4b\x7c\xde\x2b\xb0\xab\x6b\x95\x27\xd5\xd8\x53\xa2\xdf\xfc\x25\x77\x83\x91\xe7\x4e\x48\xc1\xd9\x36\x17\xf0\xb3\x77\xb3\x5f\xfa\x53\xff\x03\x5d\xb8\xaf\x5b\xf1\x6d\x24\x5f\x4c\xfb\x7b\x80\x5d\x65\x75\xc2\x6c\xff\xe4\x4d\x9d\x26\xbc\x51\x6e\x6c\x99\xb1\x5d\x37\x56\xc7\x3f\xbd\xd2\x19\xa5\x9f\x21\x5f\x8b\xd5\x60\xc4\x7e\xef\xa3\x99\x6f\x35\x27\x3d\xc7\x74\x67\x3b\xb9\xe5\x38\xa6\xc9\x56\xfa\x24\x65\x8d\x9a\x3d\x90\x88\x8a\x10\x5d\x58\xf4\xa3\xab\x7f\xf7\xfe\x40\x97\x2a\xc9\xd8\x62\x12\xe7\xaf\x46\x89\x02\x0a\xe1\x84\x3f\x15\xa3\x82\x23\x9e\x77\xf1\xd6\x22\x9f\x39\x82\xef\x5c\xf7\x57\xe8\x75\x48\x47\xe8\x66\xac\x65\x7a\x4a\x3e\x7b\x1d\xf3\xa2\xde\x05\xe2\xb7\x69\x7d\x1e\x5f\xf5\x62\xd9\x7d\x1e\x5a\xa1\xa3\xe5\x09\x5e\x30\xad\xc1\xb6\xa5\x28\x3b\x6b\x52\xf9\x85\xab\xc0\x91\x89\x8e\xd1\x42\x2a\xd6\x64\x4f\x19\xa3\x55\xfe\xe3\x7e\xd5\x7a\xb4\x3a\x9e\xb6\x45\x4b\x58\xcf\x59\x63\x30\xff\x78\xbe\x3d\xe9\xb5\xb0\xa7\xf0\xf1\x63\x7c\x74\x99\x9e\x99\x30\x59\x0f\x06\xd3\xbf\xb3\xb7\x42\x25\xbb\x83\xdf\x0a\x82\x5d\xf8\xd4\x34\x69\x7c\xfb\x60\xee\xf9\x78\x4b\xf8\x95\x70\xf9\xba\xcd\x1c\xc9\x58\x5b\x61\x3b\xea\x3f\x94\xd4\xc3\xa1\x86\x80\xff\x7c\xcc\xfe\x15\x00\x00\xff\xff\x41\xb5\x10\xb9\x60\x34\x00\x00" func utilityNonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -257,7 +257,7 @@ func utilityNonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "utility/NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x3f, 0x79, 0xfa, 0x4b, 0x9e, 0x15, 0xec, 0x89, 0x2f, 0x66, 0xb5, 0x4f, 0xe1, 0x73, 0xb1, 0x7e, 0xf0, 0x6e, 0xa, 0x7, 0x5f, 0x6, 0x5, 0xdb, 0x8f, 0xf5, 0x9c, 0x68, 0xc8, 0x1d, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x76, 0x73, 0xbe, 0x2, 0xac, 0x80, 0xd9, 0xd1, 0xe6, 0x1f, 0xe4, 0x94, 0x2d, 0xc8, 0xac, 0x28, 0x22, 0xd0, 0xf3, 0x1e, 0x47, 0xb3, 0x7e, 0x6f, 0xfb, 0xbe, 0x23, 0xb4, 0x3e, 0x7e, 0x6a}} return a, nil }