From fa1f4003a3646e2378cc0be7540eaadf9856f29e Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 29 Apr 2024 13:25:53 -0500 Subject: [PATCH] remove Owner entitlement --- contracts/ExampleNFT.cdc | 4 ++-- contracts/NonFungibleToken.cdc | 7 ++----- lib/go/contracts/internal/assets/assets.go | 12 ++++++------ 3 files changed, 10 insertions(+), 13 deletions(-) diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index 0e4d763..5f2b9b3 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -154,7 +154,7 @@ access(all) contract ExampleNFT: NonFungibleToken { } /// withdraw removes an NFT from the collection and moves it to the caller - access(NonFungibleToken.Withdraw | NonFungibleToken.Owner) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { + access(NonFungibleToken.Withdraw) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { let token <- self.ownedNFTs.remove(key: withdrawID) ?? panic("Could not withdraw an NFT with the provided ID from the collection") @@ -176,7 +176,7 @@ access(all) contract ExampleNFT: NonFungibleToken { // Do not add to your contract unless you have a specific // reason to want to emit the NFTUpdated event somewhere // in your contract - let authTokenRef = (&self.ownedNFTs[id] as auth(NonFungibleToken.Owner) &{NonFungibleToken.NFT}?)! + let authTokenRef = (&self.ownedNFTs[id] as auth(NonFungibleToken.Update) &{NonFungibleToken.NFT}?)! //authTokenRef.updateTransferDate(date: getCurrentBlock().timestamp) ExampleNFT.emitNFTUpdated(authTokenRef) } diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index b02a92c..efce109 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -49,9 +49,6 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// An entitlement for allowing updates and update events for an NFT access(all) entitlement Update - /// entitlement for owner that grants Withdraw and Update - access(all) entitlement Owner - /// Event that contracts should emit when the metadata of an NFT is updated /// It can only be emitted by calling the `emitNFTUpdated` function /// with an `Updatable` entitled reference to the NFT that was updated @@ -63,7 +60,7 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// and query the updated metadata from the owners' collections. /// access(all) event Updated(type: String, id: UInt64, uuid: UInt64, owner: Address?) - access(all) view fun emitNFTUpdated(_ nftRef: auth(Update | Owner) &{NonFungibleToken.NFT}) + access(all) view fun emitNFTUpdated(_ nftRef: auth(Update) &{NonFungibleToken.NFT}) { emit Updated(type: nftRef.getType().identifier, id: nftRef.id, uuid: nftRef.uuid, owner: nftRef.owner?.address) } @@ -139,7 +136,7 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// withdraw removes an NFT from the collection and moves it to the caller /// It does not specify whether the ID is UUID or not /// @param withdrawID: The id of the NFT to withdraw from the collection - access(Withdraw | Owner) fun withdraw(withdrawID: UInt64): @{NFT} { + access(Withdraw) fun withdraw(withdrawID: UInt64): @{NFT} { post { result.id == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" emit Withdrawn(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index bcb5992..d83d715 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,8 +1,8 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ExampleNFT.cdc (14.005kB) +// ExampleNFT.cdc (13.981kB) // MetadataViews.cdc (25.495kB) -// NonFungibleToken.cdc (11.08kB) +// NonFungibleToken.cdc (10.967kB) // ViewResolver.cdc (2.71kB) package assets @@ -73,7 +73,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xdd\x73\x1b\x37\x0e\x7f\xf7\x5f\x81\xea\xa1\x23\xf5\x1c\x39\xe9\x47\xae\xd5\x44\x4d\x5b\xbb\xee\x79\x26\x75\x3b\x89\xda\x3e\x64\x3c\x29\xb5\x8b\xb5\x78\xde\x25\xb7\x24\xd7\xb2\x26\xe7\xff\xfd\x06\xe0\x7e\x71\x3f\x64\x39\x99\xbb\xb9\xf3\x43\x22\xed\x82\x20\xf0\x23\x08\x80\x00\x75\xf2\xd9\xd1\x67\x47\x9f\x01\xac\x36\xd2\x82\xb4\x20\x14\xe0\x9d\xc8\xf2\x14\x41\xd2\xbf\x19\x2a\x27\x9c\xd4\x0a\x74\x02\x02\xce\x53\xbd\x85\x4b\xad\x9e\x9c\x17\xea\x5a\xae\x53\x84\x95\xbe\x41\x45\x1c\x0a\x2b\xd5\x35\xb8\x0d\xc2\xef\x9f\x83\x75\x42\xc5\xc2\xc4\x73\x7a\x73\xe1\x88\xb3\xd2\x0e\x72\x61\x1c\x31\x22\x2a\x9d\x24\x32\x92\x22\xad\x69\x61\x5d\x38\x90\x0e\x84\xb5\x45\x86\x31\x38\x0d\x6b\xa4\xf1\x56\x66\x32\x15\x86\x1e\x6c\xf4\x16\x32\xa1\x76\x70\x79\xbe\xb2\xb0\xd5\x45\x1a\x37\x72\x32\xdb\x48\x1b\x84\xa4\x50\x11\x09\x2d\x52\xe9\x76\xf3\x96\x86\x91\x56\xce\x88\xc8\x41\xac\xd1\x8b\xd4\x8c\x26\xb6\x56\xe7\x1b\x69\x9d\x8c\x84\xc3\x18\xa2\x54\x58\x2b\x13\xfa\x26\x35\x2b\x69\x77\xd6\x61\x06\x89\x36\x20\x9d\x65\x29\xe6\xa4\x5f\x8c\x89\x54\x68\x41\x90\xb0\x04\xde\xe5\xf9\x0a\xb6\xd2\x6d\x20\x93\x4a\x66\x22\x85\x0c\x9d\x88\x85\x13\x2c\xcd\xc9\xd1\x91\xcc\x72\x6d\x1c\x4c\x2e\xb5\xaa\xb0\x64\x28\x27\xf5\x9b\xdf\x25\x6e\x5f\xa3\xd5\xe9\x2d\x9a\xe6\xe9\xcf\x25\x1f\x7a\x6b\x27\x47\x47\x22\x8a\xd0\xda\xa9\x48\xd3\x59\xa3\xdd\x8f\x7e\x09\x2f\xcf\x57\x0b\xe8\x4e\x00\xef\x8f\x8e\x00\x00\x4e\x4e\x4e\xe0\x4d\x05\xfd\xaf\xc2\x6d\x2c\x3f\x6e\xf3\x4b\xd1\xc1\xa9\x4e\x53\x64\x30\xdf\x38\x6d\xc4\x35\x12\xe9\x02\x5a\x5f\x1e\x18\xf6\x6b\xb1\x4e\x65\xe4\x47\x35\x9f\x1b\x19\xe8\x1b\x6c\x37\x68\x90\xd7\x2f\x93\xca\xa1\x01\xbb\xe1\xb5\x5d\x23\x58\xa7\x0d\xc6\x35\xf9\x6a\x83\x8d\xc5\xe4\x24\x36\xaf\x86\x5f\xfa\x6a\x4e\x10\xa6\x1a\x08\x52\x75\x5f\x1a\xb4\xba\x30\x11\x82\xdb\xe5\x38\x28\xfd\xcf\x2c\xc4\xa8\xc2\xb5\x30\x7f\x20\x44\x1b\xad\xad\x17\x5d\x89\xcc\x2f\x3c\x29\x73\xcc\xe6\xec\xc8\xe8\x68\x1a\x88\x84\x82\x8d\xb8\x45\x36\x33\xa6\x54\x7a\x5b\x33\x5a\x63\x24\x8a\x92\x0d\xcf\x9d\x88\x08\x1b\x23\x35\xf8\x57\x21\x0d\xd2\xee\xa0\x4d\xc0\x6c\xc0\xe6\x18\x91\x71\x7a\x6e\xc4\x36\xd3\xa6\xaf\x4f\xad\xed\xa0\x35\xcc\x49\xde\xd2\x22\x86\x90\x90\xf1\x02\x7e\xbb\x50\xee\xf9\x97\x0d\x0d\x09\x7c\x6e\x74\xc6\xd2\x9e\x49\x9b\xa7\x62\x57\xdb\x37\xdc\x4a\xdc\x8e\xb2\x23\x51\x09\x4b\x23\xd5\xf5\x28\x51\x8c\x36\x32\x32\xa7\xb5\x7a\x90\xd6\x6d\x8a\x6c\xad\x84\x4c\x6b\xca\x50\xcc\xd2\x34\x5e\xeb\x9d\x48\x9d\x44\xbb\x5f\x4e\x8b\x69\xe2\xf9\x9a\x6a\xc0\x02\xde\x06\x5b\x6e\xee\x59\xed\xae\xc2\x89\x7e\x42\x85\x46\x46\x10\x4b\xef\x78\xcc\x8e\xfd\x9c\x11\xe4\x26\x48\x02\xb6\x0b\x61\xc7\x67\xac\x04\x5b\xc0\x7b\xaf\xc9\x02\xbe\x57\xbb\x37\xce\x14\x91\xbb\x6f\x26\x93\x4a\xba\x69\xfd\x8d\xfe\xda\x98\x1e\x07\x6f\x06\x80\x0c\x09\x7a\xe8\x85\xaf\x1f\x06\x21\xa4\xdf\xab\x42\x43\x3a\x83\xf7\xc1\x30\xc2\x60\x2e\x63\x58\xfa\x4f\x45\x21\xe3\xfe\x7b\x36\xf2\x25\x2b\xdb\x7f\xd9\x52\x14\x96\x6d\xb5\xfb\xa4\xb5\xca\xb0\x6c\xd4\xef\x93\xd5\xaa\xc3\xb2\x81\xa1\x4f\x56\x5b\xd3\xb2\x56\xbe\x26\xba\x0f\x2d\x24\x32\x28\x1c\xfe\x98\xe5\x6e\xd7\x38\xc7\xf2\xa9\x8f\xbb\xf4\xaa\xe5\x38\x83\xd1\x42\xc5\x60\xd0\x15\x46\xd9\xd2\x0b\xb0\x53\x13\x69\x4a\xce\x92\xbe\x09\x8e\x7f\x3b\x76\x34\x7a\xab\x38\x36\x05\x2c\xbe\x7b\xdf\xdb\xfc\xcd\x64\xf7\x83\x3b\x2c\x29\xd4\xb0\xdc\xd3\xd9\xe2\x01\x7e\x9d\x35\xf6\xb2\xc3\x8b\x27\x4d\x68\x9a\x0f\x73\x56\x89\x5b\xed\x72\x5c\x00\xfd\xfb\xe2\xbb\x16\xfd\xe5\xf9\xea\xdb\xe9\x6c\x36\x04\x70\x5b\x68\xda\xd8\x2c\xf9\x35\x3a\xb6\x56\x12\xf6\x2d\x71\xbb\x1a\x16\xea\x6d\xf0\x90\xfe\x78\xea\xd0\xe2\x4b\x3f\xf7\xed\x74\x76\x7c\x08\x79\xed\x70\x0e\x1d\xf0\x63\x2c\x49\xfd\xc3\xe9\xef\x1c\x1a\x25\xd2\xdf\x5e\xbf\x3a\x74\xc8\xe5\xf9\xaa\xc1\xf9\x4c\x38\xf1\x61\x03\x1f\x07\xc4\x1b\x34\x52\xa4\x87\x52\xaf\xd8\x61\x7e\x3b\x9d\x05\xc4\x57\x0f\x2d\x39\xad\xb6\xf1\xa9\x12\xf1\x99\xbe\x63\x23\xf0\x26\x34\x6b\x39\xa1\x97\x5d\xcf\xb3\x95\x2e\xda\x78\x8b\x79\xdf\x93\x2f\x12\x16\xf7\x9b\xc2\xa2\x37\x06\x1a\xb3\x1a\x1c\x34\x1d\x1c\x01\xb5\x1b\xaf\x7d\x5d\x1f\xae\xea\x2f\xf0\xea\x5d\xf7\x37\x3e\xac\xe5\xeb\x43\xc9\xfe\xb1\x5a\xfd\x7a\x2e\x53\x1c\x17\x8d\xfe\x0a\x93\x2e\x3a\x1e\x74\x94\x7e\x36\xf8\xa6\xff\x74\x0c\xe0\xd6\x5e\x18\x46\xd8\xe7\x81\x94\x10\x51\x7e\x04\x99\xb8\x03\x55\x64\x6b\x34\x14\x74\xf9\x68\xc0\xfe\x90\x5c\xe1\xba\x4c\x29\x63\x48\x7c\xca\xd2\x3a\x05\x8c\xf1\xb6\xde\xbb\x12\x5b\xf4\xa2\x40\x22\x31\x8d\xe1\x56\xa4\x05\x4f\x6a\x91\x7d\xb0\x1a\x01\x81\xe2\x79\x39\xf2\x42\x25\x1a\x96\x30\xa8\xe0\xd4\xaf\xf9\xa4\xf4\x71\x9c\x23\x94\xaf\x26\xc7\xa5\x46\x8b\x2a\x3c\x1e\x93\x3c\x0b\x9a\x72\x18\xde\xd6\x9c\xaf\xa4\x75\xbd\x90\x5d\x32\xbe\x82\x25\xbc\x6d\xc9\x76\x75\xb8\x09\x57\xcb\x32\x6e\x28\xad\xf9\x3f\xd2\x04\x6a\xb7\xf1\x88\x2d\xe6\xc7\x8c\x4b\x57\x02\xf9\x91\x92\xb5\x3d\xfb\x23\x84\xab\x87\x3d\x20\xdf\x70\xb2\xf1\x78\x31\xc3\xf8\xf0\x08\x41\x5b\x03\xa7\x93\x8d\x73\xb9\x5d\x9c\x9c\x94\x35\x81\x27\x2a\x71\x73\xad\x92\x54\x6f\xe7\xda\x5c\x9f\x4c\xe6\x91\x56\x91\x70\xd3\x12\xda\xb9\xd3\x3e\xf1\x9b\xce\x66\x87\x8b\x3a\x14\x97\xf6\x0a\xdc\xca\x09\x4a\xaf\x7f\x5a\xee\x68\xf6\xfe\xd5\x89\x67\x6f\x1a\x71\xcc\x5e\xbf\x45\xf2\xb0\x4c\x1f\xaa\xd1\x61\xe1\xe2\xbf\xae\x54\x2d\xd6\xe1\x7a\xd5\xe1\x79\xd4\x2d\xe3\x5d\x94\x16\x71\xe5\x73\x57\x92\x4f\xa6\x31\x24\x5a\x93\xbf\xb4\x1b\xbd\x05\xed\x36\x68\xa0\xb0\x68\xc9\x5b\x7b\x96\xe3\x1e\xcd\xf3\x8b\x3d\x19\xf9\xae\x49\xc3\x7a\x72\x0c\x93\x44\xeb\xc9\xb0\x0f\xe3\xe3\x21\x0f\x23\xe1\x7b\x3e\x98\x4e\x6a\x2b\xed\xf9\x4e\xe9\xcb\x22\x4c\xe9\x8f\xeb\xb9\x2f\x45\x46\x47\xa0\x50\x94\xd9\xd1\x18\x04\x2d\xd5\xa5\x05\x01\x85\x92\x77\xe0\x64\x86\xd6\x89\x2c\x3f\x86\x2d\x56\xd5\x8d\x4c\x98\x1b\xca\xe6\xb9\x50\x24\x20\xf6\x2b\x42\xb8\x53\x08\xca\x53\xe1\x12\x6d\x32\x0b\x37\x4a\x6f\xb9\xf4\x55\x41\x28\xdd\x7c\x54\xe5\x66\x7a\x16\xb4\xa7\x37\x3f\xad\x22\x4f\x80\x25\x47\xb7\x0e\x0a\x01\xdc\x57\x9f\x1c\xb7\x85\x5c\xc0\xe4\x4c\x38\x1a\x69\x84\x91\x6e\xb7\x27\x38\x35\xeb\x30\x17\xb1\x47\x70\xda\x11\x74\x1c\x50\x32\x1e\x46\x92\xb9\x78\xb4\xc8\x18\xe8\x94\xe3\x67\x1e\x05\x23\xd1\x7e\x85\x5f\x33\x59\x0f\x0b\xff\x78\x6a\x23\x6d\x70\x01\xcf\x9e\xce\x9f\x96\x51\xf6\xd9\x53\xfe\x1c\xa4\x5a\x93\x53\x9d\x65\x5a\x4d\xc6\xc3\x6f\x35\xdb\x7e\xcc\xc9\x62\xc7\xc0\x66\x6b\xee\x80\xac\x64\xda\x20\x1c\x2a\x74\x38\xd8\xd5\xb8\x11\x94\x4b\x1f\xd4\x8c\x0c\xa8\xee\x87\x4e\x4d\xed\xdc\xc7\x13\xdc\x57\x85\x31\x38\xc3\xdc\x20\xd7\x50\x17\xf0\x8b\x4a\x77\x5c\x11\xe3\x3a\xdd\x5a\x44\x37\x5b\x61\x62\x88\x74\x96\x0b\x27\xd7\xd2\x97\x68\x61\xac\x6a\xd5\x54\xc3\x1a\x6f\xd7\x2d\x2e\xc2\xfb\x72\xea\x41\x0e\x0d\xf5\x40\xf9\xab\x79\x79\xbc\x77\x82\xe0\x24\x1d\x16\x79\x28\x6b\x8b\xb4\xa2\xad\xca\x15\x70\xe2\x1b\x9e\xbc\x89\x82\x0d\x38\xa8\x3c\x96\xdb\x5e\xc1\x9f\xbe\xc0\xf6\x27\x5c\x9c\xf9\x3c\x73\xf8\x58\x2b\x0c\x59\x3c\xc6\x94\xdf\xd2\xe9\xdb\x8f\x5a\x40\xff\x18\x7e\x79\xbe\xba\xef\x94\x8c\x60\x3a\x58\x75\xa9\x19\xc2\x8b\x27\x84\x62\xb3\xa0\x81\x02\xd7\xe8\xde\x14\x79\xae\x8d\x63\x6a\xb2\x4b\x5b\x97\x23\x04\xa4\xd2\xba\x0a\x09\xc7\xef\xca\x72\x84\x24\xaa\x08\xe5\x2d\x1a\xd6\x25\x77\xbd\x02\x58\xef\xc8\xde\x9b\x88\x8e\xef\xef\xfd\x56\xf8\x41\xeb\xb4\x5b\x59\xa0\x8d\x67\xab\x31\x3c\xa0\x43\xbe\x6c\x2b\xc6\x9a\x07\xd4\x6f\x47\x62\x29\x25\xca\xce\x14\x38\x64\xfb\x21\x87\x31\xd4\x5e\x97\x00\x6d\x37\xc8\x21\x4f\x1b\x2e\xe6\xd2\xd1\xe2\x5a\xde\xa2\xf2\x56\x40\x86\xc1\xd0\x60\x0c\xeb\x5d\xa7\x56\x1d\xf0\xfb\xbe\x5d\xc4\xae\x0f\x38\x7e\x30\xd7\x7f\x99\x5f\x19\x5b\xfe\x59\x58\xd7\x6c\xeb\x02\x89\x77\x8c\x89\x28\x52\xb7\x7f\x09\xa4\xed\xae\xc0\xd4\xd5\x09\xc5\xcc\x83\x3a\x5c\x47\xe1\xe9\x97\xcb\xb1\xe4\x64\x0c\x26\xda\x06\xb1\x11\x5b\x30\x98\xe9\x5b\x5f\x0b\x23\x4b\x4a\xaa\x12\x73\xbb\xae\xaf\x62\xf0\x44\xdd\x22\x58\x57\xa9\xde\xa6\xf8\xa3\x9a\xe6\x5f\x7d\x2f\xf0\xcb\x56\xa1\xf1\x65\x84\x4a\x9a\x69\xf5\xe1\xe2\xac\xaa\x80\x0f\xd7\xbc\x68\xb3\x0d\x98\x24\xbb\x01\xda\x55\xe1\x3e\x9b\x7b\x25\xa7\x37\xb8\x5b\x40\x33\x45\xdf\x91\xbf\x7c\x09\xb9\x50\x32\x9a\x4e\x4e\x79\x3d\xc9\x72\x6a\xa4\x4a\x84\xd8\x81\x10\x04\xb9\xd1\xb7\x32\xc6\x98\x3d\x48\x1f\xb6\x49\xc7\xeb\xd7\xc5\x38\x16\x72\x6c\x5d\x62\xcc\xb5\x25\x98\xc5\x0d\x77\xb6\x68\x46\xc2\x5f\xc4\x71\x00\x7f\x3d\x8d\x6d\x39\xc6\x5e\xf1\x92\x47\x11\xfd\xc5\x59\x35\x52\xc6\x20\x8c\x11\xbb\xd1\x92\x4e\x29\xc1\x94\xc5\x1c\x05\xbf\xeb\xd8\x02\xf4\xfd\x07\x61\x3f\x81\x8e\x41\xf6\x86\x70\x01\x9a\xc9\xe9\x8c\x18\xbc\x26\x15\xe2\xd8\xf7\x78\x70\x5b\xf2\x2c\x95\x68\xc5\x82\xed\x46\x46\x9b\xda\x8a\xb9\xc7\x99\xc6\xa0\x15\xf6\xe6\xd2\x69\xbc\x1a\xb6\x8f\xb7\x95\x04\x57\xb5\xf4\x47\xdd\x9a\xbe\x33\x7a\x57\xb3\xe8\x49\x5a\xf6\x39\x63\xf6\x2c\xdc\x1a\x43\xeb\x28\x30\xe5\x85\xc9\x35\x67\xdd\x2a\xdd\x75\x47\x9d\x69\xb6\x30\x56\x53\xc3\x4e\x17\xa6\xe9\x26\x16\x2a\x45\x6b\xe9\x61\xb7\xf5\xd4\xe5\x62\x50\x58\xcd\xd0\x6c\x85\x62\x0b\xc1\x4c\xba\xaa\xff\xf1\x5b\x1e\x73\x5b\x15\x6f\x51\x39\xb0\x3a\x43\x6e\xfb\x75\x99\x48\x15\xce\xdf\x43\x4f\x14\x6e\xc3\xba\xbf\xc6\x04\x96\x30\xfd\xb4\x03\x21\x81\x27\x2c\x93\xf5\xdd\x40\xb9\xd5\x3f\x1d\xb6\xa5\x97\xb3\x4f\x3a\xe2\xb4\x27\x9b\x17\xac\xc1\xca\x08\x65\x13\x34\x94\xfc\x4e\xe9\xc1\x82\xe2\xd6\x69\x61\x0c\x2a\xf7\x43\xaa\xa3\x9b\xe9\x6c\x5e\x27\xfc\xe1\xd6\x6e\x19\x21\x41\xd3\xa0\x32\x6d\x4f\x34\xea\x2b\xaf\xd1\x5d\x9c\xb5\x42\xaf\xf2\x3b\xa8\xea\xa9\xd3\x3b\x0e\x0c\xc2\x60\xbf\xf1\xf9\x60\xe8\xbd\x38\xf3\xb5\x72\xef\xee\x46\xaa\xe5\x1d\x7f\x76\x83\xbb\xd1\x00\xf8\x13\x96\xcd\x2f\x91\xe9\x42\xb9\xba\x38\x37\xd6\x99\x7d\x50\xc0\x57\xa8\xae\xdd\x86\x64\xbc\x50\xee\x20\xf1\x52\x1e\x71\x70\xcb\x60\xad\x8d\xd1\xdb\xcb\xf3\xd5\xf4\x5d\xab\xf5\x39\x5b\x8c\xda\xcb\xb0\x10\x63\x26\x39\x6a\x75\x63\x08\xfe\xc0\xf2\x30\x4c\x2c\x63\x59\x19\x30\x75\xcf\xbb\xdc\x89\x18\xb3\x7b\xbe\x38\x3b\x44\xbd\xf6\xc5\x82\x69\x47\xcb\xf6\xbb\x79\xf5\xa1\xa7\xa6\x4c\x7c\x37\x37\xa1\xa3\xce\x23\x75\x1d\x28\xb4\x57\x27\x8a\xc4\xf9\x81\xc3\x42\x3c\xf6\x48\xf2\x71\xdd\xb7\x6a\x4b\x59\x91\xb5\x2e\x0a\xc0\x01\xed\xb8\xb0\xe9\x56\x8a\xf6\x7d\x33\x47\x74\xc0\x1c\xff\x4f\x4d\x38\x68\x1f\xfd\x3e\x04\xe9\x61\x5b\xae\xf1\xf8\xc8\xf6\xe7\x61\x50\x06\x0a\x3f\x06\xd7\x1a\xd3\x92\x31\xb4\xd7\xa7\x8b\xcd\x79\x79\x2f\xc9\xcb\x5b\x7b\xf1\x34\x65\x75\xaa\x9a\x01\x70\xd1\xa0\xb9\x99\xe4\x0f\x06\x82\xd2\x56\xe8\xdc\xbb\x2a\x19\x1f\xf5\xcc\xad\x15\x18\xfc\x69\x8d\x6f\x28\x55\x37\xb4\xda\xac\x6f\xb9\x42\xe1\xd3\x06\xdf\xdf\xd8\xca\x34\x85\x35\x42\x61\x79\xe6\x9a\x79\xf5\x17\xe3\x2d\xa6\x3a\x47\x63\x69\x21\xb8\x38\xe5\x53\x9f\x5c\x18\x91\xa1\x43\xbe\xaa\x95\x0b\x6b\xab\x85\x6a\xf7\xe6\x66\x90\xa1\xdb\xe8\x78\x1e\x08\x3f\xe6\xf1\xdb\x35\x50\x3b\x50\x04\x7d\x39\xd4\xdb\x1d\xec\xeb\x7e\x50\x43\xf4\xf0\x22\x6a\x3d\xec\xea\xa1\x45\x67\x28\x28\xa1\x0e\xae\xa2\x94\xbb\xa0\xd5\x9d\x9a\xf7\x57\x97\x01\xae\x7a\x9b\x1b\x5f\xa2\xad\x9c\x48\x8c\x56\x9a\x72\x3d\xe7\x7d\x83\x00\xcb\x1d\xd0\xc2\xd0\x6a\xe4\x06\x2d\x2a\x57\x99\x83\xc1\xbf\x0a\xb4\xae\x3b\x78\x70\xfb\x1c\x56\x9b\x7e\xd9\xad\x44\x8f\x75\x61\x5b\x1d\x58\x56\x26\x74\x58\x1f\xd7\x31\xa0\x10\x15\x05\x64\xbd\xc2\x5c\x8f\xd1\x70\x77\xc6\xb6\x6f\x82\x71\xb8\x1b\xbc\x16\x37\xdc\x7c\xcd\x5b\x17\xe0\x3a\x63\x9b\xfb\x70\xfb\x86\xb6\x0b\x58\x0c\xc6\xa7\x2d\x7f\xdc\xbc\x1c\xec\xb1\x37\x5c\x5e\x49\x75\xe3\x0b\x16\x1f\xc6\x65\xd0\x6f\x56\xb6\xbd\x80\x69\x52\x3c\x3e\x20\xb5\xff\xfe\x13\xc1\xa9\xfd\x77\xdf\x7f\xdc\x7f\x52\x0a\x11\x5a\xcd\x07\x98\xe4\x9e\x96\x8f\xbf\xeb\x15\xcb\xbe\x31\xfe\x4c\x4f\x87\x0d\x30\x91\x29\x3e\xbe\x6f\xcf\x3d\xfb\xba\x87\x27\xac\x45\x67\xe7\x5b\x5c\x5b\xe9\xf0\x09\xb1\xb4\xf3\x48\x67\x27\x5f\x25\xcf\x3f\xff\xe6\xcb\xe8\x69\xf4\x77\xf1\x75\x14\xc7\xcf\xbf\xfc\x62\xfd\x2c\xfa\xfa\xf3\xa7\x9d\x17\xe2\xab\xaf\xa2\xf5\xb3\xe8\x9b\x2f\x9e\xbf\x3b\x4f\xf5\xf6\xdd\x1f\xda\xc4\x99\x30\x37\x73\x7b\x7b\x3d\x19\xee\x56\x0e\x5b\x12\x6b\x5f\x36\x10\x64\x26\xae\xf1\xc4\xde\x5e\xff\xed\x2e\x4b\xfb\x5c\x46\x57\xe8\x61\xf0\x87\x61\x29\x6b\xf0\xe4\x3c\xab\xae\x7b\x33\x72\x32\x2c\x6f\xd8\x05\x28\xcf\xd7\x75\xf6\x22\xad\x0f\x94\x22\xb8\x3c\xed\x34\x6c\x30\xcd\xf9\xd0\x5c\xc6\x4b\x7f\xaa\x55\x78\xe7\xca\x6b\xd4\xe7\xab\xf9\xc8\x8c\xd8\xf4\x60\xbb\xab\xfe\x88\xf6\xec\x64\x04\x7f\xfb\x57\x21\x0c\x5e\x10\xf2\x0b\xbf\x18\xc3\x74\x6b\xa1\x14\x9a\x87\xe9\xac\x8e\xa4\x48\xed\x62\xcf\xe6\x9e\xb8\xad\x74\x0e\xcd\xe4\x20\x75\x4a\x62\x36\x4e\x52\xe6\xdd\x9a\x0e\xd5\xd1\x46\xc8\xb1\xee\xcb\xfd\x1e\xcb\xb9\xef\xe6\x05\xd5\x31\xa1\x15\xa3\x5f\xd7\x85\x79\x3e\x3d\x2b\x10\x71\x26\x15\x68\xc3\x65\x0a\xb7\xa1\x48\x59\x5d\x43\xf7\xb7\xce\x29\xc7\xf4\x37\xd4\x2b\x1e\x62\xed\xd7\x3d\x93\xca\x71\x9d\xa8\x4e\x41\x87\x62\x69\xfb\x5a\xae\xbf\x6e\xdc\xbe\x86\x7b\x52\xf6\x11\x29\x11\xa6\xff\x29\x5d\x28\x59\x56\xdd\x42\xfa\xda\x3a\xef\xed\xcf\x92\x49\x7e\xca\x2b\xf0\x6e\xb8\xfa\x4b\x91\xbd\x9c\xef\x7f\xe7\x72\x69\x4d\x4e\x61\x25\xf4\xf2\x6d\xac\xa0\x76\xaa\x7b\x6e\x9f\xf6\xbb\x00\x9c\x1d\xb4\x6a\x36\xb0\xec\x57\x71\x82\x01\xdd\x96\x28\xd3\x4c\xae\x60\x19\xb0\x99\x6f\x50\x5e\x6f\xdc\xde\x91\xbe\x99\xda\x1d\x58\x57\x8c\x7a\x25\x3d\x4e\x0b\x73\x89\x11\x27\x7b\x75\xda\x18\xe4\xe9\x55\x6b\x18\xb3\x35\xc6\x31\xad\xb7\x6f\x19\x82\x54\x4e\x57\xbd\xd3\x11\xa9\xb8\xeb\x08\x4b\x98\xac\x85\x99\xf4\x66\x2f\xcf\x35\xb5\x01\x06\xef\x6f\x05\xb9\xb4\x2d\x2d\x49\x73\x04\xea\x59\x51\x63\x49\xc3\x57\xdb\x02\x5b\xda\x7b\x9b\xad\x65\x54\xf5\xc7\x3e\x55\xcb\xb6\xea\x8f\x7d\xaa\xc6\x60\xea\x9e\x7f\x40\x33\x56\x35\xf7\xfa\x0e\x9f\x80\xf9\x7a\xf6\x2c\xdc\xca\xf0\x06\x5d\xfd\x03\x81\xf2\x47\x0b\x4d\x02\x3c\x9a\x4d\xc2\x12\x4e\xca\xc4\xb3\x72\xf0\x41\x9c\x1b\x63\xd1\x24\x95\xc4\xc1\x27\x7f\x07\x30\xe8\xfd\xe6\x61\x78\x7e\x4f\x16\xa8\x77\x5a\x19\xc8\xe9\xc0\x6f\x2c\xc8\x27\x59\x71\x5b\xfd\x76\xa1\x64\x58\x0f\x0f\x73\xf4\x7d\xc7\xe8\x5a\x50\x11\x45\xba\x50\x6e\x5e\xb2\x9a\x13\xf7\xe9\x8b\x27\x51\xab\x93\xeb\xf4\xbe\x34\x7d\x16\x48\x5f\x9b\xb7\x47\x0a\x22\x91\x0b\xdf\x95\x1e\xf8\x61\xc9\x88\xdc\xa7\x22\xaf\x6e\xaf\x57\xd2\xd5\x6c\x24\xda\x5a\x54\x69\x6d\x31\x9e\x78\xef\x93\x78\x10\x81\x60\x0e\x16\xdf\x6e\xa6\x81\x54\xc7\x20\xdc\x9e\x53\xc7\x6c\x78\x1d\xcb\x78\xf4\x98\x35\x2c\x7f\xb6\x13\xf8\x00\xcf\xe6\xc0\xe5\xf3\x0c\x5a\x4b\xd7\xb3\xc7\xaa\x9a\x72\x7f\xf4\xef\x00\x00\x00\xff\xff\xf6\xf7\xa9\xca\xb5\x36\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xdf\x73\x1b\xb7\x8f\x7f\xf7\x5f\x81\xea\xa1\x23\xf5\x1c\x39\xe9\xb7\xcd\xb5\x9a\xa8\x69\x6b\xd7\x3d\xcf\xa4\xbe\x4e\xa2\xb6\x0f\x19\x4f\x4a\xed\x62\x2d\x9e\x77\xc9\x2d\xc9\x95\xac\xc9\xf8\x7f\xbf\x01\xb8\xbf\xb8\x3f\x64\x39\x99\xbb\xb9\xf3\x43\x22\xed\x02\x20\xf0\x21\x08\x82\x00\x75\xf6\xd5\xc9\x57\x27\x5f\x01\xac\x36\xd2\x82\xb4\x20\x14\xe0\xbd\xc8\xf2\x14\x41\xd2\xbf\x19\x2a\x27\x9c\xd4\x0a\x74\x02\x02\x2e\x53\xbd\x83\x6b\xad\x9e\x5d\x16\xea\x56\xae\x53\x84\x95\xbe\x43\x45\x12\x0a\x2b\xd5\x2d\xb8\x0d\xc2\x9f\x5f\x83\x75\x42\xc5\xc2\xc4\x73\x7a\x73\xe5\x48\xb2\xd2\x0e\x72\x61\x1c\x09\x22\x2a\x9d\x24\x32\x92\x22\xad\x69\x61\x5d\x38\x90\x0e\x84\xb5\x45\x86\x31\x38\x0d\x6b\x24\x7e\x2b\x33\x99\x0a\x43\x0f\x36\x7a\x07\x99\x50\x7b\xb8\xbe\x5c\x59\xd8\xe9\x22\x8d\x1b\x3d\x59\x6c\xa4\x0d\x42\x52\xa8\x88\x94\x16\xa9\x74\xfb\x79\xcb\xc2\x48\x2b\x67\x44\xe4\x20\xd6\xe8\x55\x6a\xb8\x49\xac\xd5\xf9\x46\x5a\x27\x23\xe1\x30\x86\x28\x15\xd6\xca\x84\xbe\x49\xcd\x46\xda\xbd\x75\x98\x41\xa2\x0d\x48\x67\x59\x8b\x39\xd9\x17\x63\x22\x15\x5a\x10\xa4\x2c\x81\x77\x7d\xb9\x82\x9d\x74\x1b\xc8\xa4\x92\x99\x48\x21\x43\x27\x62\xe1\x04\x6b\x73\x76\x72\x22\xb3\x5c\x1b\x07\x93\x6b\xad\x2a\x2c\x19\xca\x49\xfd\xe6\x4f\x89\xbb\xb7\x68\x75\xba\x45\xd3\x3c\xfd\xad\x94\x43\x6f\xed\xe4\xe4\x44\x44\x11\x5a\x3b\x15\x69\x3a\x6b\xac\xfb\xc5\x4f\xe1\xf5\xe5\x6a\x01\xdd\x01\xe0\xe3\xc9\x09\x00\xc0\xd9\xd9\x19\xbc\xab\xa0\xff\x5d\xb8\x8d\xe5\xc7\x6d\x79\x29\x3a\x38\xd7\x69\x8a\x0c\xe6\x3b\xa7\x8d\xb8\x45\x22\x5d\x40\xeb\xcb\x23\x6c\xbf\x17\xeb\x54\x46\x9e\xab\xf9\xdc\xe8\x40\xdf\x60\xb7\x41\x83\x3c\x7f\x99\x54\x0e\x0d\xd8\x0d\xcf\xed\x1a\xc1\x3a\x6d\x30\xae\xc9\x57\x1b\x6c\x3c\x26\x27\xb5\x79\x36\xfc\xd4\x57\x63\x82\x30\x15\x23\x48\xd5\x7d\x69\xd0\xea\xc2\x44\x08\x6e\x9f\xe3\xa0\xf6\xbf\xb1\x12\xa3\x06\xd7\xca\xfc\x85\x10\x6d\xb4\xb6\x5e\x75\x25\x32\x3f\xf1\x64\xcc\x29\xbb\xb3\x23\xa7\xa3\x61\x20\x12\x0a\x36\x62\x8b\xec\x66\x4c\xa9\xf4\xae\x16\xb4\xc6\x48\x14\xa5\x18\x1e\x3b\x11\x11\x36\x4e\x6a\xf0\x9f\x42\x1a\xa4\xd5\x41\x8b\x80\xc5\x80\xcd\x31\x22\xe7\xf4\xd2\x48\x6c\xa6\x4d\xdf\x9e\xda\xda\x41\x6f\x98\x93\xbe\xa5\x47\x0c\x21\x21\xe3\x05\xfc\x71\xa5\xdc\xcb\x6f\x1a\x1a\x52\xf8\xd2\xe8\x8c\xb5\xbd\x90\x36\x4f\xc5\xbe\xf6\x6f\xd8\x4a\xdc\x8d\x8a\x23\x55\x09\x4b\x23\xd5\xed\x28\x51\x8c\x36\x32\x32\xa7\xb9\x7a\x94\xd6\x6d\x8a\x6c\xad\x84\x4c\x6b\xca\x50\xcd\xd2\x35\xde\xea\xbd\x48\x9d\x44\x7b\x58\x4f\x8b\x69\xe2\xe5\x9a\x8a\x61\x01\xef\x83\x25\x37\xf7\xa2\xf6\x37\xe1\x40\xbf\xa2\x42\x23\x23\x88\xa5\x0f\x3c\x66\xcf\x71\xce\x08\x0a\x13\xa4\x01\xfb\x85\xb0\xe3\x23\x56\x8a\x2d\xe0\xa3\xb7\x64\x01\x3f\xa9\xfd\x3b\x67\x8a\xc8\x3d\x34\x83\x49\x25\xdd\xb4\xfe\x46\x7f\x6d\x4c\x4f\x83\x37\x03\x40\x86\x04\x3d\xf4\xc2\xd7\x8f\x83\x10\xd2\x1f\x34\xa1\x21\x9d\xc1\xc7\x80\x8d\x30\x98\xcb\x18\x96\xfe\x53\x51\xc8\xb8\xff\x9e\x9d\x7c\xc9\xc6\xf6\x5f\xb6\x0c\x85\x65\xdb\xec\x3e\x69\x6d\x32\x2c\x1b\xf3\xfb\x64\xb5\xe9\xb0\x6c\x60\xe8\x93\xd5\xde\xb4\xac\x8d\xaf\x89\x1e\x42\x0f\x89\x0c\x0a\x87\xbf\x64\xb9\xdb\x37\xc1\xb1\x7c\xea\xf7\x5d\x7a\xd5\x0a\x9c\x01\xb7\x50\x31\x18\x74\x85\x51\xb6\x8c\x02\x1c\xd4\x44\x9a\x52\xb0\xa4\x6f\x82\xf7\xbf\x3d\x07\x1a\xbd\x53\xbc\x37\x05\x22\x7e\xfc\xd8\x5b\xfc\xcd\x60\x0f\x83\x2b\x2c\x29\xd4\xb0\xde\xd3\xd9\xe2\x11\x79\x9d\x39\xf6\xba\xc3\xab\x67\xcd\xd6\x34\x1f\x96\xac\x12\xb7\xda\xe7\xb8\x00\xfa\xf7\xd5\x8f\x2d\xfa\xeb\xcb\xd5\x0f\xd3\xd9\x6c\x08\xe0\xb6\xd2\xb4\xb0\x59\xf3\x5b\x74\xec\xad\xa4\xec\x7b\x92\x76\x33\xac\xd4\xfb\xe0\x21\xfd\xf1\xd0\xa1\xc7\x97\x71\xee\x87\xe9\xec\xf4\x18\xf2\x3a\xe0\x1c\xcb\xf0\x4b\x2c\xc9\xfc\xe3\xe9\xef\x1d\x1a\x25\xd2\x3f\xde\xbe\x39\x96\xe5\xfa\x72\xd5\xe0\x7c\x21\x9c\xf8\x34\xc6\xa7\x01\xf1\x0e\x8d\x14\xe9\xb1\xd4\x2b\x0e\x98\x3f\x4c\x67\x01\xf1\xcd\x63\x53\x4e\xb3\x6d\x7c\xaa\x44\x72\xa6\x1f\xd8\x09\xbc\x0b\xcd\x5a\x41\xe8\x75\x37\xf2\xec\xa4\x8b\x36\xde\x63\x3e\xf6\xf4\x8b\x84\xc5\xc3\xae\xb0\xe8\xf1\x40\xe3\x56\x83\x4c\xd3\x41\x0e\xa8\xc3\x78\x1d\xeb\xfa\x70\x55\x7f\x41\x54\xef\x86\xbf\x71\xb6\x56\xac\x0f\x35\xfb\x8f\xd5\xea\xf7\x4b\x99\xe2\xb8\x6a\xf4\x57\x98\x74\xd1\x89\xa0\xa3\xf4\xb3\xc1\x37\xfd\xa7\x63\x00\xb7\xd6\xc2\x30\xc2\x3e\x0f\xa4\x84\x88\xf2\x23\xc8\xc4\x3d\xa8\x22\x5b\xa3\xa1\x4d\x97\x8f\x06\x1c\x0f\x29\x14\xae\xcb\x94\x32\x86\xc4\xa7\x2c\xad\x53\xc0\x98\x6c\xeb\xa3\x2b\x89\x45\xaf\x0a\x24\x12\xd3\x18\xb6\x22\x2d\x78\x50\x8b\x1c\x83\xd5\x08\x08\xb4\x9f\x97\x9c\x57\x2a\xd1\xb0\x84\x41\x03\xa7\x7e\xce\x27\x65\x8c\xe3\x1c\xa1\x7c\x35\x39\x2d\x2d\x5a\x54\xdb\xe3\x29\xe9\xb3\xa0\x21\x87\xe1\x6d\x8d\xf9\x46\x5a\xd7\xdb\xb2\x4b\xc1\x37\xb0\x84\xf7\x2d\xdd\x6e\x8e\x77\xe1\x6a\x5a\xc6\x1d\xa5\x35\xfe\x67\xba\x40\x1d\x36\x9e\xb0\xc4\x3c\xcf\xb8\x76\x25\x90\x9f\xa9\x59\x3b\xb2\x3f\x41\xb9\x9a\xed\x11\xfd\x86\x93\x8d\xa7\xab\x19\xee\x0f\x4f\x50\xb4\xc5\x38\x9d\x6c\x9c\xcb\xed\xe2\xec\xac\xac\x09\x3c\x53\x89\x9b\x6b\x95\xa4\x7a\x37\xd7\xe6\xf6\x6c\x32\x8f\xb4\x8a\x84\x9b\x96\xd0\xce\x9d\xf6\x89\xdf\x74\x36\x3b\x5e\xd5\xa1\x7d\xe9\xa0\xc2\xad\x9c\xa0\x8c\xfa\xe7\xe5\x8a\xe6\xe8\x5f\x9d\x78\x0e\xa6\x11\xa7\x1c\xf5\x5b\x24\x8f\xeb\xf4\xa9\x16\x1d\xb7\x5d\xfc\xaf\x1b\x55\xab\x75\xbc\x5d\xf5\xf6\x3c\x1a\x96\xf1\x3e\x4a\x8b\xb8\x8a\xb9\x2b\xc9\x27\xd3\x18\x12\xad\x29\x5e\xda\x8d\xde\x81\x76\x1b\x34\x50\x58\xb4\x14\xad\xbd\xc8\xf1\x88\xe6\xe5\xc5\x9e\x8c\x62\xd7\xa4\x11\x3d\x39\x85\x49\xa2\xf5\x64\x38\x86\xf1\xf1\x90\xd9\x48\xf9\x5e\x0c\xa6\x93\xda\x4a\x7b\xb9\x53\xfa\xb2\x08\x53\xfa\xd3\x7a\xec\x6b\x91\xd1\x11\x28\x54\x65\x76\x32\x06\x41\xcb\x74\x69\x41\x40\xa1\xe4\x3d\x38\x99\xa1\x75\x22\xcb\x4f\x61\x87\x55\x75\x23\x13\xe6\x8e\xb2\x79\x2e\x14\x09\x88\xfd\x8c\x10\xee\xb4\x05\xe5\xa9\x70\x89\x36\x99\x85\x3b\xa5\x77\x5c\xfa\xaa\x20\x94\x6e\x3e\x6a\x72\x33\x3c\x2b\xda\xb3\x9b\x9f\x56\x3b\x4f\x80\x25\xef\x6e\x1d\x14\x02\xb8\x6f\xbe\x38\x6d\x2b\xb9\x80\xc9\x85\x70\xc4\x69\x84\x91\x6e\x7f\x60\x73\x6a\xe6\x61\x2e\x62\x8f\xe0\xb4\xa3\xe8\x38\xa0\xe4\x3c\x8c\x24\x4b\xf1\x68\x91\x33\xd0\x29\xc7\x8f\x3c\x0a\x46\xa2\xfd\x0c\xbf\x65\xb2\x1e\x16\xfe\xf1\xd4\x46\xda\xe0\x02\x5e\x3c\x9f\x3f\x2f\x77\xd9\x17\xcf\xf9\x73\x90\x6a\x4d\xce\x75\x96\x69\x35\x19\xdf\x7e\xab\xd1\x0e\x63\x4e\x1e\x3b\x06\x36\x7b\x73\x07\x64\x25\xd3\x06\xe1\xd0\xa0\xe3\xc1\xae\xf8\x46\x50\x2e\x63\x50\xc3\x19\x50\x3d\x0c\x9d\x9a\xda\xb9\x8f\x27\x78\xa8\x0a\x63\x70\x81\xb9\x41\xae\xa1\x2e\xe0\x3f\x55\xba\xe7\x8a\x18\xd7\xe9\xd6\x22\xba\xdb\x09\x13\x43\xa4\xb3\x5c\x38\xb9\x96\xbe\x44\x0b\x63\x55\xab\xa6\x1a\xd6\x44\xbb\x6e\x71\x11\x3e\x96\x43\x0f\x4a\x68\xa8\x07\xca\x5f\xcd\xcb\xd3\x83\x03\x04\x27\xe9\xb0\xc8\x43\x59\x5b\xa4\x15\x2d\x55\xae\x80\x93\xdc\xf0\xe4\x4d\x14\xec\xc0\x41\xe5\xb1\x5c\xf6\x0a\xfe\xf6\x05\xb6\xbf\xe1\xea\xc2\xe7\x99\xc3\xc7\x5a\x61\xc8\xe3\x31\xa6\xfc\x96\x4e\xdf\x9e\x6b\x01\xfd\x63\xf8\xf5\xe5\xea\xa1\x53\x32\x82\xe9\x60\xd5\xa5\x16\x08\xaf\x9e\x11\x8a\xcd\x84\x06\x06\xdc\xa2\x7b\x57\xe4\xb9\x36\x8e\xa9\xc9\x2f\x6d\x5d\x8e\x10\x90\x4a\xeb\x2a\x24\x1c\xbf\x2b\xcb\x11\x92\xa8\x22\x94\x5b\x34\x6c\x4b\xee\x7a\x05\xb0\xde\x91\xbd\x37\x10\x1d\xdf\x3f\xfa\xa5\xf0\xb3\xd6\x69\xb7\xb2\x40\x0b\xcf\x56\x3c\xcc\xd0\x21\x5f\xb6\x0d\x63\xcb\x03\xea\xf7\x23\x7b\x29\x25\xca\xce\x14\x38\xe4\xfb\xa1\x84\x31\xd4\xde\x96\x00\xed\x36\xc8\x5b\x9e\x36\x5c\xcc\xa5\xa3\xc5\xad\xdc\xa2\xf2\x5e\x40\x8e\xc1\xd0\x60\x0c\xeb\x7d\xa7\x56\x1d\xc8\xfb\xa9\x5d\xc4\xae\x0f\x38\x9e\x99\xeb\xbf\x2c\xaf\xdc\x5b\xfe\xab\xb0\xae\x59\xd6\x05\x92\xec\x18\x13\x51\xa4\xee\xf0\x14\x48\xdb\x9d\x81\xa9\xab\x13\x8a\x99\x07\x75\xb8\x8e\xc2\xc3\x2f\x97\x63\xc9\xc9\x18\x4c\xb4\x0c\x62\x23\x76\x60\x30\xd3\x5b\x5f\x0b\x23\x4f\x4a\xaa\x12\x73\xbb\xae\xaf\x62\xf0\x44\xdd\x22\x58\xd7\xa8\xde\xa2\xf8\xab\x1c\xc6\x57\x0b\xaa\x41\xa7\xd5\x87\xab\x8b\xaa\xd0\x3d\x5c\xda\xa2\x35\x35\xe0\x79\xbc\xda\x69\xf1\x84\xcb\x69\xee\x6d\x99\xde\xe1\x7e\x01\xcd\x10\xfd\x78\xfd\xfa\x35\xe4\x42\xc9\x68\x3a\x39\xe7\x69\x23\x07\xa9\x01\x29\x81\xe0\x38\x41\x96\xe6\x46\x6f\x65\x8c\x31\x07\x8a\x3e\x3a\x93\x4e\x70\xaf\x6b\x6e\xac\xe4\x18\xfc\x31\xe6\xda\x12\x9a\xe2\x8e\x1b\x58\x34\x22\xc1\x2c\xe2\x38\x40\xb9\x1e\xc6\xb6\xe2\x5f\xaf\x46\xc9\x5c\x44\x7f\x75\x51\x71\xca\x18\x84\x31\x62\x3f\x5a\xb9\x29\x35\x98\xb2\x9a\xa3\xe0\x77\xe3\x57\x80\xbe\xff\x20\xec\x17\xd0\xf1\xbb\x1e\x0b\xd7\x99\x99\x9c\x8e\x82\xc1\x6b\x32\x21\x8e\x7d\x2b\x07\x77\xa5\xcc\xd2\x88\x56\xc8\xdf\x6d\x64\xb4\xa9\x9d\x95\x5b\x99\x69\x0c\x5a\x61\x6f\x2c\x9d\xc6\xab\x61\xff\x78\x5f\x69\x70\x53\x6b\x7f\xd2\x2d\xdd\x3b\xa3\xf7\xb5\x88\x9e\xa6\x65\x3b\x33\xe6\x00\xc2\x1d\x30\xb4\x8e\xf6\x9f\xbc\x30\xb9\xe6\xe4\x5a\xa5\xfb\x2e\xd7\x85\x66\x0f\x63\x33\x35\xec\x75\x61\x9a\xa6\x61\xa1\x52\xb4\x96\x1e\x76\x3b\x4c\x5d\x29\x06\x85\xd5\x0c\xcd\x4e\x28\xf6\x10\xcc\xa4\xab\xda\x1c\x7f\xe4\x31\x77\x4f\x71\x8b\xca\x81\xd5\x19\x72\x77\xaf\x2b\x44\xaa\x70\xfc\x1e\x7a\xa2\x70\x1b\xb6\xfd\x2d\x26\xb0\x84\xe9\x97\x1d\x08\x09\x3c\x61\x99\xac\xbf\xda\xbd\x12\x33\xf8\x72\xd8\x99\x5e\xcf\xbe\xe8\xe8\xd3\x1e\x6d\x5e\x30\xf7\xca\x08\x65\x13\x34\x94\xe4\x4e\xe9\xc1\x82\xf6\xa7\xf3\xc2\x18\x54\xee\xe7\x54\x47\x77\xd3\xd9\xbc\x4e\xec\xc3\xb5\xdd\xf2\x42\xc2\xa6\x81\x65\xda\x1e\x68\x34\x26\xde\xa2\xbb\xba\x68\x6d\xb1\xca\x2f\xa1\xaa\x77\x4e\xef\x78\x03\x10\x06\xfb\x0d\xce\x47\xb7\xd8\xab\x0b\x5f\x13\xf7\xf1\x6e\xa4\x2a\xde\x09\x68\x77\xb8\x1f\xdd\xe8\x7e\xc5\xb2\xc9\x25\x32\x5d\x28\x57\x17\xe1\xc6\x3a\xb0\x8f\x2a\xf8\x06\xd5\xad\xdb\x90\x8e\x57\xca\x1d\xa5\x5e\xca\x1c\x47\xb7\x06\xd6\xda\x18\xbd\xbb\xbe\x5c\x4d\x3f\xb4\x5a\x9c\xb3\xc5\xa8\xbf\x0c\x2b\x31\xe6\x93\xa3\x5e\x37\x86\xe0\xcf\xac\x0f\xc3\xc4\x3a\x96\x15\x00\x53\xf7\xb6\xcb\xa5\x88\x31\xc7\xe7\xab\x8b\x63\xcc\x6b\x5f\x20\x98\x76\xac\x6c\xbf\x9b\x57\x1f\x7a\x66\xca\xc4\x77\x6d\x13\x3a\xd2\x3c\xd1\xd6\x81\x82\x7a\x75\x72\x48\x9c\x67\x1c\x56\xe2\xa9\x47\x8f\xcf\xeb\xb2\x55\x4b\xca\x8a\xac\x75\x21\x00\x8e\x68\xbb\x85\xcd\xb5\x52\xb5\x9f\x9a\x31\xa2\x23\xc6\xf8\xff\xd4\x6c\x83\xf6\x11\xef\x53\x90\x1e\xf6\xe5\x1a\x8f\xcf\x6c\x73\x1e\x07\x65\x60\xf0\x53\x70\xad\x31\x2d\x05\x43\x7b\x7e\xba\xd8\x5c\x96\xf7\x8f\xbc\xbe\x75\x14\x4f\x53\x36\xa7\xaa\x0d\x00\x17\x07\x9a\x1b\x48\xfe\x00\x20\xe8\x90\x0a\x9d\xfb\x55\xa5\xe0\x93\x9e\xbb\xb5\x36\x06\x7f\x2a\xe3\x9b\x48\xd5\x4d\xac\xb6\xe8\x2d\x57\x22\x7c\xde\xe0\xfb\x18\x3b\x99\xa6\xb0\x46\x28\x2c\x8f\x5c\x0b\xaf\xfe\x62\xdc\x62\xaa\x73\x34\x96\x26\x82\x8b\x50\x3e\xf7\xc9\x85\x11\x19\x3a\xe4\x2b\x59\xb9\xb0\xb6\x9a\xa8\x76\x0f\x6e\x06\x19\xba\x8d\x8e\xe7\x81\xf2\x63\x11\xbf\x5d\xeb\xb4\x03\xc5\xce\xd7\x43\x3d\xdc\xc1\xfe\xed\x27\x35\x3e\x8f\x2f\x96\xd6\x6c\x37\x8f\x4d\x3a\x43\x41\x19\x75\x70\xe5\xa4\x5c\x05\xad\x2e\xd4\xbc\x3f\xbb\x0c\x70\xd5\xc3\xdc\xf8\x52\x6c\x15\x44\x62\xb4\xd2\x94\xf3\x39\xef\x3b\x04\x58\xee\x74\x16\x86\x66\x23\x37\x68\x51\xb9\xca\x1d\x0c\xfe\x53\xa0\x75\x5d\xe6\xc1\xe5\x73\x5c\x0d\xfa\x75\xb7\xe2\x3c\xd6\x6d\x6d\x75\x5a\xd9\x98\x30\x60\x7d\x5e\x67\x80\xb6\xa8\x28\x20\xeb\x15\xe0\x7a\x82\x86\xbb\x30\xb6\x7d\xe3\x8b\xb7\xbb\xc1\xeb\x6f\xc3\x4d\xd6\xbc\x75\xd1\xad\xc3\xdb\xdc\x7b\x3b\xc4\xda\x2e\x54\x31\x18\x5f\xb6\xe2\x71\xf3\x72\xb0\x97\xde\x48\x79\x23\xd5\x9d\x2f\x4c\x7c\x9a\x94\xc1\xb8\x59\xf9\xf6\x02\xa6\x49\xf1\xf4\x0d\xa9\xfd\xf7\x3f\xb1\x39\xb5\xff\x1e\xfa\x8f\xfb\x4f\x4a\x25\x42\xaf\xf9\x04\x97\x3c\xd0\xda\xf1\x77\xba\x62\xd9\x77\xc6\xdf\xe8\xe9\xb0\x03\x26\x32\xc5\xa7\xf7\xe7\xb9\x37\x5f\xf7\xea\x84\xb5\xe8\xec\x7c\x87\x6b\x2b\x1d\x3e\x23\x91\x76\x1e\xe9\xec\xec\xdb\xe4\xe5\xd7\xdf\x7f\x13\x3d\x8f\xfe\x5d\x7c\x17\xc5\xf1\xcb\x6f\xfe\xb5\x7e\x11\x7d\xf7\xf5\xf3\xce\x0b\xf1\xed\xb7\xd1\xfa\x45\xf4\xfd\xbf\x5e\x7e\xb8\x4c\xf5\xee\xc3\x5f\xda\xc4\x99\x30\x77\x73\xbb\xbd\x9d\x0c\x77\x25\x87\x3d\x89\xad\x2f\x1b\x05\x32\x13\xb7\x78\x66\xb7\xb7\xff\x76\x9f\xa5\x7d\x29\xa3\x33\xf4\x38\xf8\xc3\xb0\x94\xb5\x76\x0a\x9e\x55\x77\xbd\xe1\x9c\x0c\xeb\x1b\x56\xfb\xcb\x03\x76\x9d\xbd\x48\xeb\x37\x4a\x11\x5c\x92\x76\x1a\x36\x98\xe6\x7c\x6a\x2e\xf7\x4b\x7f\xac\x55\x78\xef\xca\xeb\xd2\x97\xab\xf9\xc8\x88\xd8\xf4\x5a\xbb\xb3\xfe\x84\x36\xec\x64\x04\x7f\xfb\x4f\x21\x0c\x5e\x11\xf2\x0b\x3f\x19\xc3\x74\x6b\xa1\x14\x9a\xc7\xe9\xac\x8e\xa4\x48\xed\xe2\xc0\xe2\x9e\xb8\x9d\x74\x0e\xcd\xe4\x28\x73\x4a\x62\x76\x4e\x32\xe6\xc3\x9a\x0e\xd5\xd1\x46\xc8\xb1\x2e\xcb\xc3\x01\xcf\x79\xe8\xe6\x05\xd5\x31\xa1\xb5\x47\xbf\xad\x0b\xf0\x7c\x7a\x56\x20\xe2\x4c\x2a\xd0\x86\xeb\x14\x6e\x43\x3b\x65\x75\xdd\xdc\xdf\x2e\xa7\x1c\xd3\xdf\x44\xaf\x64\x88\xb5\x9f\xf7\x4c\x2a\xc7\x85\xa2\x3a\x05\x1d\xda\x4b\xdb\xd7\x6f\xfd\xb5\xe2\xf6\x75\xdb\xb3\xb2\x5f\x48\x89\x30\xfd\x4f\xe9\x42\x29\xb2\xea\x0a\xd2\xd7\xd6\x79\xef\x70\x96\x4c\xfa\x53\x5e\x81\xf7\xc3\x55\x5e\xda\xd9\xcb\xf1\xfe\xef\x5c\x22\xad\xc9\x69\x5b\x09\xa3\x7c\x1b\x2b\xa8\x83\xea\x81\x5b\xa6\xfd\x6a\x3f\x67\x07\xad\x9a\x0d\x2c\xfb\x55\x9c\x80\xa1\xdb\xfa\x64\x9a\xc9\x0d\x2c\x03\x31\xf3\x0d\xca\xdb\x8d\x3b\xc8\xe9\x9b\xa6\x5d\xc6\xba\x62\xd4\xab\xe9\x71\x5a\x98\x4b\x8c\x38\xd9\xab\xd3\xc6\x20\x4f\xaf\x5a\xc0\x98\xad\x31\x8e\x69\xbe\x7d\x6b\x10\xa4\x72\xba\xea\x91\x8e\x68\xc5\xdd\x45\x58\xc2\x64\x2d\xcc\xa4\x37\x7a\x79\xae\xa9\x1d\x30\x78\xbf\x15\x14\xd2\x76\x34\x25\xcd\x11\xa8\xe7\x45\x8d\x27\x0d\x5f\x61\x0b\x7c\xe9\xe0\xad\xb5\x96\x53\xd5\x1f\xfb\x54\x2d\xdf\xaa\x3f\xf6\xa9\x1a\x87\xa9\x7b\xfb\x01\xcd\x58\xd9\xdc\xdb\x3b\x7c\x02\xe6\x6b\xd8\xb3\x70\x29\xc3\x3b\x74\xf5\x0f\x01\xca\x1f\x27\x34\x09\xf0\x68\x36\x09\x4b\x38\x2b\x13\xcf\x2a\xc0\x07\xfb\xdc\x98\x88\x26\xa9\x24\x09\x3e\xf9\x3b\x42\x40\xef\xb7\x0d\xc3\xe3\x7b\xb2\xc0\xbc\xf3\xca\x41\xce\x07\x7e\x4b\x41\x31\xc9\x8a\x6d\xf5\x1b\x85\x52\x60\xcd\x1e\xe6\xe8\x87\x8e\xd1\xb5\xa2\x22\x8a\x74\xa1\xdc\xbc\x14\x35\x27\xe9\xd3\x57\xcf\xa2\x56\xc7\xd6\xe9\x43\x69\xfa\x2c\xd0\xbe\x76\x6f\x8f\x14\x44\x22\x17\xbe\xfb\x3c\xf0\x03\x92\x11\xbd\xcf\x45\x5e\xdd\x52\xaf\xb4\xab\xc5\x48\xb4\xb5\xaa\xd2\xda\x62\x3c\xf1\x3e\xa4\xf1\x20\x02\xc1\x18\xac\xbe\xdd\x4c\x03\xad\x4e\x41\xb8\x03\xa7\x8e\xd9\xf0\x3c\x96\xfb\xd1\x53\xe6\xb0\xfc\x79\x4e\x10\x03\xbc\x98\x23\xa7\xcf\x0b\x68\x4d\x5d\xcf\x1f\xab\x6a\xca\xc3\xc9\x7f\x07\x00\x00\xff\xff\xeb\x59\xf4\x7a\x9d\x36\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -89,7 +89,7 @@ func examplenftCdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x9f, 0x7c, 0x26, 0xb9, 0xed, 0x9, 0x74, 0xbb, 0xac, 0x9a, 0x67, 0x2e, 0x74, 0xba, 0xfa, 0x81, 0xec, 0xc3, 0x70, 0xa0, 0xc4, 0x43, 0x2, 0xef, 0x56, 0x55, 0x38, 0x44, 0x53, 0xc1, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x90, 0x40, 0xac, 0xa1, 0x58, 0x7d, 0xc0, 0x35, 0x98, 0x1e, 0xeb, 0x6d, 0x7d, 0x28, 0x11, 0x47, 0xa5, 0xb5, 0xe4, 0x29, 0x36, 0x65, 0x5c, 0x67, 0xf, 0xdf, 0xe3, 0x17, 0x84, 0x6c, 0x98}} return a, nil } @@ -113,7 +113,7 @@ func metadataviewsCdc() (*asset, error) { return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x5f\x8f\xe3\x36\x92\x7f\xf7\xa7\xe0\x75\x80\x9b\x76\xe0\x71\xdf\xc3\xe1\x1e\x0c\x04\x93\x99\x74\xfa\x60\x64\xd1\x09\x66\x3c\xc9\xc3\x62\x11\xd3\x52\xc9\xe6\x0e\x45\x6a\x48\xca\x8e\x77\xd2\xdf\x7d\x51\xc5\x3f\xa2\x64\xa9\xff\x24\xc1\xf6\x43\x32\x96\xc5\x62\xb1\xea\x57\x55\xbf\x2a\xfa\xe6\xeb\xaf\x67\xb3\xaf\xbe\x62\x9b\x03\xb0\x3b\xa9\x4f\xec\x5e\xab\xd7\x77\xad\xda\x8b\x9d\x04\xb6\xd1\x9f\x40\x31\xeb\xb8\x2a\xb9\x29\xe9\xc5\xed\xbd\x56\xf1\x7b\xfa\x7a\xcb\x0a\xad\x9c\xe1\x85\x9b\xcd\x50\x8a\x50\x0e\x4c\xc5\x0b\x60\xee\xc0\x1d\xe3\x52\x8e\xc9\x8c\x6b\x2c\xb3\x07\xdd\xca\x12\x1f\x54\xda\xd4\xcc\xe9\xe5\x6c\x5d\x31\xce\x5a\x0b\x86\x9d\xb8\x72\x96\x39\xcd\x4a\x68\xa4\x3e\x33\xce\x14\x9c\xd8\xfd\xdd\x26\x09\x58\x30\x77\x00\x61\xd2\xe7\x28\x4f\xd4\x8d\x84\x1a\x94\x23\xa5\xdc\xb9\x01\xcb\x4a\xa8\x84\x82\x92\x1d\xc0\x40\x38\xcc\xdd\x66\xcb\x0c\x58\xdd\x9a\x22\x53\xdd\x9f\xa4\xd0\x06\xba\x2f\x51\x84\x3f\x92\x81\xc6\x80\x05\xd4\x8c\x2b\x52\x46\x28\xd4\x82\xd9\x9a\x1b\x97\x34\x59\xfa\x2d\xbe\xd3\x52\x42\xe1\x84\x56\x5b\xf6\x7e\x62\xa7\x6e\x13\x94\x6f\x9d\x36\x60\x83\x09\x5e\xd9\x70\xdc\x28\x65\x39\x5b\x3b\x26\x54\x21\xdb\x92\x5e\xaa\xe0\xc4\xaa\x56\xd1\x77\x64\x2a\x2e\xd1\x8f\xa8\x8f\x3e\x29\x30\xf8\x08\xb8\x15\xf2\x3c\xab\xf5\x11\x98\x43\xfb\x5b\x54\x99\xab\x92\xe9\xd6\x31\x5d\xd1\xdb\xf9\x16\xa4\xf9\x4f\x46\x1f\x45\x09\x66\x4b\x6f\x6e\xdf\x43\x01\xe2\x88\x1f\x2f\x0d\x66\xe9\x1c\x36\x7f\xc2\x4a\x28\x24\x37\x90\x29\x77\x12\xee\xc0\xac\xae\x81\x35\x06\x48\x68\xa3\x2d\x19\xac\x14\xf4\xc6\x2c\xd8\xf7\x73\x2b\x0c\x90\x52\x9d\xf5\xf0\x1c\x95\xa6\xb3\x15\x60\x1c\x17\x8a\x29\x5e\x0b\xb5\x27\x41\x3b\x38\xf0\xa3\xd0\x26\x81\xd5\x2e\x49\xa5\x33\x43\x15\x2c\x34\xdc\x70\x07\x6c\x07\x05\x6f\x51\x4d\xc7\xf6\xe2\x48\x4a\x1e\x41\xea\x06\x8c\xa5\xed\xf8\x4e\x48\xe1\xce\x1e\x71\x08\x96\x4e\x7b\xaf\x5b\xc1\x15\xba\x85\x71\x75\xce\x10\x91\xc0\x46\x52\x6c\xdf\x30\xef\xce\xac\xb5\xa8\x67\x34\x9b\x25\x8d\xbb\x57\x16\xe4\x68\x8b\x7e\x40\x57\xf7\x51\x64\x69\x4b\x0b\xaa\x9c\xe1\x2a\xe3\x9d\x10\xbd\xd8\x00\x98\xd7\x4e\xbf\xc6\xff\x2f\xc8\xbe\xe8\x50\x34\x85\xda\xe3\x21\x68\x13\x8c\x0a\x32\x3d\x67\x05\xa0\x54\xc9\x24\x94\x7b\x30\xb3\x0b\xc0\x6e\x34\x6d\x15\x71\x8d\x68\x52\xda\x1d\xc0\x90\x8a\x8b\x14\x96\x14\x62\x16\x8f\x7d\x26\xd1\xa5\xe1\x1e\x72\xf7\x77\x9b\x59\x65\x74\x1d\xa2\xb2\x73\x1f\xc5\xa9\x62\x05\xe6\x03\x7c\xb1\x84\x46\x5b\xe1\x92\x7d\x99\x56\xbd\xbd\x5e\xd9\x59\xdf\xf7\x85\x46\x23\x3b\x0f\x0b\x67\xb8\xb2\x15\x98\xe5\x6c\xf6\xf5\xcd\x6c\x26\xea\x46\x1b\xc7\xae\x7e\x16\x70\xc2\x18\x93\x47\x30\x57\xb3\xd9\xcd\xcd\x0d\x25\xb6\x1a\xc1\x92\x27\x8d\x25\xfb\x91\x36\xca\x9f\x21\x3c\xa5\xa4\x35\x41\x1c\x79\x29\x7a\x96\xb6\xed\xa1\xdb\xe7\x12\x0a\x7d\x61\xbb\x24\x78\x73\x73\x33\xe3\x45\x01\xd6\x5e\x73\x29\xe7\x5d\x62\xea\x12\xe3\x30\x85\xae\x58\xae\x38\xfb\x32\x9b\x31\xc6\x18\x6a\xf2\x56\x31\x50\x4e\xb8\xa0\x43\xa5\x8d\x0f\x6f\x72\xef\x01\x92\xed\xb9\xa4\x28\xf6\xa0\x20\xfb\x73\xf6\x33\x6f\xa5\x23\x49\xb9\x3a\xb9\xb8\x5f\xc2\xea\xe7\xed\xd7\x36\x25\x77\x01\xbc\xfe\xdf\x0c\x8e\x84\x79\x7a\x8d\x2c\xfc\xe8\x76\x1f\x69\x51\xb7\xd9\x70\xa7\x90\xae\x30\xa0\xf6\x86\x12\x7f\x54\x90\xf6\x0c\xcb\x1f\xdb\xe1\x47\x94\xd0\x6d\xf0\xfd\xd1\x3b\x8e\xbb\xcb\x7a\x03\xb5\x70\xec\x84\x90\x44\x3b\xd6\xe0\x78\xc9\x1d\x47\x2b\xc6\x9c\x6e\xc3\x29\xcb\x24\x6f\xed\xe3\x5f\x2b\x79\x66\x3b\x20\x11\x0e\x4a\xb6\x3b\x13\xac\xa3\x4f\xb6\xf8\xfc\xfe\x6e\xe3\xf5\x2d\xb7\x09\xe2\x49\x8e\x0f\x46\xc5\xb6\xf4\x0a\xdf\x49\xd8\xc6\x63\x60\x84\x57\x60\x40\x61\x31\xd0\x31\xa4\xfc\x19\x4e\xfc\x52\x25\x84\x77\x6e\x81\xc6\x04\x9f\xd8\x86\xd7\x35\x66\x15\x42\x43\xa7\x9f\x08\x4f\xba\x48\xb3\xaf\xb2\xd4\x6f\x93\xe4\x98\x2a\xe9\xb4\x85\x2e\x3d\xd8\xb0\x6c\x64\xaf\x33\x1d\x1c\x76\xe0\xb8\x25\x14\x82\xcb\xee\x28\xde\x4d\x49\x62\x38\x4f\xb6\x19\xda\xfd\xa0\x4b\x1f\x7a\x68\x52\xb4\x05\xbe\xb7\x07\x1f\x70\x97\x56\x49\xd2\xfa\x26\x20\x4f\xd7\xfc\x13\x58\xcc\xed\x56\x7b\xad\xdc\x41\x98\xf2\x75\xc3\x8d\x3b\x33\xa1\x4a\xf8\x0d\x0d\x82\x2e\xac\xb5\x12\x8e\x74\x8f\x20\x4e\xe2\x10\x6a\x9f\x5b\x30\x67\xfa\x32\xd8\xbb\x03\x48\x4c\x6e\x1e\xad\x7d\xdb\x2d\xa3\x90\x4b\x90\x1e\xbb\x00\x28\xaf\xb1\x70\xac\xd8\x07\x67\x84\xda\x2f\x98\x28\x57\xec\xe3\x5a\xb9\xff\xfb\xdf\x05\x6b\xdb\xfc\x13\x6d\xb1\x62\x6f\xcb\xd2\x80\xb5\x6f\xe6\x17\x62\x8f\xc2\x17\x7f\xd6\x87\xdc\xf5\xaf\x4c\x55\xee\x3d\x54\x2b\xc6\x5b\x77\xb8\xf6\x8f\xd9\xef\x3e\x3e\xe6\xec\xbf\xbf\x0c\x33\xd0\xf2\xfe\x6e\xf3\xe0\xe5\x7f\xa1\xff\xe2\x1f\x85\x48\x5f\x67\x2f\x76\xb9\x07\xb7\x39\x37\x70\x3d\x5f\x8a\x12\x5d\x54\x09\x2c\x0e\xa8\x7a\x78\x41\x94\xf1\x2c\xe1\x01\x7e\x48\x07\x0a\xcf\xe8\xd3\x9b\x25\xf7\xc7\xf3\xbb\x3f\xcc\x46\xc3\x57\xd8\x14\x6d\x14\xb3\xdc\xe7\x3a\x7c\x1e\x53\xa0\x5a\xa4\x85\x42\x95\xa2\xe0\x2e\x06\x24\xaa\x8e\xda\x79\x95\x16\x19\x35\xba\x60\x3e\x61\x37\x1f\x6b\x49\x32\x39\x7d\xd1\x43\x08\x2e\xfb\xf8\x71\x7d\x1b\x45\x74\x94\x68\x74\x2d\x6b\x6d\xcb\xa5\x3c\xf7\x82\xa7\x0f\x17\x4a\x30\x17\xfa\x08\xcb\x94\x76\x9e\xad\xa1\xeb\x75\xab\xdc\x2b\x4b\x14\x91\xef\x61\xc1\xb6\x28\x7e\x9b\xe2\x67\xab\x84\xdc\x3e\x05\xc3\x98\x55\xd5\xb3\x81\x88\x9b\x74\x38\x5c\xb0\x26\x30\x43\xb4\x40\x7c\x6b\x3e\xea\xb8\x29\xaf\x85\xf2\x0f\x25\x71\x8c\x31\xa3\xb0\xb5\xf7\x22\xd8\x3f\xe5\xc4\x7c\xa3\xc7\x5d\x98\x5b\xfd\x72\xed\x5f\xe6\xab\xc5\xcb\x9c\x75\x1b\x75\x78\xb6\xb3\x9c\xce\x5d\xd5\xe9\x37\xe1\xac\x75\xbf\x5f\x0b\x15\xc7\xb2\xba\xf5\xd4\x3c\x74\x65\x93\x6a\x5e\x36\x03\xb8\xbe\x4f\x69\x96\x43\x6e\x13\x37\x6f\x95\xf8\xdc\x02\x5b\xdf\x12\x01\x88\x04\x32\xbe\x91\x6f\x23\xc1\x65\x67\xee\x4b\x19\x4f\x14\xbc\x75\xba\xe6\x4e\x14\x14\x78\x70\xa4\x94\x2e\x6a\x60\x3c\xd3\x19\x9d\x6c\x9d\xd1\xe7\x50\x53\xf3\xa2\x42\xfc\x5e\x90\x01\x78\x74\x70\x68\xbc\xca\xd8\xf2\xa5\xba\xe0\xbd\x65\x35\x62\x27\x00\x41\x01\xe0\x9b\x9c\xda\x44\x6e\xf6\x2d\xb5\xa3\x63\x87\xf3\x8b\x63\x77\x78\x1b\x35\xba\xee\x0e\xcc\xbe\x61\x16\x64\x9e\x58\xfb\xcf\xf1\xd9\xbc\x6f\x95\xc2\x00\x77\xf0\x7d\xdd\xb8\x73\xc6\xa4\xfd\x53\x52\x09\xf0\xab\x5e\x87\x15\x2c\x18\xab\x30\x35\xa2\x17\x5e\x89\xf1\x63\xc0\xb5\x46\x51\xbd\x8d\x95\x9d\x4b\x09\x26\xab\xbe\x70\xf6\x84\xe9\x44\x94\xca\xf6\x44\x7c\xeb\xd7\xb3\xb7\x9d\x2a\xc3\x10\xa6\xce\x27\xe8\x20\xec\x24\x34\xb0\x00\x8e\x1e\xf6\x7a\xbe\x62\xdf\x7e\xe9\x3e\x3f\x64\xc5\x0d\xff\xa8\xfb\xec\x3f\xc2\x3f\x03\xb6\x95\x0e\x8b\xdc\xdf\x40\xed\xdd\xe1\x7a\xce\xbe\xf9\x86\xfd\xcf\x8a\x5d\xd1\x54\x80\x76\x2a\x73\x65\x29\x54\x88\x10\x36\xee\xfc\x5f\x57\x53\x02\x85\xfd\xd0\x36\xd8\x59\x40\x79\x7f\xb7\xa1\x02\xea\x63\x9a\x3c\x98\x6a\xea\xfc\x89\x8d\xac\x17\x92\x6c\x42\x38\xed\x6f\xfa\x30\xeb\xfe\xd5\x33\xfa\xff\x83\xb3\x2c\xb6\x60\x14\xe6\x91\x27\x79\x51\xa5\x30\x50\x38\x79\x46\x97\x4d\xb9\xab\x14\xa4\x0c\x37\x67\x62\xcb\x52\x32\xdb\xee\xee\xef\x36\x1f\xd8\x27\x38\x7b\x3a\x8c\x1a\x8d\xba\x2a\x11\x96\x3d\xb8\xb7\x47\x2e\x24\x42\xed\x83\x5f\x8e\xde\xfa\xb2\x21\x83\x78\x6c\x0f\xdd\x15\x34\xf8\xf2\xd8\xe9\x28\xb8\x33\x02\x1d\x1b\xd9\xde\x29\x2f\x0e\xf7\x4e\x23\x21\x0f\x11\x6a\x69\x64\xa0\x1b\x3a\xa4\xec\x4f\x54\x42\x53\x5c\x1c\xb4\xb6\xd0\x13\x71\xd0\x27\x8c\x84\x18\x14\xb6\xdd\x79\xfb\x96\xd0\x80\x2a\x91\x8a\x68\xc5\x4e\x34\x11\xeb\xed\x13\x4a\x69\x3f\xfb\xdc\x69\xc3\xe0\x37\x8e\xbd\xe7\x82\x89\x8a\x6d\xd1\xa0\x5b\x22\xd9\x9c\x1d\xb9\x6c\x61\xc1\x76\xad\x63\x5b\x51\x6e\x59\xa9\xc1\xaa\x57\x7e\x10\x46\x0a\xf6\xb3\x00\x57\x41\x5d\x76\x3a\x88\xe2\xe0\x0d\x50\x05\x8b\xd0\x04\x43\x47\xcb\x0a\x2a\x69\x86\xd2\x22\x67\x57\x25\x54\xd8\x42\x5e\xf5\xe4\xad\x2b\xb6\xf3\xd6\x0a\x05\x2c\x34\xf6\x1d\x98\xa8\x61\xf0\x61\xcb\x99\x15\x6a\x2f\xbd\x5a\xa8\xc9\x3f\x11\xc0\x7e\xb7\x9e\x54\x5c\xb8\x64\x1b\x74\xd0\x01\x64\x63\x43\x2a\xb1\xec\x74\xd0\xb8\x95\x7a\x85\xb8\x37\xe0\x2d\xe8\xe2\x5c\x47\x6a\xfd\x09\x4d\x8b\xc5\x23\x97\xd7\x47\x6e\xc3\x0d\xaf\x99\x0f\x35\x0c\x2c\xc4\x58\x2c\xfa\x25\x58\x61\xa0\xbc\x48\x70\x61\x11\x26\x5a\x1a\x6a\x96\x71\x41\x40\xc0\x4e\x1b\xa3\x4f\xd3\x7b\xa6\x68\xb1\xce\xb4\x85\x6b\x69\x92\x18\xc6\x86\x91\x97\x1a\xf8\xdc\x82\xc5\x10\xc7\xb0\x58\x4e\xe6\xb6\x3d\x38\x1f\x22\x21\x5d\x6c\x02\x15\x4a\xc5\x9c\xad\xa6\x28\xfd\x9b\xf1\x10\x52\x42\xce\xfa\xb9\xe2\x61\x94\x10\x68\x56\x43\x29\xb0\x77\xe8\x06\x0d\x69\xbe\x10\x8b\x68\x4e\x6e\xbb\x5c\xfb\x12\xbe\x10\x07\x8d\x7d\x76\xc0\x7e\x81\xd0\xa5\xc7\x29\x40\x1c\x37\xc4\x16\x2c\xd2\xd0\x4c\x54\xec\x5a\x91\xb8\x60\x9e\x52\xfb\xb4\x3c\x17\x1d\x24\x05\x64\x71\x1a\xdf\x54\x7e\x4a\xe7\x74\x28\xc7\x52\x58\x07\xd8\xe3\xc5\xef\x65\x10\x18\x47\x57\xa1\x71\xec\x39\x3e\xe9\x6a\xa0\xd6\x47\x48\x13\xe2\xa4\x73\x96\xcd\xb1\x88\xfa\x97\x86\x25\xb4\x1f\x71\x8e\x42\x9c\x28\x05\xb5\xd8\xd5\x19\xe9\x34\xf5\xef\xb8\x64\x7d\x8b\xf1\xea\x99\xac\xc1\xb7\xc6\x80\x1c\xf5\x42\x0a\x38\x0a\xe8\xa4\xf8\x88\xa6\x43\x64\xa6\xb1\x4c\xea\x28\x11\xa6\x51\xc2\x75\xbe\x57\x40\x28\xd6\x61\xc4\xe3\x8b\x0a\xb0\x28\xb1\xee\xe6\xd2\xa8\x2e\x76\x8c\xbd\x6b\xb2\x7c\x5f\x11\xeb\x30\xcd\xe2\x39\x32\x3d\x3b\x08\xb4\xf5\xed\x65\x75\x26\x8c\x0d\x7b\xa2\x8e\x03\x4c\x34\xba\x49\xc7\xc8\xc7\xc2\x03\xdf\x9d\xf8\x86\x89\xea\x7a\xbf\xcb\x1d\xf6\x4e\x19\x79\xcb\x75\x7a\x78\x61\x78\x06\x48\xda\x08\xa3\x3f\x16\x87\x71\xc2\x3f\x64\xe9\x11\xf0\x8e\xe6\x2b\x01\xd1\x7d\x5a\x4b\x60\xe6\x65\x99\x63\xf9\xbb\x4b\x00\xe5\xf9\xd8\x4f\x3e\x37\x1d\x04\xc3\x36\x93\x79\x30\x7c\x7f\x1d\x56\x7a\x44\x0d\x48\x2f\xe5\xca\x3e\xc9\xb2\xa9\x28\x73\x8a\xe9\x38\x67\xf7\x77\x42\x1d\x33\x30\xf1\xf4\xb8\x6f\xe3\x9e\x47\x7f\xbc\x90\x9a\x37\x8d\x6f\x65\x77\x5a\x4b\xe0\x74\xbf\x92\x66\x10\x54\x56\x45\x5f\x5e\x07\xf5\x42\x60\x6b\x12\x59\x1d\xda\xef\x49\xe6\x74\x71\xc2\x8c\x3a\xbd\xd3\x5a\x0e\x68\xd1\xfb\x70\xfc\x98\x34\x7c\x96\x20\x17\xed\xc5\x11\x54\x68\x74\x6c\x38\x78\xa0\x70\xe3\x19\x80\x86\xc4\xa3\x44\xdd\x2f\xee\x2e\x46\xc2\x9c\x35\xab\xf8\xcc\x99\x16\x50\x76\x20\x16\xd3\x55\xfa\xad\x4a\x1e\x9a\xf0\x42\xb0\xf3\x88\x99\x3b\x3f\xa2\x56\xc1\xbe\xc3\x5a\xff\x0c\x86\x3a\xc9\xd6\xf1\x9f\x73\x6f\xe8\x61\x6c\xfe\x80\x16\x40\x32\xb2\xe3\xc5\xa7\x13\x37\xa5\x7d\x5d\xe8\xba\xe1\x4e\x84\x7b\x25\x03\xdc\xc6\x21\xeb\x13\xc1\xd8\x45\xcf\x4f\xed\x4e\x8a\x22\xcb\x93\xcf\x0c\x8c\xa7\x60\x14\xbb\x9b\x15\xe6\x94\x27\xdf\x5e\xdf\x12\xcc\xfe\xee\x33\xfa\x3f\x26\x95\xa9\xb4\xf9\x9e\x17\x87\xf5\xed\xf5\xaf\xac\x5a\xd1\xa3\xeb\x54\x05\xd0\x68\xf3\x15\xfb\x59\x8b\xf2\xf1\x0d\x3d\xbf\x42\xce\xf3\x6b\xce\x74\x88\xe8\x20\xaf\x19\x5a\xfe\xbd\xbf\x33\x4c\x77\x09\x1e\xbe\xaa\x30\xe0\x06\x77\xb8\xf9\x38\x7a\x07\xf1\x96\x32\x35\xf4\xe9\xc2\x07\x21\x95\x2e\x75\x5e\x90\x44\x3b\xbf\xad\x12\xb1\x59\xa4\xd4\xba\xb8\xf0\xeb\x62\x7c\x52\x92\xb5\xe5\x59\x36\xee\xd9\x8a\xfb\x2b\x13\x84\xa7\x45\xaf\x7b\x1b\xad\xd8\x38\x15\x7c\x78\x34\xa7\x4f\xa5\xf4\x70\x17\x2d\x5c\xb4\xcf\x44\x4e\x78\x2a\xa9\xa3\x81\x86\xe3\xff\x17\xe0\x79\x74\x5c\x3d\x24\x13\x06\x46\xb8\x44\xc6\x23\xf3\x6b\x47\x4f\xf1\xc2\x99\x7a\x77\xf4\xdd\xd5\xfc\x88\xa8\x48\x2f\xa7\x57\x51\x1e\x95\x35\x12\x1b\x2e\x4f\xfc\xec\x19\x48\x25\xb0\x95\x2c\xc1\x3a\xa1\x78\xef\xec\x99\xf0\xee\x06\x0f\x2d\x9f\x34\xad\x85\xb5\x74\x59\xe2\x6f\x72\x5a\xeb\x74\x9d\x92\x1c\x32\x53\x4c\xb3\x3b\xe8\x28\xec\x98\x6c\x94\x78\xe0\xa6\xf4\xdd\x1e\x46\x86\xf0\x33\x9e\x01\xd7\x1d\x67\x47\xc3\x21\x24\xa9\xf9\x08\x39\xf2\xdf\x77\xdc\xc8\x7f\x0e\x83\x5b\x3d\x41\x8c\x86\x93\xca\x67\x50\xa3\xcb\xd9\x06\x5d\xe2\xd7\xba\x55\xb1\xcc\xfb\xf9\x6b\x17\xdf\x53\xf8\x8d\x95\x45\x91\x2b\xf7\xd4\x54\xf4\x6e\x11\xac\xf8\x17\x5c\x8e\x8a\x5f\x96\x64\xc7\xbb\xb1\x64\x0d\x8a\xe4\xa5\xa4\x15\x53\xa7\x7c\x2b\xa5\x3e\x61\xc0\xfa\xd2\x9d\xae\xcf\x9d\x66\xc2\x01\xfd\xc8\xc1\x1d\x8c\x6e\xf7\x07\xd2\x14\x1d\xdb\x5b\xaf\x2b\x9f\x34\x28\x3e\xd7\xb7\xfe\x87\x20\x79\x41\x8f\x3f\x22\xa8\x84\x19\x2c\xed\x7e\x56\x20\x35\x2f\xd3\xfd\x9c\xf1\xbb\xf8\x08\xaf\xa1\xd6\xe6\xfc\xa7\x8b\xc3\xc0\x50\x03\x0b\x05\x29\x3f\xc0\xf9\xba\x9a\x4f\x19\xea\x1d\x55\x10\x3b\x31\x10\x7a\x16\x28\xd6\x5d\x87\x44\x57\xb6\x04\x03\xea\xc0\x04\xf5\x12\xd9\xc4\xbf\x2f\x65\x31\x18\x6e\x74\x3f\x23\x89\xb4\x28\xb8\x9e\x26\x28\x14\x9c\x28\xa7\xe1\x4a\x14\xcb\xa7\x06\x19\x71\x26\x11\xe9\x8c\xaa\x1c\xb6\x73\x17\x4a\x64\x83\x9d\x68\x83\x02\xd0\x03\xcb\x29\xe4\xa7\x99\xd7\xd8\x1d\xf4\x1f\xaf\xd7\xcf\x19\x4c\x4c\x74\x82\xd7\xbe\xab\xc2\x3e\x50\x09\x39\x67\xbf\xff\x1e\x1f\xbd\x09\xed\xa1\x28\xe7\x2b\x76\xb1\x0e\xff\xae\xbe\xe3\x0a\xad\xea\x55\x23\x2f\xa6\x73\x79\x0b\xe6\xd7\x77\x68\x83\xde\xed\x7b\xea\xb9\x6b\xee\x8a\x43\xec\xb4\xd3\x45\x7c\xc2\xc1\x33\x27\xaf\x2f\x9f\xc6\x07\xd5\xa8\x91\xbd\x60\xc2\x8f\x0d\xe0\x5f\x30\x66\x9f\xdc\xe3\x3f\x33\x5f\xf7\xe5\x03\xdd\xd8\x1f\x81\x4f\x4f\xc0\x93\x57\x0e\xfc\x08\x7d\xdd\x7d\xb7\x4f\x3f\xc5\x89\xaf\x4f\x8e\xe2\xff\x9a\xd9\xfe\x23\x5d\xfa\xcb\xdd\x1d\x59\x6b\x97\x60\x7a\x7d\xca\x9f\xbc\x75\xc9\xf2\x87\xaa\xdc\x26\xcd\x42\xf3\x24\x32\x98\x06\xf7\xaa\x42\x4a\x1b\x83\x94\xc1\x8d\xe1\xe7\xd8\x51\x6f\xf2\x8e\x7a\x82\x4a\x87\x1f\x4e\x85\xdf\x4a\x3c\x0f\x66\x9d\xc6\xbe\xf5\x1a\x21\x84\xe3\x20\x1c\x01\x60\x07\x00\x6a\x68\x42\xb5\xfd\x83\x20\x88\x6e\x7f\x98\xfd\x3b\x00\x00\xff\xff\xf1\x73\xcf\xb7\x48\x2b\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdd\x8e\xe3\x36\xb2\xbe\xf7\x53\xf0\x74\x80\x33\xed\xc0\xe3\x3e\x17\x07\x7b\x61\x20\x98\xcc\xa4\xd3\x0b\x23\x8b\xde\x60\xc6\x93\x5c\x2c\x16\x31\x2d\x95\x6c\xee\x50\xa4\x86\xa4\xec\x78\x27\xfd\xee\x8b\x2a\xfe\x88\x92\xa5\xfe\x49\x82\xed\x8b\x64\x2c\x8b\xc5\x62\xd5\x57\x55\x5f\x15\x7d\xf3\xf5\xd7\xb3\xd9\x57\x5f\xb1\xcd\x01\xd8\x9d\xd4\x27\x76\xaf\xd5\xeb\xbb\x56\xed\xc5\x4e\x02\xdb\xe8\x4f\xa0\x98\x75\x5c\x95\xdc\x94\xf4\xe2\xf6\x5e\xab\xf8\x3d\x7d\xbd\x65\x85\x56\xce\xf0\xc2\xcd\x66\x28\x45\x28\x07\xa6\xe2\x05\x30\x77\xe0\x8e\x71\x29\xc7\x64\xc6\x35\x96\xd9\x83\x6e\x65\x89\x0f\x2a\x6d\x6a\xe6\xf4\x72\xb6\xae\x18\x67\xad\x05\xc3\x4e\x5c\x39\xcb\x9c\x66\x25\x34\x52\x9f\x19\x67\x0a\x4e\xec\xfe\x6e\x93\x04\x2c\x98\x3b\x80\x30\xe9\x73\x94\x27\xea\x46\x42\x0d\xca\x91\x52\xee\xdc\x80\x65\x25\x54\x42\x41\xc9\x0e\x60\x20\x1c\xe6\x6e\xb3\x65\x06\xac\x6e\x4d\x91\xa9\xee\x4f\x52\x68\x03\xdd\x97\x28\xc2\x1f\xc9\x40\x63\xc0\x02\x6a\xc6\x15\x29\x23\x14\x6a\xc1\x6c\xcd\x8d\x4b\x9a\x2c\xfd\x16\xdf\x69\x29\xa1\x70\x42\xab\x2d\x7b\x3f\xb1\x53\xb7\x09\xca\xb7\x4e\x1b\xb0\xc1\x04\xaf\x6c\x38\x6e\x94\xb2\x9c\xad\x1d\x13\xaa\x90\x6d\x49\x2f\x55\x70\x62\x55\xab\xe8\x3b\x32\x15\x97\xe8\x47\xd4\x47\x9f\x14\x18\x7c\x04\xdc\x0a\x79\x9e\xd5\xfa\x08\xcc\xa1\xfd\x2d\xaa\xcc\x55\xc9\x74\xeb\x98\xae\xe8\xed\x7c\x0b\xd2\xfc\x47\xa3\x8f\xa2\x04\xb3\xa5\x37\xb7\xef\xa1\x00\x71\xc4\x8f\x97\x06\xb3\x74\x0e\x9b\x3f\x61\x25\x14\x92\x1b\xc8\x94\x3b\x09\x77\x60\x56\xd7\xc0\x1a\x03\x24\xb4\xd1\x96\x0c\x56\x0a\x7a\x63\x16\xec\xfb\xb9\x15\x06\x48\xa9\xce\x7a\x78\x8e\x4a\xd3\xd9\x0a\x30\x8e\x0b\xc5\x14\xaf\x85\xda\x93\xa0\x1d\x1c\xf8\x51\x68\x93\xc0\x6a\x97\xa4\xd2\x99\xa1\x0a\x16\x1a\x6e\xb8\x03\xb6\x83\x82\xb7\xa8\xa6\x63\x7b\x71\x24\x25\x8f\x20\x75\x03\xc6\xd2\x76\x7c\x27\xa4\x70\x67\x8f\x38\x04\x4b\xa7\xbd\xd7\xad\xe0\x0a\xdd\xc2\xb8\x3a\x67\x88\x48\x60\x23\x29\xb6\x6f\x98\x77\x67\xd6\x5a\xd4\x33\x9a\xcd\x92\xc6\xdd\x2b\x0b\x72\xb4\x45\x3f\xa0\xab\xfb\x28\xb2\xb4\xa5\x05\x55\xce\x70\x95\xf1\x4e\x88\x5e\x6c\x00\xcc\x6b\xa7\x5f\xe3\xff\x17\x64\x5f\x74\x28\x9a\x42\xed\xf1\x10\xb4\x09\x46\x05\x99\x9e\xb3\x02\x50\xaa\x64\x12\xca\x3d\x98\xd9\x05\x60\x37\x9a\xb6\x8a\xb8\x46\x34\x29\xed\x0e\x60\x48\xc5\x45\x0a\x4b\x0a\x31\x8b\xc7\x3e\x93\xe8\xd2\x70\x0f\xb9\xfb\xbb\xcd\xac\x32\xba\x0e\x51\xd9\xb9\x8f\xe2\x54\xb1\x02\xf3\x01\xbe\x58\x42\xa3\xad\x70\xc9\xbe\x4c\xab\xde\x5e\xaf\xec\xac\xef\xfb\x42\xa3\x91\x9d\x87\x85\x33\x5c\xd9\x0a\xcc\x72\x36\xfb\xfa\x66\x36\x13\x75\xa3\x8d\x63\x57\x3f\x09\x38\x61\x8c\xc9\x23\x98\xab\xd9\xec\xe6\xe6\x86\x12\x5b\x8d\x60\xc9\x93\xc6\x92\xfd\x9d\x36\xca\x9f\x21\x3c\xa5\xa4\x35\x41\x1c\x79\x29\x7a\x96\xb6\xed\xa1\xdb\xe7\x12\x0a\x7d\x61\xbb\x24\x78\x73\x73\x33\xe3\x45\x01\xd6\x5e\x73\x29\xe7\x5d\x62\xea\x12\xe3\x30\x85\xae\x58\xae\x38\xfb\x32\x9b\x31\xc6\x18\x6a\xf2\x56\x31\x50\x4e\xb8\xa0\x43\xa5\x8d\x0f\x6f\x72\xef\x01\x92\xed\xb9\xa4\x28\xf6\xa0\x20\xfb\x73\xf6\x13\x6f\xa5\x23\x49\xb9\x3a\xb9\xb8\x9f\xc3\xea\xe7\xed\xd7\x36\x25\x77\x01\xbc\xfe\xdf\x0c\x8e\x84\x79\x7a\x8d\x2c\xfc\xe8\x76\x1f\x69\x51\xb7\xd9\xf7\x47\x6f\x57\xee\x2e\xcb\x01\xd4\xc2\xb1\x13\x22\x06\x8f\x59\x83\xe3\x25\x77\x1c\x0f\x19\x53\xae\x0d\x4a\x94\x49\xde\xda\x87\xa7\x56\xf2\xcc\x76\x40\x22\x1c\x94\x6c\x77\x26\xd4\x45\x93\x6d\xf1\xf9\xfd\xdd\xc6\x6b\x53\x6e\x13\x02\x93\x1c\x1f\x2b\x8a\x6d\xe9\x15\xbe\x93\xb0\x8d\xe7\xc0\x00\xac\xc0\x80\xc2\x5c\xad\x23\xe2\xfd\x19\x4e\xfc\x52\x25\x44\x5f\x6e\x82\xc6\x04\x93\xd9\x86\xd7\x35\x06\x3d\x39\xab\xd3\x4f\x84\x27\x5d\x20\xd8\x57\x59\x66\xb6\x49\x72\xcc\x64\x74\xda\x42\x97\x1e\x0b\x98\xd5\xb3\xd7\x99\x36\x5e\xb7\x03\xc7\x2d\xa1\x10\x5c\x76\x47\xf1\x7e\x4a\x12\xc3\x79\xb2\xcd\xd0\xee\x07\x5d\xfa\xc8\x40\x93\xa2\x2d\xf0\xbd\x3d\xf8\x78\xb8\xb4\x4a\x92\xd6\x37\x01\x79\xba\xe6\x9f\xc0\x62\xea\xb5\xda\x6b\xe5\x0e\xc2\x94\xaf\x1b\x6e\xdc\x99\x09\x55\xc2\xaf\x68\x10\x74\x61\xad\x95\x70\xa4\x7b\xc4\x58\x12\x87\xe8\xfb\xdc\x82\x39\xd3\x97\xc1\xde\x1d\x40\x62\xee\xf1\xb5\xaf\x6f\xbb\x65\x14\x72\x89\xd2\x63\x87\xcf\xf2\x1a\xf3\xfa\x8a\x7d\x70\x46\xa8\xfd\x82\x89\x72\xc5\x3e\xae\x95\xfb\xcb\xff\x2f\x58\xdb\xe6\x9f\x68\x8b\x15\x7b\x5b\x96\x06\xac\x7d\x33\xbf\x10\x7b\x14\xbe\x36\xb3\x3e\xe4\xae\x7f\x61\xaa\x72\xef\xa1\x5a\x31\xde\xba\xc3\xb5\x7f\x3c\x67\xff\xfb\x65\x98\x18\x96\xf7\x77\x9b\x07\x2f\xf7\x0b\xfd\x17\xff\x28\x34\xfa\xba\x7a\x71\xcb\x3d\xb8\xcd\xb9\x81\xeb\xf9\x52\x94\xe8\x9a\x4a\x60\xce\x46\x95\xc3\x0b\xa2\x8c\x67\x08\x0f\xf0\x43\x3a\x48\x78\x46\x9f\xde\x2c\xb9\x3f\x96\xdf\xfd\x61\x36\x1a\xb6\xc2\xa6\x28\xa3\x58\xe5\x3e\x05\xe1\xf3\x98\x99\xd4\x22\x2d\x14\xaa\x14\x05\x77\x31\x10\x51\x75\xd4\xce\xab\xb4\xc8\x18\xcb\x05\x21\x09\xbb\xf9\x18\x4b\x92\xc9\xd9\x8b\x1e\x32\x70\xd9\xc7\x8f\xeb\xdb\x28\xa2\x63\x2a\xa3\x6b\x59\x6b\x5b\x2e\xe5\xb9\x17\x34\x7d\x98\x50\x62\xb9\xd0\x47\x58\xa6\xb4\xf3\x24\x0a\x5d\xae\x5b\xe5\x5e\x59\x62\x6e\x7c\x0f\x0b\xb6\x45\xf1\xdb\x14\x37\x5b\x25\xe4\xf6\x29\xf8\xc5\x6c\xac\x9e\x0d\x40\xdc\xa4\xc3\xdf\x82\x35\x81\xb0\xa1\x05\xe2\x5b\xf3\x51\xc7\x4d\x79\x2d\x54\x65\x28\xa9\xf4\x8f\x19\x85\xad\xbd\x17\xc1\xfe\x21\x27\xe6\x1b\x3d\xee\xc2\xdc\xea\x97\x6b\xff\x34\x5f\x2d\x5e\xe6\xac\xdb\xa8\xc3\xb3\x9d\xe5\x74\xee\xaa\x4e\xbf\x09\x67\xad\xfb\x6d\x54\xa8\x34\x96\xd5\xad\x67\xcc\xa1\x59\x9a\x54\xf3\x92\xa3\xe3\xfa\x3e\xd3\x58\x0e\x29\x47\xdc\xbc\x55\xe2\x73\x0b\x6c\x7d\x4b\xa5\x3d\xf2\xba\xf8\x46\xbe\x8d\x04\x97\x9d\xb9\x2f\x65\x3c\x51\xf0\xd6\xe9\x9a\x3b\x51\x50\xe0\xc1\x91\x52\xb9\xa8\x81\xf1\x4c\x67\x74\xb2\x75\x46\x9f\x43\x2d\xcd\x8b\x09\xd1\x6e\x41\x06\xe0\xd1\xc1\xa1\x1f\x2a\x63\x27\x96\xea\x81\xf7\x96\xd5\x88\x9d\x00\x04\x05\x80\x6f\x72\xea\xde\xb8\xd9\xb7\xd4\x25\x8e\x1d\xce\x2f\x8e\x4d\xdb\x6d\xd4\xe8\xba\x3b\x30\xfb\x86\x59\x90\x79\x62\xed\x3f\xc7\x67\xf3\xbe\x55\x0a\x03\xdc\xc1\xf7\x75\xe3\xce\x19\xc1\xf5\x4f\x49\x25\xc0\xaf\x7a\x8d\x4f\xb0\x60\xac\xbe\xd4\x1f\x5e\x78\x25\xc6\x8f\x01\xd7\x1a\x45\x75\x36\x56\x74\x2e\x25\x98\xac\xea\xc2\xd9\x13\xa5\x13\x51\x29\xdb\x13\xf1\xad\x5f\xcf\xde\x76\xaa\x0c\x43\x98\x1a\x92\xa0\x83\xb0\x93\xd0\xc0\xc2\x37\x7a\xd8\xeb\xf9\x8a\x7d\xfb\xa5\xfb\xfc\x90\x15\x37\xfc\xa3\xa6\xb0\xff\x08\xff\x0c\xd8\x56\x3a\x2c\x72\x7f\x03\xb5\x77\x87\xeb\x39\xfb\xe6\x1b\xf6\x7f\x2b\x76\x45\xcd\x3a\xed\x54\xe6\xca\x52\xa8\x10\x11\x6c\xdc\xf9\x7f\xae\xa6\x04\x0a\xfb\xa1\x6d\x90\xf0\x43\x79\x7f\xb7\xa1\x02\xea\x63\x9a\x3c\x98\x6a\xea\xfc\x89\x8d\xac\x17\x92\x6c\x42\x38\xed\x6f\xfa\x30\xeb\xfe\xd5\x33\xfa\x5f\xc1\x59\x16\x3b\x23\x0a\xf3\xc8\x8f\xbc\xa8\x52\x18\x28\x9c\x3c\xa3\xcb\xa6\xdc\x55\x0a\x52\x86\x9b\x33\xb1\x64\x29\x99\x6d\x77\xf7\x77\x9b\x0f\xec\x13\x9c\x3d\x0d\x46\x8d\x46\x5d\x95\x88\xca\x1e\xdc\xdb\x23\x17\x12\xa1\xf6\xc1\x2f\x47\x6f\x7d\xd9\x90\x41\x3c\xb6\x87\xee\x0a\x1a\x7c\x79\xec\x74\x14\xdc\x19\x71\x8e\xfd\x65\xef\x94\x17\x87\x7b\xa7\x91\x88\x87\x08\xb5\xd4\xc9\xeb\x86\x0e\x29\xfb\x83\x8e\xd0\xab\x16\x07\xad\x2d\xf4\x44\x1c\xf4\x09\x23\x21\x06\x85\x6d\x77\xde\xbe\x25\x34\xa0\x4a\xa4\x22\x5a\xb1\x13\x0d\xaa\x7a\xfb\x84\x52\xda\xcf\x3e\x77\xda\x30\xf8\x95\x63\x4b\xb8\x60\xa2\x62\x5b\x34\xe8\x96\xc8\x35\x67\x47\x2e\x5b\x58\xb0\x5d\xeb\xd8\x56\x94\x5b\x56\x6a\xb0\xea\x95\x9f\x4f\x91\x82\xfd\x2c\xc0\x55\x50\x97\x9d\x0e\xa2\x38\x78\x03\x54\xc1\x22\x34\x58\xd0\xd1\xb2\x82\x4a\x9a\xa1\xb4\xc8\xd9\x55\x09\x15\x76\x76\x57\x3d\x79\xeb\x8a\xed\xbc\xb5\x42\x01\x0b\xfd\x76\x07\x26\x6a\x14\x7c\xd8\x72\x66\x85\xda\x4b\xaf\x16\x6a\xf2\x2f\x04\xb0\xdf\xad\x27\x15\x17\x2e\xd9\x06\x1d\x74\x00\xd9\xd8\x90\x4a\x2c\x3b\x1d\x34\x6e\xa5\x5e\x21\xee\x0d\x78\x0b\xba\x38\x6e\x91\x5a\x7f\x42\xd3\x62\xf1\xc8\xe5\xf5\x91\xdb\x70\xc3\x6b\xe6\x43\x0d\x03\x0b\x31\x16\x8b\x7e\x09\x56\x18\x28\x2f\x12\x5c\x58\x84\x89\x96\x66\x8d\x65\x5c\x10\x10\xb0\xd3\xc6\xe8\xd3\xf4\x9e\x29\x5a\xac\x33\x6d\xe1\x5a\x1a\xf0\x85\x69\x5e\xe4\xa5\x06\x3e\xb7\x60\x31\xc4\x31\x2c\x96\x93\xb9\x6d\x0f\xce\x87\x48\x48\x17\x9b\x40\x85\x52\x31\x67\xab\x29\x4a\xff\x66\x3c\x84\x94\x90\xb3\x7e\xae\x78\x18\x25\x04\x9a\xd5\x50\x0a\x6c\xc0\xbb\xfe\x3f\xb5\xfd\xb1\x88\xe6\xe4\xb6\xcb\xb5\x2f\xe1\x0b\x71\xfe\xd7\x67\x07\xec\x67\x08\xdd\x79\x9c\xfb\xc4\x29\x40\x6c\xbd\x22\x0d\xcd\x44\xc5\x6e\x15\x89\x0b\xe6\x29\xb5\x4f\xcb\x73\xd1\x41\x52\x40\x16\xa7\xa9\x4a\xe5\x87\x67\x4e\x87\x72\x2c\x85\x75\x80\xbd\x5d\xfc\x5e\x06\x81\x71\xa2\x14\x1a\xc6\x9e\xe3\x93\xae\x06\x6a\x7d\x84\x34\xb8\x4d\x3a\x67\xd9\x1c\x8b\xa8\x7f\x69\x58\x42\xfb\x11\xe7\x28\xc4\x89\x52\x50\x6b\x5d\x9d\x91\x4e\x53\xdf\x8e\x4b\xd6\xb7\x18\xaf\x9e\xc9\x1a\x7c\x6b\x0c\xc8\x51\x2f\xa4\x80\xa3\x80\x4e\x8a\x8f\x68\x3a\x44\x66\x6c\x20\x3c\x3c\xe3\xca\xeb\x7c\x8f\x80\x4c\xac\xbf\x88\xc3\x17\x15\x5e\x51\x62\xbd\xcd\xa5\x51\x3d\xec\x98\x7a\xd7\x5c\xf9\x7e\x22\xd6\x5f\x1a\x8d\x73\x64\x78\x76\x10\x60\xeb\xdb\xcb\xaa\x4c\xd8\x1a\xf6\x42\x5d\xed\x9f\x68\x70\x93\x8e\x91\x87\x85\x07\xbe\x2b\xf1\x8d\x12\xd5\xf3\x7e\x77\x3b\xec\x99\x32\xd2\x96\xeb\xf4\xf0\xc2\xb0\x0c\x50\xb4\x11\x3e\xbf\x2f\xfe\xe2\xc0\x7d\xc8\xce\x23\xd0\x1d\xcd\x53\x02\x92\xfb\x74\x96\x40\xcc\xcb\x32\xc7\xf0\x77\x97\xc0\xc9\xf3\xb0\x1f\x44\x6e\x3a\xe8\x85\x6d\x26\xf3\x5f\xf8\xfe\x3a\xac\xf4\x88\x1a\x90\x5d\xca\x91\x7d\x72\x65\x53\x31\xe6\x14\xcb\x71\xec\xed\xaf\x68\x3a\x46\x60\xe2\xe9\x71\xdf\xc6\x3d\x8f\xf6\x78\x21\x35\x6f\x1a\xdf\xc2\xee\xb4\x96\xc0\xe9\xba\x23\xcd\x1e\xa8\x9c\x8a\xbe\xbc\x0e\xea\x85\xc0\x96\x24\xb2\x39\xb4\xdf\x93\x8c\xe9\xe2\x84\x19\x65\x7a\xa7\xb5\x1c\xd0\xa1\xf7\xe1\xf8\x31\x59\xf8\xec\x40\x2e\xda\x8b\x23\xa8\xd0\xe0\xd8\x70\xf0\x40\xdd\xc6\x23\x9f\x66\xb6\xa3\x04\xdd\x2f\xee\xee\x29\xc2\x5c\x35\xab\xf4\xcc\x99\x16\x50\x76\x20\x14\xd3\xd5\xf9\xad\x4a\x1e\x9a\xf0\x42\xb0\xf3\x88\x99\x3b\x3f\xa2\x56\xc1\xbe\xc3\x1a\xff\x0c\x66\x3a\xc9\xd2\xf1\x9f\x73\x6f\xe8\x61\x6c\xfe\x80\x16\x40\x12\xb2\xe3\xc5\xa7\x13\x37\xa5\x7d\x5d\xe8\xba\xe1\x4e\x84\x6b\x1e\x03\xdc\xc6\xa1\xea\x13\xc1\xd8\x45\xcf\x8f\xed\x4e\x8a\x22\xcb\x93\xcf\x0c\x8c\xa7\x60\x14\xbb\x9a\x15\xe6\x94\x27\xdf\x5e\xdf\x12\xcc\xfe\xe1\x33\xfa\x3f\x27\x95\xa9\xb4\xf9\x9e\x17\x87\xf5\xed\xf5\x2f\xac\x5a\xd1\xa3\xeb\x54\x05\xd0\x68\xf3\x15\xfb\x49\x8b\xf2\xf1\x0d\x3d\xaf\x42\xae\xf3\x4b\xce\x70\x88\xe0\x20\x9f\x19\x5a\xfe\xbd\xbf\xc2\x4b\x97\x08\x1e\xbe\xaa\x30\xe0\x06\x57\xaa\xf9\xf8\x79\x07\xf1\xd2\x30\x35\xf2\xe9\xfe\x05\x21\x95\xee\x58\x5e\x90\x44\x3b\xbf\xad\x12\xa1\x59\xa4\xd4\xba\xb8\xf0\xeb\x62\x7c\x42\x92\xb5\xe3\x59\x36\xee\xd9\x8a\x1b\x9a\x7c\x21\x3c\x2d\x7a\xdd\xdb\x68\xc5\xc6\x29\xe0\xc3\xa3\x39\x7d\x2a\xa5\x87\xab\x61\xe1\xa2\x7d\x26\x72\xc2\x53\x49\x1d\x0d\x34\x1c\xf7\xbf\x00\xcf\xa3\x63\xea\x21\x99\x30\x30\xc2\x25\x32\xfe\x98\xdf\x02\x7a\x6a\x17\xce\xd4\xbb\x32\xef\x6e\xca\x47\x44\x45\x5a\x39\xbd\x8a\xf2\xa8\xac\x91\xd8\x70\x79\xe2\x67\xcf\x40\x2a\x81\x2d\x64\x09\xd6\x09\xc5\x7b\x67\xcf\x84\x77\x17\x6a\x68\xf9\xa4\x69\x2d\xac\xa5\xcb\x11\x7f\x73\xd3\x5a\xa7\xeb\x94\xe4\x90\x91\x62\x9a\xdd\x41\x47\x5d\xc7\x64\xa3\xc4\x03\x37\xa5\xef\xf2\x30\x32\x84\x9f\xed\x0c\x38\xee\x38\x3b\x1a\x0e\x1f\x49\xcd\x47\xc8\x91\xff\xbe\xe3\x46\xfe\x73\x18\xd8\xea\x09\x62\x34\x9c\x50\x3e\x83\x1a\x5d\xce\x34\xe8\x4e\xbd\xd6\xad\x8a\x65\xde\xcf\x5d\xbb\xf8\x9e\xc2\x6f\xac\x2c\x8a\x5c\xb9\xa7\x66\xa2\x77\x7b\x60\xc5\xbf\xe1\x72\x44\xfc\xb2\x24\x3b\xde\x85\x25\x6b\x50\x24\x2f\x25\xad\x98\x3a\xe5\x5b\x29\xf5\x09\x03\xd6\x97\xee\x74\x9b\xed\x34\x13\x0e\xe8\x37\x07\xee\x60\x74\xbb\x3f\x90\xa6\xe8\xd8\xde\x7a\x5d\xf9\xa4\x41\xf1\xb9\xbe\xf5\xbf\xcb\xc8\x0b\x7a\xbc\xd3\xaf\x84\x19\x2c\xed\x6e\xf9\xa5\xe6\x65\xba\x8f\x33\x7e\x17\x1f\xe1\x35\xd4\xda\x9c\xff\x70\x71\x18\x18\x6a\x60\xa1\x20\xe5\x07\x38\x5f\x57\xf3\x29\x43\xbd\xa3\x0a\x62\x27\x06\x41\xcf\x02\xc5\xba\xeb\x8c\xe8\x8a\x96\x60\x40\x9d\x97\xa0\x5e\x22\x9b\xf4\xf7\xa5\x2c\x06\x43\x8d\xee\x57\x1d\x91\x16\x05\xd7\xd3\xe4\x84\x82\x13\xe5\x34\x5c\x89\x62\xf9\xd4\x00\x23\xce\x22\x22\x9d\x51\x95\xc3\x36\xee\x42\x89\x6c\xa0\x13\x6d\x50\x00\x7a\x60\x39\x85\xfc\x34\xeb\x1a\xbb\x73\xfe\xfd\xf5\xfa\x39\x03\x89\x89\x4e\xf0\xda\x77\x55\xd8\x07\x2a\x21\xe7\xec\xb7\xdf\xe2\xa3\x37\xa1\x3d\x14\xe5\x7c\xc5\x2e\xd6\xe1\xdf\xd5\x77\x5c\xa1\x55\xbd\x6a\xe4\xc5\x74\x2e\x6f\xc1\xfc\xda\x0e\x6d\xd0\xbb\x6d\x4f\xbd\x76\xcd\x5d\x71\x88\x1d\x76\xba\x78\x4f\x38\x78\xe6\xc4\xf5\xe5\x53\xf8\xa0\x1a\x35\xb2\x17\x4c\xf8\xb1\xc1\xfb\x0b\xc6\xeb\x93\x7b\xfc\x77\xe6\xea\xbe\x7c\xa0\x1b\xfb\xa3\xef\xe9\xc9\x77\xf2\xca\x81\x1f\xa1\xaf\xbb\xef\xf6\xe9\x97\x31\xf1\xf5\xc9\x11\xfc\x9f\x33\xd3\x7f\xa4\x4b\x7f\xb9\xbb\x23\x6b\xed\x12\x4c\xaf\x4f\xf9\x83\xb7\x2d\x59\xfe\x50\x95\xdb\xa4\x19\x68\x9e\x44\x06\x53\xe0\x5e\x55\x48\x69\x63\x90\x32\xb8\x31\xfc\x1c\x3b\xea\x4d\xde\x51\x4f\x50\xe9\xf0\x3b\xa6\xf0\xdb\x88\xe7\xc1\xac\xd3\xd8\xb7\x5e\x23\x84\x70\x1c\x84\x23\x00\xec\x00\x40\x0d\x4d\xa8\xb6\xbf\x13\x04\xd1\xed\x0f\xb3\xff\x04\x00\x00\xff\xff\x9a\xb3\x68\x48\xd7\x2a\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -129,7 +129,7 @@ func nonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x9, 0x1a, 0xf7, 0xa0, 0x5e, 0xfb, 0xc6, 0x42, 0x29, 0x41, 0x30, 0xff, 0xc3, 0x89, 0xc3, 0x24, 0xf6, 0x31, 0xc8, 0xf0, 0xf2, 0x31, 0x84, 0x93, 0x65, 0xf, 0x3f, 0x57, 0x6e, 0x36, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x0, 0x7f, 0xea, 0x4b, 0x5a, 0xab, 0xc7, 0xde, 0xf9, 0x7c, 0x90, 0x1f, 0x1f, 0x51, 0x3a, 0x5b, 0x8f, 0xd4, 0x5f, 0x6, 0x5e, 0xc8, 0xb2, 0xc3, 0xdd, 0xdc, 0xd7, 0xee, 0x8, 0x6e, 0x53}} return a, nil }