diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab1ab88..9b9799a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.9.2-stable-cadence.1 + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.12.0-cadence-v1.0.0-M4-2 - name: Flow CLI Version run: flow version - name: Update PATH diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index f64ae5f..7d59d9d 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -231,12 +231,9 @@ access(all) contract ExampleNFT: NonFungibleToken { access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { switch viewType { case Type(): - let collectionRef = self.account.storage.borrow<&ExampleNFT.Collection>( - from: /storage/cadenceExampleNFTCollection - ) ?? panic("Could not borrow a reference to the stored collection") let collectionData = MetadataViews.NFTCollectionData( - storagePath: collectionRef.storagePath, - publicPath: collectionRef.publicPath, + storagePath: /storage/cadenceExampleNFTCollection, + publicPath: /public/cadenceExampleNFTCollection, publicCollection: Type<&ExampleNFT.Collection>(), publicLinkedType: Type<&ExampleNFT.Collection>(), createEmptyCollectionFunction: (fun(): @{NonFungibleToken.Collection} { @@ -312,7 +309,7 @@ access(all) contract ExampleNFT: NonFungibleToken { self.account.storage.save(<-collection, to: defaultStoragePath) // create a public capability for the collection - let collectionCap = self.account.capabilities.storage.issue<&{NonFungibleToken.Receiver, NonFungibleToken.Collection}>(defaultStoragePath) + let collectionCap = self.account.capabilities.storage.issue<&ExampleNFT.Collection>(defaultStoragePath) self.account.capabilities.publish(collectionCap, at: defaultPublicPath) // Create a Minter resource and save it to storage diff --git a/contracts/MetadataViews.cdc b/contracts/MetadataViews.cdc index 12708e3..f8695bc 100644 --- a/contracts/MetadataViews.cdc +++ b/contracts/MetadataViews.cdc @@ -624,7 +624,7 @@ access(all) contract MetadataViews { createEmptyCollectionFunction: fun(): @{NonFungibleToken.Collection} ) { pre { - publicLinkedType.isSubtype(of: Type<&{NonFungibleToken.Receiver}>()): "Public type must include NonFungibleToken.Receiver interface." + publicLinkedType.isSubtype(of: Type<&{NonFungibleToken.Collection}>()): "Public type must be a subtype of NonFungibleToken.Collection interface." } self.storagePath=storagePath self.publicPath=publicPath diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index 6229b3d..1eba76e 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -180,7 +180,7 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// Requirement for the concrete resource type /// to be declared in the implementing contract /// - access(all) resource interface Collection: Provider, Receiver, CollectionPublic { + access(all) resource interface Collection: Provider, Receiver, CollectionPublic, ViewResolver.ResolverCollection { /// deposit takes a NFT as an argument and stores it in the collection /// @param token: The NFT to deposit into the collection @@ -198,10 +198,6 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// @return An integer indicating the size of the collection access(all) view fun getLength(): Int - /// Gets a list of all the IDs in the collection - /// @return An array of NFT IDs in the collection - access(all) view fun getIDs(): [UInt64] - /// Borrows a reference to an NFT stored in the collection /// If the NFT with the specified ID is not in the collection, /// the function should return `nil` and not panic. diff --git a/contracts/utility/NFTForwarding.cdc b/contracts/utility/NFTForwarding.cdc index 8d22c09..7136d32 100644 --- a/contracts/utility/NFTForwarding.cdc +++ b/contracts/utility/NFTForwarding.cdc @@ -17,8 +17,8 @@ access(all) contract NFTForwarding { access(all) entitlement Mutable - access(all) event ForwardedNFTDeposit(id: UInt64, uuid: UInt64, from: Address?, fromUUID: UInt64, to: Address, toUUID: UInt64) - access(all) event UpdatedNFTForwarderRecipient(forwarderAddress: Address?, forwarderUUID: UInt64, newRecipientAddress: Address, newRecipientUUID: UInt64) + access(all) event ForwardedNFTDeposit(id: UInt64, uuid: UInt64, from: Address?, fromUUID: UInt64, to: Address?, toUUID: UInt64) + access(all) event UpdatedNFTForwarderRecipient(forwarderAddress: Address?, forwarderUUID: UInt64, newRecipientAddress: Address?, newRecipientUUID: UInt64) /// Canonical Storage and Public paths /// @@ -32,6 +32,23 @@ access(all) contract NFTForwarding { /// access(self) var recipient: Capability<&{NonFungibleToken.Collection}> + /// getSupportedNFTTypes returns a list of NFT types that this receiver accepts + access(all) view fun getSupportedNFTTypes(): {Type: Bool} { + let recipientRef = self.borrowRecipientCollection() + ?? panic("Could not borrow reference to recipient's Collection!") + return recipientRef.getSupportedNFTTypes() + } + + /// Returns whether or not the given type is accepted by the collection + /// A collection that can accept any type should just return true by default + access(all) view fun isSupportedNFTType(type: Type): Bool { + let types = self.getSupportedNFTTypes() + if let supported = types[type] { + return supported + } + return false + } + /// Allows for deposits of NFT resources, forwarding /// passed deposits to the designated recipient /// @@ -56,7 +73,7 @@ access(all) contract NFTForwarding { /// /// @return a reference to the recipient's Collection or nil if the Capability is no longer valid /// - access(all) fun borrowRecipientCollection(): &{NonFungibleToken.Collection}? { + access(all) view fun borrowRecipientCollection(): &{NonFungibleToken.Collection}? { return self.recipient.borrow() ?? nil } @@ -71,8 +88,8 @@ access(all) contract NFTForwarding { } self.recipient = newRecipient - let recipientRef = self.recipientRef.borrow()! - emit UpdatedNFTForwarderRecipient(forwarderAddress: self.owner?.address, forwardarUUID: self.uuid, newRecipientAddress: recipientRef.owner?.address, newRecipientUUID: recipientRef.uuid) + let recipientRef = self.recipient.borrow()! + emit UpdatedNFTForwarderRecipient(forwarderAddress: self.owner?.address, forwarderUUID: self.uuid, newRecipientAddress: recipientRef.owner?.address, newRecipientUUID: recipientRef.uuid) } init(_ recipient: Capability<&{NonFungibleToken.Collection}>) { @@ -80,8 +97,8 @@ access(all) contract NFTForwarding { recipient.check(): "Could not borrow Collection reference from the given Capability" } self.recipient = recipient - let recipientRef = self.recipientRef.borrow()! - emit UpdatedNFTForwarderRecipient(forwarderAddress: self.owner?.address, forwardarUUID: self.uuid, newRecipientAddress: recipientRef.owner?.address, newRecipientUUID: recipientRef.uuid) + let recipientRef = self.recipient.borrow()! + emit UpdatedNFTForwarderRecipient(forwarderAddress: self.owner?.address, forwarderUUID: self.uuid, newRecipientAddress: recipientRef.owner?.address, newRecipientUUID: recipientRef.uuid) } } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 8ca54d7..dc23bba 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,9 +1,9 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // BasicNFT.cdc (5.925kB) -// ExampleNFT.cdc (13.939kB) -// MetadataViews.cdc (25.54kB) -// NonFungibleToken.cdc (10.727kB) +// ExampleNFT.cdc (13.682kB) +// MetadataViews.cdc (25.552kB) +// NonFungibleToken.cdc (10.595kB) // UniversalCollection.cdc (4.31kB) // ViewResolver.cdc (2.718kB) @@ -95,7 +95,7 @@ func basicnftCdc() (*asset, error) { return a, nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x5f\x73\x1b\x37\x92\x7f\xd7\xa7\xe8\xf0\x61\x6b\xe8\x93\x29\x3b\x9b\xf8\x76\x59\xa6\x9d\xc4\x8a\x72\xaa\x72\x74\x2e\x99\x49\x1e\x5c\x2a\x07\x9c\xe9\x11\x71\x9a\x01\x18\x00\x23\x8a\xa5\xd3\x77\xbf\x6a\x60\xfe\x00\x33\x18\x8a\xb2\xeb\xae\x6e\xf9\x60\x53\x33\xdd\x8d\xee\x1f\x1a\x8d\x46\x37\x78\xf2\x0c\x8e\x9e\x1d\x3d\x03\x58\xae\xb9\x06\xae\x81\x09\xc0\x3b\x56\x6e\x0a\x04\x4e\xff\x96\x28\x0c\x33\x5c\x0a\x90\x39\x30\x38\x2b\xe4\x16\x2e\xa4\x78\x7e\x56\x89\x6b\xbe\x2a\x10\x96\xf2\x06\x05\x49\xa8\x34\x17\xd7\x60\xd6\x08\xbf\x7f\x0b\xda\x30\x91\x31\x95\xcd\xe8\xcd\xb9\x21\xc9\x42\x1a\xd8\x30\x65\x48\x10\x51\xc9\x3c\xe7\x29\x67\x45\x4b\x0b\xab\xca\x00\x37\xc0\xb4\xae\x4a\xcc\xc0\x48\x58\x21\xf1\x6b\x5e\xf2\x82\x29\x7a\xb0\x96\x5b\x28\x99\xd8\xc1\xc5\xd9\x52\xc3\x56\x56\x45\xd6\xe9\x69\xc5\xa6\x52\x21\xe4\x95\x48\x49\x69\x56\x70\xb3\x9b\x79\x16\xa6\x52\x18\xc5\x52\x03\x99\x44\xa7\x52\xc7\x4d\x62\xb5\xdc\xac\xb9\x36\x3c\x65\x06\x33\x48\x0b\xa6\x35\xcf\xe9\x2f\x2e\xad\x91\x7a\xa7\x0d\x96\x90\x4b\x05\xdc\x68\xab\xc5\x8c\xec\xcb\x30\xe7\x02\x35\x30\x52\x96\xc0\xbb\x38\x5b\xc2\x96\x9b\x35\x94\x5c\xf0\x92\x15\x50\xa2\x61\x19\x33\xcc\x22\x02\x47\xcf\x4e\x8e\x8e\x78\xb9\x91\xca\x10\x9c\x0d\x9a\x16\x4c\xc8\x95\x2c\x61\xd2\x7f\x3c\x69\xe8\x7f\xe7\xb8\xbd\x44\x2d\x8b\x5b\x54\x35\xad\xff\xa8\xa5\xfb\xb5\x1e\x91\x5e\xea\x9a\x30\x78\x36\x39\x3a\x62\x69\x8a\x5a\x27\xac\x28\xa6\x1d\x36\x3f\x3b\x07\xb8\x38\x5b\xce\x87\xca\xdd\x1f\x1d\x01\x00\x9c\x9c\x9c\xc0\x07\x66\xd6\xb0\x5d\xa3\x42\x8b\x7c\xc9\x85\x41\x05\x7a\x6d\x67\x65\x85\xa0\x8d\x54\x98\xb5\xe4\xcb\x35\x76\x73\xbd\x61\x66\xad\x2d\x8e\x6e\xd2\x8a\x02\xed\x8c\x01\x53\x0d\x23\x70\xd1\x7f\xa9\x50\xcb\x4a\xa5\x08\x66\xb7\x41\x2b\xd8\x37\xa0\x40\x03\xbf\x5a\x25\x3e\x1a\xa9\xd8\x35\x92\x82\x73\xf0\xfe\xe8\x74\xff\x03\x21\x5d\x4b\xa9\x9d\xea\x82\x95\x6e\xca\xc8\x98\x63\xeb\x88\x86\xdc\x85\x86\x81\x94\x09\x58\xb3\x5b\xb4\x0e\x62\x29\x85\xdc\xb6\x82\x56\x98\xb2\xaa\x16\x63\xc7\xce\x59\x8a\x9d\x7b\x29\xfc\xab\xe2\x0a\xc9\xaf\xc9\x7d\xad\x18\xd0\x1b\x4c\xc9\xad\x9c\x34\x12\x5b\x4a\x35\xb4\xa7\xb5\x36\x3a\x13\xb3\x8b\xb3\xe5\x71\xe0\x0c\xb3\xd6\x2b\xea\x49\x8a\x01\xc4\xb3\x39\xfc\x76\x2e\xcc\xab\xef\x3a\x1a\xb2\xe3\x8c\xfc\x83\x8c\x38\xe5\x7a\x53\xb0\x5d\xeb\xb0\x70\xcb\x71\x3b\x2a\x8e\x2c\x20\x88\x15\x17\xd7\xa3\x44\x19\xea\x54\xf1\x0d\x4d\xe1\xa3\xb4\x66\x5d\x95\x2b\xc1\x78\xd1\x52\x86\x6a\xd6\x1e\x73\x29\x77\xac\x30\x1c\xf5\x7e\x3d\x35\x16\xb9\x93\xab\x1a\x86\x39\x7c\x0a\x56\xc1\xcc\x89\xda\x5d\x85\x03\xfd\x82\x02\x15\x4f\x21\xe3\x2e\x92\xa8\x9d\x0d\x5c\x8a\xd1\xba\x27\x0d\xac\xbb\x30\x3d\x3e\x62\xa3\xd8\x1c\xee\x9d\x25\x73\xf8\x51\xec\x3e\x1a\x55\xa5\xe6\xc1\xb2\xb5\xbc\x5c\x70\x93\xb4\x7f\xd1\xc7\xc7\xf5\x38\x78\x13\x01\x33\x24\x18\x20\x18\xbe\x7e\x1c\x88\x90\x7e\xaf\x19\x1d\xe9\x14\xee\x03\x36\xc2\x61\xc6\x33\x58\xb8\x6f\x55\xc5\xb3\xe1\x7b\xeb\xff\x0b\x6b\xec\xf0\xa5\x67\x28\x2c\x7c\xb3\x87\xa4\xad\xc9\xb0\xe8\xcc\x1f\x92\xb5\xa6\xc3\xa2\x83\x61\x48\xd6\x7a\xd4\xa2\x35\xbe\x25\x7a\x08\xbd\x24\x55\xc8\x0c\xfe\x5c\x6e\xcc\xee\x5d\x17\xa6\xdc\x53\xb7\x99\xd2\x2b\xe8\xde\x05\xdc\x4c\x64\xa0\xd0\x54\x4a\xe8\x3a\x40\xd8\x78\xc7\x8a\x82\xe2\x28\xfd\xc5\xec\xa6\xb6\xb3\x31\x48\x6e\x85\xdd\x70\x02\x11\x3f\xdc\x0f\xe2\x42\x37\xd8\x43\x74\x95\xe5\x95\x88\xeb\x9d\x4c\xe7\x8f\xc8\xeb\xcd\xb1\xd3\x1d\x5e\x3f\xef\x76\x8c\x59\x5c\xb2\xc8\xcd\x72\xb7\xc1\x39\xd0\xbf\xaf\x7f\xf0\xe8\x2f\xce\x96\x6f\x92\xe9\xd4\x03\x18\xfc\x95\xe1\x2b\x4e\x0b\xdc\x6a\x7f\x8d\xc6\x7a\x2c\x29\xfc\x89\x24\x5e\xc5\x15\xfb\x14\x3c\xa4\x8f\x1d\x3e\xf4\xfa\x3a\xde\xbd\x49\xa6\xc7\x87\x90\xb7\x81\xe7\x50\x86\x9f\x33\x4e\x10\x1c\x4e\x7f\x67\x50\x09\x56\xfc\x76\xf9\xfe\x50\x96\x8b\xb3\x65\x87\xf5\x29\x33\xec\xcb\x18\x9f\x06\xc4\x47\x54\x9c\x15\x87\x52\x2f\x6d\xe0\x7c\x93\x4c\x03\xe2\xab\xd8\xba\xea\xfb\xaa\x72\xbb\x1a\xc9\x49\x3e\x5b\x27\x70\x6e\x34\xf5\x02\xd1\xdb\x7e\xf4\xd9\x72\x93\xae\x9d\xc7\xdc\x0f\xf4\x4b\x99\xc6\xfd\xae\x30\x1f\xf0\x40\xe7\x56\x51\xa6\x24\xca\x01\x6d\x28\x6f\xe3\xdd\x10\xae\xe6\x13\x44\xf6\x7e\x08\x1c\x67\xf3\xe2\x7d\xa8\xd9\x7f\x2c\x97\x1f\xce\x78\x81\xe3\xaa\xd1\xa7\x52\xc5\xbc\x17\x45\x47\xe9\xa7\xd1\x37\xc3\xa7\x63\x00\x7b\x6b\x21\x8e\xb0\x4b\x13\x29\x5f\xa2\xf4\x09\x4a\x76\x07\xa2\x2a\x57\xa8\x68\xf3\xb5\x39\xbf\x8d\x89\x14\x0e\x57\x75\xc6\x99\xb9\xd4\xd6\xf8\xe9\xfd\x98\x6c\xed\x22\x2c\x89\x45\xa7\x0a\xe4\x1c\x8b\x0c\x6e\x59\x51\xd9\x41\x35\xda\x38\x2c\x46\x40\xa0\x7d\xbd\xe6\x3c\x17\xb9\x84\x05\x44\x0d\x4c\xdc\x9c\x4f\xea\x38\x67\x73\x85\xfa\xd5\xe4\xb8\xb6\x68\xde\x6c\x91\xc7\xa4\xcf\x9c\x86\x8c\xc3\xeb\x8d\xf9\x9e\x6b\x33\xd8\xb6\x6b\xc1\x57\xb0\x80\x4f\x9e\x6e\x57\x87\xbb\x70\x33\x2d\xe3\x8e\xe2\x8d\xff\x95\x2e\xd0\x86\x8d\x27\x2c\x31\xc7\x33\xae\x5d\x0d\xe4\x57\x6a\xe6\x47\xf6\x27\x28\xd7\xb2\x3d\xa2\x5f\x3c\xe1\x78\xba\x9a\xe1\xfe\xf0\x04\x45\x3d\xc6\x64\xb2\x36\x66\xa3\xe7\x27\x27\xf5\x61\xff\xb9\xc8\xcd\x4c\x8a\xbc\x90\xdb\x99\x54\xd7\x27\x93\x59\x2a\x45\xca\x4c\x52\x43\x3b\x33\xd2\x25\x7f\xc9\x74\x7a\xb8\xaa\xb1\x7d\x69\xaf\xc2\x5e\x5e\x50\x47\xfd\x77\xf5\x8a\xb6\xd1\xbf\x39\x10\xed\x4d\x25\x8e\x6d\xd4\xf7\x48\x1e\xd7\xe9\x4b\x2d\x3a\x6c\xbb\xf8\x3f\x37\xaa\x55\xeb\x70\xbb\xda\xed\x79\x34\x2c\xe3\x5d\x5a\x54\x59\x13\x73\x97\xdc\x1e\x5c\x33\xc8\xa5\xa4\x78\xa9\xd7\x72\x0b\xd2\xac\x51\x41\xa5\x51\x53\xb4\x76\x22\xc7\x23\x9a\x93\x97\x39\x32\x8a\x5d\x93\x4e\xf4\xe4\x18\x26\xb9\x94\x93\x78\x0c\xb3\xc7\x44\xcb\x46\xca\x0f\x62\x30\x9d\xd8\x96\xd2\xc9\x4d\xe8\x8f\x79\x98\xd6\x1f\xb7\x63\x5f\xb0\x92\x8e\x41\xa1\x2a\xd3\xa3\x31\x08\x3c\xd3\xb9\x06\x06\x95\xe0\x77\x60\x78\x89\xda\xb0\x72\x73\x0c\x5b\x6c\x8a\x1f\x25\x53\x37\x94\xd1\xdb\x0a\x10\x83\xcc\xcd\x08\xe1\x4e\x5b\xd0\xa6\x60\x26\x97\xaa\xd4\x70\x23\xe4\xd6\xd6\xb4\x1a\x08\xb9\x99\x8d\x9a\xdc\x0d\x6f\x15\x1d\xd8\x6d\x9f\x36\x3b\x4f\x80\xa5\xdd\xdd\x7a\x28\x04\x70\x5f\x7d\x73\xec\x2b\x39\x87\xc9\x29\x33\xc4\xa9\x98\xe2\x66\xb7\x67\x73\xea\xe6\x61\xc6\x32\x87\x60\xd2\x53\x74\x1c\x50\x72\x1e\x8b\xa4\x95\xe2\xd0\x22\x67\xa0\x93\x8e\x1b\x79\x14\x8c\x5c\xba\x19\xbe\xb4\x64\x03\x2c\xdc\xe3\x44\xa7\x52\xe1\x1c\x5e\xbe\x98\xbd\xa8\x77\xd9\x97\x2f\xec\xf7\x20\xd5\x9a\xbc\x93\x65\x29\xc5\x64\x7c\xfb\x6d\x46\xdb\x8f\x39\x79\xec\x18\xd8\xd6\x9b\x7b\x20\x0b\x5e\x74\x08\x87\x06\x1d\x0e\x76\xc3\x17\xe7\xd8\x17\x97\x3a\x69\x01\xd5\x43\xec\x24\xe5\xe7\x43\x8e\xa0\x4e\xd8\xa3\xf5\xaa\x2e\x16\x45\xca\x56\xde\x39\xf9\x3e\x38\xca\x86\x95\x16\x4a\x99\x52\x29\x68\x9d\xd8\xba\x32\xf1\x86\x47\x5f\xa2\xb0\xde\x13\x54\x05\xeb\x35\x27\xe0\x4f\x57\xe5\xfa\x13\xce\x4f\x5d\x92\xd7\x3f\x60\x34\xc9\xe2\x14\x6e\x99\x22\x9f\xc3\x8c\x32\x4c\x3a\x03\x3b\xd6\x39\x84\x71\x78\xe4\x8c\x42\xdc\x7a\xac\xe0\x38\xc6\xb0\xa9\x56\x05\x4f\x1d\xfd\x87\xf6\xfb\x51\x50\x11\x82\x24\x5a\x54\x69\x35\x85\xd7\xcf\xe1\x3e\x9c\x2e\x57\xe1\x43\x61\x78\xce\x51\xc1\x02\x26\x29\xcb\x50\xa4\xd8\x59\xd2\xe1\x3f\x19\xca\xf6\xec\x80\x85\x6f\x48\xd2\x49\x9d\x7b\x23\x4c\xbf\x19\xca\xe8\x4c\x83\x85\x67\xdb\xe3\x12\x7a\xb5\x95\x6b\x34\x1f\xab\xcd\x46\x2a\x63\xcd\xa5\x35\xa3\xdb\x72\x09\x83\x82\x6b\xd3\x38\x8a\xb1\xef\xea\x72\x09\x27\xaa\x14\xf9\x2d\x2a\x0b\xfb\xc6\x0c\x8a\x74\x83\x72\xc2\x60\xa0\x64\x3a\x87\x7b\xb7\x4c\x7f\x92\xb2\xe8\x57\x3e\x08\x67\xdd\xf0\x58\x86\x1e\xf9\xa2\x3f\x33\x21\xf5\xa7\x91\x7d\x9e\x92\x78\xa3\x2a\x8c\xad\xc1\x50\xc2\x18\x6a\x97\x35\x40\xdb\x35\xda\xed\x58\x2a\x5b\x87\xa6\x63\xcf\x35\xbf\x45\xe1\x16\x09\xad\x1b\x0b\x0d\x66\xb0\xda\xf5\xca\xec\x81\xbc\x1f\xfd\xfa\x7b\x7b\xf8\x72\xcc\xb6\x74\x6d\xe5\xd5\xfb\xde\x7f\x55\xda\x74\xe1\xa5\x42\x92\x9d\x61\xce\xaa\xc2\xec\x9f\x02\xae\xfb\x33\x90\x98\x36\xd9\x99\x3a\x50\xc3\x29\xe0\xb9\x1b\x79\xb1\x18\xcb\x99\xe2\x35\xa1\x3e\xba\x0f\x80\x85\xc6\x38\x6d\xce\x0a\x1d\x12\x8f\xa1\x4e\x41\x27\x53\x6c\x0b\x0a\x4b\x79\xeb\x4a\x7f\xe4\x98\x79\x53\x55\xf7\x3b\x1c\x22\x03\x47\xd4\xaf\xf9\xf5\x31\x1a\xc4\xce\x3f\x9a\x61\xfe\x7b\x18\x57\xff\x73\x2b\x50\xb9\x8a\x49\xa3\x4d\xd2\x7c\x39\x3f\x6d\x8a\xfe\xf1\x12\x1f\x05\xb7\x88\x87\xdb\xa0\x4b\x51\x26\x8c\x3b\x33\x67\x64\x72\x83\xbb\x39\x74\x43\x0c\x77\xa0\xb7\x6f\x61\xc3\x04\x4f\x93\xc9\x3b\xeb\x1e\xe4\x88\x2d\x52\x35\x42\x36\x5c\x13\x04\x1b\x25\x6f\x79\x86\x99\x8d\xd7\x43\xd8\x26\xbd\x34\xa2\xad\x3d\x5a\x25\xc7\xe6\x25\xc3\x8d\xd4\x04\x33\xbb\xb1\xdd\x39\x1a\x91\xf0\x67\x59\x16\xc0\xdf\x0e\xa3\xbd\x6d\x68\x50\xab\xb5\x5c\x44\x7f\x7e\xda\x70\xf2\x0c\x98\x52\x6c\x37\x5a\xbd\xaa\x35\x48\xac\x9a\xa3\xe0\xf7\x9d\x35\x40\xdf\x7d\x61\xfa\x1b\xe8\x39\x79\x88\x08\x29\x99\x65\xae\x9f\x85\xdb\x9a\xab\x56\xd3\xdb\x5b\xb7\x6b\x9e\xae\x5b\x3f\xb5\x9d\xd8\x22\x03\x29\x70\xa0\x80\x2c\xb2\x65\xdc\x03\x3e\x59\xe1\x33\x9e\x5d\xb5\xfa\x1d\xf5\x9b\x14\x46\xc9\x5d\x2b\x62\x4f\x8c\x3f\x3f\xf5\xa2\xba\x70\x68\x36\x3d\x62\x7a\x67\x63\x0e\x53\x38\x6c\x07\x3e\x1a\xd5\xcf\x4f\x5d\x89\xd8\xb9\xfe\x48\x91\xb8\xe7\xdb\x37\xb8\x1b\x8d\xad\xbf\x60\xdd\xfb\x61\xa5\xac\x84\x69\x6b\x52\x63\xfd\xca\x47\x15\x7c\x8f\xe2\xda\xac\x49\xc7\x73\x61\x0e\x56\x6f\x56\x58\xb6\xc7\x6a\xa7\xed\x40\x2b\xa9\x94\xdc\x5e\x9c\x2d\x93\xcf\x5e\xfb\x6f\x3a\x87\xbf\xc5\x9d\xb1\x5f\x4c\xad\x35\x49\xfe\xd6\x73\x02\x9a\x7e\xa6\x47\xa5\x4c\xc7\x60\xfc\xc9\xea\x63\xb1\xb2\x3a\xaa\xb6\x99\x5d\x37\xf7\xea\xfe\x28\x66\x76\xbd\x9e\x9f\x1e\x62\x9e\xdf\x08\x4d\x7a\x56\x46\x9b\xa4\x03\x33\x79\xee\x3a\x9a\x39\xa5\xf9\x63\xb6\x86\x0b\xb0\x2f\xc2\x43\x8b\xc4\x58\x70\xe2\x83\x3f\x35\xe5\xfe\xba\xae\x53\xb3\x9e\x34\x2b\xbd\xde\x39\x1c\xd0\x86\x0a\x9b\x4d\xb5\x6a\x3f\x76\x63\xa4\x07\x8c\xf1\xaf\xd6\x7c\x7a\xe8\xae\x09\x3c\x1d\xe9\xb8\x0f\xb7\x78\x7c\x65\xdb\xef\x30\x28\x03\x83\x9f\x82\x6b\x8b\x69\x2d\x18\xfc\xf9\xe9\x63\x73\x56\x5f\xb2\x71\xfa\xb6\x21\xbc\x28\xac\x39\xcd\x39\x19\xdc\xf5\x93\xf6\x9a\x8d\x4b\x38\x19\xe5\x2f\xd0\xbb\x44\x54\x0b\x3e\x1a\xb8\x9b\xb7\x2b\xb8\x53\x80\xbd\x6e\xd3\x5c\x37\xf2\x45\xdf\xda\x53\xb9\xbb\xeb\xe3\x6a\xfa\x5b\x5e\x14\xb0\x42\xa8\xb4\x1d\xb9\x15\xde\x7c\x32\xbc\xc5\x42\x6e\x50\x69\x9a\x08\x5b\x90\x71\x3b\xe4\x86\x29\x56\xa2\x41\x7b\xef\x68\xc3\xb4\x6e\x26\xca\xef\x47\x4d\xa1\x44\xb3\x96\xd9\x2c\x50\x7e\x2c\xdc\xfb\x75\x3f\x1d\x29\xfc\xbd\x8d\xf5\x33\xa3\xbd\xcc\x2f\x6a\x02\x1e\x5e\x38\x6c\xd9\xae\x1e\x9b\x74\x0b\x05\x65\x56\xc1\x35\x8c\x7a\x15\x78\x1d\x99\xd9\x70\x76\x2d\xc0\x4d\x3f\x6f\xed\xca\x92\x4d\x10\xc9\x50\x73\x55\xcf\xe7\x6c\xe8\x10\xa0\x6d\xd7\xaf\x52\x34\x1b\x1b\x85\x9a\x4e\x93\xb5\x3b\x28\xfc\xab\x42\x6d\xfa\xcc\xd1\xe5\x73\x58\x3d\xf6\x6d\xbf\xfa\x3a\xd6\x79\xf4\xba\x8e\xd6\x98\x30\x60\x7d\x5d\x95\x9c\xb6\xa6\x2e\xd8\x5e\x62\xde\xdc\xac\x60\x69\x4a\xc9\x48\x73\x74\x9f\xb9\xed\xf0\xb5\xbf\x53\x75\xe2\xdf\x8c\x37\x29\x28\xe7\x9e\xc3\x49\x2d\xe6\x64\x4f\xdd\x20\xde\xc0\x88\x66\xfb\x4e\x19\x5b\xa3\xc9\x51\x91\xc0\x66\x15\xd5\x39\x53\x90\xe0\xef\xb7\xf9\xd4\x5d\xc9\x78\x04\xbc\xb8\x81\x41\x7d\x26\x80\xd1\x2f\x79\xc4\x7b\xac\x7e\xa9\x26\x64\xed\xde\xec\xe3\xf4\xab\x61\x76\xfa\xc7\xa6\x26\xd2\x49\xef\xa4\xbc\xe7\xe2\xc6\x1d\xfd\xbf\x4c\x4a\x74\xa7\x68\x56\xf3\x1c\x92\xbc\x7a\xfa\x16\xec\x7f\xfe\x37\xb6\x63\xff\xf3\x30\x7c\x3c\x7c\x52\x2b\x11\xfa\xcc\x17\x2c\xc2\x3d\x8d\x1d\x77\xb3\x2b\xe3\x43\x57\xfc\x95\x9e\xc6\xdd\x2f\xe7\x05\x3e\xbd\x3b\x6f\x3b\xf3\x6d\xa7\x8e\x69\x8d\x46\xcf\xb6\xb8\xd2\xdc\xe0\x73\x12\xa9\x67\xa9\x2c\x4f\xbe\xcf\x5f\x7d\xfb\xcf\xef\xd2\x17\xe9\xbf\xb3\x7f\xa4\x59\xf6\xea\xbb\xbf\xaf\x5e\xa6\xff\xf8\xf6\x45\xef\x05\xfb\xfe\xfb\x74\xf5\x32\xfd\xe7\xdf\x5f\x7d\x3e\x2b\xe4\xf6\xf3\x1f\x52\x65\x25\x53\x37\x33\x7d\x7b\x3d\x89\x2f\xe9\xb8\x27\x59\xeb\xeb\x36\x01\x2f\x29\x56\xe8\xdb\xeb\x7f\xbb\x2b\x8b\xa1\x94\xd1\x19\x7a\x1c\xfc\x38\x2c\x75\xa5\x9d\xb6\x8b\xa6\xb7\xee\xd5\x33\xe3\xfa\x86\xb5\xfe\xfa\x1a\x70\x9b\xaf\x71\xed\x52\x03\x16\xdc\x7d\x36\x12\xd6\x58\x6c\x60\x27\xab\x26\x43\xa0\xef\x0a\x04\xde\x99\xfa\x16\xf4\xd9\x72\x36\x32\x22\x76\x9d\xd6\xfe\xac\x3f\xa1\x09\x3b\x19\xc1\x5f\xff\x55\x31\x85\xe7\x84\xfc\xdc\x4d\x46\x9c\x6e\xc5\x84\x40\xf5\x38\x9d\x96\x29\x67\x85\x9e\xef\x59\xdc\x13\xb3\xe5\xc6\xa0\x9a\x1c\x64\x4e\x4d\x6c\x9d\x93\x8c\xf9\xbc\x2a\x64\x7a\x93\xae\x19\x1f\xeb\xb1\x3c\xec\xf1\x9c\x87\x7e\x26\xd4\x1c\x8c\xbc\xac\xe4\xb2\xed\x00\xd8\x62\x81\x00\x96\x95\x5c\x80\xa4\x74\x9a\x12\x34\xca\x0d\x9a\x5b\xe4\xee\xd2\x38\x65\xd5\xee\x82\x79\x23\x83\xad\xdc\xbc\x97\x5c\x18\x5b\x40\x69\x93\xee\x58\xf6\xe0\xdf\xcd\x75\x77\x8e\xfd\x4b\xb7\x27\x75\xb7\x90\x52\x7f\xfa\x9f\x12\xa4\x5a\x64\xd3\x13\xa4\x3f\xbd\x93\xed\xfe\x73\x01\xe9\x4f\x99\x14\xde\xc5\xeb\xa8\x94\xcb\xd4\xe3\xfd\xff\xb9\x46\xda\x92\xd3\xb6\x12\x46\x79\x1f\x2b\x68\x83\xea\x9e\x7b\xa6\xc3\x7a\xba\xcd\x0d\x2a\xa5\x50\x98\x9f\xc8\xbd\x60\x61\x33\x6c\xef\x49\xef\xae\x59\xbf\xf1\x69\x69\x26\x57\xb0\x08\xc4\xcc\xd6\xc8\xaf\xd7\x66\x2f\xa7\x6b\x99\xf6\x19\xdb\x46\xf0\xa0\x2a\x67\x13\xe1\x0d\xc7\xd4\xa6\xb7\x6d\xa2\x1c\x9c\x4c\x9a\x06\x30\x96\x2b\xcc\x32\x9a\x6f\xd7\x18\x04\x2e\x8c\x6c\x3a\xa4\x23\x5a\xd9\xde\x22\x2c\x60\xb2\x62\x6a\x32\x18\xbd\x3e\xc9\xb5\x0e\x18\xbc\xbf\x65\x14\xd2\xb6\x34\x25\xdd\xa1\x6f\xe0\x45\x9d\x27\xc5\x2f\xb0\x05\xbe\xb4\xf7\xce\x9a\xe7\x54\xed\xd7\x21\x95\xe7\x5b\xed\xd7\x21\x55\xe7\x30\x6d\x67\x3f\xa0\x19\x2b\x18\x3b\x7b\xe3\x67\x7e\x7b\x11\x7b\x1a\x2e\x65\xf8\x88\xa6\xfd\x95\x40\xfd\xcb\x85\x2e\xe5\xa7\x14\x7c\xf0\xa3\x03\x58\xec\x49\xa4\x1d\x75\x30\xc2\xbb\x66\x8e\xde\x45\x7e\xeb\x40\x61\x41\xb3\xdb\xe6\x37\x04\xb5\xdc\x96\x3d\x4c\x92\xf7\x9d\xdd\x1b\xea\xba\x23\x13\xea\xdb\x89\xf0\x33\xe2\x18\xdf\x07\xbf\xbf\xe7\xb1\x75\xd9\x70\x88\x4e\xff\x80\x42\xb6\x24\xaf\x9f\x77\x9c\xc7\x60\xe4\x3c\xa2\xd5\x34\xc0\xa8\xf5\x63\x37\x0e\xa4\x6c\xc3\x56\xbc\xa0\x35\x32\xfc\x19\xc9\x08\x3a\xef\xd8\xa6\x7f\x6c\x6a\xc5\x70\xd4\xad\x8a\x5c\xeb\x0a\x5f\x47\x0a\x9b\x97\x75\x63\xf1\x78\x5f\x5f\xfb\xe1\x4d\x12\x33\x26\x0a\x4a\x30\xbc\xb5\x4c\xaf\x93\x40\xe1\x63\x60\x66\x3e\xc4\x7e\x1a\x77\xa0\x7a\x2f\x7a\x8a\xf3\xd4\xbf\xdb\x09\xd6\xbf\x13\x93\x8c\x28\xdd\x9b\x49\x27\xc0\xcd\x62\x7c\x3d\x34\xb5\xa3\x87\x23\x38\xfa\x9f\x00\x00\x00\xff\xff\xdb\xe0\xce\x63\x73\x36\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x5f\x73\xdb\xb6\xb2\x7f\xf7\xa7\xd8\xea\xa1\x43\xe5\x3a\x72\xd2\x3f\xb9\xad\x26\x6a\xda\xc6\x75\xaf\x67\x52\xdf\x4c\xa2\xb6\x0f\x19\x4f\x0a\x91\x4b\x0b\xd7\x24\xa0\x02\xa0\x65\x8d\xaf\xbf\xfb\x99\x05\x48\x10\xe0\x1f\x59\x4e\xe6\x9c\x39\x47\x0f\x89\x44\xee\x2e\x76\x7f\x58\x2c\x16\xbb\xf0\xc9\x13\x38\x7a\x72\xf4\x04\x60\xb9\xe6\x1a\xb8\x06\x26\x00\x6f\x59\xb9\x29\x10\x38\xfd\x5b\xa2\x30\xcc\x70\x29\x40\xe6\xc0\xe0\xac\x90\x5b\xb8\x90\xe2\xe9\x59\x25\xae\xf8\xaa\x40\x58\xca\x6b\x14\x24\xa1\xd2\x5c\x5c\x81\x59\x23\xfc\xf1\x15\x68\xc3\x44\xc6\x54\x36\xa3\x37\xe7\x86\x24\x0b\x69\x60\xc3\x94\x21\x41\x44\x25\xf3\x9c\xa7\x9c\x15\x9e\x16\x56\x95\x01\x6e\x80\x69\x5d\x95\x98\x81\x91\xb0\x42\xe2\xd7\xbc\xe4\x05\x53\xf4\x60\x2d\xb7\x50\x32\xb1\x83\x8b\xb3\xa5\x86\xad\xac\x8a\xac\xd5\xd3\x8a\x4d\xa5\x42\xc8\x2b\x91\x92\xd2\xac\xe0\x66\x37\x0b\x2c\x4c\xa5\x30\x8a\xa5\x06\x32\x89\x4e\xa5\x96\x9b\xc4\x6a\xb9\x59\x73\x6d\x78\xca\x0c\x66\x90\x16\x4c\x6b\x9e\xd3\x2f\x2e\xad\x91\x7a\xa7\x0d\x96\x90\x4b\x05\xdc\x68\xab\xc5\x8c\xec\xcb\x30\xe7\x02\x35\x30\x52\x96\xc0\xbb\x38\x5b\xc2\x96\x9b\x35\x94\x5c\xf0\x92\x15\x50\xa2\x61\x19\x33\xcc\x22\x02\x47\x4f\x4e\x8e\x8e\x78\xb9\x91\xca\x10\x9c\x0d\x9a\x16\x4c\xc8\x95\x2c\x61\xd2\x7d\x3c\x69\xe8\xff\xe0\xb8\x7d\x87\x5a\x16\x37\xa8\x6a\xda\xf0\x91\xa7\xfb\xad\x1e\x91\x5e\xea\x9a\x30\x7a\x36\x39\x3a\x62\x69\x8a\x5a\x27\xac\x28\xa6\x2d\x36\xbf\x38\x07\xb8\x38\x5b\xce\xfb\xca\xdd\x1d\x1d\x01\x00\x9c\x9c\x9c\xc0\x5b\x66\xd6\xb0\x5d\xa3\x42\x8b\x7c\xc9\x85\x41\x05\x7a\x6d\x67\x65\x85\xa0\x8d\x54\x98\x79\xf2\xe5\x1a\xdb\xb9\xde\x30\xb3\xd6\x16\x47\x37\x69\x45\x81\x76\xc6\x80\xa9\x86\x11\xb8\xe8\xbe\x54\xa8\x65\xa5\x52\x04\xb3\xdb\xa0\x15\x1c\x1a\x50\xa0\x81\xdf\xac\x12\xef\x8d\x54\xec\x0a\x49\xc1\x39\x04\x3f\x5a\xdd\xff\x44\x48\xd7\x52\x6a\xa7\xba\x60\xa5\x9b\x32\x32\xe6\xd8\x3a\xa2\x21\x77\xa1\x61\x20\x65\x02\xd6\xec\x06\xad\x83\x58\x4a\x21\xb7\x5e\xd0\x0a\x53\x56\xd5\x62\xec\xd8\x39\x4b\xb1\x75\x2f\x85\x7f\x57\x5c\x21\xf9\x35\xb9\xaf\x15\x03\x7a\x83\x29\xb9\x95\x93\x46\x62\x4b\xa9\xfa\xf6\x78\x6b\x07\x67\x62\x76\x71\xb6\x3c\x8e\x9c\x61\xe6\xbd\xa2\x9e\xa4\x21\x80\x78\x36\x87\xdf\xcf\x85\x79\xf1\x4d\x4b\x43\x76\x9c\x91\x7f\x90\x11\xa7\x5c\x6f\x0a\xb6\xf3\x0e\x0b\x37\x1c\xb7\xa3\xe2\xc8\x02\x82\x58\x71\x71\x35\x4a\x94\xa1\x4e\x15\xdf\xd0\x14\x3e\x48\x6b\xd6\x55\xb9\x12\x8c\x17\x9e\x32\x56\xb3\xf6\x98\x77\x72\xc7\x0a\xc3\x51\xef\xd7\x53\x63\x91\x3b\xb9\xaa\x61\x98\xc3\x87\x68\x15\xcc\x9c\xa8\xdd\x65\x3c\xd0\xaf\x28\x50\xf1\x14\x32\xee\x22\x89\xda\xd9\xc0\xa5\x18\xad\x7b\xd2\xc0\xba\x0b\xd3\xe3\x23\x36\x8a\xcd\xe1\xce\x59\x32\x87\x9f\xc4\xee\xbd\x51\x55\x6a\xee\x2d\x9b\xe7\xe5\x82\x9b\xc4\xff\xa2\x4f\x88\xeb\x71\xf4\x66\x00\xcc\x98\xa0\x87\x60\xfc\xfa\x61\x20\x62\xfa\xbd\x66\xb4\xa4\x53\xb8\x8b\xd8\x08\x87\x19\xcf\x60\xe1\xbe\x55\x15\xcf\xfa\xef\xad\xff\x2f\xac\xb1\xfd\x97\x81\xa1\xb0\x08\xcd\xee\x93\x7a\x93\x61\xd1\x9a\xdf\x27\xf3\xa6\xc3\xa2\x85\xa1\x4f\xe6\x3d\x6a\xe1\x8d\xf7\x44\xf7\xb1\x97\xa4\x0a\x99\xc1\x5f\xca\x8d\xd9\xbd\x6e\xc3\x94\x7b\xea\x36\x53\x7a\x05\xed\xbb\x88\x9b\x89\x0c\x14\x9a\x4a\x09\x5d\x07\x08\x1b\xef\x58\x51\x50\x1c\xa5\x5f\xcc\x6e\x6a\x3b\x1b\x83\xe4\x56\xd8\x0d\x27\x12\xf1\xe3\x5d\x2f\x2e\xb4\x83\xdd\x0f\xae\xb2\xbc\x12\xc3\x7a\x27\xd3\xf9\x03\xf2\x3a\x73\xec\x74\x87\x97\x4f\xdb\x1d\x63\x36\x2c\x59\xe4\x66\xb9\xdb\xe0\x1c\xe8\xdf\x97\x3f\x06\xf4\x17\x67\xcb\x1f\x92\xe9\x34\x00\x18\xc2\x95\x11\x2a\x4e\x0b\xdc\x6a\x7f\x85\xc6\x7a\x2c\x29\xfc\x81\x24\x5e\x0e\x2b\xf6\x21\x7a\x48\x1f\x3b\x7c\xec\xf5\x75\xbc\xfb\x21\x99\x1e\x1f\x42\xee\x03\xcf\xa1\x0c\xbf\x64\x9c\x20\x38\x9c\xfe\xd6\xa0\x12\xac\xf8\xfd\xdd\x9b\x43\x59\x2e\xce\x96\x2d\xd6\xa7\xcc\xb0\x4f\x63\x7c\x1c\x10\xef\x51\x71\x56\x1c\x4a\xbd\xb4\x81\xf3\x87\x64\x1a\x11\x5f\x0e\xad\xab\xae\xaf\x2a\xb7\xab\x91\x9c\xe4\xa3\x75\x02\xe7\x46\xd3\x20\x10\xbd\xea\x46\x9f\x2d\x37\xe9\xda\x79\xcc\x5d\x4f\xbf\x94\x69\xdc\xef\x0a\xf3\x1e\x0f\xb4\x6e\x35\xc8\x94\x0c\x72\x80\x0f\xe5\x3e\xde\xf5\xe1\x6a\x3e\x51\x64\xef\x86\xc0\x71\xb6\x20\xde\xc7\x9a\xfd\xcf\x72\xf9\xf6\x8c\x17\x38\xae\x1a\x7d\x2a\x55\xcc\x3b\x51\x74\x94\x7e\x3a\xf8\xa6\xff\x74\x0c\xe0\x60\x2d\x0c\x23\xec\xd2\x44\xca\x97\x28\x7d\x82\x92\xdd\x82\xa8\xca\x15\x2a\xda\x7c\x6d\xce\x6f\x63\x22\x85\xc3\x55\x9d\x71\x66\x2e\xb5\x35\x61\x7a\x3f\x26\x5b\xbb\x08\x4b\x62\xd1\xa9\x02\x39\xc7\x22\x83\x1b\x56\x54\x76\x50\x8d\x36\x0e\x8b\x11\x10\x68\x5f\xaf\x39\xcf\x45\x2e\x61\x01\x83\x06\x26\x6e\xce\x27\x75\x9c\xb3\xb9\x42\xfd\x6a\x72\x5c\x5b\x34\x6f\xb6\xc8\x63\xd2\x67\x4e\x43\x0e\xc3\x1b\x8c\xf9\x86\x6b\xd3\xdb\xb6\x6b\xc1\x97\xb0\x80\x0f\x81\x6e\x97\x87\xbb\x70\x33\x2d\xe3\x8e\x12\x8c\xff\x99\x2e\xe0\xc3\xc6\x23\x96\x98\xe3\x19\xd7\xae\x06\xf2\x33\x35\x0b\x23\xfb\x23\x94\xf3\x6c\x0f\xe8\x37\x9c\x70\x3c\x5e\xcd\x78\x7f\x78\x84\xa2\x01\x63\x32\x59\x1b\xb3\xd1\xf3\x93\x93\xfa\xb0\xff\x54\xe4\x66\x26\x45\x5e\xc8\xed\x4c\xaa\xab\x93\xc9\x2c\x95\x22\x65\x26\xa9\xa1\x9d\x19\xe9\x92\xbf\x64\x3a\x3d\x5c\xd5\xa1\x7d\x69\xaf\xc2\x41\x5e\x50\x47\xfd\xd7\xf5\x8a\xb6\xd1\xbf\x39\x10\xed\x4d\x25\x8e\x6d\xd4\x0f\x48\x1e\xd6\xe9\x53\x2d\x3a\x6c\xbb\xf8\x97\x1b\xe5\xd5\x3a\xdc\x2e\xbf\x3d\x8f\x86\x65\xbc\x4d\x8b\x2a\x6b\x62\xee\x92\xdb\x83\x6b\x06\xb9\x94\x14\x2f\xf5\x5a\x6e\x41\x9a\x35\x2a\xa8\x34\x6a\x8a\xd6\x4e\xe4\x78\x44\x73\xf2\x32\x47\x46\xb1\x6b\xd2\x8a\x9e\x1c\xc3\x24\x97\x72\x32\x1c\xc3\xec\x31\xd1\xb2\x91\xf2\xbd\x18\x4c\x27\xb6\xa5\x74\x72\x13\xfa\x31\x8f\xd3\xfa\x63\x3f\xf6\x05\x2b\xe9\x18\x14\xab\x32\x3d\x1a\x83\x20\x30\x9d\x6b\x60\x50\x09\x7e\x0b\x86\x97\xa8\x0d\x2b\x37\xc7\xb0\xc5\xa6\xf8\x51\x32\x75\x4d\x19\xbd\xad\x00\x31\xc8\xdc\x8c\x10\xee\xb4\x05\x6d\x0a\x66\x72\xa9\x4a\x0d\xd7\x42\x6e\x6d\x4d\xab\x81\x90\x9b\xd9\xa8\xc9\xed\xf0\x56\xd1\x9e\xdd\xf6\x69\xb3\xf3\x44\x58\xda\xdd\xad\x83\x42\x04\xf7\xe5\x17\xc7\xa1\x92\x73\x98\x9c\x32\x43\x9c\x8a\x29\x6e\x76\x7b\x36\xa7\x76\x1e\x66\x2c\x73\x08\x26\x1d\x45\xc7\x01\x25\xe7\xb1\x48\x5a\x29\x0e\x2d\x72\x06\x3a\xe9\xb8\x91\x47\xc1\xc8\xa5\x9b\xe1\x77\x96\xac\x87\x85\x7b\x9c\xe8\x54\x2a\x9c\xc3\xf3\x67\xb3\x67\xf5\x2e\xfb\xfc\x99\xfd\x1e\xa5\x5a\x93\xd7\xb2\x2c\xa5\x98\x8c\x6f\xbf\xcd\x68\xfb\x31\x27\x8f\x1d\x03\xdb\x7a\x73\x07\x64\xc1\x8b\x16\xe1\xd8\xa0\xc3\xc1\x6e\xf8\x86\x39\xf6\xc5\xa5\x56\x5a\x44\x75\x3f\x74\x92\x0a\xf3\x21\x47\x50\x27\xec\x83\xf5\xaa\x36\x16\x0d\x94\xad\x82\x73\xf2\x5d\x74\x94\x8d\x2b\x2d\x94\x32\xa5\x52\xd0\x3a\xb1\x75\x65\xe2\x8d\x8f\xbe\x44\x61\xbd\x27\xaa\x0a\xd6\x6b\x4e\xc0\x5f\xae\xca\xf5\x17\x9c\x9f\xba\x24\xaf\x7b\xc0\x68\x92\xc5\x29\xdc\x30\x45\x3e\x87\x19\x65\x98\x74\x06\x76\xac\x73\x88\xe3\xf0\xc8\x19\x85\xb8\xf5\x58\xc1\x71\x8c\x61\x53\xad\x0a\x9e\x3a\xfa\xb7\xfe\xfb\x51\x54\x11\x82\x64\xb0\xa8\xe2\x35\x85\x97\x4f\xe1\x2e\x9e\x2e\x57\xe1\x43\x61\x78\xce\x51\xc1\x02\x26\x29\xcb\x50\xa4\xd8\x5a\xd2\xe2\x3f\xe9\xcb\x0e\xec\x80\x45\x68\x48\xd2\x4a\x9d\x07\x23\x4c\xbf\xe8\xcb\x68\x4d\x83\x45\x60\xdb\xc3\x12\x3a\xb5\x95\x2b\x34\xef\xab\xcd\x46\x2a\x63\xcd\xa5\x35\xa3\x7d\xb9\x84\x41\xc1\xb5\x69\x1c\xc5\xd8\x77\x75\xb9\x84\x13\x55\x8a\xfc\x06\x95\x85\x7d\x63\x7a\x45\xba\x5e\x39\xa1\x37\x50\x32\x9d\xc3\x9d\x5b\xa6\x3f\x4b\x59\x74\x2b\x1f\x84\xb3\x6e\x78\x2c\x43\x87\x7c\xd1\x9d\x99\x98\xfa\xc3\xc8\x3e\x4f\x49\xbc\x51\x15\x0e\xad\xc1\x58\xc2\x18\x6a\xef\x6a\x80\xb6\x6b\xb4\xdb\xb1\x54\xb6\x0e\x4d\xc7\x9e\x2b\x7e\x83\xc2\x2d\x12\x5a\x37\x16\x1a\xcc\x60\xb5\xeb\x94\xd9\x23\x79\x3f\x85\xf5\x77\x7f\xf8\x72\xcc\xb6\x74\x6d\xe5\xd5\xfb\xde\xff\x55\xda\xb4\xe1\xa5\x42\x92\x9d\x61\xce\xaa\xc2\xec\x9f\x02\xae\xbb\x33\x90\x18\x9f\xec\x4c\x1d\xa8\xf1\x14\xf0\xdc\x8d\xbc\x58\x8c\xe5\x4c\xc3\x35\xa1\x2e\xba\xf7\x80\x85\xc6\x61\xda\x9c\x15\x3a\x26\x1e\x43\x9d\x82\x4e\xa6\xd8\x16\x14\x96\xf2\xc6\x95\xfe\xc8\x31\xf3\xa6\xaa\x1e\x76\x38\x44\x06\x8e\xa8\x5b\xf3\xeb\x62\xd4\x8b\x9d\x7f\x36\xc3\xfc\x7f\x3f\xae\xfe\xef\x56\xa0\x72\x15\x93\x46\x9b\xa4\xf9\x72\x7e\xda\x14\xfd\x87\x4b\x7c\x14\xdc\x06\x3c\xdc\x06\x5d\x8a\x32\x71\xdc\x99\x39\x23\x93\x6b\xdc\xcd\xa1\x1d\xa2\xbf\x03\xbd\x7a\x05\x1b\x26\x78\x9a\x4c\x5e\x5b\xf7\x20\x47\xf4\x48\xd5\x08\xd9\x70\x4d\x10\x6c\x94\xbc\xe1\x19\x66\x36\x5e\xf7\x61\x9b\x74\xd2\x08\x5f\x7b\xb4\x4a\x8e\xcd\x4b\x86\x1b\xa9\x09\x66\x76\x6d\xbb\x73\x34\x22\xe1\xcf\xb2\x2c\x82\xdf\x0f\xa3\x83\x6d\xa8\x57\xab\xb5\x5c\x44\x7f\x7e\xda\x70\xf2\x0c\x98\x52\x6c\x37\x5a\xbd\xaa\x35\x48\xac\x9a\xa3\xe0\x77\x9d\x35\x42\xdf\x7d\x61\xfa\x0b\xe8\x38\x79\x8c\x08\x29\x99\x65\xae\x9f\x85\xdb\x9a\xab\x56\x33\xd8\x5b\xb7\x6b\x9e\xae\xbd\x9f\xda\x4e\x6c\x91\x81\x14\xd8\x53\x40\x16\xd9\x72\xd8\x03\x3e\x58\xe1\x33\x9e\x5d\x7a\xfd\x8e\xba\x4d\x0a\xa3\xe4\xce\x8b\xd8\x13\xe3\xcf\x4f\x83\xa8\x2e\x1c\x9a\x4d\x8f\x98\xde\xd9\x98\xc3\x14\xf6\xdb\x81\x0f\x46\xf5\xf3\x53\x57\x22\x76\xae\x3f\x52\x24\xee\xf8\xf6\x35\xee\x46\x63\xeb\xaf\x58\xf7\x7e\x58\x29\x2b\x61\x7c\x4d\x6a\xac\x5f\xf9\xa0\x82\x6f\x50\x5c\x99\x35\xe9\x78\x2e\xcc\xc1\xea\xcd\x0a\xcb\xf6\x50\xed\xd4\x0f\xb4\x92\x4a\xc9\xed\xc5\xd9\x32\xf9\x18\xb4\xff\xa6\x73\xf8\x72\xd8\x19\xbb\xc5\xd4\x5a\x93\xe4\xcb\x8e\x13\xd0\xf4\x33\x3d\x2a\x65\x3a\x06\xe3\xcf\x56\x1f\x8b\x95\xd5\x51\xf9\x66\x76\xdd\xdc\xab\xfb\xa3\x98\xd9\xf5\x7a\x7e\x7a\x88\x79\x61\x23\x34\xe9\x58\x39\xd8\x24\xed\x99\xc9\x73\xd7\xd1\xcc\x29\xcd\x1f\xb3\x35\x5e\x80\x5d\x11\x01\x5a\x24\xc6\x82\x33\x3c\xf8\x63\x53\xee\xcf\xeb\x3a\x35\xeb\x49\xb3\x32\xe8\x9d\xc3\x01\x6d\xa8\xb8\xd9\x54\xab\xf6\x53\x3b\x46\x7a\xc0\x18\xff\x69\xcd\xa7\xfb\xf6\x9a\xc0\xe3\x91\x1e\xf6\x61\x8f\xc7\x67\xb6\xfd\x0e\x83\x32\x32\xf8\x31\xb8\x7a\x4c\x6b\xc1\x10\xce\x4f\x17\x9b\xb3\xfa\x92\x8d\xd3\xd7\x87\xf0\xa2\xb0\xe6\x34\xe7\x64\x70\xd7\x4f\xfc\x35\x1b\x97\x70\x32\xca\x5f\xa0\x73\x89\xa8\x16\x7c\xd4\x73\xb7\x60\x57\x70\xa7\x00\x7b\xdd\xa6\xb9\x6e\x14\x8a\xbe\xb1\xa7\x72\x77\xd7\xc7\xd5\xf4\xb7\xbc\x28\x60\x85\x50\x69\x3b\xb2\x17\xde\x7c\x32\xbc\xc1\x42\x6e\x50\x69\x9a\x08\x5b\x90\x71\x3b\xe4\x86\x29\x56\xa2\x41\x7b\xef\x68\xc3\xb4\x6e\x26\x2a\xec\x47\x4d\xa1\x44\xb3\x96\xd9\x2c\x52\x7e\x2c\xdc\x87\x75\x3f\x3d\x50\xf8\x7b\x35\xd4\xcf\x1c\xec\x65\x7e\x52\x13\xf0\xf0\xc2\xa1\x67\xbb\x7c\x68\xd2\x2d\x14\x94\x59\x45\xd7\x30\xea\x55\x10\x74\x64\x66\xfd\xd9\xb5\x00\x37\xfd\xbc\xb5\x2b\x4b\x36\x41\x24\x43\xcd\x55\x3d\x9f\xb3\xbe\x43\x80\xb6\x5d\xbf\x4a\xd1\x6c\x6c\x14\x6a\x3a\x4d\xd6\xee\xa0\xf0\xef\x0a\xb5\xe9\x32\x0f\x2e\x9f\xc3\xea\xb1\xaf\xba\xd5\xd7\xb1\xce\x63\xd0\x75\xb4\xc6\xc4\x01\xeb\xf3\xaa\xe4\xb4\x35\xa5\x11\x59\xaf\x18\xd5\x13\x34\xdc\x91\x88\x6a\x15\x27\xf5\xaf\x93\x3d\x75\x82\xe1\xd6\x63\x58\xc1\x38\x71\x3f\x3e\x55\x48\x58\x2f\xb2\x00\x85\xdb\x6c\xfb\x72\xb0\xd7\xdc\x4a\x79\xc3\xc5\xb5\x3b\x1c\x7f\x9a\x94\xc1\x58\xda\xf8\xfb\x1c\x92\xbc\x7a\xfc\x26\x15\x7e\xfe\x19\x1b\x56\xf8\xb9\xef\x3f\xee\x3f\xa9\x95\x88\x3d\xe9\x13\xdc\x74\x4f\xeb\xc3\xdd\x7d\xca\x78\xdf\x41\x7f\xa3\xa7\xc3\x4e\x99\xf3\x02\x1f\xdf\xbf\xb6\xbd\x6b\xdf\xcb\x62\x5a\xa3\xd1\xb3\x2d\xae\x34\x37\xf8\x94\x44\xea\x59\x2a\xcb\x93\x6f\xf3\x17\x5f\x7d\xff\x4d\xfa\x2c\xfd\x6f\xf6\x5d\x9a\x65\x2f\xbe\xf9\x7a\xf5\x3c\xfd\xee\xab\x67\x9d\x17\xec\xdb\x6f\xd3\xd5\xf3\xf4\xfb\xaf\x5f\x7c\x3c\x2b\xe4\xf6\xe3\x9f\x52\x65\x25\x53\xd7\x33\x7d\x73\x35\x19\xee\xda\x0d\x7b\x92\xb5\xbe\x2e\xa4\xf3\x92\x56\x97\xbe\xb9\xfa\xaf\xdb\xb2\xe8\x4b\x19\x9d\xa1\x87\xc1\x1f\x86\xa5\xae\x45\x53\x40\x6d\xba\xcf\x41\xc5\x6f\x58\xdf\xb8\x1a\x5e\x5f\x94\xf5\x19\x0d\xd7\x6e\xf3\x64\xd1\xed\x60\x23\x61\x8d\xc5\x06\x76\xb2\x6a\xf6\x50\xfa\xae\x40\xe0\xad\xa9\xef\x09\x9f\x2d\x67\x23\x23\x62\xdb\x8b\xec\xce\xfa\x23\xda\x94\x93\x11\xfc\xf5\xdf\x15\x53\x78\x4e\xc8\xcf\xdd\x64\x0c\xd3\xad\x98\x10\xa8\x1e\xa6\xd3\x32\xe5\xac\xd0\xf3\x3d\x8b\x7b\x62\xb6\xdc\x18\x54\x93\x83\xcc\xa9\x89\xad\x73\x92\x31\x1f\x57\x85\x4c\xaf\xd3\x35\xe3\x63\x5d\x88\xfb\x3d\x9e\x73\xdf\xcd\x15\x9a\xa3\x43\xb0\x6f\xbf\xf3\x35\x72\x7b\x9c\x16\xc0\xb2\x92\x0b\x90\x94\x70\x52\x0a\x43\xbb\x67\x73\xcf\xda\x5d\xab\xa6\xbc\xd3\x5d\xc1\x6e\x64\xb0\x95\x9b\xf7\x92\x0b\x63\x4b\x0c\x3e\x2d\x1d\xda\x5f\xc3\xdb\xab\xee\x56\x6e\x78\x2d\xf5\xa4\xee\xa7\x51\x72\x4c\xff\x53\x0a\x51\x8b\x6c\xba\x66\xf4\x33\x38\xfb\xed\xcf\x9c\x49\x7f\xca\x35\xf0\x76\xb8\xd2\x48\xbb\x7d\x3d\xde\xbf\xcf\x45\x4b\x4f\x4e\xdb\x4a\x1c\xe5\x43\xac\xc0\x07\xd5\x3d\x37\x31\xfb\x15\x67\x9b\x31\x54\x4a\xa1\x30\x3f\x93\x7b\xc1\xc2\xe6\xa0\xc1\x93\xce\x6d\xac\x6e\x6b\xd0\xd2\x4c\x2e\x61\x11\x89\x99\xad\x91\x5f\xad\xcd\x5e\x4e\xd7\x54\xec\x32\xfa\x56\x69\xaf\x6e\x65\x53\xc5\x0d\xc7\xd4\x26\x80\x3e\x95\x8c\x72\xf7\xa6\x45\x8a\xe5\x0a\xb3\x8c\xe6\xdb\xb5\xce\x80\x0b\x23\x9b\x1e\xe2\x88\x56\xb6\xfb\x06\x0b\x98\xac\x98\x9a\xf4\x46\xaf\xcf\x3a\xde\x01\xa3\xf7\x37\x8c\x42\xda\x96\xa6\xa4\x3d\x16\xf5\xbc\xa8\xf5\xa4\xe1\x2b\x5e\x91\x2f\xed\xbd\xd5\x15\x38\x95\xff\xda\xa7\x0a\x7c\xcb\x7f\xed\x53\xb5\x0e\xe3\x7b\xdf\x11\xcd\x58\x49\xd5\xd9\x3b\x7c\x2a\xb6\x57\x95\xa7\xf1\x52\x86\xf7\x68\xfc\x3d\xfa\xfa\x6e\x7f\x9b\x14\x63\x91\xcf\x7a\xd7\xf2\x61\xb1\x27\xf5\x74\xd4\xd1\x08\xaf\x9b\x39\x7a\x3d\xf0\xd7\x00\x14\x16\x34\xbb\x69\x6e\xd9\xd7\x72\x3d\x7b\x9c\x3a\xef\x3b\xdd\x36\xd4\x75\xcf\x22\xd6\xb7\x15\x11\xb6\xc9\x86\xf8\xde\x86\x1d\xb0\x80\xad\x4d\x99\x63\x74\x58\x9a\xca\x4a\x98\x46\xec\x8c\x6c\x49\x5e\x3e\x6d\x39\x8f\xc1\xc8\xf9\x80\x56\xd3\x08\x23\xef\xc7\x6e\x1c\x48\xd9\x86\xad\x78\x41\x6b\xa4\xff\x87\x16\x23\xe8\xbc\x66\x9b\xe6\xca\x76\xa3\x95\x17\xc3\x51\x7b\x15\xb9\xd6\xd5\x78\x86\x3d\xa4\xe9\xa0\xc5\x91\x6c\xab\xb6\x5e\x27\x91\x36\xc7\xc0\xcc\xbc\x0f\xec\x74\xd8\x3b\xea\x8d\xe6\x31\x9e\x51\xff\xd9\x4a\xb4\xb8\x9d\x98\x64\x44\xe9\xce\x34\x39\x01\x6e\x8a\x86\x9d\xbd\x29\x9d\xdc\x1f\xc1\xd1\x3f\x02\x00\x00\xff\xff\x81\x20\x3f\xee\x72\x35\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -111,11 +111,11 @@ 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{0xca, 0xe1, 0x92, 0x48, 0x63, 0x6c, 0x7b, 0x24, 0xfd, 0xef, 0xe6, 0x1c, 0x57, 0xc8, 0x40, 0x82, 0x3f, 0xfd, 0x9d, 0x81, 0x5d, 0x24, 0xac, 0x68, 0xcf, 0xcf, 0xe7, 0x65, 0x92, 0x0, 0xa2, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xd7, 0x35, 0xe8, 0xcd, 0xc6, 0x87, 0x70, 0x6d, 0xfd, 0x33, 0xda, 0x97, 0xdd, 0x33, 0x3e, 0x50, 0x1b, 0x26, 0xf3, 0xda, 0x87, 0x9a, 0x9d, 0x8b, 0xd5, 0xa, 0xdc, 0x1f, 0xb2, 0x64, 0x9d}} return a, nil } -var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\x6d\x73\x1b\xb9\x91\xf0\x77\xff\x8a\xb6\x52\xe5\x48\xcf\x43\x91\xf2\x66\x6f\xeb\x8e\xb5\xcc\xc6\x6b\x5b\x89\xae\x6c\x9f\xcb\x96\x93\xab\x72\xb9\x2c\x70\xa6\x49\x22\x9a\x01\x26\x00\x46\x14\xe3\xf2\x7f\xbf\x42\xe3\x65\x30\x2f\x14\x47\x8a\x37\xd6\x07\x7b\x38\x03\x34\x1a\x8d\x7e\x47\x03\xbc\xac\xa4\x32\x70\x5e\x8b\x35\x5f\x16\x78\x29\xaf\x51\xc0\x4a\xc9\x12\x8e\x5a\xef\x8e\x1e\xf9\x96\x6f\xa4\x18\x6a\xdc\x7d\x1d\xdb\xff\x95\xe3\xf6\x1d\x6a\x59\xdc\xa0\xf2\x6d\xd3\x57\x47\x8f\x1e\xcd\x66\x33\xb8\xdc\x70\x0d\x99\x14\x46\xb1\xcc\x00\x2f\xab\x02\x4b\x14\x46\x83\xd9\x20\x94\x68\x58\xce\x0c\x03\x6d\x98\xc8\x99\xca\xa1\x52\xb2\x92\x1a\x73\xea\xcb\x05\x9c\xbf\xba\x78\x7b\x7a\xf6\xd3\x1f\x7e\x9a\xda\x37\xf4\xf6\x1d\xae\xe6\xb0\x31\xa6\xd2\xf3\xd9\x6c\xcd\xcd\xa6\x5e\x4e\x33\x59\xce\xa4\x58\x15\x72\x3b\x5b\x15\xbc\xd2\xb3\x65\x21\x97\xb3\x92\x71\x31\x63\x55\x55\xf0\x8c\x19\x2e\xc5\xec\x87\xb3\x1f\x9e\x9e\xfd\xd7\xd3\x9f\x4e\xc5\xca\x9c\x86\xc1\xa7\x65\x1e\x61\xbf\x37\xaa\xce\x8c\x06\x26\x72\x50\xa8\x65\xad\x32\xd4\x90\x31\xd1\x60\x0e\x52\x20\x48\x05\xa5\x54\x48\x7d\xe2\x24\xcc\xae\x42\x3d\x81\x8c\x15\x05\xe6\x70\xc3\x71\xab\xa7\xf0\x92\x65\x1b\x7a\xa6\xcf\xa0\xb0\x52\xa8\x2d\x01\xa8\x2f\x83\x9c\xaf\x56\xa8\x2c\xdc\x6b\x2e\x72\x90\xab\x08\x6f\x02\xba\xce\x36\xc0\x34\x30\xc8\x14\x32\x23\x15\x2c\xb9\x5c\x2b\x56\x6d\x76\xd4\x5b\x2a\x60\xf0\xdf\x6f\x5f\xfe\x19\x78\xc9\xd6\x08\x2b\x5e\xa0\xa3\x13\xcb\x32\xd4\xfa\x98\x15\xc5\x49\x43\xfc\xd7\x1e\xb0\x5d\x25\x0d\x5f\x1e\x3d\x02\x00\xb0\x70\x5e\x70\x5d\x15\x6c\x07\xdc\x0e\xb5\x64\x9a\x67\x1e\xe3\x0d\x33\xc0\x45\x56\xd4\x39\xba\x05\x13\xac\xc4\x09\xe4\xa8\x33\xc5\x2b\x4b\x52\x4b\xa9\x08\xc7\x6c\xea\x72\x29\x18\x2f\x60\x65\x51\x13\x20\x97\x7f\xc7\xcc\x4c\xe1\xb5\xd4\xc6\xff\xd0\xa0\x37\xb2\x2e\xf2\x84\xa0\xc6\xb2\x88\x1d\x70\x1a\x20\xd1\xff\xe9\x1c\x34\xad\x4b\x44\xd4\xe3\x1e\xc6\xbd\xf4\x98\x59\xea\x59\x2c\xfd\xb0\x69\x9b\x4e\x7b\xae\x61\xc5\xb1\xc8\x61\xcb\x8b\x02\x96\x08\xb9\x83\x8c\xb9\x65\xba\x82\x6b\xcf\x03\x66\x83\x0a\x57\x52\xa1\xc7\xba\x05\x66\x49\x6f\x95\xb1\x33\xcd\xa4\xc8\xb8\xc6\xe1\x31\xd3\x99\x14\x68\x08\xd7\xb9\xe5\x35\x2e\xd6\xed\x99\x3c\x83\xad\xe2\xc6\xa0\x68\xd1\xf8\x1b\x4d\x8b\x41\x8e\x86\xf1\xc0\x9c\x6d\xb0\x93\x16\x28\x2d\x89\xe9\x97\x48\x6c\x0e\x37\xa8\x96\x52\x23\x1c\xe3\x74\x3d\x05\x06\x15\x53\x8c\xf8\x10\xb8\xd0\x06\x19\xf1\x2d\x03\xcd\xc5\xba\x40\x28\xb8\xc0\x93\x71\x94\x48\x66\xb9\x8f\x20\xba\x64\x45\x91\xb0\x56\x94\x20\xf6\x40\xda\x78\xfe\x5b\x22\x30\xd8\xe2\xf2\x74\xa5\x38\x8a\xbc\xd8\x91\xf8\xc0\x31\x9f\x22\xc9\xd4\x04\xde\xbe\xf9\xf3\x49\x0b\x08\xc9\x83\xa7\x4b\x9f\x61\x26\x76\xe2\xd7\x50\x29\x24\xd1\x9f\x00\x9a\x6c\x1c\x15\xe2\xe4\xe6\xf0\xe5\x9c\x17\xf8\xb5\xa1\x01\x2d\x14\x17\xdc\x1c\xc7\x57\xf6\x2f\xe5\xa0\x49\xeb\xcb\x00\x45\xdb\x0d\xfa\x83\x85\x2f\x27\xf0\xa5\xd5\x52\x63\xb1\x9a\x92\x5c\x2d\x68\xc0\xfe\xc7\x94\x49\x17\xe9\xd0\xfd\xa6\xcd\x02\x2e\x1a\x14\x62\x33\x87\xc4\xd7\x46\x25\xfd\x05\x8b\x0a\x15\x18\x09\x6b\x6c\xe4\x9e\x98\x98\xd4\x2c\x5b\x21\x6c\xd9\xae\xa5\x30\x6c\xbf\x3f\x59\xd6\x2c\x89\x6c\xc1\x10\xcd\xe1\x19\x28\x24\x25\x9b\xa1\x85\x68\xf9\x45\x05\xc3\x15\xb4\x7c\x03\x41\xa1\xa9\x95\x80\x67\x02\x24\xcd\x85\x15\x71\x7c\xa7\x86\xf6\x6a\xa9\x55\x2d\x2c\xba\xbe\xf5\xf1\xe7\x0e\x1a\x4f\xbe\xa4\xf6\x71\x1a\x1e\xbe\x9e\xc0\x3c\x8c\xf0\x4b\xb2\x04\x7c\x45\xcc\x41\x1c\xb0\x68\x81\x9a\x7a\xec\x2d\xb8\xe3\xcb\x5d\x85\x3f\xfb\xee\x7f\x3c\x3e\xe9\x2e\x62\x80\xe2\x41\x00\xd3\xbf\x24\x6a\x14\x3a\x7f\x7e\xee\x37\xad\x0f\x5f\x1f\xf5\x9f\x7c\x43\xe1\xd7\x30\x59\xb9\x3f\xa3\x40\xc5\x33\xe0\xc2\xa0\x5a\x31\x4b\x72\x2b\x36\x8d\xe1\x03\xe6\x24\x4d\x1b\xa9\x30\x07\x2b\xc3\x0a\xe4\x6a\x05\xd9\x86\x71\x31\x05\xcb\x94\x3a\x82\xf3\xe2\x56\x6b\xcc\xed\xda\xc5\x85\xd4\xce\xe6\xe9\x09\xdc\xf0\x1c\xa5\x53\xd7\xd2\xea\x6b\x28\x31\xe7\xec\xa0\x2d\x69\xf0\xb3\x03\x26\xb4\x48\xdb\x12\xc9\xec\xb2\xd6\x8a\x1f\x9f\x44\x15\xd5\x99\xf2\x5f\xc9\x58\x4a\xc0\x5b\xeb\xbb\x84\xf9\x39\xeb\xa9\x3d\x3c\xeb\x3f\x01\x23\x5b\xf1\x97\xcb\xcb\xb7\x70\x2c\x15\x3d\xbc\x3f\x81\x0f\xef\x5e\x1d\xc4\xd6\x36\xb5\x78\xce\xef\xc2\xd6\x2e\x74\xad\x8a\xbe\x26\x6d\xb4\x48\xf2\x79\x50\xdc\x6b\x65\x05\xb4\x56\xa9\x68\xde\x83\x32\x1d\x90\x9e\x4b\x02\xe4\xfd\xe2\x3e\x4c\xc1\x86\x43\x2e\xde\x9e\xbf\x8f\x34\xa2\x5f\x7e\xf9\x81\x29\x6c\x98\x22\x87\xe5\xce\x8a\x37\x57\xe4\xf5\x58\xe7\x82\xe7\x28\x0c\x5f\x71\x54\x70\xfc\xfc\xe2\xc5\x49\x04\xa2\x18\x31\x8b\xd9\x30\xb2\x8c\x5c\x61\x66\xe0\xc3\xbb\x8b\x29\x3c\x83\xac\xe0\xb6\x6f\xe2\x3a\x12\x1f\xd6\x1a\x9d\xb3\xf2\xfc\xe2\x45\xe3\xf4\x48\x58\x59\xcf\xcd\xf2\x5f\x21\x19\xf9\x0c\xde\x1f\xbb\xe1\xcc\xae\x37\xa1\xbb\x66\x06\xb7\x6c\x77\x70\xa1\x6d\xe3\xd6\x42\xb7\x2c\xd0\xf3\x8b\x17\x96\xa5\xec\x10\x03\x13\xb4\x5e\x17\xe1\x47\x23\x3a\x6f\x30\xe9\xdd\x82\xd4\xf2\xa2\x73\x99\xe9\x29\xaf\x56\x7a\xca\xe5\xcc\xba\x32\x58\x19\x3d\xf3\x23\x9c\xb2\x3c\x57\x96\x83\xc5\x7a\x36\xca\x9c\x65\x3c\x1f\x36\xe6\x6f\x99\xd9\x90\x44\x24\xaa\xb5\xb2\xef\xbc\x52\xa6\x45\x0f\x0a\x99\x94\xbd\x27\x9e\x5b\x1d\xa9\x76\xa3\x0c\x3c\xd7\x20\x45\xb1\x03\x81\x98\x5b\xfb\xbc\x6a\x80\x73\x6d\x3d\x16\x9e\x63\x5c\xf2\x3b\x81\x8e\x20\x92\x05\x7b\xaa\x77\xda\x60\xa9\xc7\x91\xc7\xce\x38\xd0\xe7\x97\x21\x19\x4d\xe8\x37\x69\xb7\x1e\x14\xd9\x8c\xe7\xb0\xb0\x44\xef\x7f\x22\xe2\x2e\x08\xc6\x90\x3c\x37\x74\xab\x45\x46\x5c\xee\x04\xd6\x31\x18\x51\x5e\x30\xc3\x6f\xd0\xaa\xa8\x86\xbb\x7a\x8c\x75\x07\x9d\x36\x72\x7b\x6a\xe4\xcc\xb3\xd0\xa9\x7d\x7d\x2a\xc5\xe9\x16\x97\xb3\xdf\x39\xd8\xa7\xb5\x2a\xf4\xde\x15\x08\xd6\xd8\xba\xf8\xda\xa9\x18\xcb\x96\x8c\x0b\xfb\x18\xd7\xb5\x56\xfc\x20\xed\x47\x69\x2c\x6f\x2e\x3d\xe1\x1a\x22\xee\x35\x95\x47\x76\x4a\xf3\xd9\xec\x68\x6a\x59\x82\x99\xe3\xb0\x26\x27\xe1\xc5\xd1\xec\x28\x3e\x5b\x58\x27\x1d\xe3\x3a\xa4\x31\xf7\x43\x3d\xac\x43\xa3\xa5\x0d\x6a\x74\xcb\xcd\xc6\xc5\x28\x4a\xa1\xae\x24\xcf\xed\xbc\xc9\x4a\x5a\xe7\xe1\xa0\x4a\x7a\x6d\x5b\x76\x35\x11\x69\x27\xc7\x12\xe8\x60\x8d\x62\xfe\x15\xa9\xb6\xae\x97\xeb\xc2\xe8\x9c\xb3\x53\x0a\x92\x33\x59\xa2\x95\x61\xb7\xbe\x52\x95\xe4\xe5\xef\x2a\x9c\xe9\x7a\x49\x2d\x98\xf6\xde\xe6\x12\x73\xb0\x31\x1a\xb4\x60\x45\x56\xc4\x1b\x2c\x64\x85\x6a\x5a\xca\x7f\xf2\xa2\x60\x53\xa9\xd6\x33\x14\xa7\x1f\xde\x13\x9b\xce\xfe\x86\xcb\x99\x35\xad\xb3\x5f\x6d\xd4\xab\x3f\xcb\xd5\x67\xfa\xf9\xfa\xe2\xf5\xcb\xcf\xe4\x68\x8e\x9a\x55\xa4\xe5\x5d\xa6\x37\x9d\xfa\xa4\xdf\xa5\x2d\xdb\xb4\xde\xb6\xc7\xc2\xfe\xd3\xfd\x10\x3b\x2f\xe2\xd3\x7e\xbe\xf8\x9b\x62\x95\xf5\xa5\x1d\xff\x4b\x05\x65\x5d\x18\x5e\x15\x7e\xd9\x5c\xa2\x62\x14\x0f\xe8\x2e\x13\x3c\x13\xc0\xd4\x92\x1b\xc5\xd4\xee\x54\xf3\x7f\x62\x4e\xa1\x90\x0f\xff\x77\x20\xea\x72\x89\xd6\xb9\xf3\x3c\xc4\xad\x96\xdc\x4b\x45\xfa\x3a\x87\x8f\xd4\xf6\xd3\x10\x09\x3f\x77\xda\x0c\xea\x43\x6a\x02\x8b\xce\x60\x07\x22\x0c\x3f\xbf\x7f\x6b\x80\xd1\x18\x41\x3f\xfa\xb8\xf0\xc2\x35\xbe\x57\x74\xe1\xba\x3c\x34\xb8\x70\xbd\x47\xc6\x16\x91\x51\xa0\xf3\xf7\x0d\x42\x8b\x21\x0d\x57\xf0\x0c\x85\x75\x19\xb3\x4c\x2a\x52\x6c\x46\x46\xf9\xd7\x55\x7e\x4b\x22\xef\x5b\xe9\x66\x1d\x2f\x43\xd2\xa9\x15\x61\x78\x5f\x21\xf8\x56\x72\x65\xf5\xe6\x9b\xf3\x4b\xeb\x38\x78\x18\xf9\x41\x7d\xf9\xca\xa3\xb4\xdf\x49\xb7\x78\x5d\x44\xbf\xed\x2e\xa5\xf1\x39\xf1\xef\xee\x74\xdc\xdb\x20\x2d\xfb\xc7\x1f\x63\x65\x20\xe0\xfd\x9d\x84\x20\x0c\x3f\x4e\x0a\x7c\xeb\x7b\x89\x81\xef\xf3\x50\x39\xf0\xdd\x47\x0a\x42\x9f\x0b\x7e\x03\x49\x88\xf1\x92\x75\xd0\x88\xe8\xd6\xc3\x35\x58\x02\xa5\x66\x01\x6f\x0d\x2a\x4b\x5c\xcd\x4d\x63\xe8\x7d\x52\x3e\xe1\xfb\xe5\x2e\x0d\x76\x2c\xaf\x5f\x23\x4c\x63\x5c\xf3\x6b\x21\x33\x0b\x5d\x86\x38\xa9\xd6\xa8\x34\xa4\x31\x10\x25\xe1\x14\x5f\x73\x3b\x1a\x25\xc2\x7c\x0e\xd8\x4a\x0f\x25\xaa\x2b\x25\xff\x6e\xfb\x56\x36\x34\xa2\xe0\x38\x98\x70\xe7\x6f\xda\x86\x99\x2c\x0a\x24\x57\xb4\x41\x16\xd7\x51\x9e\xb7\xdb\xed\xb4\xdc\x51\xf6\xde\x43\x73\x99\xff\x1b\x54\x96\xee\xa7\x72\x45\xdf\x1a\x28\x87\x44\xf5\xa5\xa7\x8f\x25\xdf\x83\x63\xea\xcf\x30\x22\xaa\x5e\xdc\x19\xff\xb6\x05\x31\xc5\xea\x3b\x09\x63\x8a\xc2\x38\x81\x4c\x7a\xdc\x4b\x28\x93\x7e\x0f\x15\xcc\x04\xc4\x48\xe1\x1c\x5e\xf7\x6f\x2e\xa0\x8e\xc9\x57\x5c\x60\x88\xd9\xcb\x4a\x6a\xb6\xb4\x61\xae\xdc\xb1\xc2\xec\x9a\x9d\x2f\x6a\xbc\xe6\x37\xa8\xa1\x64\xea\x1a\x4d\x55\xb0\x0c\x35\xb0\x46\xcc\x6a\x61\xf5\x79\x9e\xa6\xd6\x24\xe8\xba\x72\xdb\x77\xe7\x97\x1e\x28\x47\x7d\xd0\x46\xbd\xf3\xc3\x77\x1c\xba\x90\xbc\x6b\x6f\x04\xbe\xc3\x0c\xf9\x4d\x4c\x30\x20\x2c\x51\xe0\x8a\x67\x9c\xa9\x5d\x48\xc0\xfb\xf9\xb4\xb3\x15\x8c\x38\x23\x98\xd4\x4c\xa1\x41\xb7\x0d\x16\x3a\x05\xc0\x14\xa2\x84\x5f\xd3\x35\x1a\xbb\xae\xc7\x27\x9d\x20\x33\x93\x65\x89\x22\x77\x09\x99\x53\xf8\x40\x4a\xc8\xa7\xf3\x69\x87\xcc\x6a\x42\x81\xdb\x44\xff\xc0\x79\x21\xb7\x6e\x16\x2d\x60\xaa\x3d\x25\xae\xa1\xd6\xd6\x79\xb8\x5a\xa3\xf1\xb4\x09\xb3\x7e\x5b\x2f\x0b\x9e\xbd\x65\x66\x73\x7c\x72\x35\x21\x7d\x28\xa4\x69\x83\x73\x99\x21\xb4\x8b\xcd\xea\xc2\x24\xa3\xc6\x49\x39\xa5\x4b\x1b\x33\xac\x28\xe4\xd6\xeb\x50\x23\xa1\xae\x72\x8b\x7a\x0b\x20\x91\x8c\x55\x6c\xc9\x0b\x6e\x28\xf1\x4d\xb1\x50\x6d\x6a\x45\xab\x5e\x93\xd6\xa7\xcd\x99\xb5\x5f\xb3\xa6\xf9\x5e\x45\x16\x90\x99\xc3\xf3\xd8\xf8\xe7\x27\x5f\x5a\xab\x3d\x0d\xf3\xfe\xfa\xc7\x36\x6f\xbc\x76\x61\x83\xf5\x2e\x42\x36\x36\x63\x45\x56\x17\x16\x79\x8b\x1d\x2b\x65\xed\x9c\x26\xcd\x0a\x84\x1b\x56\xd4\x08\x46\x31\xa1\x57\xa8\x94\xeb\xd1\x5e\x04\xcf\x84\x0d\x8d\xde\x48\x83\x70\x0a\x17\x26\xd9\xa5\x59\xa2\xd9\x22\x0a\x38\x9b\x9e\x11\xf1\x9f\x4e\xcf\xda\x60\x5e\xde\xda\x2e\x8e\xa3\x92\x91\xb9\x86\x5b\xea\x50\x36\x88\x73\x0d\x67\xd3\xff\xf8\xc9\x36\x15\x29\xdb\xb6\x01\xba\xfe\xdb\x80\x00\xf5\xf8\x7f\x70\x3b\xed\x8b\x0a\x2b\x8a\x1d\x54\xa8\x32\x14\xc6\x9a\xb5\x35\x26\x99\x6e\xb7\x37\x64\x50\x95\xda\x12\x65\xc9\x34\xd7\x50\x49\x2e\x4c\x2b\xaa\xb4\x8d\xb4\x2c\x78\x6e\x17\x7a\xc9\x2c\x69\x75\xc9\x94\x89\x1b\xb7\x1a\xb6\x1b\x1b\x6d\x67\x2c\x27\x7d\x2e\x57\x2b\xcb\x39\x57\x1f\xce\xf9\xed\x4f\x3f\x5e\x75\x19\x87\x19\x60\x85\x42\x96\xef\x82\x6e\x70\xca\x27\x1d\x9f\xf8\x27\x63\xda\x52\x37\x63\xf6\x07\x37\xba\x0d\xc8\x86\xcd\xde\x1b\x60\x0a\xc1\x3a\x93\x0a\x8b\x1d\xe4\x68\x67\xc4\x05\xd7\xc6\x67\xf9\xd7\x36\xc4\x4b\x5a\x8b\x3c\x2a\xa5\xb6\x90\x54\x96\x03\xfe\x33\xa0\x20\x57\x50\x29\xcc\xb8\x8e\xd6\x7e\x88\x65\xb3\xda\xcc\xc1\xcd\xb4\xcd\x8e\xff\x13\x4c\x55\x6b\xc7\x2b\xf5\x6c\x9c\x0c\xd9\xc9\xd9\xa1\xd8\x2e\x64\x8c\xfc\x9a\x4f\x7a\x02\xa7\xb0\x70\x73\xd8\xf0\x2a\xb2\x9d\xfd\x70\xb5\x65\x45\x81\xe6\x2a\xec\x09\x5b\x65\x3b\x01\x17\xe4\x9a\x8d\x85\x8b\x85\xc6\xfe\x3a\x90\x53\xb4\x15\xa8\xa0\xe4\xeb\x8d\x81\x2d\x13\x86\x74\x76\x85\x19\x5f\xed\xf6\xcf\xfa\xce\x7d\xd1\xc6\xf3\xb8\xa7\x3c\x4f\x52\x6a\x4e\x86\x06\xe9\xda\xce\x4a\x0d\x39\xb0\x59\x6d\xe0\x8f\x0b\x12\xc8\x27\x4f\xe8\xd7\xcf\x0b\x12\xcb\x39\x1c\x3d\xaf\x8d\x97\x9f\x46\x82\xb9\xb0\xaf\x78\x0e\x8a\x89\x35\x02\x9f\x22\x7c\x3c\x9b\x3c\xfd\x74\xb4\xc7\xc0\x42\xf0\x9b\xa2\x96\x5e\x44\x1d\x31\x90\xff\xac\x0d\x2c\x2c\x16\xfd\x4f\x87\xf7\x27\xef\x91\x2d\x09\x26\xd3\x15\x76\xc4\x0e\xaf\x53\x63\x6d\x39\xef\x1f\x35\xaa\x9d\xb3\x29\x57\xef\x82\x41\xbe\x0a\x86\x97\x0a\x65\xde\x9c\x5f\x26\xde\xb3\x65\x2a\x12\xb1\xdb\x0a\x33\xe3\xf4\x64\xc5\x76\x8d\x35\xf7\x5a\xc1\x25\xc4\x6c\x84\x44\xec\x13\x9c\xf5\x91\xb6\xde\xc2\xe9\xa6\x6f\x94\x62\x3b\xcf\xa9\x8a\x65\xd7\x4e\x4f\x70\x91\xf3\x1b\x9e\xd7\xac\x68\x30\xe8\x32\xaa\xa5\x6e\x94\xcf\x0b\xb1\x92\x7a\x0e\x1f\x3d\x81\x3e\xdd\xb1\x61\xe4\xfd\xe5\x81\x4e\x5d\xce\xb3\x3e\x94\xe5\x19\x67\x5c\x98\x01\x5d\x53\x1a\x90\x15\x05\x71\x5c\xa3\xd4\xa3\x0b\x60\xad\xf2\x12\x61\x4d\x9e\x80\xdf\xd9\x79\x3a\x3d\x6b\x81\xbd\x61\xd6\xcb\x36\xac\x78\x4e\x5c\x73\xd6\xf9\x6c\x17\x3c\x98\x04\x2e\x22\x9e\x03\x32\x90\x00\x89\x8f\xff\x3f\xf4\x9d\x76\xb9\xb1\xcd\xdb\x4c\x6b\x54\xe6\x38\xf6\x73\xd2\x33\x81\x12\xb5\x66\x6b\x9c\xc3\xd1\x7b\x37\xd9\x38\xfe\xf8\xd9\x1e\x9d\x74\xc9\xf8\x4c\x6b\xbe\x76\x7a\x2c\xc0\x1b\x14\x22\x37\xd2\xa2\xdf\xa8\x93\xa8\x7d\xe7\x9c\xde\x14\x1e\x65\xfd\x06\x33\xa5\x9d\x1d\x75\x46\x1c\x97\x64\xf0\x5d\x6d\x07\x26\xbc\xee\x98\xf6\x70\xde\x35\xa6\xf3\xa3\xc7\xc6\x51\x1f\x9f\x24\x2c\x75\xc7\x66\xe4\xc0\x1c\xe1\xae\x88\xac\x11\xa1\xef\x14\x8f\xbd\xeb\xd0\xe7\x50\x34\xd6\x50\xe4\x3e\xb1\x58\xec\xf5\xd0\x48\x2c\x02\x18\x19\x87\xa5\xaa\xa9\x2b\x61\xdf\xa4\x16\xc1\xd9\x60\xb7\xc9\x48\x5a\x24\x1a\x25\xf2\x61\x49\xde\xc9\xb2\x58\x66\x6c\xab\xbb\x98\x28\xa1\xb2\xb8\x06\x04\xb9\xf0\x78\x83\xc2\xd4\xe4\xfe\xa5\xb0\x58\xf4\xc6\xf5\x96\x9b\x6c\xb3\x94\x36\xb4\x0b\xb6\x6b\x12\xe1\x6e\x1c\x23\x84\xba\xb5\x65\xed\xc1\xd2\xbe\x65\x0b\xb9\x48\x20\xfb\x4b\xc8\x4e\x8d\x5c\x77\x8b\xac\x89\x55\x62\xac\x16\x10\xb2\xe1\x61\x6a\x43\x87\x98\xa7\x2f\x53\x83\x51\xd0\x3c\x1d\xe7\x4b\x77\x1d\x66\x15\x7d\x9c\xf9\x58\xf2\xfc\xf2\x5d\x3a\xec\x81\x74\xae\x2f\x21\x73\x1b\xb9\x49\x31\xa4\xcf\x67\xbd\x39\xbf\x9c\xf6\x16\x27\x44\x23\x14\x6a\x2a\xc6\x9d\x6f\x99\x98\xb1\x6b\xdc\xcd\x9c\x4f\x52\x31\xae\x34\xb0\x42\x8a\xb5\x8b\x39\xb5\x2c\x1b\xb9\xa3\xb4\xef\xad\x5d\x56\xda\xca\xa0\x71\xd9\x52\xd6\x8e\x89\x08\xf4\x21\x5b\x7b\x69\x1b\x25\x34\x19\xa8\x4e\x24\x38\x53\x78\xc5\xaf\x11\x7e\x65\xd9\xf5\x5a\xc9\x5a\xe4\x13\x78\xb9\x43\x3d\x81\xbf\x30\xae\x3a\xa5\x63\x63\xcb\x07\x69\xa4\x5a\xe4\xa8\x0a\xf2\x75\xdd\x94\xd3\x51\x27\x41\xf1\x98\xf0\x9a\x08\xad\x5d\xf9\x1e\x35\x81\x4a\xc9\x1b\x9e\x63\x20\x46\xd0\x56\x04\x6c\x3f\x4e\xf4\x79\x0e\xcf\xc4\xce\x95\xd0\xb6\xf0\xf2\xb5\x72\x56\x43\xa4\xeb\xa5\x37\x72\x4b\x0b\x10\xc7\x72\xc4\xde\x3a\xd7\x99\x6b\x47\x36\xeb\x1e\xb9\xa9\x44\x46\x49\x81\x5b\x3e\xe7\x42\x1b\x26\x32\x9c\xc0\x4e\xd6\x90\x91\x88\xeb\x80\x95\x1d\x8a\x41\x2d\xf8\x2d\x18\x5e\xa2\x36\xac\xac\x5c\x18\xef\xdd\xf0\x16\x7e\x4c\xc3\xd1\x0b\x66\xf0\x88\x26\x8e\x45\x91\x8e\x55\x15\xcc\xac\xa4\x8d\xe7\x6c\xf0\x2b\x85\xae\x4b\x5f\x11\xe2\x68\x47\xb5\xba\xe4\xb2\x84\x2c\x01\xf3\x7b\x60\xfb\x3d\xfd\x66\xec\x81\xa2\x00\x6b\x6e\x99\xb2\x81\xa1\xf5\x2c\x59\xa1\x65\xd4\x0e\x2e\x13\x5b\xec\xbc\x64\x30\x63\x14\x5f\xd6\xa6\xb5\x33\xdf\x66\x0e\x27\x2d\xd1\xa4\x84\xc8\x8f\xd0\x2c\x8a\x06\x82\xa6\xca\x09\x3f\x45\xff\x2e\xb0\xc1\x9b\xf3\xcb\xdf\x6b\x50\x84\xd3\x7e\x6e\x70\xdf\xe7\x1e\xf7\xc1\x22\x87\x56\x05\x63\x8f\x7d\x26\x83\x74\x99\x74\x01\xdf\xbf\x62\xd1\x71\xc4\xc2\x0d\x38\x10\x30\x24\x9c\xb0\x48\x71\x18\x88\x4d\xdc\xba\x2c\x3c\x4e\x23\x23\x0a\x52\x77\xa4\x26\x83\xe7\x13\x34\xd6\x61\xfd\xe6\x3b\xfa\x0e\xb4\x5b\x39\x42\xc5\x45\x70\xa9\xa4\x0d\xa8\x38\x64\xd9\xc6\xeb\xa6\x3b\x95\x9b\xbe\x23\x51\xee\x50\x9b\xc3\x47\x6a\xb9\x67\x0b\xb7\xd3\x68\x70\x0d\xfd\x1c\x17\xbe\xf1\x80\xd1\xb7\x7f\xed\x60\x26\xcf\x75\x63\x40\x9c\x1e\xf6\x4c\xeb\xf1\xb6\x48\xb4\xba\xb4\xbd\x54\xe7\xb6\x51\xdb\x39\xa9\x52\x27\xd3\x7e\xee\x86\x24\x8f\xe5\x39\xe6\x07\x5d\x53\x6b\x41\x59\x9e\x13\x28\x3b\xe1\xb9\x83\x7a\xc7\x4c\xa7\x96\x45\x44\x7e\x6c\xee\xa8\xef\x68\x7b\xa4\xc9\x9c\xbe\x97\x4f\xea\x51\x18\xe7\x90\xba\xc6\xf7\xf2\x46\x5d\x97\x87\xba\xa2\xae\xf7\x48\x3f\xb4\xc7\xd9\xe1\xef\x1b\x38\xa1\x7e\xdd\x62\x8d\x95\x91\x80\x4c\xf3\x82\xe2\xa0\x1b\x54\x86\x6a\xd1\xe8\x1b\x53\x3b\x5a\x09\xc7\x13\x70\x2e\x15\xa5\xf5\x13\x07\x25\x6c\x6c\x69\xbf\xb9\x20\x49\x7d\x93\xbe\x46\x4e\x05\x8d\xa1\x20\x3e\xac\x12\x69\x05\x6f\xe1\x2f\x9d\x13\x10\xe1\x91\xe9\x2a\xd1\x6c\x64\x2c\x8b\xd7\xf5\x6a\xc5\x1d\x43\xac\xf9\x0d\xf9\xa8\x25\xd9\x17\x8a\xdc\xe4\xca\x67\x72\x3c\x8a\xfb\x18\xcd\xce\xc7\x09\x51\x7b\x66\x4b\x0c\x93\x76\x2a\xed\xb2\x11\xef\xa4\x37\xde\xd2\x91\x93\xfc\x0d\x2b\x51\xcf\x5b\x95\xd8\xbe\x68\xcb\x61\xe3\xed\x77\xc8\xeb\x5d\xd9\xb1\xae\x22\xb0\xf0\x77\x8d\x3b\x4f\x2d\xa6\x9c\xb5\xdb\x32\xe1\xc7\x5f\x62\x66\xb5\xe2\x95\xc3\xe3\x6a\xd0\xa7\x26\x07\x9a\xd9\x0e\x5d\x3d\xb2\x8f\xdd\x2d\x1e\x97\xd2\x73\xbc\x23\xc5\x17\x87\x78\x62\xe2\xbe\x4e\xba\xf3\xfc\xe8\xda\x7c\xfa\xe5\x64\xde\x67\xc8\xd9\x0c\x9e\xc7\xd5\x77\x49\x45\xed\xb3\x8a\x61\x4a\xd1\xa4\x78\xa7\xce\x6d\x1a\x70\xd5\x38\xd1\xfe\x2c\x4f\x3e\xed\x78\x8d\xbb\x4e\x7e\x72\xc3\x44\x5e\xa0\xb3\x18\x44\x64\x1b\xe8\x50\xc2\xd3\x34\x8d\xff\x5e\xeb\x64\x6c\xe2\x93\x00\x9f\x0a\x9d\x8b\x62\x9a\x0a\x6e\x6b\xb2\xf0\x78\x61\x45\xa5\x23\x70\xd6\x95\xbb\xb6\x68\xb7\xda\x3e\x1e\x10\x4b\x4b\xd4\xa9\xc2\x52\xde\xe0\xf1\x35\xee\xe6\x70\xdd\xad\xaa\x6b\x9e\xe2\xe3\x80\x85\x82\x05\x7c\xfc\xf4\xa8\x37\x3e\x81\x27\xbe\x69\x0f\x1d\x21\xc0\xc2\xad\x90\x77\x63\xae\xa3\x07\x63\x7b\x7e\xbc\xfe\xf4\xb8\xe3\xc0\x08\x5e\x34\xce\x8b\xe0\x45\x1b\xdb\x8e\x0d\x20\x5b\x31\x34\x81\xc0\x94\x8e\xb1\x5c\xaf\x93\xae\xba\x89\x79\xf1\x98\xc1\xec\x69\x0d\xae\x75\x8d\x4d\x62\xd3\x1f\xcc\x8a\x10\x28\x30\x72\x9b\x29\x25\x1d\x75\xd3\xbc\xe4\x05\x53\xc9\xc9\x34\x0b\x16\x6f\x59\x69\xbb\x33\x01\xff\x6b\x15\xc3\xd3\xb3\x33\xeb\x74\xbb\x8d\xae\x08\x8c\x0b\xeb\x30\xbb\x2d\x3b\xe7\xcb\xac\x6a\x77\x3e\xcc\xe5\xd4\xdd\x7e\x41\xba\xe3\xd9\x38\x40\xcf\x5c\xf5\x80\x63\xb7\xa5\x75\x6d\x14\x05\x2e\x11\x73\xcc\x39\x4d\x6b\x02\xdb\x0d\xcf\xa8\xb6\x78\xbb\xa1\x0a\xf0\xf0\x69\x1f\x1e\x8e\x94\x96\x53\xb5\xd3\x6e\xbe\x8a\x0d\x5c\x15\x1b\xe9\x97\x43\xb1\xde\x4b\x37\xc4\xa1\xd3\x68\x29\x26\xa1\xcd\x79\x43\xbf\x89\xd3\xc2\x59\xc8\x4b\xbc\x47\x33\x81\xb7\x05\xdb\x4d\xe0\x3d\x2a\x8e\xba\xbd\x4f\xe1\x2b\xeb\xdc\x49\x87\x2d\xdb\x25\x85\x15\x0e\x44\x56\x30\xad\x6d\x54\x63\xf5\x47\x20\xd0\xa8\x58\xf2\x97\xfe\x3c\x7c\xff\xa4\x90\x6f\xcf\x61\x2b\x9a\x11\x13\x70\xf4\xc3\x8f\x81\x17\x8e\x7f\xf7\xc3\x8f\xb3\xa7\x67\x67\x27\x47\x54\x91\xe2\x62\x4f\x0f\x88\x6b\xf8\xe1\xc7\x3b\x22\x5c\x6a\x35\x87\x0f\x17\xc2\x74\xf7\x7d\x2c\x5a\x25\xbb\x1d\x44\xcd\x06\x62\x7e\x7b\xd9\x33\xf5\xb4\xd3\xb7\x7b\x0a\x2c\x24\x5c\x7c\xd4\xeb\x92\x2e\x05\x2f\xb9\xc1\xfc\xd4\x0f\x81\xf9\x30\xb4\x11\x53\xb6\x88\x72\x6d\xbf\x0d\x76\xa5\x4a\x1d\x12\xb7\x5a\xf8\x41\xc3\xbc\x5c\xdf\x26\x5d\x65\xc3\x59\x23\xad\xee\x18\x77\xa6\xac\x64\xb7\x81\x7e\x07\xe3\xaf\x5f\x26\x1d\x8a\x4f\x5a\xdd\x07\x1c\x28\x8b\xdb\xa0\x0a\x87\x26\xbd\xed\x17\xe6\xe7\x85\x6d\xfd\x38\xcd\x6e\x5f\x36\x8c\x90\x31\x31\x94\xc8\x36\x7e\x91\x5d\xab\xc7\x47\xfb\xb4\x3b\x8c\x0a\xfa\xfc\x58\x8b\x6e\x2c\x1e\x1b\xd8\xa1\x08\xcd\x91\x51\x5c\x6b\x5f\x28\xa8\x81\x51\x75\xb4\xbe\xf1\xbf\x50\x49\xdb\x13\xe9\xd6\x6e\x63\x4b\x5f\xb2\xa0\x31\xf7\x72\x89\xd5\x8a\xaf\xb8\x36\x73\xf8\xe8\x31\xdb\x57\x77\xdb\x6f\x38\x5c\x7c\xeb\xdb\xc1\x22\x76\x19\x1b\xd1\x44\xd2\x7c\xaf\x53\x7e\x11\x81\x91\x05\x4f\xbe\xf9\xfd\xaa\x9d\x7c\xa7\x07\x97\x3a\xf9\xfe\x63\xeb\x9c\x1a\x76\xeb\x4a\xe9\xb7\x2a\x72\x8a\x49\x39\xf2\xcb\x83\x31\x3a\x75\x65\x4f\x39\x68\x54\x9c\x15\x81\x7f\x5d\x8e\x3c\xec\x5f\x5a\x6e\x8d\xc0\xde\xba\x8e\x1a\x36\xec\x06\x93\x63\xf1\x04\xc8\xcf\x82\xdc\x06\xf2\xe4\x3b\x70\xa3\x9e\x8c\xe0\xde\x5b\xdf\xb5\x64\xbb\x58\x9a\x43\x7b\xae\x0a\xd7\xb5\xf5\x64\x2e\x5e\xb8\x04\x60\xda\x28\x39\x8b\xdf\x04\x5c\xce\x98\x86\x43\x60\xee\x9c\xcf\xd4\x9d\x46\x69\x21\xc0\x75\x6b\xfb\x76\x89\x50\x0b\xfe\x8f\x9a\x8a\x62\xfc\x81\x41\xb2\xde\x64\xb6\x09\x15\xab\xf6\xc9\x43\x67\x26\x10\xed\x90\xf2\x78\xef\x86\xdc\x9f\x7f\xd9\x67\x37\x53\x49\x6e\xb7\x19\xce\xa0\xed\xd1\x97\x07\x04\xd8\xa3\xf7\xbd\xc4\xd7\x0f\x3f\x4e\x78\x5d\xe3\x7b\x89\xae\xeb\xf2\x50\xc1\x75\xbd\x47\x8a\x6d\x6f\xa1\xbf\xb5\xd0\x36\xa5\xc3\x3e\x8d\x99\xba\xc7\x5e\x48\x5d\x22\x2d\xc9\x6e\xda\xde\x54\xa0\xe5\x82\xe9\xd0\x55\x20\xe6\xda\x45\x8d\x37\x18\xb2\x10\x3a\x93\x8a\x62\x87\xb4\x04\x63\x59\x1b\xe0\xee\x04\x7d\x04\x48\x9d\x96\xb2\xc9\x53\xee\x63\x7e\x9f\x07\xff\xd2\x73\x06\xfd\x50\xbe\xa2\xd0\xb5\xa2\x44\xfc\x81\xcc\x3b\xf5\x0b\xd5\x30\x03\xbe\x6f\xc9\x6e\x79\x59\x97\xcd\x36\x0a\x75\x38\xe0\x70\xed\x03\x36\x70\x9d\x43\x8a\xaa\x3b\xda\x76\xe0\x74\x63\x0c\x11\x5e\xe1\x1a\x45\xce\xd4\x6e\x02\x2f\x2b\x9e\x4d\x2c\x6d\x70\x02\x1f\x44\x26\xcb\xd2\xba\x8e\xcf\xe9\xff\x76\xac\xe0\x4f\xcf\xb5\x13\xdf\x23\xea\x8e\x06\xbd\xc7\x36\xed\x26\xad\xc9\x0f\x16\x16\x0d\x39\x91\x6e\xe1\x16\xce\x8d\x7c\xf2\xa4\x45\xa3\xc5\x3e\xe7\xb2\x62\x82\x67\xc7\x47\xcf\x02\x3f\x44\xee\xd3\x61\x49\xdb\xf7\x93\x48\x45\xdc\xd5\xf3\x20\xfb\x5a\xcf\xa3\xd3\x59\x66\xd8\xef\x23\xc2\xbf\x50\x66\xd4\x29\x2f\x70\x73\xf9\x9e\xc9\x5c\x8f\xc2\xc8\xea\x02\x6a\x7c\xbf\xd2\x02\xb7\x63\xf3\xd0\xba\x02\xea\x3d\xb6\xa8\xa0\xab\x29\xc2\xdf\x37\xd0\x9e\x6f\xce\x2f\x49\x81\x6e\x15\xab\x34\x25\xdc\x9e\xd3\x05\x29\x74\xa5\x8e\xdb\x74\xb9\xe2\xb9\x2b\x14\xbc\xaa\x6b\xfb\xe8\xb2\x71\x6e\xc7\x31\xec\xe6\x44\x78\x21\xcd\xca\xa8\x36\xbc\x40\x83\x50\xf1\x8c\xaa\x7c\xe3\xe1\x23\x7f\x7f\x0e\x79\x0d\xc3\x97\xe7\x44\x70\xa3\x6e\xd1\x09\x73\xd8\xef\x47\xf0\x3c\xfa\x10\xfb\x9a\xd8\xb9\x1d\x6c\xe4\x73\x60\xf3\xf6\xd5\x43\xd3\x70\xd9\xc5\xde\x7e\xd8\x94\xe7\x77\xfb\xa6\xc7\x05\xf6\xf6\x6f\x32\x5e\x2f\x98\x61\x73\x3b\xe3\xe7\xad\x57\xa3\xba\x06\xe4\xdb\xbd\x0f\xe1\x1e\x2b\x36\xd2\x72\x9a\xbd\xad\x43\x3e\xd2\xef\x75\x1c\xbc\xf8\x85\xe7\x10\x83\xf4\xd6\x07\xbb\x1e\x7b\x3e\xf9\x55\x80\x7d\xcb\xd0\x6e\x9d\xd0\xbe\xd7\x23\x25\x7e\xbb\x57\x9b\xe2\x30\x44\xf2\xbd\x1d\x22\x7a\x83\x84\x6e\x77\x6b\xea\x61\x52\xf2\x76\x6e\xb8\xe9\xd0\x34\xbc\x1f\x0e\x58\x73\x3a\x2b\xd7\xff\x40\x04\x5d\x10\x5d\x07\x34\xbe\xc7\x39\xee\x11\xf7\x9b\xa4\x74\x5c\xa4\x54\xed\x37\xed\x10\x6f\xd1\xa1\xe6\x9d\x1d\x22\x22\xbd\x77\xfd\x6e\x0d\xf1\x16\x03\xa5\x9d\x30\x6e\xf3\x75\xaf\x11\xf3\x67\xbd\x88\x71\xf7\xd9\x2c\xab\x33\x2e\x7d\x9a\x82\xe7\xbf\x89\x45\x0b\xda\x6d\x9c\x25\xf3\xad\x8f\x1b\x65\x36\xb9\x87\x51\xeb\x6b\x52\x8a\xc2\x56\xe6\xaf\x63\x8c\x9a\xef\x6d\xad\x5a\x6a\x14\x43\xf7\xc1\xfc\x5a\xb0\x4c\xae\xcd\x63\x60\xfa\x71\xc0\x22\x59\xa7\xae\x21\x0b\xb3\xec\xab\x12\x9e\xf7\xd5\xc8\xbc\x8d\xb7\x7d\x35\xa8\x50\xba\xda\x21\xb9\xfa\x28\x05\x70\x32\x5e\xbf\x74\x8e\x91\xdd\x01\xa5\xa7\x6f\x88\x73\xdd\x82\xb6\xf5\xce\x48\x28\x51\x09\x0d\x03\x3a\x3c\xaf\x54\x33\x05\x18\x4d\x15\xe6\x1d\x1d\xbd\xb8\x35\xbd\xfc\xfe\x4e\xab\x4b\xa3\xc4\x0e\xc4\x73\xae\x82\xbb\x09\xe6\xfc\x25\x28\x74\x95\x8e\xbf\xd6\xd0\x28\x8e\x37\x38\x5c\x6e\x72\xd7\xa1\x50\xe7\x64\xd7\x15\xb0\xce\x59\x4d\x97\xc2\xae\x94\xb4\xda\x20\xc2\xb3\x43\xb2\xb5\x1b\xd4\x95\x04\x36\x47\x94\xc6\x1c\x51\xeb\xad\x64\x27\xf6\x73\xb7\xc9\x88\x38\xce\x96\xee\x81\x20\x7f\xc8\x9f\xd8\x56\xe1\xc4\x58\x4c\xca\xb8\x1b\x85\xf6\x6f\x3c\x78\x58\x6f\xfd\xa5\x2b\xf1\x47\xe7\x1e\x1b\x37\x1b\x2a\x09\x75\x1b\x4f\x65\xad\x29\xe3\x5a\x70\x71\xed\x06\xf3\xcb\x31\x30\xf1\xb8\x55\x11\xb2\x5f\x10\xb7\xa8\xb2\xa2\xa6\x23\xec\xf1\x50\x20\x4d\x24\x9c\xf6\xf3\x5b\x65\x5e\x62\x9c\xcb\xd9\x7c\xdc\x3b\xa7\x2a\xd6\x6a\xa6\x75\x9b\xfd\x10\x75\xf0\x84\x5e\xb2\xc8\xe1\x3e\x2b\x37\xb3\x3c\xe8\x64\x07\xbe\x05\x4d\x48\x7f\xf6\x11\x85\xe1\x26\x5c\xf8\x89\xb7\x5c\x9b\x09\x70\x03\x42\x82\xf5\x94\x51\x35\xd1\xdb\xd2\x95\x25\x2a\x1e\x32\x68\x49\x96\x30\xce\xf1\xc0\x14\x1b\x6e\x99\x03\xd5\x6c\xb5\xa7\x68\x67\xd5\xa9\x01\xf6\xcb\xe5\x73\xe7\x6c\x25\x15\xe1\xea\xf6\x7c\xaa\x66\x95\x0f\x0c\xfc\x8a\xc0\xb8\x9d\xde\xfe\xc0\xe7\xb1\xf0\xc3\x1d\xcd\x2a\xe4\x56\xbb\xe3\x8a\x3e\x19\xc0\x04\x60\x59\x99\x5d\x57\xaa\x02\xc1\xed\xfc\x03\x0f\x13\x03\xb7\xc0\x07\x56\xba\xe3\x08\x15\xed\xac\xbc\xb4\x43\xa4\x24\x5a\xd5\xe2\xf8\x64\x0e\x7f\xfa\xd2\xbd\xe1\x75\xda\xb4\x3a\x7c\x13\xe1\x3e\x89\x69\xeb\xb8\x61\x1e\x1c\x6a\xd3\x5d\xc4\xa1\x36\x5d\x7a\x77\x94\xfa\xd0\x74\xc3\x22\x8c\x9d\x76\x54\xb7\xa3\x0e\x44\x75\xd1\x9a\x72\xfd\xde\xdd\x54\x73\x2c\x57\x0e\xc7\x9f\x9f\xf4\x07\x6c\x4e\x66\x1d\x9f\x9c\xcc\xe1\xc8\xeb\x15\x92\x3f\xd2\x28\xbe\x9e\xa2\x77\x35\x6f\xec\xd9\xc8\xc6\xf4\xe0\x61\xaa\x64\xa5\x16\xc9\x73\xbf\x61\xb3\x58\x8b\xe6\x71\x5f\xb3\x86\x68\x8b\xee\x8b\x7d\x5d\x1a\x3a\x2d\xba\x2f\x06\x5c\xdd\xa1\xd5\x5c\xdc\xb9\xc6\x63\x1d\xd6\xbe\x81\xa1\xdc\xcb\x36\x9c\x89\xa2\x8a\xfc\x50\xad\x29\x68\x59\xf2\x58\x5e\xf1\xef\xc9\xca\xf4\x51\x1c\xed\xd6\x76\xbc\xa0\xfb\xe4\x6a\xfa\xb1\xdb\x03\xd3\x36\x3d\x40\x23\x33\x38\x77\x99\xfe\xf0\xf7\xed\x53\xe1\x7b\x5c\x27\x5f\xa9\x4e\xa7\x65\x83\xb2\xfd\x7d\x72\x41\x65\x73\x65\xc5\x28\x17\xca\xa5\x7b\x04\x84\x4b\x2b\xc8\xa8\x47\x68\x74\xab\x2e\xcf\x74\xb0\xbf\x3d\x93\xe0\xbd\x9b\x25\x5a\x0b\x6a\x01\xde\xd3\x8f\xea\x5d\xfd\x39\x9b\xc1\x1b\x56\xf6\x4c\x23\xa1\xbf\xdd\xa0\x08\xde\xbe\xab\xb2\xf3\xc3\x77\xef\xe9\xe8\x0e\x7d\xe7\x31\x85\x17\x49\xba\x74\x68\xd4\x21\x22\x05\x9f\x69\xcc\xc0\x07\x2e\x15\x8e\x97\x3f\xb8\x6b\x02\xc8\xd7\xf0\xd7\xa7\xd0\x50\x74\xa8\x3e\xe5\x83\x70\x04\x64\xe4\xf0\xe3\x92\x57\x2d\x8c\xde\xff\xa3\x66\x0a\xfd\xbe\xbf\xbb\x3b\xb2\x75\x2e\x66\xf4\xd8\x9a\x00\x5d\x94\x54\x67\xd1\x1e\x9b\x2e\x66\x6a\x8d\xfa\x2b\x13\x02\x55\x6b\xd4\x78\x1b\x42\x33\xd8\xa4\xeb\x46\xd3\x8e\x0d\xa3\x42\x29\x10\xc8\x14\x3c\xfd\xe1\xec\xec\xf6\xa7\x3f\x9c\xed\x47\x6b\x49\x23\x8d\x44\xeb\xbd\xcc\xb8\x5f\x1c\xed\xc8\x40\x95\xe9\x6d\xac\x7e\xaf\x41\xbb\x76\x1b\x59\x62\xc5\xd6\xd8\x2a\xce\x81\xb7\xd2\x5f\xb9\x4a\x55\x7c\x25\xa3\x22\x9f\x23\x3a\x27\xb2\x56\xac\x3c\x9a\xc0\x91\xd9\x72\x63\x50\xd9\xc7\x9c\xeb\x4c\xaa\xfc\xe8\xc0\xc1\x1b\x37\xa2\x4e\xaa\x39\xf7\x2e\xef\x6f\x7a\x85\xf3\x38\x0e\x6b\xf7\x39\xc4\x19\xed\xd6\x87\x16\xac\x03\xfb\x3e\x74\x09\x9d\x7e\xd3\xdb\xa6\xef\x91\x7c\x4b\x08\x03\x8b\x94\x4c\xfd\xa6\x09\x55\x60\x91\xd2\x68\x00\xaa\x23\x89\x85\xe8\x9e\x1e\xe6\x94\xa4\xf7\x5e\x0f\xfb\x25\xde\x2d\x89\xd0\xbe\xa3\x7f\xf2\x20\xdf\xe4\x01\x77\x65\x0f\xa6\x89\xbf\x89\x87\x72\xaf\x5b\xb4\x0f\xd8\xd5\xf0\xf7\x70\x3f\xe5\xeb\xa3\xff\x0b\x00\x00\xff\xff\xa5\x6a\x0c\xd4\xc4\x63\x00\x00" +var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\x6d\x73\xdb\x38\x92\xf0\xf7\xfc\x8a\x1e\x6f\xd5\xac\xfd\x3c\xb2\xe4\xcc\xce\x4d\xdd\xa9\x46\x3b\x9b\x49\xe2\xdd\x5c\xcd\xe4\x52\x89\x67\xf7\xaa\x52\x53\x31\x44\xb6\x24\xac\x49\x82\x0b\x80\x96\xb5\xa9\xfc\xf7\xab\x6e\xbc\x10\xa4\x28\x8b\xf6\x66\x36\xfe\x90\x50\x24\xd0\x68\x34\xfa\x1d\x0d\xc8\xb2\x56\xda\xc2\x65\x53\xad\xe5\xb2\xc0\x2b\x75\x83\x15\xac\xb4\x2a\xe1\xa4\xf3\xee\xe4\x89\x6f\xf9\x5a\x55\x43\x8d\xfb\xaf\x63\xfb\xbf\x4a\xdc\xbe\x45\xa3\x8a\x5b\xd4\xbe\x6d\xfa\xea\xe4\xc9\x93\xd9\x6c\x06\x57\x1b\x69\x20\x53\x95\xd5\x22\xb3\x20\xcb\xba\xc0\x12\x2b\x6b\xc0\x6e\x10\x4a\xb4\x22\x17\x56\x80\xb1\xa2\xca\x85\xce\xa1\xd6\xaa\x56\x06\x73\xee\x2b\x2b\xb8\xfc\xe9\xd5\x9b\xf3\x8b\xef\xfe\xf0\xdd\x94\xde\xf0\xdb\xb7\xb8\x9a\xc3\xc6\xda\xda\xcc\x67\xb3\xb5\xb4\x9b\x66\x39\xcd\x54\x39\x53\xd5\xaa\x50\xdb\xd9\xaa\x90\xb5\x99\x2d\x0b\xb5\x9c\x95\x42\x56\x33\x51\xd7\x85\xcc\x84\x95\xaa\x9a\x7d\x73\xf1\xcd\xd3\x8b\xff\x7a\xfa\xdd\x79\xb5\xb2\xe7\x61\xf0\x69\x99\x47\xd8\xef\xac\x6e\x32\x6b\x40\x54\x39\x68\x34\xaa\xd1\x19\x1a\xc8\x44\xd5\x62\x0e\xaa\x42\x50\x1a\x4a\xa5\x91\xfb\xc4\x49\xd8\x5d\x8d\x66\x02\x99\x28\x0a\xcc\xe1\x56\xe2\xd6\x4c\xe1\xa5\xc8\x36\xfc\xcc\x9f\x41\x63\xad\xd1\x10\x01\xb8\xaf\x80\x5c\xae\x56\xa8\x09\xee\x8d\xac\x72\x50\xab\x08\x6f\x02\xa6\xc9\x36\x20\x0c\x08\xc8\x34\x0a\xab\x34\x2c\xa5\x5a\x6b\x51\x6f\x76\xdc\x5b\x69\x10\xf0\xdf\x6f\x5e\xfe\x19\x64\x29\xd6\x08\x2b\x59\xa0\xa3\x93\xc8\x32\x34\xe6\x54\x14\xc5\x59\x4b\xfc\x9f\x3d\x60\x5a\x25\x03\x1f\x9f\x3c\x01\x00\x20\x38\x2f\xa4\xa9\x0b\xb1\x03\x49\x43\x2d\x85\x91\x99\xc7\x78\x23\x2c\xc8\x2a\x2b\x9a\x1c\xdd\x82\x55\xa2\xc4\x09\xe4\x68\x32\x2d\x6b\x22\x29\x51\x2a\xc2\xb1\x9b\xa6\x5c\x56\x42\x16\xb0\x22\xd4\x2a\x50\xcb\xbf\x63\x66\xa7\xf0\xb3\x32\xd6\xff\x30\x60\x36\xaa\x29\xf2\x84\xa0\x96\x58\x84\x06\x9c\x06\x48\xfc\x7f\x3a\x07\xc3\xeb\x12\x11\xf5\xb8\x87\x71\xaf\x3c\x66\x44\x3d\xc2\xd2\x0f\x9b\xb6\xe9\xb5\x97\x06\x56\x12\x8b\x1c\xb6\xb2\x28\x60\x89\x90\x3b\xc8\x98\x13\xd3\x15\xd2\x78\x1e\xb0\x1b\xd4\xb8\x52\x1a\x3d\xd6\x1d\x30\x4b\x7e\xab\x2d\xcd\x34\x53\x55\x26\x0d\x0e\x8f\x99\xce\xa4\x40\xcb\xb8\xce\x89\xd7\x64\xb5\xee\xce\xe4\x19\x6c\xb5\xb4\x16\xab\x0e\x8d\x3f\xd3\xb4\x04\xe4\x68\x85\x0c\xcc\xd9\x05\x3b\xe9\x80\x32\x8a\x99\x7e\x89\xcc\xe6\x70\x8b\x7a\xa9\x0c\xc2\x29\x4e\xd7\x53\x10\x50\x0b\x2d\x98\x0f\x41\x56\xc6\xa2\x60\xbe\x15\x60\x64\xb5\x2e\x10\x0a\x59\xe1\xd9\x38\x4a\x24\xb3\x3c\x44\x10\x53\x8a\xa2\x48\x58\x2b\x4a\x90\x78\x24\x6d\x3c\xff\x2d\x11\x04\x6c\x71\x79\xbe\xd2\x12\xab\xbc\xd8\xb1\xf8\xc0\xa9\x9c\x22\xcb\xd4\x04\xde\xbc\xfe\xf3\x59\x07\x08\xcb\x83\xa7\xcb\x3e\xc3\x4c\x68\xe2\x37\x50\x6b\x64\xd1\x9f\x00\xda\x6c\x1c\x15\xe2\xe4\xe6\xf0\xf1\x52\x16\xf8\xa9\xa5\x01\x2f\x94\xac\xa4\x3d\x8d\xaf\xe8\x2f\xe5\xa0\x49\xe7\xcb\x00\x45\xbb\x0d\xf6\x07\x0b\x5f\xce\xe0\x63\xa7\xa5\xc1\x62\x35\x65\xb9\x5a\xf0\x80\xfb\x1f\x53\x26\x5d\xa4\x43\xef\x37\x6d\x17\x70\xd1\xa2\x10\x9b\x39\x24\x3e\xb5\x2a\xe9\x2f\x58\xd4\xa8\xc1\x2a\x58\x63\x2b\xf7\xcc\xc4\xac\x66\xc5\x0a\x61\x2b\x76\x1d\x85\x41\xfd\xfe\x44\xac\x59\x32\xd9\x82\x21\x9a\xc3\x33\xd0\xc8\x4a\x36\x43\x82\x48\xfc\xa2\x83\xe1\x0a\x5a\xbe\x85\xa0\xd1\x36\xba\x82\x67\x15\x28\x9e\x8b\x28\xe2\xf8\x4e\x0d\x1d\xd4\x52\xab\xa6\x22\x74\x7d\xeb\xd3\x0f\x3d\x34\xbe\xfe\x98\xda\xc7\x69\x78\xf8\x74\x06\xf3\x30\xc2\x0f\xc9\x12\xc8\x15\x33\x07\x73\xc0\xa2\x03\x6a\xea\xb1\x27\x70\xa7\x57\xbb\x1a\xbf\xf7\xdd\xff\x78\x7a\xd6\x5f\xc4\x00\xc5\x83\x00\x61\x7e\x48\xd4\x28\xf4\xfe\xfc\xdc\x6f\x3b\x1f\x3e\x3d\xd9\x7f\xf2\x0d\x2b\xbf\x86\xc9\xca\xfd\x19\x2b\xd4\x32\x03\x59\x59\xd4\x2b\x41\x24\x27\xb1\x69\x0d\x1f\x08\x27\x69\xc6\x2a\x8d\x39\x90\x0c\x6b\x50\xab\x15\x64\x1b\x21\xab\x29\x10\x53\x9a\x08\xce\x8b\x5b\x63\x30\xa7\xb5\x8b\x0b\x69\x9c\xcd\x33\x13\xb8\x95\x39\x2a\xa7\xae\x15\xe9\x6b\x28\x31\x97\xe2\xa8\x2d\x69\xf1\xa3\x01\x13\x5a\xa4\x6d\x99\x64\xb4\xac\x8d\x96\xa7\x67\x51\x45\xf5\xa6\xfc\x57\x36\x96\x0a\xf0\x8e\x7c\x97\x30\x3f\x67\x3d\x8d\x87\x47\xfe\x13\x08\xb6\x15\x7f\xb9\xba\x7a\x03\xa7\x4a\xf3\xc3\xbb\x33\xf8\xe5\xed\x4f\x47\xb1\xa5\xa6\x84\xe7\xfc\x3e\x6c\x69\xa1\x1b\x5d\xec\x6b\xd2\x56\x8b\x24\x9f\x07\xc5\xbd\xd1\x24\xa0\x8d\x4e\x45\xf3\x01\x94\xe9\x81\xf4\x5c\x12\x20\x1f\x16\xf7\x61\x0a\xb6\x1c\xf2\xea\xcd\xe5\xbb\x48\x23\xfe\xe5\x97\x1f\x84\xc6\x96\x29\x72\x58\xee\x48\xbc\xa5\x66\xaf\x87\x9c\x0b\x99\x63\x65\xe5\x4a\xa2\x86\xd3\xe7\xaf\x5e\x9c\x45\x20\x5a\x30\xb3\xd8\x8d\x60\xcb\x28\x35\x66\x16\x7e\x79\xfb\x6a\x0a\xcf\x20\x2b\x24\xf5\x4d\x5c\x47\xe6\xc3\xc6\xa0\x73\x56\x9e\xbf\x7a\xd1\x3a\x3d\x0a\x56\xe4\xb9\x11\xff\x15\x4a\xb0\xcf\xe0\xfd\xb1\x5b\x29\x68\xbd\x19\xdd\xb5\xb0\xb8\x15\xbb\xa3\x0b\x4d\x8d\x3b\x0b\xdd\xb1\x40\xcf\x5f\xbd\x20\x96\xa2\x21\x06\x26\x48\x5e\x17\xe3\xc7\x23\x3a\x6f\x30\xe9\xdd\x81\xd4\xf1\xa2\x73\x95\x99\xa9\xac\x57\x66\x2a\xd5\x8c\x5c\x19\xac\xad\x99\xf9\x11\xce\x45\x9e\x6b\xe2\xe0\x6a\x3d\x1b\x65\xce\x32\x99\x0f\x1b\xf3\x37\xc2\x6e\x58\x22\x12\xd5\x5a\xd3\x3b\xaf\x94\x79\xd1\x83\x42\x66\x65\xef\x89\xe7\x56\x47\xe9\xdd\x28\x03\x2f\x0d\xa8\xaa\xd8\x41\x85\x98\x93\x7d\x5e\xb5\xc0\xa5\x21\x8f\x45\xe6\x18\x97\xfc\x5e\xa0\x23\x88\x44\x60\xcf\xcd\xce\x58\x2c\xcd\x38\xf2\xd0\x8c\x03\x7d\x7e\x18\x92\xd1\x84\x7e\x93\x6e\xeb\x41\x91\xcd\x64\x0e\x0b\x22\xfa\xfe\x27\x26\xee\x82\x61\x0c\xc9\x73\x4b\xb7\xa6\xca\x98\xcb\x9d\xc0\x3a\x06\x63\xca\x57\xc2\xca\x5b\x24\x15\xd5\x72\xd7\x1e\x63\xdd\x43\xa7\x8d\xda\x9e\x5b\x35\xf3\x2c\x74\x4e\xaf\xcf\x55\x75\xbe\xc5\xe5\xec\x77\x0e\xf6\x79\xa3\x0b\x73\x70\x05\x82\x35\x26\x17\xdf\x38\x15\x43\x6c\x29\x64\x45\x8f\x71\x5d\x1b\x2d\x8f\xd2\x7e\x94\xc6\xf2\xe6\xd2\x13\xae\x25\xe2\x41\x53\x79\x42\x53\x9a\xcf\x66\x27\x53\x62\x09\x61\x4f\xc3\x9a\x9c\x85\x17\x27\xb3\x93\xf8\x4c\xb0\xce\x7a\xc6\x75\x48\x63\x1e\x86\x7a\x5c\x87\x46\x4b\x1b\xd4\xe8\x56\xda\x8d\x8b\x51\xb4\x46\x53\x2b\x99\xd3\xbc\xd9\x4a\x92\xf3\x70\x54\x25\xfd\x4c\x2d\xfb\x9a\x88\xb5\x93\x63\x09\x74\xb0\x46\x31\xff\x8a\x55\x5b\xdf\xcb\x75\x61\x74\x2e\xc5\x39\x07\xc9\x99\x2a\x91\x64\xd8\xad\xaf\xd2\x25\x7b\xf9\xbb\x1a\x67\xa6\x59\x72\x0b\x61\xbc\xb7\xb9\xc4\x1c\x28\x46\x83\x0e\xac\xc8\x8a\x78\x8b\x85\xaa\x51\x4f\x4b\xf5\x4f\x59\x14\x62\xaa\xf4\x7a\x86\xd5\xf9\x2f\xef\x98\x4d\x67\x7f\xc3\xe5\x8c\x4c\xeb\xec\x47\x8a\x7a\xcd\x07\xb5\xfa\xc0\x3f\x7f\x7e\xf5\xf3\xcb\x0f\xec\x68\x8e\x9a\x55\xa4\xe5\x7d\xa6\x37\x9d\xfa\x64\xbf\x4b\x57\xb6\x79\xbd\xa9\xc7\x82\xfe\xe9\x7f\x88\x9d\x17\xf1\xe9\x30\x5f\xfc\x4d\x8b\x9a\x7c\x69\xc7\xff\x4a\x43\xd9\x14\x56\xd6\x85\x5f\x36\x97\xa8\x18\xc5\x03\xa6\xcf\x04\xcf\x2a\x10\x7a\x29\xad\x16\x7a\x77\x6e\xe4\x3f\x31\xe7\x50\xc8\x87\xff\x3b\xa8\x9a\x72\x89\xe4\xdc\x79\x1e\x92\xa4\x25\x0f\x52\x91\xbf\xce\xe1\x3d\xb7\xfd\x75\x88\x84\x1f\x7a\x6d\x06\xf5\x21\x37\x81\x45\x6f\xb0\x23\x11\x86\x9f\xdf\xbf\x35\xc0\x68\x8d\xa0\x1f\x7d\x5c\x78\xe1\x1a\x3f\x28\xba\x70\x5d\x1e\x1b\x5c\xb8\xde\x23\x63\x8b\xc8\x28\xd0\xfb\xfb\x0c\xa1\xc5\x90\x86\x2b\x64\x86\x15\xb9\x8c\x59\xa6\x34\x2b\x36\xab\xa2\xfc\x9b\x3a\xbf\x63\x91\xf7\xad\x4c\xbb\x8e\x57\x21\xe9\xd4\x89\x30\xbc\xaf\x10\x7c\x2b\xb5\x22\xbd\xf9\xfa\xf2\x8a\x1c\x07\x0f\x23\x3f\xaa\x2f\x7f\xf2\x28\x1d\x76\xd2\x09\xaf\x57\xd1\x6f\xbb\x4f\x69\x7c\x48\xfc\xbb\x7b\x1d\xf7\x2e\x48\x62\xff\xf8\x63\xac\x0c\x04\xbc\xbf\x90\x10\x84\xe1\xc7\x49\x81\x6f\xfd\x20\x31\xf0\x7d\x1e\x2b\x07\xbe\xfb\x48\x41\xd8\xe7\x82\xdf\x40\x12\x62\xbc\x44\x0e\x1a\x13\x9d\x3c\x5c\x8b\x25\x70\x6a\x16\xf0\xce\xa2\x26\xe2\x1a\x69\x5b\x43\xef\x93\xf2\x09\xdf\x2f\x77\x69\xb0\x43\xbc\x7e\x83\x30\x8d\x71\xcd\x8f\x85\xca\x08\xba\x0a\x71\x52\x63\x50\x1b\x48\x63\x20\x4e\xc2\x69\xb9\x96\x34\x1a\x27\xc2\x7c\x0e\x98\xa4\x87\x13\xd5\xb5\x56\x7f\xa7\xbe\x35\x85\x46\x1c\x1c\x07\x13\xee\xfc\x4d\x6a\x98\xa9\xa2\x40\x76\x45\x5b\x64\x71\x1d\xe5\x79\xbb\xdd\x4e\xcb\x1d\x67\xef\x3d\x34\x97\xf9\xbf\x45\x4d\x74\x3f\x57\x2b\xfe\xd6\x42\x39\x26\xaa\x2f\x3d\x7d\x88\x7c\x8f\x8e\xa9\x3f\xc0\x88\xa8\x7a\x71\x6f\xfc\xdb\x15\xc4\x14\xab\x2f\x24\x8c\x29\x0a\xe3\x04\x32\xe9\xf1\x20\xa1\x4c\xfa\x3d\x56\x30\x13\x10\x23\x85\x73\x78\xdd\x3f\xbb\x80\x3a\x26\x5f\xc9\x0a\x43\xcc\x5e\xd6\xca\x88\x25\x85\xb9\x6a\x27\x0a\xbb\x6b\x77\xbe\xb8\xf1\x5a\xde\xa2\x81\x52\xe8\x1b\xb4\x75\x21\x32\x34\x20\x5a\x31\x6b\x2a\xd2\xe7\x79\x9a\x5a\x53\x60\x9a\xda\x6d\xdf\x5d\x5e\x79\xa0\x12\xcd\x51\x1b\xf5\xd6\x0f\xdf\x73\xe8\x42\xf2\xae\xbb\x11\xf8\x16\x33\x94\xb7\x31\xc1\x80\xb0\xc4\x0a\x57\x32\x93\x42\xef\x42\x02\xde\xcf\xa7\x9b\xad\x10\xcc\x19\xc1\xa4\x66\x1a\x2d\xba\x6d\xb0\xd0\x29\x00\xe6\x10\x25\xfc\x9a\xae\xd1\xd2\xba\x9e\x9e\xf5\x82\xcc\x4c\x95\x25\x56\xb9\x4b\xc8\x9c\xc3\x2f\xac\x84\x7c\x3a\x9f\x77\xc8\x48\x13\x56\xb8\x4d\xf4\x0f\x5c\x16\x6a\xeb\x66\xd1\x01\xa6\xbb\x53\x92\x06\x1a\x43\xce\xc3\xf5\x1a\xad\xa7\x4d\x98\xf5\x9b\x66\x59\xc8\xec\x8d\xb0\x9b\xd3\xb3\xeb\x09\xeb\xc3\x4a\xd9\x2e\x38\x97\x19\x42\x5a\x6c\xd1\x14\x36\x19\x35\x4e\xca\x29\x5d\xde\x98\x11\x45\xa1\xb6\x5e\x87\x5a\x05\x4d\x9d\x13\xea\x1d\x80\x4c\x32\x51\x8b\xa5\x2c\xa4\xe5\xc4\x37\xc7\x42\x8d\x6d\x34\xaf\x7a\xc3\x5a\x9f\x37\x67\xd6\x7e\xcd\xda\xe6\x07\x15\x59\x40\x66\x0e\xcf\x63\xe3\xef\xbf\xfe\xd8\x59\xed\x69\x98\xf7\xa7\x3f\x76\x79\xe3\x67\x17\x36\x90\x77\x11\xb2\xb1\x99\x28\xb2\xa6\x20\xe4\x09\x3b\x51\xaa\xc6\x39\x4d\x46\x14\x08\xb7\xa2\x68\x10\xac\x16\x95\x59\xa1\xd6\xae\x47\x77\x11\x3c\x13\xb6\x34\x7a\xad\x2c\xc2\x39\xbc\xb2\xc9\x2e\xcd\x12\xed\x16\xb1\x82\x8b\xe9\x05\x13\xff\xe9\xf4\xa2\x0b\xe6\xe5\x1d\x75\x71\x1c\x95\x8c\x2c\x0d\xdc\x71\x87\xb2\x45\x5c\x1a\xb8\x98\xfe\xc7\x77\xd4\xb4\x4a\xd9\xb6\x0b\xd0\xf5\xdf\x06\x04\xb8\xc7\xff\x83\xbb\xe9\xbe\xa8\x88\xa2\xd8\x41\x8d\x3a\xc3\xca\x92\x59\x5b\x63\x92\xe9\x76\x7b\x43\x16\x75\x69\x88\x28\x4b\x61\xa4\x81\x5a\xc9\xca\x76\xa2\x4a\x6a\x64\x54\x21\x73\x5a\xe8\xa5\x20\xd2\x9a\x52\x68\x1b\x37\x6e\x0d\x6c\x37\x14\x6d\x67\x22\x67\x7d\xae\x56\x2b\xe2\x9c\xeb\x5f\x2e\xe5\xdd\x77\xdf\x5e\xf7\x19\x47\x58\x10\x85\x46\x91\xef\x82\x6e\x70\xca\x27\x1d\x9f\xf9\x27\x13\x86\xa8\x9b\x09\xfa\x21\xad\xe9\x02\xa2\xb0\xd9\x7b\x03\x42\x23\x90\x33\xa9\xb1\xd8\x41\x8e\x34\x23\x59\x49\x63\x7d\x96\x7f\x4d\x21\x5e\xd2\xba\xca\xa3\x52\xea\x0a\x49\x4d\x1c\xf0\x9f\x01\x05\xb5\x82\x5a\x63\x26\x4d\xb4\xf6\x43\x2c\x9b\x35\x76\x0e\x6e\xa6\x5d\x76\xfc\x9f\x60\xaa\x3a\x3b\x5e\xa9\x67\xe3\x64\x88\x26\x47\x43\x89\x5d\xc8\x18\xf9\x35\x9f\xec\x09\x9c\xc6\xc2\xcd\x61\x23\xeb\xc8\x76\xf4\xe1\x7a\x2b\x8a\x02\xed\x75\xd8\x13\x26\x65\x3b\x01\x17\xe4\xda\x0d\xc1\xc5\xc2\xe0\xfe\x3a\xb0\x53\xb4\xad\x50\x43\x29\xd7\x1b\x0b\x5b\x51\x59\xd6\xd9\x35\x66\x72\xb5\x3b\x3c\xeb\x7b\xf7\x45\x5b\xcf\xe3\x81\xf2\x3c\x49\xa9\x39\x19\x1a\xa4\x6f\x3b\x6b\x3d\xe4\xc0\x66\x8d\x85\x3f\x2e\x58\x20\xbf\xfe\x9a\x7f\x7d\xbf\x60\xb1\x9c\xc3\xc9\xf3\xc6\x7a\xf9\x69\x25\x58\x56\xf4\x4a\xe6\xa0\x45\xb5\x46\x90\x53\x84\xf7\x17\x93\xa7\xbf\x9e\x1c\x30\xb0\x10\xfc\xa6\xa8\xa5\x17\x51\x47\x0c\xe4\x3f\x1b\x0b\x0b\xc2\x62\xff\xd3\xf1\xfd\xc9\x07\x64\x4b\x82\xc9\x74\x85\x1d\xb1\xc3\xcf\xa9\xb1\x26\xce\xfb\x47\x83\x7a\xe7\x6c\xca\xf5\xdb\x60\x90\xaf\x83\xe1\xe5\x42\x99\xd7\x97\x57\x89\xf7\x4c\x4c\xc5\x22\x76\x57\x63\x66\x9d\x9e\xac\xc5\xae\xb5\xe6\x5e\x2b\xb8\x84\x18\x45\x48\xcc\x3e\xc1\x59\x1f\x69\xeb\x09\x4e\x3f\x7d\xa3\xb5\xd8\x79\x4e\xd5\x22\xbb\x71\x7a\x42\x56\xb9\xbc\x95\x79\x23\x8a\x16\x83\x3e\xa3\x12\x75\xa3\x7c\xbe\xaa\x56\xca\xcc\xe1\xbd\x27\xd0\xaf\xf7\x6c\x18\x79\x7f\x79\xa0\x53\x9f\xf3\xc8\x87\x22\x9e\x71\xc6\x45\x58\x30\x0d\xa7\x01\x45\x51\x30\xc7\xb5\x4a\x3d\xba\x00\x64\x95\x97\x08\x6b\xf6\x04\xfc\xce\xce\xd3\xe9\x45\x07\xec\xad\x20\x2f\xdb\x8a\xe2\x39\x73\xcd\x45\xef\x33\x2d\x78\x30\x09\xb2\x8a\x78\x0e\xc8\x40\x02\x24\x3e\xfe\xff\xd0\x77\xda\xe7\xc6\x2e\x6f\x0b\x63\x50\xdb\xd3\xd8\xcf\x49\xcf\x04\x4a\x34\x46\xac\x71\x0e\x27\xef\xdc\x64\xe3\xf8\xe3\x67\x7b\x72\xd6\x27\xe3\x33\x63\xe4\xda\xe9\xb1\x00\x6f\x50\x88\xdc\x48\x8b\xfd\x46\xbd\x44\xed\x5b\xe7\xf4\xa6\xf0\x38\xeb\x37\x98\x29\xed\xed\xa8\x0b\xe6\xb8\x24\x83\xef\x6a\x3b\x30\xe1\x75\xc7\xb4\xc7\xf3\xae\x31\x9d\x1f\x3d\x36\x89\xe6\xf4\x2c\x61\xa9\x7b\x36\x23\x07\xe6\x08\xf7\x45\x64\xad\x08\x7d\xa1\x78\xec\x6d\x8f\x3e\xc7\xa2\xb1\x96\x22\x0f\x89\xc5\x62\xaf\xc7\x46\x62\x11\xc0\xc8\x38\x2c\x55\x4d\x7d\x09\xfb\x2c\xb5\x08\xce\x06\xbb\x4d\x46\xd6\x22\xd1\x28\xb1\x0f\xcb\xf2\xce\x96\x85\x98\xb1\xab\xee\x62\xa2\x84\xcb\xe2\x5a\x10\xec\xc2\xe3\x2d\x56\xb6\x61\xf7\x2f\x85\x25\xa2\x37\x6e\xb6\xd2\x66\x9b\xa5\xa2\xd0\x2e\xd8\xae\x49\x84\xbb\x71\x8c\x10\xea\xd6\x96\x8d\x07\xcb\xfb\x96\x1d\xe4\x22\x81\xe8\x57\xa5\x7a\x35\x72\xfd\x2d\xb2\x36\x56\x89\xb1\x5a\x40\x88\xc2\xc3\xd4\x86\x0e\x31\xcf\xbe\x4c\x0d\x46\x41\xf3\x74\x9c\x8f\xfd\x75\x98\xd5\xfc\x71\xe6\x63\xc9\xcb\xab\xb7\xe9\xb0\x47\xd2\xb9\xbe\x84\xcc\x6d\xe4\x26\xc5\x90\x3e\x9f\xf5\xfa\xf2\x6a\xba\xb7\x38\x21\x1a\xe1\x50\x53\x0b\xe9\x7c\xcb\xc4\x8c\xdd\xe0\x6e\xe6\x7c\x92\x5a\x48\x6d\x40\x14\xaa\x5a\xbb\x98\xd3\xa8\xb2\x95\x3b\x4e\xfb\xde\xd1\xb2\xf2\x56\x06\x8f\x2b\x96\xaa\x71\x4c\xc4\xa0\x8f\xd9\xda\x2b\x6a\x94\xd0\x64\xa0\x3a\x91\xe1\x4c\xe1\x27\x79\x83\xf0\xa3\xc8\x6e\xd6\x5a\x35\x55\x3e\x81\x97\x3b\x34\x13\xf8\x8b\x90\xba\x57\x3a\x36\xb6\x7c\x90\x47\x6a\xaa\x1c\x75\xc1\xbe\xae\x9b\x72\x3a\xea\x24\x28\x1e\x1b\x5e\x33\xa1\x8d\x2b\xdf\xe3\x26\x50\x6b\x75\x2b\x73\x0c\xc4\x08\xda\x8a\x81\x1d\xc6\x89\x3f\xcf\xe1\x59\xb5\x73\x25\xb4\x1d\xbc\x7c\xad\x1c\x69\x88\x74\xbd\xcc\x46\x6d\x79\x01\xe2\x58\x8e\xd8\x5b\xe7\x3a\x4b\xe3\xc8\x46\xee\x91\x9b\x4a\x64\x94\x14\x38\xf1\xb9\xac\x8c\x15\x55\x86\x13\xd8\xa9\x06\x32\x16\x71\x13\xb0\xa2\xa1\x04\x34\x95\xbc\x03\x2b\x4b\x34\x56\x94\xb5\x0b\xe3\xbd\x1b\xde\xc1\x4f\x18\x38\x79\x21\x2c\x9e\xf0\xc4\xb1\x28\xd2\xb1\xea\x42\xd8\x95\xa2\x78\x8e\x82\x5f\x55\x99\xa6\xf4\x15\x21\x8e\x76\x5c\xab\xcb\x2e\x4b\xc8\x12\x08\xbf\x07\x76\xd8\xd3\x6f\xc7\x1e\x28\x0a\x20\x73\x2b\x34\x05\x86\xe4\x59\x8a\xc2\xa8\xa8\x1d\x5c\x26\xb6\xd8\x79\xc9\x10\xd6\x6a\xb9\x6c\x6c\x67\x67\xbe\xcb\x1c\x4e\x5a\xa2\x49\x09\x91\x1f\xa3\x59\x14\x2d\x04\xc3\x95\x13\x7e\x8a\xfe\x5d\x60\x83\xd7\x97\x57\xbf\x37\xa0\x19\xa7\xc3\xdc\xe0\xbe\xcf\x3d\xee\x83\x45\x0e\x9d\x0a\xc6\x3d\xf6\x99\x0c\xd2\x65\xd2\x07\xfc\xf0\x8a\x45\xc7\x11\x0b\x37\xe0\x40\xc0\x90\x70\xc2\x22\xc5\x61\x20\x36\x71\xeb\xb2\xf0\x38\x8d\x8c\x28\x58\xdd\xb1\x9a\x0c\x9e\x4f\xd0\x58\xc7\xf5\x9b\xef\xe8\x3b\xf0\x6e\xe5\x08\x15\x17\xc1\xa5\x92\x36\xa0\xe2\x50\x64\x1b\xaf\x9b\xee\x55\x6e\xe6\x9e\x44\xb9\x43\x6d\x0e\xef\xb9\xe5\x81\x2d\xdc\x5e\xa3\xc1\x35\xf4\x73\x5c\xf8\xc6\x03\x46\x9f\xfe\xba\xc1\x4c\x9e\x9b\xd6\x80\x38\x3d\xec\x99\xd6\xe3\x4d\x48\x74\xba\x74\xbd\x54\xe7\xb6\x71\xdb\x39\xab\x52\x27\xd3\x7e\xee\x96\x25\x4f\xe4\x39\xe6\x47\x5d\x53\xb2\xa0\x22\xcf\x19\x14\x4d\x78\xee\xa0\xde\x33\xd3\x29\xb1\x48\x95\x9f\xda\x7b\xea\x3b\xba\x1e\x69\x32\xa7\x2f\xe5\x93\x7a\x14\xc6\x39\xa4\xae\xf1\x83\xbc\x51\xd7\xe5\xb1\xae\xa8\xeb\x3d\xd2\x0f\xdd\xe3\xec\xf0\xf7\x19\x9c\x50\xbf\x6e\xb1\xc6\xca\x2a\x40\x61\x64\xc1\x71\xd0\x2d\x6a\xcb\xb5\x68\xfc\x4d\xe8\x1d\xaf\x84\xe3\x09\xb8\x54\x9a\xd3\xfa\x89\x83\x12\x36\xb6\x8c\xdf\x5c\x50\xac\xbe\x59\x5f\xa3\xe4\x82\xc6\x50\x10\x1f\x56\x89\xb5\x82\xb7\xf0\x57\xce\x09\x88\xf0\xd8\x74\x95\x68\x37\x2a\x96\xc5\x9b\x66\xb5\x92\x8e\x21\xd6\xf2\x96\x7d\xd4\x92\xed\x0b\x47\x6e\x6a\xe5\x33\x39\x1e\xc5\x43\x8c\x46\xf3\x71\x42\xd4\x9d\xd9\x12\xc3\xa4\x9d\x4a\xbb\x6a\xc5\x3b\xe9\x8d\x77\x7c\xe4\x24\x7f\x2d\x4a\x34\xf3\x4e\x25\xb6\x2f\xda\x72\xd8\x78\xfb\x1d\xf2\x7a\xd7\x34\xd6\x75\x04\x16\xfe\x6e\x70\xe7\xa9\x25\xb4\xb3\x76\x5b\x51\xf9\xf1\x97\x98\x91\x56\xbc\x76\x78\x5c\x0f\xfa\xd4\xec\x40\x0b\xea\xd0\xd7\x23\x87\xd8\x9d\xf0\xb8\x52\x9e\xe3\x1d\x29\x3e\x3a\xc4\x13\x13\xf7\x69\xd2\x9f\xe7\x7b\xd7\xe6\xd7\x1f\xce\xe6\xfb\x0c\x39\x9b\xc1\xf3\xb8\xfa\x2e\xa9\x68\x7c\x56\x31\x4c\x29\x9a\x14\xef\xd4\xb9\x4d\x03\xa9\x5b\x27\xda\x9f\xe5\xc9\xa7\x3d\xaf\x71\xd7\xcb\x4f\x6e\x44\x95\x17\xe8\x2c\x06\x13\x99\x02\x1d\x4e\x78\xda\xb6\xf1\xdf\x1b\x93\x8c\xcd\x7c\x12\xe0\x73\xa1\x73\x51\x4c\x53\xc1\xed\x4c\x16\xbe\x5a\x90\xa8\xf4\x04\x8e\x5c\xb9\x1b\x42\xbb\xd3\xf6\xab\x01\xb1\x24\xa2\x4e\x35\x96\xea\x16\x4f\x6f\x70\x37\x87\x9b\x7e\x55\x5d\xfb\x14\x1f\x07\x2c\x14\x2c\xe0\xfd\xaf\x4f\xf6\xc6\x67\xf0\xcc\x37\xdd\xa1\x23\x04\x58\xb8\x15\xf2\x6e\xcc\x4d\xf4\x60\xa8\xe7\xfb\x9b\x5f\xbf\xea\x39\x30\x95\x2c\x5a\xe7\xa5\x92\x45\x17\xdb\x9e\x0d\x60\x5b\x31\x34\x81\xc0\x94\x8e\xb1\x5c\xaf\xb3\xbe\xba\x89\x79\xf1\x98\xc1\xdc\xd3\x1a\xd2\x98\x06\xdb\xc4\xa6\x3f\x98\x15\x21\x70\x60\xe4\x36\x53\x4a\x3e\xea\x66\x64\x29\x0b\xa1\x93\x93\x69\x04\x16\xef\x44\x49\xdd\x45\x05\xff\x4b\x8a\xe1\xe9\xc5\x05\x39\xdd\x6e\xa3\x2b\x02\x93\x15\x39\xcc\x6e\xcb\xce\xf9\x32\xab\xc6\x9d\x0f\x73\x39\x75\xb7\x5f\x90\xee\x78\xb6\x0e\xd0\x33\x57\x3d\xe0\xd8\x6d\x49\xae\x8d\xe6\xc0\x25\x62\x8e\xb9\xe4\x69\x4d\x60\xbb\x91\x19\xd7\x16\x6f\x37\x5c\x01\x1e\x3e\x1d\xc2\xc3\x91\x92\x38\xd5\x38\xed\xe6\xab\xd8\xc0\x55\xb1\xb1\x7e\x39\x16\xeb\xbd\x74\x43\x1c\x3b\x8d\x96\x62\x12\xda\x5c\xb6\xf4\x9b\x38\x2d\x9c\x85\xbc\xc4\x3b\xb4\x13\x78\x53\x88\xdd\x04\xde\xa1\x96\x68\xba\xfb\x14\xbe\xb2\xce\x9d\x74\xd8\x8a\x5d\x52\x58\xe1\x40\x64\x85\x30\x86\xa2\x1a\xd2\x1f\x81\x40\xa3\x62\xc9\x1f\xf6\xe7\xe1\xfb\x27\x85\x7c\x07\x0e\x5b\xf1\x8c\x44\x05\x27\xdf\x7c\x1b\x78\xe1\xf4\x77\xdf\x7c\x3b\x7b\x7a\x71\x71\x76\xc2\x15\x29\x2e\xf6\xf4\x80\xa4\x81\x6f\xbe\xbd\x27\xc2\xe5\x56\x73\xf8\xe5\x55\x65\xfb\xfb\x3e\x84\x56\x29\xee\x06\x51\xa3\x40\xcc\x6f\x2f\x7b\xa6\x9e\xf6\xfa\xf6\x4f\x81\x85\x84\x8b\x8f\x7a\x5d\xd2\xa5\x90\xa5\xb4\x98\x9f\xfb\x21\x30\x1f\x86\x36\x62\xca\x84\xa8\x34\xf4\x6d\xb0\x2b\x57\xea\xb0\xb8\x35\x95\x1f\x34\xcc\xcb\xf5\x6d\xd3\x55\x14\xce\x5a\x45\xba\x63\xdc\x99\xb2\x52\xdc\x05\xfa\x1d\x8d\xbf\x7e\x98\xf4\x28\x3e\xe9\x74\x1f\x70\xa0\x08\xb7\x41\x15\x0e\x6d\x7a\xdb\x2f\xcc\xf7\x0b\x6a\xfd\x55\x9a\xdd\xbe\x6a\x19\x21\x13\xd5\x50\x22\xdb\xfa\x45\x76\xad\xbe\x3a\x39\xa4\xdd\x61\x54\xd0\xe7\xc7\x5a\xf4\x63\xf1\xd8\x80\x86\x62\x34\x47\x46\x71\x9d\x7d\xa1\xa0\x06\x46\xd5\xd1\xfa\xc6\xff\x42\x25\xed\x9e\x48\x77\x76\x1b\x3b\xfa\x52\x04\x8d\x79\x90\x4b\x48\x2b\xfe\x24\x8d\x9d\xc3\x7b\x8f\xd9\xa1\xba\xdb\xfd\x86\xc3\xc5\xb7\xbe\x1d\x2c\x62\x97\xb1\x11\x4d\x24\xcd\x97\x3a\xe5\x17\x11\x18\x59\xf0\xe4\x9b\x3f\xac\xda\xc9\x77\x7a\x74\xa9\x93\xef\x3f\xb6\xce\xa9\x65\xb7\xbe\x94\x7e\xae\x22\xa7\x98\x94\x63\xbf\x3c\x18\xa3\x73\x57\xf6\x94\x83\x41\x2d\x45\x11\xf8\xd7\xe5\xc8\xc3\xfe\x25\x71\x6b\x04\xf6\xc6\x75\x34\xb0\x11\xb7\x98\x1c\x8b\x67\x40\x7e\x16\xec\x36\xb0\x27\xdf\x83\x1b\xf5\x64\x04\xf7\x8e\x7c\xd7\x52\xec\x62\x69\x0e\xef\xb9\x6a\x5c\x37\xe4\xc9\xbc\x7a\xe1\x12\x80\x69\xa3\xe4\x2c\x7e\x1b\x70\x39\x63\x1a\x0e\x81\xb9\x73\x3e\x53\x77\x1a\xa5\x83\x80\x34\x9d\xed\xdb\x25\x42\x53\xc9\x7f\x34\x5c\x14\xe3\x0f\x0c\xb2\xf5\x66\xb3\xcd\xa8\x90\xda\x67\x0f\x5d\xd8\x40\xb4\x63\xca\xe3\x9d\x1b\xf2\x70\xfe\xe5\x90\xdd\x4c\x25\xb9\xdb\x66\x38\x83\x76\x40\x5f\x1e\x11\x60\x8f\xde\x97\x12\x5f\x3f\xfc\x38\xe1\x75\x8d\x1f\x24\xba\xae\xcb\x63\x05\xd7\xf5\x1e\x29\xb6\x7b\x0b\xfd\xb9\x85\xb6\x2d\x1d\xf6\x69\xcc\xd4\x3d\xf6\x42\xea\x12\x69\x49\x76\x93\x7a\x73\x81\x96\x0b\xa6\x43\xd7\x0a\x31\x37\x2e\x6a\xbc\xc5\x90\x85\x30\x99\xd2\x1c\x3b\xa4\x25\x18\xcb\xc6\x82\x74\x27\xe8\x23\x40\xee\xb4\x54\x6d\x9e\xf2\x10\xf3\xfb\x3c\xf8\xc7\x3d\x67\xd0\x0f\xe5\x2b\x0a\x5d\x2b\x4e\xc4\x1f\xc9\xbc\x73\xbf\x50\x0d\x33\xe0\xfb\x96\xe2\x4e\x96\x4d\xd9\x6e\xa3\x70\x87\x23\x0e\xd7\x21\x60\x03\xd7\x39\xa4\xa8\xba\xa3\x6d\x47\x4e\x37\xc6\x10\xe1\x27\x5c\x63\x95\x0b\xbd\x9b\xc0\xcb\x5a\x66\x13\xa2\x0d\x4e\xe0\x97\x2a\x53\x65\x49\xae\xe3\x73\xfe\xbf\x1b\x2b\xf8\xd3\x73\xdd\xc4\xf7\x88\xba\xa3\x41\xef\xb1\x4b\xbb\x49\x67\xf2\x83\x85\x45\x43\x4e\xa4\x5b\xb8\x85\x73\x23\xbf\xfe\xba\x43\xa3\xc5\x21\xe7\xb2\x16\x95\xcc\x4e\x4f\x9e\x05\x7e\x88\xdc\x67\xc2\x92\x76\xef\x27\x51\x9a\xb9\x6b\xcf\x83\xdc\xd7\x7a\x1e\x9d\xde\x32\xc3\x61\x1f\x11\xfe\x85\x32\xa3\x5e\x79\x81\x9b\xcb\x97\x4c\xe6\x7a\x14\x46\x56\x17\x70\xe3\x87\x95\x16\xb8\x1d\x9b\xc7\xd6\x15\x70\xef\xb1\x45\x05\x7d\x4d\x11\xfe\x3e\x83\xf6\x7c\x7d\x79\xc5\x0a\x74\xab\x45\x6d\x38\xe1\xf6\x9c\x2f\x48\xe1\x2b\x75\xdc\xa6\xcb\xb5\xcc\x5d\xa1\xe0\x75\xd3\xd0\xa3\xcb\xc6\xb9\x1d\xc7\xb0\x9b\x13\xe1\x85\x34\xab\xe0\xda\xf0\x02\x2d\x42\x2d\x33\xae\xf2\x8d\x87\x8f\xfc\xfd\x39\xec\x35\x0c\x5f\x9e\x13\xc1\x8d\xba\x45\x27\xcc\xe1\xb0\x1f\x21\xf3\xe8\x43\x1c\x6a\x42\x73\x3b\xda\xc8\xe7\xc0\xe6\xdd\xab\x87\xa6\xe1\xb2\x8b\x83\xfd\xb0\x2d\xcf\xef\xf7\x4d\x8f\x0b\x1c\xec\xdf\x66\xbc\x5e\x08\x2b\xe6\x34\xe3\xe7\x9d\x57\xa3\xba\x06\xe4\xbb\xbd\x8f\xe1\x1e\x2b\x36\xd2\x72\x9a\x83\xad\x43\x3e\xd2\xef\x75\x1c\xbd\xf8\x45\xe6\x10\x83\xf4\xce\x07\x5a\x8f\x03\x9f\xfc\x2a\xc0\xa1\x65\xe8\xb6\x4e\x68\xbf\xd7\x23\x25\x7e\xb7\x57\x97\xe2\x30\x44\xf2\x83\x1d\x22\x7a\x83\x84\xee\x76\x6b\xeb\x61\x52\xf2\xf6\x6e\xb8\xe9\xd1\x34\xbc\x1f\x0e\x58\x73\x3e\x2b\xb7\xff\x81\x09\xba\x60\xba\x0e\x68\x7c\x8f\x73\xdc\x23\xde\x6f\x92\xd2\x71\x91\x52\x75\xbf\x69\x8f\x78\x8b\x1e\x35\xef\xed\x10\x11\xd9\x7b\xb7\xdf\xad\x25\xde\x62\xa0\xb4\x13\xc6\x6d\xbe\x1e\x34\x62\xfe\xac\x17\x33\xee\x21\x9b\x45\x3a\xe3\xca\xa7\x29\x64\xfe\x9b\x58\xb4\xa0\xdd\xc6\x59\x32\xdf\xfa\xb4\x55\x66\x93\x07\x18\xb5\x7d\x4d\xca\x51\xd8\xca\xfe\x75\x8c\x51\xf3\xbd\xc9\xaa\xa5\x46\x31\x74\x1f\xcc\xaf\x05\xcb\xe4\xda\x7c\x05\xc2\x7c\x15\xb0\x48\xd6\xa9\x6f\xc8\xc2\x2c\xf7\x55\x89\xcc\xf7\xd5\xc8\xbc\x8b\x37\xbd\x1a\x54\x28\x7d\xed\x90\x5c\x7d\x94\x02\x38\x1b\xaf\x5f\x7a\xc7\xc8\xee\x81\xb2\xa7\x6f\x98\x73\xdd\x82\x76\xf5\xce\x48\x28\x51\x09\x0d\x03\x3a\x3e\xaf\x54\x33\x05\x18\x6d\x15\xe6\x3d\x1d\xbd\xb8\xb5\xbd\xfc\xfe\x4e\xa7\x4b\xab\xc4\x8e\xc4\x73\xae\x82\xbb\x0d\xe6\xfc\x25\x28\x7c\x95\x8e\xbf\xd6\xd0\x6a\x89\xb7\x38\x5c\x6e\x72\xdf\xa1\x50\xe7\x64\x37\x35\x88\xde\x59\x4d\x97\xc2\xae\xb5\x22\x6d\x10\xe1\xd1\x90\x62\xed\x06\x75\x25\x81\xed\x11\xa5\x31\x47\xd4\xf6\x56\xb2\x17\xfb\xb9\xdb\x64\xaa\x38\xce\x96\xef\x81\x60\x7f\xc8\x9f\xd8\xd6\xe1\xc4\x58\x4c\xca\xb8\x1b\x85\x0e\x6f\x3c\x78\x58\x6f\xfc\xa5\x2b\xf1\x47\xef\x1e\x1b\x37\x1b\x2e\x09\x75\x1b\x4f\x65\x63\x38\xe3\x5a\xc8\xea\xc6\x0d\xe6\x97\x63\x60\xe2\x71\xab\x22\x64\xbf\x20\x6e\x51\x65\x45\xc3\x47\xd8\xe3\xa1\x40\x9e\x48\x38\xed\xe7\xb7\xca\xbc\xc4\x38\x97\xb3\xfd\x78\x70\x4e\x75\xac\xd5\x4c\xeb\x36\xf7\x43\xd4\xc1\x13\x7a\xc9\x22\x87\xfb\xac\xdc\xcc\xf2\xa0\x93\x1d\xf8\x0e\xb4\x4a\xf9\xb3\x8f\x58\x59\x69\xc3\x85\x9f\x78\x27\x8d\x9d\x80\xb4\x50\x29\x20\x4f\x19\x75\x1b\xbd\x2d\x5d\x59\xa2\x96\x21\x83\x96\x64\x09\xe3\x1c\x8f\x4c\xb1\xe5\x96\x39\x70\xcd\x56\x77\x8a\x34\xab\x5e\x0d\xb0\x5f\x2e\x9f\x3b\x17\x2b\xa5\x19\x57\xb7\xe7\x53\xb7\xab\x7c\x64\xe0\x9f\x18\x8c\xdb\xe9\xdd\x1f\xf8\x32\x16\x7e\xb8\xa3\x59\x85\xda\x1a\x77\x5c\xd1\x27\x03\x44\x05\x58\xd6\x76\xd7\x97\xaa\x40\x70\x9a\x7f\xe0\x61\x66\xe0\x0e\xf8\xc0\x4a\xf7\x1c\xa1\xe2\x9d\x95\x97\x34\x44\x4a\xa2\x55\x53\x9d\x9e\xcd\xe1\x4f\x1f\xfb\x37\xbc\x4e\xdb\x56\xc7\x6f\x22\x3c\x24\x31\x5d\x1d\x37\xcc\x83\x43\x6d\xfa\x8b\x38\xd4\xa6\x4f\xef\x9e\x52\x1f\x9a\x6e\x58\x84\xb1\xd3\x8e\xea\x76\xd4\x81\xa8\x3e\x5a\x53\x69\xde\xb9\x9b\x6a\x4e\xd5\xca\xe1\xf8\xfd\xd7\xf7\x0e\x48\x4e\xc0\x1c\x4e\xbc\x66\x61\x09\x0c\x3a\x45\x40\xb8\xf5\x46\xad\xf6\x2e\xe9\x4d\x60\xb4\x72\x32\x3d\x7a\xb0\x2a\x59\xb5\x45\xf2\xbc\xdf\xb0\x5d\xb8\x45\xfb\x78\xa8\x59\x8b\xcb\xa2\xff\xe2\x50\x97\x96\x66\x8b\xfe\x8b\x01\xb7\x77\x68\x65\x17\xf7\xae\xf7\x58\xe7\x75\xdf\xd8\x70\x1e\x66\x1b\xce\x47\x71\x75\x7e\xa8\xdc\xac\x78\x81\xf2\x58\x6a\xf1\xef\xc9\xd0\xec\xa3\x38\xda\xc5\xed\x79\x44\x0f\xc9\xdb\xec\xc7\x71\x8f\x4c\xe1\xec\x01\x1a\x99\xcd\xb9\xcf\x0d\x08\x7f\x9f\x3f\x2d\x7e\xc0\x8d\xf2\x55\xeb\x7c\x72\x36\x28\xde\xdf\x27\x97\x55\xb6\xd7\x57\x8c\x72\xa7\x5c\xea\xa7\x82\x70\x81\x05\x1b\xf8\x08\x8d\x6f\xd8\x95\x99\x09\xb6\x78\xcf\x3c\x78\x4f\x67\x89\x64\x4d\x09\xe0\x03\x7d\xaa\xbd\x6b\x40\x67\x33\x78\x2d\xca\x3d\x33\xc9\xe8\x6f\x37\x58\x05\xcf\xdf\x55\xdc\xf9\xe1\xfb\x77\x76\xf4\x87\xbe\xf7\xc8\xc2\x8b\x24\x75\x3a\x34\xea\x10\x91\x82\xff\x34\x66\xe0\x23\x17\x0c\xc7\x8b\x20\xdc\x95\x01\xec\x77\xf8\xab\x54\x78\x28\x3e\x60\x9f\xf2\x41\x38\x0e\x32\x72\xf8\x71\x89\xac\x0e\x46\xef\xfe\xd1\x08\x8d\xbe\x06\xc0\xdd\x23\xd9\x39\x23\x33\x7a\x6c\xc3\x80\x5e\x95\x5c\x73\xd1\x1d\x9b\x2f\x69\xea\x8c\xfa\xa3\xa8\x2a\xd4\x9d\x51\xe3\xcd\x08\xed\x60\x93\xbe\x4b\xcd\xbb\x37\x82\x8b\xa6\xa0\x42\xa1\xe1\xe9\x37\x17\x17\x77\xdf\xfd\xe1\xe2\x30\x5a\x4b\x1e\x69\x24\x5a\xef\x54\x26\xfd\xe2\x18\x47\x06\xae\x52\xef\x62\xf5\x7b\x03\xc6\xb5\xdb\xa8\x12\x6b\xb1\xc6\x4e\xa1\x0e\xbc\x51\xfe\xfa\x55\xae\xe8\x2b\x05\x17\xfc\x9c\xf0\x99\x91\xb5\x16\xe5\xc9\x04\x4e\xec\x56\x5a\x8b\x9a\x1e\x73\x69\x32\xa5\xf3\x93\x23\x87\x70\xdc\x88\x26\xa9\xec\x3c\xb8\xbc\xbf\xe9\x75\xce\xe3\x38\xac\xdb\xe7\x18\x67\x74\x5b\x1f\x5b\xb0\x1e\xec\x87\xd0\x25\x74\xfa\x4d\x6f\x9e\x7e\x40\x22\x2e\x21\x0c\x2c\x52\x32\xed\x37\x4d\xa8\x02\x8b\x94\x46\x03\x50\x1d\x49\x08\xa2\x7b\x7a\x9c\x53\x92\xde\x81\x3d\xec\x97\x78\xb7\x24\x42\xfb\x82\xfe\xc9\xa3\x7c\x93\x47\xdc\x9b\x3d\x98\x32\xfe\x2c\x1e\xca\x83\x6e\xd4\x3e\x62\x57\xc3\xdf\xe3\xfd\x94\x4f\x4f\xfe\x2f\x00\x00\xff\xff\x89\xc0\x73\x3f\xd0\x63\x00\x00" func metadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -131,11 +131,11 @@ func metadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "MetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x9e, 0x62, 0xcb, 0x16, 0x59, 0xbc, 0x9e, 0x7a, 0xd0, 0x38, 0x97, 0x57, 0xc5, 0x82, 0xae, 0x63, 0xd0, 0x46, 0x6e, 0x18, 0x78, 0xb0, 0x49, 0xbb, 0x81, 0x21, 0x36, 0x4e, 0x46, 0x6, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x29, 0x7, 0x59, 0xc, 0x86, 0x2d, 0x16, 0x76, 0x12, 0xef, 0x30, 0x5d, 0x87, 0xf7, 0xf2, 0x44, 0x60, 0x4d, 0xfa, 0x6f, 0x39, 0x6d, 0x70, 0xf8, 0x49, 0x21, 0x8c, 0xf2, 0x89, 0x9c, 0xb4}} return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x4f\x8f\xe3\x36\xb2\xbf\xeb\x53\xd4\xeb\x00\x6f\xba\x03\x8f\xfb\x1d\x1e\xf6\xd0\x40\x30\x99\xa4\xd3\x0b\x63\x17\x9d\x60\xe2\x49\x0e\x8b\x45\x4c\x4b\x65\x9b\x3b\x14\xa9\x21\x29\x3b\xde\x4e\x7f\xf7\x45\x15\x49\x89\x92\xe5\xfe\x93\xec\x6e\x1f\x92\xb1\x2c\x16\x8b\x55\xbf\xaa\xfa\x55\xd1\xd7\x5f\x7e\x59\x14\x5f\x7c\x01\xcb\x1d\xc2\x9d\x32\x07\xb8\x37\xfa\xed\x5d\xab\xb7\x72\xad\x10\x96\xe6\x13\x6a\x70\x5e\xe8\x4a\xd8\x8a\x5f\x5c\xdd\x1b\x9d\xbe\xe7\xaf\x57\x50\x1a\xed\xad\x28\x7d\x51\x90\x14\xa9\x3d\xda\x8d\x28\x11\xfc\x4e\x78\x10\x4a\x4d\xc9\x4c\x6b\x1c\xb8\x9d\x69\x55\x45\x0f\x36\xc6\xd6\xe0\xcd\xbc\x58\x6c\x40\x40\xeb\xd0\xc2\x41\x68\xef\xc0\x1b\xa8\xb0\x51\xe6\x08\x02\x34\x1e\xe0\xfe\x6e\xd9\x09\x98\x81\xdf\xa1\xb4\xdd\xe7\x24\x4f\xd6\x8d\xc2\x1a\xb5\x67\xa5\xfc\xb1\x41\x07\x15\x6e\xa4\xc6\x0a\x76\x68\x31\x1e\xe6\x6e\xb9\x02\x8b\xce\xb4\xb6\xcc\x54\x0f\x27\x29\x8d\xc5\xfe\x4b\x12\x11\x8e\x64\xb1\xb1\xe8\x90\x34\x13\x9a\x95\x91\x9a\xb4\x00\x57\x0b\xeb\x3b\x4d\xe6\x61\x8b\x6f\x8d\x52\x58\x7a\x69\xf4\x0a\x3e\x9c\xd9\xa9\xdf\x84\xe4\x3b\x6f\x2c\xba\x68\x82\x37\x2e\x1e\x37\x49\x99\x17\x0b\x0f\x52\x97\xaa\xad\xf8\xa5\x0d\x1e\x60\xd3\x6a\xfe\x8e\x4d\x25\x14\xf9\x91\xf4\x31\x07\x8d\x96\x1e\xa1\x70\x52\x1d\x8b\xda\xec\x11\x3c\xd9\xdf\x91\xca\x42\x57\x60\x5a\x0f\x66\xc3\x6f\xe7\x5b\xb0\xe6\x3f\x58\xb3\x97\x15\xda\x15\xbf\xb9\xfa\x80\x25\xca\x3d\x7d\x3c\x35\x98\xe3\x73\xb8\xfc\x09\x54\x58\x2a\x61\x31\x53\xee\x20\xfd\x0e\x9c\xa9\x11\x1a\x8b\x2c\xb4\x31\x8e\x0d\x56\x49\x7e\xa3\x88\xf6\xfd\xdc\x4a\x8b\xac\x54\x6f\x3d\x3a\xc7\xc6\xf0\xd9\x4a\xb4\x5e\x48\x0d\x5a\xd4\x52\x6f\x59\xd0\x1a\x77\x62\x2f\x8d\xed\xc0\xea\xe6\xac\xd2\x11\x48\x05\x87\x8d\xb0\xc2\x23\xac\xb1\x14\x2d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd0\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x95\x42\x93\x5b\x40\xe8\x63\x86\x88\x0e\x6c\x2c\xc5\x0d\x0d\xf3\xcd\x11\x5a\x47\x7a\x26\xb3\x39\xd6\xb8\x7f\x65\xc6\x8e\x76\xe4\x07\x72\xf5\x10\x45\x8e\xb7\x74\xa8\xab\x82\x56\xd9\xe0\x84\xe4\xc5\x06\xd1\xbe\xf5\xe6\x2d\xfd\x7f\xc6\xf6\x25\x87\x92\x29\xf4\x96\x0e\xc1\x9b\x50\x54\xb0\xe9\x05\x94\x48\x52\x15\x28\xac\xb6\x68\x8b\x13\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xb3\x2e\x2c\x39\xc4\x1c\x1d\xfb\xc8\xa2\x2b\x2b\x02\xe4\xee\xef\x96\xc5\xc6\x9a\x3a\x46\x65\xef\x3e\x8e\x53\x0d\x25\xe5\x03\x7a\xb1\xc2\xc6\x38\xe9\x3b\xfb\x82\xd1\x83\xbd\xde\xb8\x62\xe8\xfb\xd2\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\x79\x51\x7c\x79\x5d\x14\xb2\x6e\x8c\xf5\xf0\x93\xc4\x03\x85\x98\xda\xa3\x05\xd6\xe2\x22\x7f\x74\x51\x14\xd7\xd7\xd7\x9c\xea\x6a\x82\x4f\x9e\x46\xe6\xf0\x3d\x6f\x9d\x3f\x23\xc0\x2a\xc5\x6b\xe2\x06\xec\xb7\xe4\x6b\x56\x64\x80\xf7\x90\x5d\x38\x19\x48\xd7\xa7\xc5\xeb\xeb\xeb\x42\x94\x25\x3a\x77\x29\x94\xba\xea\x53\x55\x9f\x2a\xc7\x49\xf5\x66\x78\x96\x87\xa2\x00\x00\x20\x4d\xde\x6b\x40\xed\xa5\x8f\x3a\x6c\x8c\x0d\x01\xcf\x0e\xdf\x61\xe7\x0d\xa1\x38\xae\x03\x4c\xd8\x16\x02\x7e\x12\xad\xf2\x2c\x29\x57\x27\x17\xf7\x73\x5c\xfd\xb2\xfd\xda\xa6\x12\x3e\xc2\x39\xfc\x1b\x70\xcf\x51\xc0\xaf\xb1\x85\x9f\xdc\xee\x23\x2f\xea\x37\x1b\xef\x14\x13\x18\x85\xd8\xd6\x72\x29\x48\x0a\xf2\x9e\x71\xf9\x53\x3b\x7c\x4f\x12\xfa\x0d\xbe\xdb\x07\xc7\x09\x7f\x5a\x81\xb0\x96\x1e\x0e\x04\x52\xb2\x63\x8d\x5e\x54\xc2\x0b\xb2\x62\xca\xf2\x2e\x9e\xb2\xea\xe4\x2d\x42\x46\x30\x5a\x1d\x61\x8d\x2c\xc2\x63\x05\xeb\x23\x03\x3d\xf9\x64\x45\xcf\xef\xef\x96\x41\xdf\x6a\xd5\x81\xbe\x93\x13\xc2\x53\xc3\x8a\x5f\x11\x6b\x85\xab\x74\x0c\x8a\xf9\x0d\x5a\xd4\x54\x1e\x4c\x0a\xb2\x70\x86\x83\x38\x55\x89\xe0\x9d\x5b\xa0\xb1\xd1\x27\xae\x11\x75\x4d\x79\x86\xd1\xd0\xeb\x27\xe3\x93\x3e\xf6\xdc\x9b\xac\x18\xb8\x4e\x72\x4a\x9e\x7c\xda\xd2\x54\x01\x6c\x54\x48\xb2\xd7\xc1\x44\x87\xed\x04\x6d\x89\xa5\x14\xaa\x3f\x4a\x70\x53\x27\x31\x9e\x27\xdb\x8c\xec\xbe\x33\x55\x08\x3d\x32\x29\xd9\x82\xde\xdb\x62\x08\xb8\x53\xab\x74\xd2\x86\x26\x60\x4f\xd7\xe2\x13\x3a\xca\xf6\xce\x04\xad\xfc\x4e\xda\xea\x6d\x23\xac\x3f\x82\xd4\x15\xfe\x4a\x06\x21\x17\xd6\x46\x4b\xcf\xba\x27\x10\x77\xe2\x08\x6a\x9f\x5b\xb4\x47\xfe\x32\xda\xbb\x07\x48\x4a\x77\x01\xad\x43\xdb\xcd\x93\x90\x53\x90\xee\xfb\x00\xa8\x2e\xa9\x94\xdc\xc0\x8f\xde\x4a\xbd\x9d\x81\xac\x6e\xe0\xe3\x42\xfb\x3f\xfd\xff\x0c\xda\x36\xff\xc4\x5b\xdc\xc0\xfb\xaa\xb2\xe8\xdc\xbb\xab\x5c\x6c\x02\xf4\x15\xec\x65\xe0\x04\x30\xc4\xdd\xe5\x2f\xa0\x37\xfe\x03\x6e\x6e\x40\xb4\x7e\x77\x19\x1e\xc3\x6f\x21\x48\xae\xe0\x7f\x1f\xc6\x69\x68\x7e\x7f\xb7\x7c\x0c\x9b\x3c\xf0\x7f\xe9\x8f\xe3\x64\xa8\x78\x10\x3b\xdf\xa2\x5f\x1e\x1b\xbc\xbc\x9a\xcb\x8a\xfc\xb4\x91\x54\x33\x48\xff\xf8\x82\xac\xd2\x81\xe2\x03\xfa\xd0\x9d\x2a\x3e\xe3\x4f\xef\xe6\x22\x9c\x31\xec\xfe\x58\x4c\xc6\xb0\x74\x5d\xc8\x71\xe0\x8a\x90\xf0\xe8\x79\xca\x83\x7a\xd6\x2d\x94\xba\x92\xa5\xf0\x29\x2a\x49\x75\xd2\x2e\xa8\x34\xcb\x18\xd3\x09\x21\x8a\xbb\x85\x80\xeb\x24\xb3\xe7\x67\x03\x98\xd0\xb2\x8f\x1f\x17\xb7\x49\x44\xcf\x94\x26\xd7\x42\xeb\x5a\xa1\xd4\x71\x10\x41\x43\xcc\x70\x96\x39\xd1\x47\x3a\xd0\xc6\x07\x12\x47\xfe\x37\xad\xf6\x6f\x1c\x33\x47\xb1\xc5\x19\xac\x48\xfc\xaa\x0b\xa2\x95\x96\x6a\xf5\x1c\x16\x53\x6a\xd5\x2f\x46\x23\x6d\xd2\x83\x71\x06\x4d\x24\x8c\x64\x81\xf4\xd6\xd5\xa4\xe3\xce\x79\x2d\xb2\x02\xac\x98\x7a\x4c\x19\x05\x16\xc1\x8b\xe8\xfe\x90\x13\xf3\x8d\x9e\x76\x61\x6e\xf5\xd3\xb5\xff\x36\x5f\xcd\x5e\xe7\xac\xdb\xa4\xc3\x8b\x9d\xe5\x4d\xee\xaa\x5e\xbf\x33\xce\x5a\x84\x0e\xa3\xe2\x3a\xbc\x16\xe5\xa7\x03\x91\xea\xb7\xc4\xc2\x84\x97\x81\x26\x9f\xe8\x76\xda\x18\xc0\xe2\xfe\x6e\x79\xc3\x15\xeb\xe1\x31\x97\x3e\x68\x12\x63\x51\x73\x50\xb7\xa1\x1f\x88\xad\xe0\x59\x23\x4c\x6c\xc4\xfb\xe4\xac\x69\x3e\xa6\x4f\x69\xf3\x56\xcb\xcf\x2d\xc2\xe2\x96\xcf\x96\x58\x6b\x7a\x23\xdf\x46\xa1\xcf\x2c\x3a\x94\x32\x9d\x86\x44\xeb\x4d\x2d\xbc\x2c\x39\xac\x71\xcf\x55\x43\xd6\x08\x22\xd3\x99\x20\xe4\xbc\x35\xc7\x58\xb6\xf3\xba\xc5\x4d\x85\x64\x03\x88\x04\x1f\x99\x7c\x21\x47\xdc\x24\x60\xc1\x19\x42\x66\x84\x99\x46\xa4\x37\x05\xf7\xa6\xc2\x6e\x5b\xee\x81\xa7\x0e\x17\x16\xa7\x96\xf4\x36\x69\x74\xd9\x1f\x18\xbe\x02\x87\x2a\x4f\xdb\xc3\xe7\xf4\xec\x6a\x68\x95\xd2\xa2\xf0\xf8\x5d\xdd\xf8\x63\x46\xdf\xc3\x53\x56\x09\xe9\xab\x41\x5b\x17\x2d\x98\x0a\x3d\x77\xbf\x27\x5e\x49\xd1\x69\xd1\xb7\x56\x73\x49\x4f\xe4\x41\x28\x85\x36\x2b\xf0\x78\x0c\x9c\xec\xc0\xac\xcd\x0d\x44\x7c\x1d\xd6\xc3\xfb\x5e\x95\x71\x82\xe0\x76\x2b\xea\x20\xdd\x59\x68\x50\x79\x9d\x3c\xec\xe5\xd5\x0d\x7c\xfd\xd0\x7f\x7e\xcc\x4a\x27\xfd\x71\xcb\x3b\x7c\x44\x7f\x16\x5d\xab\x3c\x95\xd0\xbf\xa2\xde\xfa\xdd\xe5\x15\x7c\xf5\x15\xfc\xdf\x0d\x5c\xf0\x28\x82\x77\xaa\x72\x65\x39\x54\x98\x73\x36\xfe\xf8\x3f\x17\x03\x81\x8f\x45\xff\xaf\xc1\xf9\xff\x8c\xde\x41\x6a\xc1\x38\xe2\x12\x2b\x0a\x63\x86\x4a\x5a\x2c\xbd\x3a\x92\xf5\xce\x59\xae\x92\xac\x80\xb0\x47\xe6\xc6\x4a\x81\x6b\xd7\xf7\x77\xcb\x1f\xe1\x13\x1e\x03\xf9\x25\x10\x4f\x5a\xad\x63\x26\x5b\xf4\xef\xf7\x42\x2a\xf2\xfa\x8f\x61\x39\x19\xee\x61\xc9\xd9\x2c\xc0\x6c\x6c\xb9\xa8\xc1\xc3\x53\xa7\xe3\x38\xcb\xe8\x72\x6a\x64\x07\xa7\x3c\x39\xdc\x37\x86\xe8\x77\x0c\x16\xc7\x23\x03\xd3\xf0\x21\xd5\x70\xa2\x12\x9b\xe2\x72\x67\x8c\xc3\x81\x88\x9d\x39\x10\x28\x13\x3e\x5d\xbb\x0e\xf6\xad\xb0\x41\x5d\x11\xe7\x30\x1a\x0e\x3c\x11\x1b\xec\x13\x6b\xe6\x30\x11\xdc\x19\x0b\xf8\xab\xa0\x4e\x73\x06\x72\x03\x2b\x32\xe8\x8a\x29\xb5\x80\xbd\x50\x2d\xce\x60\xdd\x7a\x58\xc9\x6a\x05\x95\x41\xa7\xdf\x84\x41\x18\x2b\x38\x0c\x48\xa1\xa3\xba\x70\xd8\xc9\x72\x17\x0c\xb0\x89\x16\xe1\x09\x86\x49\x96\x95\x5c\xbb\x2c\x67\x28\x01\x17\x15\x6e\xa8\x61\xbc\x18\xc8\x5b\x6c\x60\x1d\xac\x15\x2b\x55\x6c\xec\x7b\x30\x71\x7b\x10\x22\x48\x80\x93\x7a\xab\x82\x5a\xa4\xc9\x3f\x08\xb4\x61\xb7\x81\x54\x5a\x38\x87\x25\x39\x68\x87\xaa\x71\x31\xaa\x1d\x1c\x76\x86\xb6\xd2\x6f\x3c\xb8\xd6\x62\xb0\xa0\x4f\x73\x1d\x65\xcc\x27\x32\x2d\xe5\xf1\x5c\xde\x10\xb9\x8d\xb0\xa2\x86\x50\x27\x29\x98\x08\x63\xa9\xba\x57\xe8\xa4\xc5\xea\x24\xd7\xc4\x45\x94\xf3\x78\xa8\x59\xa5\x05\x11\x01\x6b\x63\xad\x39\x9c\xdf\xb3\x8b\x16\xe7\x6d\x5b\xfa\x96\x27\x89\x71\x6c\x98\x08\xa8\xc5\xcf\x2d\x3a\x0a\x6b\x0a\x8b\xf9\xd9\x34\xb3\x45\x1f\x42\x24\xd6\xfa\x65\xe4\x3c\x5d\xd5\x86\x9b\x73\xdc\xfd\xdd\x74\x08\x69\xa9\x8a\x61\xae\x98\xae\xcd\x06\x6a\xac\x24\x35\x09\xfd\x58\xa1\x9b\x26\xa4\x7a\x96\xb3\xd8\x3e\xed\xbd\xa6\x74\xa7\x41\xe3\xb0\x50\xc3\xcf\x18\x7b\xf2\xd4\xf3\xa7\xe1\x42\x6a\xb8\x12\xdf\xcc\x44\xa5\x1e\x95\x38\x04\xe5\x29\xbd\xed\x96\xe7\xa2\xa3\xa4\x88\x2c\xc1\xc3\x9a\x4d\x98\xd2\x79\x13\x2b\xa3\x92\xce\x23\x75\x74\xe9\x7b\x15\x05\xa6\xd1\x55\x6c\x13\x07\x8e\xef\x74\xb5\x58\x9b\x3d\x76\x13\xe2\x4e\xe7\x2c\x83\x53\x3d\x0b\x2f\x8d\xab\xd9\x30\xe2\x3c\x87\x38\x57\x77\x6e\xa8\x37\x47\xe2\xcd\xdc\xad\xd3\x92\xc5\x2d\xc5\x6b\xa0\xac\x96\xde\x9a\x02\x72\xd2\x8b\xb8\xde\x24\xa0\x3b\xc5\x27\x34\x1d\x23\xb3\x1b\xc2\x74\xad\x23\xc1\x34\x49\xb8\xcc\xf7\x8a\x08\xa5\x92\x48\x78\x7c\x55\x2d\x94\x15\x95\xc0\x5c\x1a\xd7\xc2\x9e\x9a\xf7\xdd\x54\x68\x20\x52\x49\xe4\x59\xbc\x20\xd2\xe5\x46\x81\xb6\xb8\xbd\x38\xd9\x8d\x31\x36\x6e\x7e\xfa\x72\x7c\xa6\xa3\xed\x74\x4c\xd4\x28\x3e\x08\x6d\x48\xe8\x8c\x98\x24\x0d\xdb\xd9\x71\x93\x94\xf1\xa8\x5c\xa7\xc7\x57\x86\x67\x84\xa4\x4b\x30\xfa\x7d\x71\x98\x26\xfc\x63\xc2\x9c\x00\xef\x79\x9a\x12\x11\x3d\x64\x98\x0c\x66\x51\x55\x39\x96\xbf\x3d\x05\x50\x9e\x8f\xc3\x9c\x73\xd9\x43\x30\x6e\x73\x36\x0f\xc6\xef\x2f\xe3\xca\x80\xa8\x11\xff\xe4\x5c\xd9\x34\xc6\x7a\xac\xee\xef\x96\x4b\xbe\xf7\x49\x45\x59\x70\x4c\xa7\x39\x7b\xb8\x13\xea\x99\x81\x4d\xa7\xa7\x7d\x1b\xff\x32\xfa\x13\x84\xd4\xa2\x69\x42\xcf\xba\x36\x46\xa1\xe0\xfb\x95\x6e\xd8\xc0\x65\x55\x0e\xe5\xf5\x50\x2f\x25\x75\x09\xe0\x82\xd6\x64\xbf\x67\x99\xd3\xc9\x09\x33\xea\xf4\x8d\x31\x6a\x44\x8b\x3e\xc4\xe3\xa7\xa4\x11\xb2\x04\xbb\x68\x2b\xf7\xa8\x63\xcf\xe1\xe2\xc1\x23\x85\x9b\xce\x00\x3c\x12\x9e\xe4\xcc\x61\x71\x7f\x31\x12\xa7\xaa\x59\xc5\x07\x6f\x5b\x24\xd9\x91\x58\x9c\xaf\xd2\xef\x75\xe7\xa1\x33\x5e\x88\x76\x9e\x30\x73\xef\x47\xd2\x2a\xda\x77\x5c\xeb\x5f\xc0\x50\xa5\x1b\x9b\x39\x2b\xbf\x57\xc1\xd0\xe3\xd8\xfc\x0b\x59\xe0\x89\x86\x19\x2c\x0a\x97\x46\xaa\xcf\x04\x63\x1f\x3d\x3f\xb4\x6b\x25\xcb\x2c\x4f\xbe\x30\x30\x9e\x83\x51\x6a\x34\x6e\x28\xa7\x3c\xfb\xf6\xe2\x96\x61\xf6\xb7\x90\xd1\xff\xfe\xf4\xfb\x81\x1e\x11\x65\xf9\x25\x27\x2a\xcc\x53\x88\x96\x8c\x0d\xf7\x21\x5c\xf9\x75\x83\xff\x80\x3e\x5d\x5a\xf4\xa3\x2b\xd8\x7c\x76\xbc\xc6\x74\xc9\xd8\xb5\xc6\xdd\xed\x0c\x21\xa2\xbb\x81\x79\x45\x0e\xec\xcd\x7e\xd3\xf1\x92\x59\x97\x19\x67\x53\x6e\x79\x2a\x57\x9e\x4b\x95\xf1\x8e\x57\xfa\xa4\xf8\x99\x58\x7b\x2e\x59\x92\xe6\xe3\x21\xfa\x2b\x70\x32\x39\xef\x1d\x17\x69\x8b\x13\x35\x3a\xe3\x67\xf9\x75\x5e\xa0\x4e\xf1\x4c\x83\xbb\xef\xfe\xca\x7b\x42\x54\xa2\x6d\xe7\x57\x71\x7e\x52\x35\x11\x06\xa1\x0e\xe2\x18\x2a\xfb\x46\x52\x8b\x56\xa1\xf3\x52\x8b\xc1\xd9\x33\xe1\xfd\x3d\x18\x59\xbe\xd3\xb4\x96\xce\xf1\x95\x43\xb8\x0f\x69\x9d\x37\x75\x97\x3c\x88\xf1\x51\xfa\x5a\x63\x4f\x0d\xa7\x64\x93\xc4\x9d\xb0\x55\xe8\xa2\x08\xb2\x32\x8c\x31\x46\x1c\x72\x9a\x75\x8c\xa7\x78\xac\xe6\x13\xa4\x23\x7c\xdf\x73\x8e\xf0\x39\x4e\x3e\xcd\x19\xc2\x31\x1e\xf5\xbd\x80\x72\x9c\xce\x0c\xf8\x72\xbc\x36\xad\x4e\xe5\x33\x0c\x30\xfb\xc0\x3b\x87\xdf\x94\xb1\x35\xbb\x72\xcb\x64\x7d\x30\x86\x77\xf2\x9f\x78\x3a\x6b\x7d\x65\xf2\x9a\x18\x72\x74\xb5\x3e\x8d\x3b\x16\xb7\xee\xe5\xca\x0a\x6b\xc5\x31\x31\x85\xa7\x57\xbe\x30\x61\x42\x31\x1a\x39\x50\x86\x74\x67\xe6\x15\x2f\xb2\xed\xa2\x27\xf0\x7c\x7f\xc8\xd6\xe4\x06\x41\x32\xd5\xcd\x26\xcf\x43\x29\xb3\x51\xef\xdd\xff\xca\x21\x55\xed\x68\x08\x6e\xf0\x19\xe3\x24\xa7\x11\x5a\x96\xf3\xe7\xfa\xec\xd4\x32\xa7\x6a\xab\x37\x9e\xba\x8d\x13\x25\xb2\xb9\x43\xb2\x41\x89\x94\xfc\xe7\xe7\x7c\xd2\x8d\x64\xa6\x2e\x44\x7f\x7f\x3d\x7a\x49\xdf\x7c\xa6\x51\xb9\x0c\xa4\x9f\xda\x14\x2d\xd5\x15\xfc\xf6\x5b\x7a\xf4\x2e\x76\x2f\xb2\xba\xba\x81\x93\x75\xf4\x77\xf1\xad\xd0\x64\xd5\xa0\x1a\x7b\xb1\x3b\x57\xb0\x60\x7e\x8d\x44\x36\x18\x5c\x05\x77\x2d\x61\x2d\x7c\xb9\x4b\x8d\x60\x77\x2b\xdc\xe1\xe0\x85\x83\xc1\xd7\xcf\x6d\xa3\x6a\xdc\x67\x9d\x10\xb5\xa7\x46\xb5\xaf\x18\xc8\x9e\xdd\xe3\xbf\x33\x89\x0d\x59\x98\xdc\xc8\x39\xb3\x7b\x72\x7e\x28\xdb\x79\x65\x27\xf6\x38\xd4\x3d\x34\xa3\xfc\xbb\x90\xf4\xfa\x69\x2f\xfa\x1f\x9b\x02\xc3\x90\x6f\xbd\xde\xdd\x89\x95\xf5\x09\x66\x40\xa3\xff\xe0\x7c\x3e\xcb\x1f\x7a\xe3\x97\xdd\xa8\x2e\x4f\x22\xa3\x61\xe5\xe0\x47\x07\x5d\xda\x78\x2a\x8d\x2f\xf3\x86\xef\x0c\x55\x8c\xbf\xe2\x89\x17\xf7\x2f\x83\x59\xaf\x71\xe8\x0c\x26\x78\xd5\x34\x08\x27\x00\xd8\x03\x80\xcb\xc7\x5c\x31\x0c\x7e\x27\x08\x92\xdb\x1f\x8b\x7f\x05\x00\x00\xff\xff\x4b\x1a\xcb\xca\xe7\x29\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x4f\x8f\xe3\x36\xb2\xbf\xeb\x53\xd4\xeb\x00\x6f\xba\x03\x8f\xfb\x1d\x1e\xf6\xd0\x40\x30\x99\xa4\xd3\x0b\x63\x17\x9d\x60\xe2\x49\x0e\x8b\x45\x4c\x4b\x65\x9b\x3b\x14\xa9\x21\x29\x3b\xde\x4e\x7f\xf7\x45\x15\x49\x89\x92\xe5\xfe\x93\xec\xae\x0f\xc9\x58\x16\x8b\xc5\xaa\x5f\x55\xfd\xaa\xd8\xd7\x5f\x7e\x59\x14\x5f\x7c\x01\xcb\x1d\xc2\x9d\x32\x07\xb8\x37\xfa\xed\x5d\xab\xb7\x72\xad\x10\x96\xe6\x13\x6a\x70\x5e\xe8\x4a\xd8\x8a\x5f\x5c\xdd\x1b\x9d\x7e\xe7\x9f\x57\x50\x1a\xed\xad\x28\x7d\x51\x90\x14\xa9\x3d\xda\x8d\x28\x11\xfc\x4e\x78\x10\x4a\x4d\xc9\x4c\x6b\x1c\xb8\x9d\x69\x55\x45\x0f\x36\xc6\xd6\xe0\xcd\xbc\x58\x6c\x40\x40\xeb\xd0\xc2\x41\x68\xef\xc0\x1b\xa8\xb0\x51\xe6\x08\x02\x34\x1e\xe0\xfe\x6e\xd9\x09\x98\x81\xdf\xa1\xb4\xdd\xf7\x24\x4f\xd6\x8d\xc2\x1a\xb5\x67\xa5\xfc\xb1\x41\x07\x15\x6e\xa4\xc6\x0a\x76\x68\x31\x1e\xe6\x6e\xb9\x02\x8b\xce\xb4\xb6\xcc\x54\x0f\x27\x29\x8d\xc5\xfe\x47\x12\x11\x8e\x64\xb1\xb1\xe8\x90\x34\x13\x9a\x95\x91\x9a\xb4\x00\x57\x0b\xeb\x3b\x4d\xe6\x61\x8b\x6f\x8d\x52\x58\x7a\x69\xf4\x0a\x3e\x9c\xd9\xa9\xdf\x84\xe4\x3b\x6f\x2c\xba\x68\x82\x37\x2e\x1e\x37\x49\x99\x17\x0b\x0f\x52\x97\xaa\xad\xf8\xa5\x0d\x1e\x60\xd3\x6a\xfe\x8d\x4d\x25\x14\xf9\x91\xf4\x31\x07\x8d\x96\x1e\xa1\x70\x52\x1d\x8b\xda\xec\x11\x3c\xd9\xdf\x91\xca\x42\x57\x60\x5a\x0f\x66\xc3\x6f\xe7\x5b\xb0\xe6\x3f\x58\xb3\x97\x15\xda\x15\xbf\xb9\xfa\x80\x25\xca\x3d\x7d\x3d\x35\x98\xe3\x73\xb8\xfc\x09\x54\x58\x2a\x61\x31\x53\xee\x20\xfd\x0e\x9c\xa9\x11\x1a\x8b\x2c\xb4\x31\x8e\x0d\x56\x49\x7e\xa3\x88\xf6\xfd\xdc\x4a\x8b\xac\x54\x6f\x3d\x3a\xc7\xc6\xf0\xd9\x4a\xb4\x5e\x48\x0d\x5a\xd4\x52\x6f\x59\xd0\x1a\x77\x62\x2f\x8d\xed\xc0\xea\xe6\xac\xd2\x11\x48\x05\x87\x8d\xb0\xc2\x23\xac\xb1\x14\x2d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd0\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x95\x42\x93\x5b\x40\xe8\x63\x86\x88\x0e\x6c\x2c\xc5\x0d\x0d\xf3\xcd\x11\x5a\x47\x7a\x26\xb3\x39\xd6\xb8\x7f\x65\xc6\x8e\x76\xe4\x07\x72\xf5\x10\x45\x8e\xb7\x74\xa8\xab\x82\x56\xd9\xe0\x84\xe4\xc5\x06\xd1\xbe\xf5\xe6\x2d\xfd\x7f\xc6\xf6\x25\x87\x92\x29\xf4\x96\x0e\xc1\x9b\x50\x54\xb0\xe9\x05\x94\x48\x52\x15\x28\xac\xb6\x68\x8b\x13\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xb3\x2e\x2c\x39\xc4\x1c\x1d\xfb\xc8\xa2\x2b\x2b\x02\xe4\xee\xef\x96\xc5\xc6\x9a\x3a\x46\x65\xef\x3e\x8e\x53\x0d\x25\xe5\x03\x7a\xb1\xc2\xc6\x38\xe9\x3b\xfb\x82\xd1\x83\xbd\xde\xb8\x62\xe8\xfb\xd2\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\x79\x51\x7c\x79\x5d\x14\xb2\x6e\x8c\xf5\xf0\x93\xc4\x03\x85\x98\xda\xa3\x05\xd6\xe2\x22\x7f\x74\x51\x14\xd7\xd7\xd7\x9c\xea\x6a\x82\x4f\x9e\x46\xe6\xf0\x3d\x6f\x9d\x3f\x23\xc0\x2a\xc5\x6b\xe2\x06\xec\xb7\xe4\x6b\x56\x64\x80\xf7\x90\x5d\x38\x19\x48\xd7\xa7\xc5\xeb\xeb\xeb\x42\x94\x25\x3a\x77\x29\x94\xba\xea\x53\x55\x9f\x2a\xc7\x49\xf5\x66\x78\x96\x87\xa2\x00\x00\x20\x4d\xde\x6b\x40\xed\xa5\x8f\x3a\x6c\x8c\x0d\x01\xcf\x0e\xdf\x61\xe7\x0d\xa1\x38\xae\x03\x4c\xd8\x16\x02\x7e\x12\xad\xf2\x2c\x29\x57\x27\x17\xf7\x73\x5c\xfd\xb2\xfd\xda\xa6\x12\x3e\xc2\x39\xfc\x1b\x70\xcf\x51\xc0\xaf\xb1\x85\x9f\xdc\xee\x23\x2f\xea\x37\x1b\xef\x14\x13\x18\x85\xd8\xd6\x72\x29\x48\x0a\xf2\x9e\x71\xf9\x53\x3b\x7c\x4f\x12\xfa\x0d\xbe\xdb\x07\xc7\x09\x7f\x5a\x81\xb0\x96\x1e\x0e\x04\x52\xb2\x63\x8d\x5e\x54\xc2\x0b\xb2\x62\xca\xf2\x2e\x9e\xb2\xea\xe4\x2d\x42\x46\x30\x5a\x1d\x61\x8d\x2c\xc2\x63\x05\xeb\x23\x03\x3d\xf9\x64\x45\xcf\xef\xef\x96\x41\xdf\x6a\xd5\x81\xbe\x93\x13\xc2\x53\xc3\x8a\x5f\x11\x6b\x85\xab\x74\x0c\x8a\xf9\x0d\x5a\xd4\x54\x1e\x4c\x0a\xb2\x70\x86\x83\x38\x55\x89\xe0\x9d\x5b\xa0\xb1\xd1\x27\xae\x11\x75\x4d\x79\x86\xd1\xd0\xeb\x27\xe3\x93\x3e\xf6\xdc\x9b\xac\x18\xb8\x4e\x72\x4a\x9e\x7c\xda\xd2\x54\x01\x6c\x54\x48\xb2\xd7\xc1\x44\x87\xed\x04\x6d\x89\xa5\x14\xaa\x3f\x4a\x70\x53\x27\x31\x9e\x27\xdb\x8c\xec\xbe\x33\x55\x08\x3d\x32\x29\xd9\x82\xde\xdb\x62\x08\xb8\x53\xab\x74\xd2\x86\x26\x60\x4f\xd7\xe2\x13\x3a\xca\xf6\xce\x04\xad\xfc\x4e\xda\xea\x6d\x23\xac\x3f\x82\xd4\x15\xfe\x4a\x06\x21\x17\xd6\x46\x4b\xcf\xba\x27\x10\x77\xe2\x08\x6a\x9f\x5b\xb4\x47\xfe\x31\xda\xbb\x07\x48\x4a\x77\x01\xad\x43\xdb\xcd\x93\x90\x53\x90\xee\xfb\x00\xa8\x2e\xa9\x94\xdc\xc0\x8f\xde\x4a\xbd\x9d\x81\xac\x6e\xe0\xe3\x42\xfb\x3f\xfd\xff\x0c\xda\x36\xff\xc6\x5b\xdc\xc0\xfb\xaa\xb2\xe8\xdc\xbb\xab\x5c\x6c\x02\xf4\x15\xec\x65\xe0\x04\x30\xc4\xdd\xe5\x2f\xa0\x37\xfe\x03\x6e\x6e\x40\xb4\x7e\x77\x19\x1e\xc3\x6f\x21\x48\xae\xe0\x7f\x1f\xc6\x69\x68\x7e\x7f\xb7\x7c\x0c\x9b\x3c\xf0\x7f\xe9\xc3\x71\x32\x54\x3c\x88\x9d\x6f\xd1\x2f\x8f\x0d\x5e\x5e\xcd\x65\x45\x7e\xda\x48\xaa\x19\xa4\x7f\x7c\x41\x56\xe9\x40\xf1\x01\x7d\xe9\x4e\x15\x9f\xf1\xb7\x77\x73\x11\xce\x18\x76\x7f\x2c\x26\x63\x58\xba\x2e\xe4\x38\x70\x45\x48\x78\xf4\x3c\xe5\x41\x3d\xeb\x16\x4a\x5d\xc9\x52\xf8\x14\x95\xa4\x3a\x69\x17\x54\x9a\x65\x8c\xe9\x84\x10\xc5\xdd\x42\xc0\x75\x92\xd9\xf3\xb3\x01\x4c\x68\xd9\xc7\x8f\x8b\xdb\x24\xa2\x67\x4a\x93\x6b\xa1\x75\xad\x50\xea\x38\x88\xa0\x21\x66\x38\xcb\x9c\xe8\x23\x1d\x68\xe3\x03\x89\x23\xff\x9b\x56\xfb\x37\x8e\x99\xa3\xd8\xe2\x0c\x56\x24\x7e\xd5\x05\xd1\x4a\x4b\xb5\x7a\x0e\x8b\x29\xb5\xea\x17\xa3\x91\x36\xe9\xc1\x38\x83\x26\x12\x46\xb2\x40\x7a\xeb\x6a\xd2\x71\xe7\xbc\x16\x59\x01\x56\x4c\x3d\xa6\x8c\x02\x8b\xe0\x45\x74\x7f\xc8\x89\xf9\x46\x4f\xbb\x30\xb7\xfa\xe9\xda\x7f\x9b\xaf\x66\xaf\x73\xd6\x6d\xd2\xe1\xc5\xce\xf2\x26\x77\x55\xaf\xdf\x19\x67\x2d\x42\x87\x51\x71\x1d\x5e\x8b\xf2\xd3\x81\x48\xf5\x5b\x62\x61\xc2\xcb\x40\x93\x4f\x74\x3b\x6d\x0c\x60\x71\x7f\xb7\xbc\xe1\x8a\xf5\xf0\x98\x4b\x1f\x34\x89\xb1\xa8\x39\xa8\xdb\xd0\x0f\xc4\x56\xf0\xac\x11\x26\x36\xe2\x7d\x72\xd6\x34\x1f\xd3\xa7\xb4\x79\xab\xe5\xe7\x16\x61\x71\xcb\x67\x4b\xac\x35\xbd\x91\x6f\xa3\xd0\x67\x16\x1d\x4a\x99\x4e\x43\xa2\xf5\xa6\x16\x5e\x96\x1c\xd6\xb8\xe7\xaa\x21\x6b\x04\x91\xe9\x4c\x10\x72\xde\x9a\x63\x2c\xdb\x79\xdd\xe2\xa6\x42\xb2\x01\x44\x82\x8f\x4c\xbe\x90\x23\x6e\x12\xb0\xe0\x0c\x21\x33\xc2\x4c\x23\xd2\x9b\x82\x7b\x53\x61\xb7\x2d\xf7\xc0\x53\x87\x0b\x8b\x53\x4b\x7a\x9b\x34\xba\xec\x0f\x0c\x5f\x81\x43\x95\xa7\xed\xe1\x73\x7a\x76\x35\xb4\x4a\x69\x51\x78\xfc\xae\x6e\xfc\x31\xa3\xef\xe1\x29\xab\x84\xf4\xd3\xa0\xad\x8b\x16\x4c\x85\x9e\xbb\xdf\x13\xaf\xa4\xe8\xb4\xe8\x5b\xab\xb9\xa4\x27\xf2\x20\x94\x42\x9b\x15\x78\x3c\x06\x4e\x76\x60\xd6\xe6\x06\x22\xbe\x0e\xeb\xe1\x7d\xaf\xca\x38\x41\x70\xbb\x15\x75\x90\xee\x2c\x34\xa8\xbc\x4e\x1e\xf6\xf2\xea\x06\xbe\x7e\xe8\xbf\x3f\x66\xa5\x93\x3e\xdc\xf2\x0e\x1f\xd1\xc7\xa2\x6b\x95\xa7\x12\xfa\x57\xd4\x5b\xbf\xbb\xbc\x82\xaf\xbe\x82\xff\xbb\x81\x0b\x1e\x45\xf0\x4e\x55\xae\x2c\x87\x0a\x73\xce\xc6\x1f\xff\xe7\x62\x20\xf0\xb1\xe8\xff\x35\x38\xff\x9f\xd1\x3b\x48\x2d\x18\x47\x5c\x62\x45\x61\xcc\x50\x49\x8b\xa5\x57\x47\xb2\xde\x39\xcb\x55\x92\x15\x10\xf6\xc8\xdc\x58\x29\x70\xed\xfa\xfe\x6e\xf9\x23\x7c\xc2\x63\x20\xbf\x04\xe2\x49\xab\x75\xcc\x64\x8b\xfe\xfd\x5e\x48\x45\x5e\xff\x31\x2c\x27\xc3\x3d\x2c\x39\x9b\x05\x98\x8d\x2d\x17\x35\x78\x78\xea\x74\x1c\x67\x19\x5d\x4e\x8d\xec\xe0\x94\x27\x87\xfb\xc6\x10\xfd\x8e\xc1\xe2\x78\x64\x60\x1a\x3e\xa4\x1a\x4e\x54\x62\x53\x5c\xee\x8c\x71\x38\x10\xb1\x33\x07\x02\x65\xc2\xa7\x6b\xd7\xc1\xbe\x15\x36\xa8\x2b\xe2\x1c\x46\xc3\x81\x27\x62\x83\x7d\x62\xcd\x1c\x26\x82\x3b\x63\x01\x7f\x15\xd4\x69\xce\x40\x6e\x60\x45\x06\x5d\x31\xa5\x16\xb0\x17\xaa\xc5\x19\xac\x5b\x0f\x2b\x59\xad\xa0\x32\xe8\xf4\x9b\x30\x08\x63\x05\x87\x01\x29\x74\x54\x17\x0e\x3b\x59\xee\x82\x01\x36\xd1\x22\x3c\xc1\x30\xc9\xb2\x92\x6b\x97\xe5\x0c\x25\xe0\xa2\xc2\x0d\x35\x8c\x17\x03\x79\x8b\x0d\xac\x83\xb5\x62\xa5\x8a\x8d\x7d\x0f\x26\x6e\x0f\x42\x04\x09\x70\x52\x6f\x55\x50\x8b\x34\xf9\x07\x81\x36\xec\x36\x90\x4a\x0b\xe7\xb0\x24\x07\xed\x50\x35\x2e\x46\xb5\x83\xc3\xce\xd0\x56\xfa\x8d\x07\xd7\x5a\x0c\x16\xf4\x69\xae\xa3\x8c\xf9\x44\xa6\xa5\x3c\x9e\xcb\x1b\x22\xb7\x11\x56\xd4\x10\xea\x24\x05\x13\x61\x2c\x55\xf7\x0a\x9d\xb4\x58\x9d\xe4\x9a\xb8\x88\x72\x1e\x0f\x35\xab\xb4\x20\x22\x60\x6d\xac\x35\x87\xf3\x7b\x76\xd1\xe2\xbc\x6d\x4b\xdf\xf2\x24\x31\x8e\x0d\x13\x01\xb5\xf8\xb9\x45\x47\x61\x4d\x61\x31\x3f\x9b\x66\xb6\xe8\x43\x88\xc4\x5a\xbf\x8c\x9c\xa7\xab\xda\x70\x73\x8e\xbb\xbf\x9b\x0e\x21\x2d\x55\x31\xcc\x15\xd3\xb5\xd9\x40\x8d\x95\xa4\x26\xa1\x1f\x2b\x74\xd3\x84\x54\xcf\x72\x16\xdb\xa7\xbd\xd7\x94\xee\x34\x68\x1c\x16\x6a\xf8\x19\x63\x4f\x9e\x7a\xfe\x34\x5c\x48\x0d\x57\xe2\x9b\x99\xa8\xd4\xa3\x12\x87\xa0\x3c\xa5\xb7\xdd\xf2\x5c\x74\x94\x14\x91\x25\x78\x58\xb3\x09\x53\x3a\x6f\x62\x65\x54\xd2\x79\xa4\x8e\x2e\xfd\xae\xa2\xc0\x34\xba\x8a\x6d\xe2\xc0\xf1\x9d\xae\x16\x6b\xb3\xc7\x6e\x42\xdc\xe9\x9c\x65\x70\xaa\x67\xe1\xa5\x71\x35\x1b\x46\x9c\xe7\x10\xe7\xea\xce\x0d\xf5\xe6\x48\xbc\x99\xbb\x75\x5a\xb2\xb8\xa5\x78\x0d\x94\xd5\xd2\x5b\x53\x40\x4e\x7a\x11\xd7\x9b\x04\x74\xa7\xf8\x84\xa6\x63\x64\x76\x43\x98\xae\x75\x24\x98\x26\x09\x97\xf9\x5e\x11\xa1\x54\x12\x09\x8f\xaf\xaa\x85\xb2\xa2\x12\x98\x4b\xe3\x5a\xd8\x53\xf3\xbe\x9b\x0a\x0d\x44\x2a\x89\x3c\x8b\x17\x44\xba\xdc\x28\xd0\x16\xb7\x17\x27\xbb\x31\xc6\xc6\xcd\x4f\x5f\x8e\xcf\x74\xb4\x9d\x8e\x89\x1a\xc5\x07\xa1\x0d\x09\x9d\x11\x93\xa4\x61\x3b\x3b\x6e\x92\x32\x1e\x95\xeb\xf4\xf8\xca\xf0\x8c\x90\x74\x09\x46\xbf\x2f\x0e\xd3\x84\x7f\x4c\x98\x13\xe0\x3d\x4f\x53\x22\xa2\x87\x0c\x93\xc1\x2c\xaa\x2a\xc7\xf2\xb7\xa7\x00\xca\xf3\x71\x98\x73\x2e\x7b\x08\xc6\x6d\xce\xe6\xc1\xf8\xfb\x65\x5c\x19\x10\x35\xe2\x9f\x9c\x2b\x9b\xc6\x58\x8f\xd5\xfd\xdd\x72\xc9\xf7\x3e\xa9\x28\x0b\x8e\xe9\x34\x67\x0f\x77\x42\x3d\x33\xb0\xe9\xf4\xb4\x6f\xe3\x5f\x46\x7f\x82\x90\x5a\x34\x4d\xe8\x59\xd7\xc6\x28\x14\x7c\xbf\xd2\x0d\x1b\xb8\xac\xca\xa1\xbc\x1e\xea\xa5\xa4\x2e\x01\x5c\xd0\x9a\xec\xf7\x2c\x73\x3a\x39\x61\x46\x9d\xbe\x31\x46\x8d\x68\xd1\x87\x78\xfc\x94\x34\x42\x96\x60\x17\x6d\xe5\x1e\x75\xec\x39\x5c\x3c\x78\xa4\x70\xd3\x19\x80\x47\xc2\x93\x9c\x39\x2c\xee\x2f\x46\xe2\x54\x35\xab\xf8\xe0\x6d\x8b\x24\x3b\x12\x8b\xf3\x55\xfa\xbd\xee\x3c\x74\xc6\x0b\xd1\xce\x13\x66\xee\xfd\x48\x5a\x45\xfb\x8e\x6b\xfd\x0b\x18\xaa\x74\x63\x33\x67\xe5\xf7\x2a\x18\x7a\x1c\x9b\x7f\x21\x0b\x3c\xd1\x30\x83\x45\xe1\xd2\x48\xf5\x99\x60\xec\xa3\xe7\x87\x76\xad\x64\x99\xe5\xc9\x17\x06\xc6\x73\x30\x4a\x8d\xc6\x0d\xe5\x94\x67\xdf\x5e\xdc\x32\xcc\xfe\x16\x32\xfa\xdf\x9f\x7e\x3f\xd0\x23\xa2\x2c\xbf\xe4\x44\x85\x79\x0a\xd1\x92\xb1\xe1\x3e\x84\x2b\xbf\x6e\xf0\x1f\xd0\xa7\x4b\x8b\x7e\x74\x05\x9b\xcf\x8e\xd7\x98\x2e\x19\xbb\xd6\xb8\xbb\x9d\x21\x44\x74\x37\x30\xaf\xc8\x81\xbd\xd9\x6f\x3a\x5e\x32\xeb\x32\xe3\xec\xc4\x2d\xb3\xe9\x99\x43\xd6\xe0\x3e\x9d\x4c\xcf\xe5\xd2\x78\x09\x2c\x7d\x3a\xd9\x99\x60\x7c\x2e\x9b\xd2\xd1\xc6\x53\xf6\x57\x00\x69\x72\x20\x3c\xae\xe2\x16\x27\x8a\x78\x46\xe0\xf2\xfb\xbe\xc0\xad\xe2\x99\x06\x97\xe3\xfd\x9d\xf8\x84\xa8\xc4\xeb\xce\xaf\xe2\x04\xa6\x6a\x62\x14\x42\x1d\xc4\x31\x94\xfe\x8d\xa4\x1e\xae\x42\xe7\xa5\x16\x83\xb3\x67\xc2\xfb\x8b\x32\xb2\x7c\xa7\x69\x2d\x9d\xe3\x3b\x89\x70\x61\xd2\x3a\x6f\xea\x2e\xbb\x10\x25\xa4\xfc\xb6\xc6\x9e\x3b\x4e\xc9\x26\x89\x3b\x61\xab\xd0\x66\x11\xa6\x65\x98\x73\x8c\x48\xe6\x34\x2d\x19\x8f\xf9\x58\xcd\x27\x58\x49\xf8\xbd\x27\x25\xe1\x7b\x1c\x8d\x9a\x33\x8c\x64\x3c\x0b\x7c\x01\x27\x39\x1d\x2a\xf0\xed\x79\x6d\x5a\x9d\xea\x6b\x98\x70\xf6\x91\x79\x0e\xbf\x29\xa5\x6b\x76\xe5\x96\xd9\xfc\x60\x4e\xef\xe4\x3f\xf1\x74\x18\xfb\xca\xec\x36\x6a\xf7\x29\x3b\xb9\x33\xb3\x82\x17\xa9\xbd\xe8\xc9\x33\xdf\xdd\xb1\xa2\x4c\xce\x25\xd3\xcc\x6c\xea\x3b\x94\x32\x1b\xf5\xbd\xfd\x5f\x18\xa4\x8a\x19\x0d\xc2\xcd\x35\xc3\x87\xe4\x34\x42\xcb\x72\xfe\x5c\x8f\x9b\xda\xd5\x54\xe9\xf4\xc6\x13\xd3\x3f\x51\x22\xeb\xf9\x93\x0d\x4a\xa4\xc4\x3b\x3f\xe7\x9b\x6e\x1c\x32\x75\x19\xf9\xfb\x6b\xc1\x4b\x7a\xd6\x33\x4d\xc2\x65\x20\xdc\xd4\x22\x68\xa9\xae\xe0\xb7\xdf\xd2\xa3\x77\xb1\x73\x90\xd5\xd5\x0d\x9c\xac\xa3\xcf\xc5\xb7\x42\x93\x55\x83\x6a\xec\xc5\xee\x5c\xc1\x82\xf9\x15\x0e\xd9\x60\x70\x0d\xdb\xb5\x63\xb5\xf0\xe5\x2e\x35\x61\xdd\x8d\x6c\x87\x83\x17\x0e\xe5\x5e\x3f\x33\x8d\xaa\x71\x8f\x73\x42\x92\x9e\x1a\x93\xbe\x62\x18\x7a\x76\x8f\xff\xce\x14\x34\x24\x38\x72\x23\xa7\xa3\xee\xc9\xf9\x81\x68\xe7\x95\x9d\xd8\xe3\x50\xf7\xd0\x08\xf2\xdf\x64\xa4\xd7\x4f\xfb\xc0\xff\xd8\x04\x16\x86\x5c\xe7\xf5\xee\x4e\x8c\xa8\x4f\x30\x03\x0a\xfb\x07\x67\xe3\x59\xfe\xd0\x1b\xbf\xec\xc6\x64\x79\x12\x19\x0d\x0a\x07\x17\xfe\x5d\xda\x18\xa5\x0c\x61\xad\x38\xa6\x66\x6b\x99\x37\x5b\x67\x68\x5a\xfc\x0b\x9a\x78\x69\xfe\x32\x98\xf5\x1a\x07\x56\x3e\x41\x59\xa6\x41\x38\x01\xc0\x1e\x00\xcc\x75\xe7\x8a\x61\xf0\x3b\x41\x90\xdc\xfe\x58\xfc\x2b\x00\x00\xff\xff\x5a\x46\xc7\x4c\x63\x29\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -151,7 +151,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{0x43, 0xf4, 0x6, 0x21, 0x3a, 0x48, 0x3b, 0x64, 0x18, 0xf8, 0xa6, 0x54, 0x84, 0xbe, 0x39, 0xcd, 0x18, 0x58, 0x59, 0x40, 0x46, 0x51, 0xfc, 0x0, 0x76, 0x23, 0x22, 0xee, 0x84, 0xae, 0xc1, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0x6f, 0x32, 0x53, 0xae, 0xd1, 0xcc, 0xc6, 0xe, 0xf5, 0x94, 0x1e, 0x4d, 0xdb, 0x89, 0xe3, 0xec, 0xbf, 0xef, 0x5f, 0x1d, 0x88, 0x7f, 0x91, 0x69, 0x2a, 0xac, 0xaa, 0x25, 0x1b, 0x66, 0xda}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 9297eba..2e1bb0b 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -9,14 +9,14 @@ // scripts/get_nft_metadata.cdc (5.622kB) // scripts/get_nft_view.cdc (4.367kB) // transactions/destroy_nft.cdc (1.277kB) -// transactions/mint_nft.cdc (2.829kB) +// transactions/mint_nft.cdc (2.885kB) // transactions/nft-forwarding/change_forwarder_recipient.cdc (1.298kB) // transactions/nft-forwarding/create_forwarder.cdc (1.594kB) // transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.091kB) // transactions/nft-forwarding/unlink_forwarder_link_collection.cdc (1.104kB) -// transactions/setup_account.cdc (1.361kB) -// transactions/setup_account_from_nft_reference.cdc (1.442kB) -// transactions/setup_account_to_receive_royalty.cdc (1.474kB) +// transactions/setup_account.cdc (1.326kB) +// transactions/setup_account_from_nft_reference.cdc (1.415kB) +// transactions/setup_account_to_receive_royalty.cdc (1.477kB) // transactions/test/upgrade_nft_contract.cdc (172B) // transactions/transfer_nft.cdc (2.189kB) // transactions/unlink_collection.cdc (555B) @@ -269,7 +269,7 @@ func transactionsDestroy_nftCdc() (*asset, error) { return a, nil } -var _transactionsMint_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x41\x6f\xe3\x36\x13\xbd\xeb\x57\xcc\xe7\x83\x57\xc6\x97\xb5\x5b\xa0\xe8\x41\x88\x13\x24\xde\x06\xe8\x61\x83\x45\xd6\xdd\x4b\x90\xc3\x58\x1a\x4b\x6c\x69\x52\x25\x47\x76\x8c\x20\xff\xbd\xa0\x28\xd1\xa2\xa3\xa4\xf5\xc1\x96\xc9\x99\xc7\x99\x37\x6f\x86\x5a\x2c\x16\xb0\xae\x84\x05\x9b\x1b\x51\x33\x34\x96\x2c\x70\x45\x70\x7f\xb7\xfe\x2a\x14\x93\x01\x43\x56\x37\x26\x27\x60\x0d\x3b\xa1\x18\x10\x14\x1d\x9c\x41\xe2\xbc\x7f\x67\xd8\x35\x96\x61\x43\x60\x1a\x05\x07\xc1\x55\x0b\x80\x79\xae\x1b\xc5\xc0\x15\x32\x54\xe8\x51\x77\x31\x64\x0b\x60\x59\x1b\x2a\x40\x28\x58\xb8\x47\x2c\x69\x11\x0e\x4f\x12\xb1\xab\xb5\x61\x98\xdc\x6b\x75\xd7\xa8\x52\x6c\x24\xad\xf5\x5f\xa4\x26\x61\xe7\xb7\x67\xdc\xd5\x92\xee\xef\xd6\xa7\xb5\xaf\xc4\x58\x20\xe3\x0f\x41\x07\x7b\x5a\x3e\x43\x48\xd8\xa0\xb2\x98\xb3\xd0\x2a\x4d\x00\x00\x0c\xe5\xa2\x16\xa4\x38\x83\x9b\xa2\x30\x64\xed\x45\xbb\xae\x70\x47\x19\x7c\x67\x23\x54\xe9\x57\x0a\xf2\x8c\x09\xad\xe2\x0d\xae\x9a\xdd\x46\xa1\x90\xf1\x72\xde\xb0\xcd\xe0\xf1\x8f\x3b\xf1\xfc\xeb\x2f\x4f\x7e\xcd\xe8\x23\x4a\x3e\x7e\x39\x41\x39\x13\xef\x15\x9b\xdc\x92\xa2\xad\xc8\x05\x1a\x41\xce\xa6\x0b\xee\x29\x99\xc1\x4b\xd2\x1a\x3a\x26\xa5\xce\x51\xc2\x1e\x8d\xc0\x8d\x24\xd8\x6a\xd3\x92\x2b\x54\x19\x93\xbf\x25\x43\x2a\xa7\xd6\x4f\x12\x77\x1b\x19\x4c\x4f\x54\xce\x07\x25\xe8\xe1\x1f\x7a\x47\xa7\x04\x07\x68\x28\x27\xb1\x27\xf3\xc9\x42\xae\xa5\xa4\x96\xc8\x80\x1a\xb8\x5c\x85\xbd\x07\xda\x66\x30\x7d\x39\xaf\xe5\xfc\xa1\x03\x7a\xf5\x87\xd5\x86\x6a\x34\x94\x5a\x51\x2a\x17\x17\x36\x5c\xa5\xb7\xda\x18\x7d\xf8\x81\xb2\xa1\x19\x4c\x6f\xbc\xba\x42\xfa\xfd\xa1\xa7\x38\xbe\x20\x23\x2c\x61\x90\x92\x53\x9d\xdc\xd3\x4a\x2b\x36\x98\xb3\xd3\x46\xda\x2b\x71\x7d\xac\x29\x03\x25\xe4\x05\xec\x05\x1d\xfc\x5f\xf7\x7d\x19\x49\xc9\xd1\xb2\x8a\x8e\xb8\x4a\x67\x33\x40\xfb\x3f\xf8\x17\xbb\xeb\x10\xa6\xfb\x5c\x5f\x43\x8d\x4a\xe4\xe9\xc4\x99\x3f\xf8\xc0\x0c\x14\x9a\x2c\x28\xcd\xd0\x85\x0a\x6f\x60\xda\xe8\x26\xb3\x00\x16\x1e\x16\x0b\xd8\xb4\x0c\x01\x9e\x2a\xdc\x17\x6a\xa4\x99\x85\x82\xae\xdb\x02\x84\x25\xb9\x9d\x77\x22\x59\x82\x27\x7f\xde\x19\xcd\x3d\xf8\xe5\xa8\x44\xae\xd2\xad\xd1\xbb\x6c\xc8\xb5\xdf\xf8\xee\x9d\xbf\x21\x57\xb3\x77\xf2\xef\x0a\x79\x4a\xbd\x1d\x07\x80\x0a\xf4\xe6\x4f\xca\x19\x90\xdb\x14\x6c\x4d\xb9\xd8\x0a\x2a\xa0\x46\xae\x26\xb3\x64\x98\xb9\xd7\x46\xaf\x49\xaf\xba\x4f\x16\xea\x66\x23\x45\xee\xb2\x1f\xe8\xe2\x4c\xff\x21\xf1\x71\xb9\xc2\x12\x4a\xe2\x2e\xc8\x34\xd8\xcc\xe6\x39\xd6\xb8\x11\x52\xb0\x20\x1b\xc8\xf9\x40\xd9\x57\x69\x44\x40\x3b\x12\xa2\xca\xce\x7d\xb4\x8e\xab\xc8\x72\x36\x20\x6b\xa5\x1b\x59\xb4\x2c\x95\xbe\xc1\x5a\xec\xd1\x7a\xc3\x29\x8d\x4e\x2e\xa7\xe6\x82\x97\x70\x82\x1b\x4b\x73\x49\xaa\xe4\x0a\x96\xcb\xb1\x89\xd4\xef\x4e\xa7\xef\x18\x47\xb3\xa9\xdb\xce\x60\x72\x63\x0c\x1e\xa1\xb3\xb6\x55\x1b\xf9\x86\x80\xfe\x6e\x50\xb6\xa3\xa9\x73\x07\x43\x12\x99\x0a\x28\x88\x51\x48\x3b\x19\x06\x4b\xcf\x94\x37\x4c\xc3\x2e\x5f\x2c\x60\x65\x08\x99\x7c\xb9\x3b\x90\xce\x39\x58\xed\xd1\x80\x17\xd6\x12\x7e\x8a\x56\xbd\x87\x1f\xa3\x71\xcf\x3e\x78\xac\x27\x58\xc2\xe3\x53\xf0\x39\x54\x42\xd2\x47\xb9\xc2\x55\x77\xd2\x4b\x54\x37\x37\x8d\x36\xc1\xfc\x08\xe3\x7c\x3d\xb6\xae\x4f\x1f\x79\xae\x7a\xa5\x1d\x63\x31\x0e\x4c\xce\xe4\x58\x12\x5f\x4e\x5f\xfe\xbb\x10\xdd\x27\xa6\xa2\x24\xee\xd8\xe8\xfd\xbe\x05\x75\xa6\xb3\x37\x00\x43\x8d\xde\x0e\x72\x0e\x4d\x5d\xe1\x9e\xa0\x87\x82\x5c\xab\xad\x28\x1b\x77\xeb\x23\xc3\xbb\x07\x0d\x9b\x1c\xc2\x5d\xe8\x12\xc4\xba\x26\x55\xbc\x4d\x64\xb4\x9e\xe3\xf9\xf6\xcd\x93\x8d\x53\x7d\x31\xea\x94\x37\x9c\xb5\x5d\xd0\x95\x6d\xdc\x2a\x7a\x35\x18\xe9\xa8\xb1\x9a\xb7\x2c\x26\xef\xff\xeb\xb5\xec\x7f\xff\x0f\x3f\x87\xdd\xd7\x24\xea\x0d\x37\x78\xc3\x0c\x40\xe5\xda\xaa\xd6\x56\x30\x08\x1e\x5c\xdb\x61\x44\x9e\xdd\xdb\x30\x7c\x23\x28\x1c\xc4\xe5\xe7\xe1\xbd\xd0\xfe\xdc\xdf\xad\x63\x4e\xfd\xdb\x91\xfb\x8e\x09\x89\x88\x18\xfc\x89\xad\x06\x2f\x4c\xe1\xf1\x62\xbc\xf0\xd9\xe9\x31\x79\xcb\xd3\x07\x63\x7c\xde\xb1\x90\xb2\x6b\x86\x0c\x2e\x3f\x87\x0c\xc3\x70\x7c\x4d\xfe\x09\x00\x00\xff\xff\xbd\x5e\x5a\xa5\x0d\x0b\x00\x00" +var _transactionsMint_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\x41\x6f\xe3\x36\x13\xbd\xeb\x57\xcc\xe7\x83\x57\xc6\x97\xb5\x5a\xa0\xe8\x41\x88\xb3\x48\xbc\x0d\xd0\xc3\x06\x8b\xac\xbb\x97\xc0\x87\xb1\x34\x96\xd8\xd2\xa4\x4a\x8e\xec\x18\x41\xfe\x7b\x41\x51\xa2\x25\x47\x4e\x0c\xc3\x96\xc8\x99\xc7\x99\x37\x6f\x46\x4a\x92\x04\x56\xa5\xb0\x60\x33\x23\x2a\x86\xda\x92\x05\x2e\x09\x1e\xee\x57\xdf\x84\x62\x32\x60\xc8\xea\xda\x64\x04\xac\x61\x27\x14\x03\x82\xa2\x83\x33\x88\x9c\xf7\x9f\x0c\xbb\xda\x32\x6c\x08\x4c\xad\xe0\x20\xb8\x6c\x00\x30\xcb\x74\xad\x18\xb8\x44\x86\x12\x3d\xea\x6e\x08\xd9\x00\x58\xd6\x86\x72\x10\x0a\x12\x77\x89\x05\x25\xe1\xf0\x28\x12\xbb\x4a\x1b\x86\xc9\x83\x56\xf7\xb5\x2a\xc4\x46\xd2\x4a\xff\x43\x6a\x12\x76\xfe\x78\xc6\x5d\x25\xe9\xe1\x7e\x75\x5a\xfb\x46\x8c\x39\x32\xfe\x14\x74\xb0\xa7\xe5\x33\x84\x88\x0d\x2a\x8b\x19\x0b\xad\xe2\x08\x00\xc0\x50\x26\x2a\x41\x8a\x53\xb8\xcd\x73\x43\xd6\x5e\x35\xeb\x0a\x77\x94\xc2\x0f\x36\x42\x15\x7e\x25\x27\xcf\x98\xd0\x6a\xb8\xc1\x65\xbd\xdb\x28\x14\x72\xb8\x9c\xd5\x6c\x53\x78\xfa\xeb\x5e\x3c\xff\xfe\xdb\xda\xaf\x19\x7d\x44\xc9\xc7\xaf\x27\x28\x67\xe2\xbd\x86\x26\x77\xa4\x68\x2b\x32\x81\x46\x90\xb3\x69\x83\x5b\x47\x33\x78\x89\x1a\x43\xc7\xa4\xd4\x19\x4a\xd8\xa3\x11\xb8\x91\x04\x5b\x6d\x1a\x72\x85\x2a\x86\xe4\x6f\xc9\x90\xca\xa8\xf1\x93\xc4\xed\x46\x0a\xd3\x13\x95\xf3\x5e\x09\x3a\xf8\xc7\xce\xd1\x29\xc1\x01\x1a\xca\x48\xec\xc9\x7c\xb2\x90\x69\x29\xa9\x21\x32\xa0\x06\x2e\x97\x61\xef\x91\xb6\x29\x4c\x5f\xce\x6b\x39\x7f\x6c\x81\x5e\xfd\x61\x95\xa1\x0a\x0d\xc5\x56\x14\xca\xc5\x85\x35\x97\xf1\x9d\x36\x46\x1f\x7e\xa2\xac\x69\x06\xd3\x5b\xaf\xae\x90\x7e\x77\xe8\x29\x8e\xaf\xc8\x08\x0b\xe8\xa5\xe4\x54\x27\xf7\xb4\xd4\x8a\x0d\x66\xec\xb4\x11\x77\x4a\x5c\x1d\x2b\x4a\x41\x09\x79\x05\x7b\x41\x07\x7f\xeb\x7e\xaf\x07\x52\x72\xb4\x2c\x07\x47\xdc\xc4\xb3\x19\xa0\xfd\x1f\x7c\x60\xf7\x25\x84\xe9\x3e\x5f\xbe\x40\x85\x4a\x64\xf1\xc4\x99\x3f\xfa\xc0\x0c\xe4\x9a\x2c\x28\xcd\xd0\x86\x0a\x6f\x60\x9a\xe8\x26\xb3\x00\x16\x2e\x92\x04\x36\x0d\x43\x80\xa7\x0a\x77\x85\x1a\x69\x66\xa1\xa0\xed\xb6\x00\x61\x49\x6e\xe7\xad\x48\x16\xe0\xc9\x9f\xb7\x46\x73\x0f\x7e\x3d\x2a\x91\x9b\x78\x6b\xf4\x2e\xed\x73\xed\x37\x7e\x78\xe7\xef\xc8\xe5\xec\x42\xfe\x6d\x21\x4f\xa9\x37\xe3\x00\x50\x81\xde\xfc\x4d\x19\x03\x72\x93\x82\xad\x28\x13\x5b\x41\x39\x54\xc8\xe5\x64\x16\xf5\x33\xf7\xda\xe8\x34\xe9\x55\xf7\xc9\x42\x55\x6f\xa4\xc8\x5c\xf6\x3d\x5d\x9c\xe9\x3f\x24\x3e\x2e\x57\x58\x40\x41\xdc\x06\x19\x07\x9b\xd9\x3c\xc3\x0a\x37\x42\x0a\x16\x64\x03\x39\xef\x28\xfb\x26\x1e\x10\xd0\x8c\x84\x41\x65\xe7\x3e\x5a\xc7\xd5\xc0\x72\xd6\x23\x6b\xa9\x6b\x99\x37\x2c\x15\xbe\xc1\x1a\xec\xd1\x7a\xc3\x29\x8d\x56\x2e\xa7\xe6\x82\x97\x70\x82\x1b\x4b\x73\x49\xaa\xe0\x12\x16\x8b\xb1\x89\xd4\xed\x4e\xa7\x17\x8c\x07\xb3\xa9\xdd\x4e\x61\x72\x6b\x0c\x1e\xa1\xb5\xb6\x65\x13\xf9\x86\x80\xfe\xad\x51\x36\xa3\xa9\x75\x07\x43\x12\x99\x72\xc8\x89\x51\x48\x3b\xe9\x07\x4b\xcf\x94\xd5\x4c\xfd\x2e\x4f\x12\xf7\x5d\x1a\x42\x26\x5f\xf1\x16\xa7\xf5\xef\x1b\xee\xd1\x80\x97\xd7\x02\x7e\x39\xdf\xf0\x7e\x7e\x9e\x0e\x9b\xf7\xd1\x23\xae\x61\x01\x4f\xeb\xbe\xdb\xa1\x14\x92\xde\xcb\x1b\x6e\xda\xf3\x5e\xfa\x6e\xdd\x70\xda\x04\x8f\x23\x8c\xd3\xf7\xd4\x78\xaf\x3f\x70\x5e\x76\xda\x3b\x0e\xe5\xd9\x33\x39\x13\x68\x41\x7c\x3d\x7d\xf9\x58\x9a\xed\x79\xdd\x67\x48\x4b\x41\xdc\x32\xd3\xb9\x7e\x0f\x92\x8d\x67\x63\x18\x7d\xed\xde\xf5\x92\x0f\xcd\x5e\xe2\x9e\xa0\x43\x83\x4c\xab\xad\x28\x6a\xf7\x36\x80\x0c\x17\xcf\x3a\x6b\x7e\x08\x8f\x49\x97\x29\x56\x15\xa9\x7c\x34\xa3\xd1\x22\x5f\xcc\xbd\xeb\xae\x74\x9c\xf9\xab\x4b\x7e\x59\xcd\x69\xd3\x29\x6d\x2d\x2f\x1a\x0e\xde\x20\x46\x1a\xef\x82\x16\x1a\x5e\xcf\x17\xdf\x2c\x74\xaa\xf7\xff\xff\x87\x5f\xfb\x06\xaf\xd1\x80\x40\x37\xab\xc3\xd8\x40\xe5\x3a\xb1\xd2\x56\x30\x08\xee\x3d\xe9\xc3\x54\x3d\x7b\xd4\x43\xff\x25\x22\x77\x10\xd7\x9f\xfb\x8f\x92\xe6\xef\xe1\x7e\x35\x9c\x7f\xfe\x85\xca\xfd\x5e\x45\x17\x49\xe9\xdd\x0c\xad\x7a\xef\x58\xe1\x72\x68\xd1\x6f\xee\x35\x24\x49\xb8\x8f\xde\x72\xf8\xce\xf8\x9f\xb7\x54\xc4\xec\x5a\x26\x85\xeb\xcf\x21\xcd\x30\x54\x5f\xa3\xff\x02\x00\x00\xff\xff\x0d\x17\x53\xe3\x45\x0b\x00\x00" func transactionsMint_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -285,7 +285,7 @@ func transactionsMint_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/mint_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0xaa, 0x3e, 0x8b, 0x37, 0x8b, 0x16, 0x84, 0xf1, 0xaa, 0xfa, 0x31, 0x24, 0xac, 0x14, 0x5, 0x0, 0x1c, 0x13, 0x2, 0x12, 0x82, 0xbe, 0xe0, 0x9a, 0x7d, 0x9, 0x92, 0xc0, 0x11, 0xa2, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x59, 0x8f, 0x44, 0x31, 0x1d, 0x1a, 0x7e, 0x73, 0x16, 0xd2, 0xd0, 0xa5, 0x55, 0x18, 0x24, 0x64, 0xd1, 0x7c, 0x83, 0x6c, 0x50, 0xd8, 0x49, 0x43, 0xe7, 0xb0, 0x65, 0x3, 0xd2, 0x62, 0x63}} return a, nil } @@ -369,7 +369,7 @@ func transactionsNftForwardingUnlink_forwarder_link_collectionCdc() (*asset, err return a, nil } -var _transactionsSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x94\x4f\x6f\xe2\x3c\x10\xc6\xef\xf9\x14\x4f\x39\x54\x41\x4a\xe1\x5e\xd1\xf6\x7d\x97\x2d\xd2\x1e\x16\x55\x6d\xb6\xf7\x21\x0c\x8d\xb5\xc6\x8e\xec\x09\x2c\xaa\xf8\xee\x2b\x27\x90\x7f\xa0\xae\x0f\x88\xd8\x33\xe3\xdf\x3c\x8f\xed\xe9\x74\x8a\x34\x57\x1e\xe2\xc8\x78\xca\x44\x59\x03\xe5\xb1\xcf\x49\x40\x06\x94\x65\xb6\x34\x82\xbd\x2d\xf5\x1a\xae\x34\x51\xc8\x10\x0b\xcf\x02\x25\x9e\xf5\x06\x65\x11\x26\x1c\x67\xac\x76\x8c\xe5\x22\xf5\x51\xa4\xb6\x85\x75\x82\xd1\xd2\x9a\x45\x69\x3e\xd4\x4a\x73\x6a\x7f\xb3\x19\x35\x2b\xcf\x7f\x68\x5b\x68\x5e\x2e\xd2\x76\xee\x27\x0b\xad\x49\xe8\x5d\xf1\xde\x8f\xa2\xa8\x0b\xf5\x19\x45\x00\x50\x38\x2e\xc8\x71\xec\xd5\x87\x61\x77\x0f\x2a\x25\x8f\xbf\x59\xe7\xec\xfe\x9d\x74\xc9\x09\x7e\x78\x5f\xf2\x9b\x58\x47\x1f\x3c\xa7\x82\x56\x4a\x2b\x39\xcc\xad\x11\x67\xb5\x66\x97\xe0\xa5\x5c\x69\xe5\xf3\x76\x31\xc1\x1b\xed\xf8\x94\xff\xcb\x14\xc3\xf5\x31\x6e\xff\xaf\x85\x18\xe3\xb3\xc2\x08\xa3\xf9\xa3\x59\x90\x85\xda\x15\xe9\x77\x12\xc2\x03\xda\xfe\x26\x8e\xbd\xd5\x3b\xae\x10\x28\x93\xd0\x5d\x1c\xe6\x4a\x97\x71\x7a\x28\xf8\x1e\x46\xe9\x04\x3b\xc5\xfb\xfa\x33\xfc\xce\x7a\x62\x4c\x96\x8b\x74\xde\xdb\xe2\x31\x1e\x8f\x41\xfe\x06\xff\x88\x7b\x6a\x30\xc3\x78\x7a\x42\x41\x46\x65\xf1\x28\x84\xbf\xd6\x60\x0e\x6b\xcb\x1e\xc6\x0a\x4e\xa8\xb8\x28\x53\xd1\x8d\xc6\x51\x53\x6d\x3a\xc5\x2b\x4b\xe9\x0c\x98\x9c\x3e\x40\x6d\x20\x39\x37\x07\x86\xb4\x63\x5a\x1f\x90\x93\x07\x75\xd4\x69\xf2\xd5\x06\xb5\x87\x13\x5f\x7b\x35\x59\x55\x2e\xce\x6e\x3b\xca\xb5\x0c\x8f\xf1\xc6\xd9\xed\xfd\x40\xe7\x73\xee\x0b\x49\x3e\xc6\xcd\x43\x10\xb2\xe3\x50\x18\xae\x82\x6c\xa6\x8e\xbd\x0e\xe6\x8e\x49\x18\x04\xc3\x7b\xf0\xb6\x90\xc3\x35\xd4\xbe\xbf\x98\xdd\x75\xcd\xcd\xaa\x12\xcf\x21\xb7\xa5\x8d\xcd\x46\x3a\x56\xfe\xd7\x89\x5f\x2e\xd2\x60\x5d\x0f\xc3\xd3\x8e\xa1\x24\x5c\xa3\x8e\x86\x4d\xc4\x40\xa7\x10\x1d\xcf\xee\x5a\xa2\x04\x62\xbf\x54\xa6\xb7\x59\x76\xee\xb9\x3a\xe6\x19\xb2\xe6\x98\x63\x63\x5d\x05\x70\x45\x83\x13\x43\x13\xac\xd8\x4f\xca\xf3\x4d\x89\x07\x7b\xd7\x95\xeb\xad\xaf\x8b\x38\xa7\x02\x0f\x57\x8b\x9e\xbb\x54\xe1\x1a\xcf\x6e\x3f\x87\x2f\xc8\xe4\xb5\x7e\x68\x5c\x82\x8b\xa5\xd6\x80\xe3\xe3\x90\xa9\xa7\xc7\x57\x5d\x5d\xf6\x34\xa7\x22\x01\xc9\x85\xc4\xc3\x36\x8f\xd1\x31\xfa\x1b\x00\x00\xff\xff\xd8\x3b\x14\x7f\x51\x05\x00\x00" +var _transactionsSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6f\x1a\x31\x10\x85\xef\xfb\x2b\x5e\x38\x44\x8b\x44\xe0\x1e\x91\xa4\x2d\x0d\x52\x0f\x45\x51\xb2\xcd\x7d\x58\x86\xac\x55\x63\x5b\xf6\x18\x8a\xa2\xfc\xf7\xca\xbb\x61\xd9\x25\x34\xf5\x01\xb1\xf6\xcc\xf8\x9b\xf7\xc6\x93\xc9\x04\x45\xa5\x02\xc4\x93\x09\x54\x8a\xb2\x06\x2a\x60\x57\x91\x80\x0c\xa8\x2c\x6d\x34\x82\x9d\x8d\x7a\x05\x1f\x4d\x96\x32\xc4\x22\xb0\x40\x49\x60\xbd\x46\x74\x69\xc3\x73\xc9\x6a\xcb\x58\xcc\x8b\x90\x65\x6a\xe3\xac\x17\x0c\x16\xd6\xcc\xa3\x79\x51\x4b\xcd\x85\xfd\xcd\x66\xd0\x9e\xdc\xff\xa1\x8d\xd3\xbc\x98\x17\xc7\xbd\x9f\x2c\xb4\x22\xa1\x67\xc5\xbb\x30\xc8\xb2\x2e\xd4\x6b\x96\x01\x80\xf3\xec\xc8\x73\x1e\xd4\x8b\x61\x7f\x0d\x8a\x52\xe5\xdf\xac\xf7\x76\xf7\x4c\x3a\xf2\x08\x3f\x42\x88\xfc\x24\xd6\xd3\x0b\xcf\xc8\xd1\x52\x69\x25\xfb\x99\x35\xe2\xad\xd6\xec\x47\x78\x88\x4b\xad\x42\x75\x3c\x1c\xe1\x89\xb6\xfc\x9e\xff\xcb\xb8\xd3\xf3\x21\x2e\xbf\x36\x42\x0c\xf1\x5a\x63\xa4\xd5\xfe\xd1\x2c\x28\x53\xed\x9a\xf4\x3b\x09\xe1\x06\xc7\xfe\xc6\x9e\x83\xd5\x5b\xae\x11\xa8\x94\xd4\x5d\x9e\xf6\xa2\x2f\xb9\xd8\x3b\xbe\x86\x51\x7a\x84\xad\xe2\x5d\xf3\x99\x7e\xa7\x3d\x31\xc6\x8b\x79\x31\xeb\x5d\x71\x9b\x0f\x87\xa0\x70\x81\xff\xc4\xdd\xb5\x98\x69\xdd\xdd\xc1\x91\x51\x65\x3e\x48\xe1\x8f\x0d\x98\xc7\xca\x72\x80\xb1\x82\x77\x54\x7c\x28\x53\xd3\x0d\x86\x59\x5b\x6d\x32\xc1\x23\x4b\xf4\x06\x4c\x5e\xef\xa1\xd6\x90\x8a\xdb\x81\x21\xed\x99\x56\x7b\x54\x14\x40\x1d\x75\xda\x7c\xb5\x46\xe3\xe1\x38\x34\x5e\x8d\x97\xb5\x8b\xd3\xcb\x8e\x72\x47\x86\xdb\x7c\xed\xed\xe6\xfa\x44\xe7\x43\xee\x03\x49\x35\xc4\xc5\x4d\x12\xb2\xe3\x50\x5a\xbe\x86\x6c\xb7\xde\x7a\x1d\xcc\x3c\x93\x30\x08\x86\x77\xe0\x8d\x93\xfd\x39\xd4\xbe\xbf\x98\x5e\x75\xcd\x2d\xeb\x12\xf7\x29\xf7\x48\x9b\x9b\xb5\x74\xac\xfc\xd2\x89\x5f\xcc\x8b\x64\x5d\x0f\x23\xd0\x96\xa1\x24\x3d\xa3\x8e\x86\x6d\xc4\x89\x4e\x29\x3a\x9f\x5e\x1d\x89\x46\x10\xfb\xa9\x32\xbd\xcb\xca\x43\xcf\xf5\x98\x97\x28\xdb\x31\xc7\xda\xfa\x1a\xe0\x8c\x06\xef\x0c\x6d\xb0\xe2\x30\x8e\x87\x97\x92\x9f\xdc\xdd\x54\x6e\xae\x3e\x2f\xe2\x8c\x1c\x6e\xce\x16\x3d\x74\xa9\xd2\x33\xfe\xe7\x30\x7c\xd6\xec\x67\xc8\x1f\x81\x67\xe4\x46\x20\xf9\xa0\xdf\x69\x0f\x6f\xd9\x5b\xf6\x37\x00\x00\xff\xff\xa7\x28\x04\xb0\x2e\x05\x00\x00" func transactionsSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -385,11 +385,11 @@ func transactionsSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x34, 0x69, 0xfc, 0xc2, 0x1, 0xf3, 0x4e, 0xb5, 0x41, 0x44, 0x38, 0x2b, 0x35, 0xb7, 0xaf, 0x1a, 0x98, 0xdf, 0x77, 0xaa, 0x8b, 0x94, 0x8a, 0x4f, 0xd5, 0x84, 0xe7, 0x94, 0xe7, 0xf2, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xd1, 0x77, 0xc, 0xab, 0x2a, 0x8c, 0xa8, 0x1b, 0x6f, 0xda, 0x9e, 0xf6, 0x80, 0xba, 0xcb, 0x54, 0x41, 0x1c, 0x16, 0x77, 0x65, 0xde, 0xae, 0x56, 0xce, 0xc7, 0x8, 0x5b, 0x8a, 0x9e, 0x80}} return a, nil } -var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x41\x6b\xe3\x3c\x10\xbd\xfb\x57\xbc\xe6\x50\x6c\x48\x9d\xcb\xc7\x77\x08\x49\x4b\xf1\x6e\xa0\x87\x0d\xa5\xcd\xf6\x3e\xb1\xc7\xb1\xa8\x2b\x19\x49\x8e\x09\xa5\xff\x7d\x91\x15\x27\x91\xdb\xb2\x87\xd5\xc9\xc8\x6f\xde\xcc\x9b\x79\xa3\xd9\x6c\x86\x4d\x25\x0c\xac\x26\x69\x28\xb7\x42\x49\x08\x83\xae\x22\x0b\x92\xa0\x3c\x57\xad\xb4\xe8\x54\x5b\x17\xd0\xad\x8c\x5c\x84\x55\x30\x6c\x21\xac\xe1\xba\x44\xdb\xb8\x0b\xcd\x39\x8b\x3d\x63\xbd\xda\x98\xd4\x73\x96\xad\xec\x09\xfb\x98\xd6\xb0\xc1\x5e\x70\x67\x1c\xfa\x55\xaa\x0e\x5d\xc5\x9a\x07\x32\xc7\x52\x31\x72\x55\xd7\x7c\x8e\x12\x12\xc6\x2a\x4d\x3b\x06\xc9\xc2\x61\x73\xcd\x64\xb9\xc7\xf2\x5b\x63\x0f\x17\x11\x69\x14\x89\xb7\x46\x69\x8b\xb5\x92\xab\x56\xee\xc4\xb6\xe6\x8d\x7a\x65\x89\x52\xab\x37\x4c\xc6\xd7\x93\x01\xff\x8b\x2d\x15\x64\xe9\xa5\xaf\xcf\x83\x83\xbb\x49\x14\x5d\x74\x28\xa6\xa2\xd0\x6c\xcc\x1c\xf7\xfe\x63\x8a\xa6\xdd\xd6\x22\x7f\x24\x5b\xcd\xf1\x78\xfa\x9e\x42\x14\x73\xfc\x7e\x90\xf6\xff\xff\x12\xbc\x47\x11\x00\x34\x9a\x1b\xd2\x1c\x1b\xb1\x93\xac\xe7\xa0\xd6\x56\xf1\x83\x31\x2d\x3f\x7b\xa9\x19\x35\xb4\x15\xb5\xb0\x87\x4c\x49\xab\x9d\x3e\x3d\xf5\xac\xa6\x3a\xff\x9c\xe2\x99\xf6\xfc\x42\x75\xcb\x09\xae\xef\xfd\xa4\x5c\x16\x1c\x4f\xcd\xf6\xa2\x3b\x58\x62\xc7\xf6\x08\x1b\x14\x24\x69\x3e\xf0\x09\x36\xe9\x56\x69\xad\xba\xc5\xf5\xfb\xb8\x53\x69\x76\xe2\xf9\xb8\x8d\xcf\x62\x93\x53\x32\x77\xee\xee\xd0\x90\x14\x79\x3c\xc9\x7a\xbf\x48\x65\xe1\x29\x41\xd0\x5c\xb2\x66\x99\xf7\x13\x0f\x47\x3d\x49\xa2\xa0\x68\x59\xda\x27\x2e\xb1\xbc\x9c\xad\xe7\x59\xaf\x36\xb1\x28\xfe\x25\x6b\xc1\x46\x68\x2e\x9c\x4f\x27\x67\x9e\x6f\x7a\xf6\x83\x2c\x61\x79\xac\x27\xd5\x6c\x54\xbd\x67\x67\x88\x78\x73\x68\x78\x11\x58\x24\x5d\xaf\x36\x59\x10\x79\x1b\x27\xc9\x15\xc8\x5c\xe1\x2f\xc0\xb3\xfa\xd9\x0c\x99\x37\x38\x41\x72\xf7\xc9\xe2\x26\x28\xb4\xff\x7b\xa6\xc2\xe2\x66\x54\x7b\xea\xb7\xe5\x67\x88\x8b\x93\x20\xa1\xa1\x3d\x43\xd8\xa1\x41\xc7\x95\x3f\x21\xbc\x4d\xd3\xe3\x1a\xa6\x0e\x1d\x2f\x6e\x46\xa9\xa7\xb0\x6a\x3e\x4e\x7e\x0c\xf1\x3e\xb9\xcc\x98\x0f\x12\xbd\x91\x70\xf2\xe0\x01\xa5\xd2\xe3\x77\xe0\xeb\xd1\x64\xd4\x60\x39\x14\x17\x98\x78\xa8\x54\xb8\x95\xfa\xca\xcb\x4f\xfe\xa9\xd2\xd3\x4f\xef\x44\x68\xf3\xc0\x65\xee\x7c\xaf\x2f\x80\x26\xe3\xde\x05\xe5\x35\x7e\x8f\xe3\x40\xca\x14\x64\xe7\x18\xef\xd5\x47\xf4\x11\xfd\x09\x00\x00\xff\xff\x93\xe4\x1d\xb8\xa2\x05\x00\x00" +var _transactionsSetup_account_from_nft_referenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x41\x6f\x9b\x4c\x10\xbd\xf3\x2b\x5e\x7c\x88\x40\x72\xf0\xe5\xd3\x77\xb0\xec\x44\x11\xad\xa5\x1c\x6a\x45\x8d\x9b\xfb\x18\x06\xb3\x0a\xd9\x45\xbb\x83\x91\x15\xf9\xbf\x57\xb0\xc6\x36\xb4\x51\x0e\xdd\x13\xda\x7d\xf3\xe6\xcd\xcc\x1b\x66\xb3\x19\x36\x85\x72\x10\x4b\xda\x51\x2a\xca\x68\x28\x87\xa6\x20\x01\x69\x50\x9a\x9a\x5a\x0b\x1a\x53\x97\x19\x6c\xad\x83\x36\x42\x0c\x1c\x0b\x94\x38\x2e\x73\xd4\x55\x7b\x61\x39\x65\xb5\x67\xac\x57\x1b\x17\x7b\xce\xbc\xd6\x1d\x61\x17\x53\x3b\x76\xd8\x2b\x6e\x5c\x8b\x7e\xd3\xa6\x41\x53\xb0\xe5\x9e\xac\x65\x29\x18\xa9\x29\x4b\xbe\x44\x29\x0d\x27\xc6\xd2\x8e\x41\x3a\x6b\xb1\xa9\x65\x12\xee\xb0\xfc\x5e\xc9\xe1\x2a\x22\x0e\x02\xf5\x5e\x19\x2b\x58\x1b\xbd\xaa\xf5\x4e\x6d\x4b\xde\x98\x37\xd6\xc8\xad\x79\xc7\x64\x7c\x3d\xe9\xf1\x3f\x58\x28\x23\xa1\xd7\x4e\x9f\x07\x0f\xee\x26\x41\x70\xd5\xa1\x90\xb2\xcc\xb2\x73\x73\x3c\xfa\x8f\x29\xaa\x7a\x5b\xaa\xf4\x99\xa4\x98\xe3\xf9\xfc\x3d\x85\xca\xe6\xf8\xf5\xa4\xe5\xff\xff\x22\x7c\x04\x01\x00\x54\x96\x2b\xb2\x1c\x3a\xb5\xd3\x6c\xe7\xa0\x5a\x8a\xf0\xc9\xb9\x9a\x5f\x7c\xa9\x09\x55\xb4\x55\xa5\x92\x43\x62\xb4\xd8\xb6\x3e\x3b\xf5\xac\xae\xb8\x3c\x4e\xf1\x42\x7b\x7e\xa5\xb2\xe6\x08\xb7\x8f\x7e\x52\x6d\x16\x9c\x4e\xc9\x72\xd5\x1d\x2c\xb1\x63\x39\xc1\xfa\x0a\xa2\x38\xed\xf9\x14\xbb\x78\x6b\xac\x35\xcd\xe2\xf6\x63\xdc\xa9\x38\x39\xf3\x1c\xef\xc3\x4b\xb1\xd1\x39\x59\x7b\x1e\x1e\x50\x91\x56\x69\x38\x49\x3a\xbf\x68\x23\xf0\x94\x20\x58\xce\xd9\xb2\x4e\xbb\x89\x0f\x47\x3d\x89\x82\x81\x68\x9d\xcb\x4f\xce\xb1\xbc\x9e\xad\xe7\x59\xaf\x36\xa1\xca\xfe\x25\x6b\xc6\x4e\x59\xce\x5a\x9f\x4e\x2e\x3c\x9f\xf4\xec\x1b\x09\x61\x79\xd2\x13\x5b\x76\xa6\xdc\x73\x6b\x88\x70\x73\xa8\x78\x31\xb0\x48\xbc\x5e\x6d\x92\x41\xe4\x7d\x18\x45\x37\x20\x77\x83\x2f\x80\x97\xea\x67\x33\x24\xde\xe0\x04\xcd\xcd\x1f\x16\x77\x03\xa1\xdd\xeb\x85\x0a\x8b\xbb\x91\xf6\xd8\x6f\xcb\xf7\x21\x2e\x8c\x06\x09\x1d\xed\x19\x4a\xfa\x06\x9d\x56\xfe\x8c\xf0\x36\x8d\x4f\x6b\x18\xb7\xe8\x70\x71\x37\x4a\x3d\x85\x98\xf9\x38\xf9\x29\xc4\xfb\xe4\x3a\x63\xda\x97\xe8\x8d\x84\xb3\x07\x0f\xc8\x8d\x1d\xff\x07\xfe\x3e\x9a\x84\x2a\x2c\x7b\x71\x03\x13\xf7\x4a\x55\xbb\x52\x5f\x7a\x79\x60\xa5\xf6\x7c\x5e\xc4\x00\x1a\x8d\x1b\x34\xd0\x50\xf9\x65\x0d\x07\x7a\xa7\x20\x99\x63\xbc\x3c\xc7\xe0\x18\xfc\x0e\x00\x00\xff\xff\x9d\xf2\x7d\x21\x87\x05\x00\x00" func transactionsSetup_account_from_nft_referenceCdcBytes() ([]byte, error) { return bindataRead( @@ -405,11 +405,11 @@ func transactionsSetup_account_from_nft_referenceCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account_from_nft_reference.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x2, 0x7d, 0xd4, 0x7d, 0xc3, 0x0, 0xf, 0x6, 0xd, 0x9e, 0x48, 0x69, 0x8c, 0xcf, 0x6c, 0x19, 0x8d, 0x4c, 0x74, 0x9a, 0xad, 0xa5, 0xb2, 0x80, 0x61, 0xf1, 0xc3, 0x72, 0xfd, 0x8b, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xcb, 0x4d, 0x1b, 0x65, 0x9, 0x82, 0xc9, 0xdb, 0x37, 0xa1, 0xf2, 0x15, 0x6a, 0x8d, 0xe8, 0x34, 0x28, 0x89, 0xc8, 0x61, 0x33, 0xe6, 0x4e, 0x84, 0x7f, 0x34, 0xfd, 0x3e, 0x6c, 0x7f, 0x3c}} return a, nil } -var _transactionsSetup_account_to_receive_royaltyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x3e\x24\x36\x08\xfb\x6e\x9a\x40\xea\x12\x08\xb4\x34\xe4\xab\x57\x8f\x57\x23\x69\xc8\x7a\x57\xec\xce\xc6\x11\xc1\xff\xbd\xec\xea\xc3\x56\x1b\x0a\xf5\xcd\xda\x99\x37\x6f\xde\x7b\xb3\x5a\xad\xe0\xa9\x66\x0f\xe2\xd0\x78\x54\xc2\xd6\x00\x7b\x40\x10\xda\x37\x1a\x85\xa0\xb4\x2e\xfe\x3d\xbd\x67\xb1\x49\x2c\x28\x47\xf1\x1d\xc1\xd0\x01\x34\x9b\x57\x60\x03\x52\x13\x3b\x40\xa5\x6c\x30\x12\xab\x76\x04\xc1\x53\x91\x60\x1c\x29\xe2\x37\x36\x15\x38\xdb\xa2\x16\x26\x9f\x7d\xca\x40\xa1\x99\x34\xa2\x69\xa1\x0c\xa6\xe2\x9d\x26\x10\xfb\x4a\x26\x87\x43\xcd\xaa\x8e\x5c\x7d\x43\x8a\x4b\xa6\x02\x76\x6d\x9c\x0f\xdb\x37\x0c\x5a\xee\x51\xea\x2d\xa0\xab\xc2\x9e\x8c\xc4\x39\x69\xd6\x5d\x99\x6a\x06\x86\x07\x34\xe2\x23\xcf\x8e\x1b\x9d\x98\xc5\x6d\x6e\xbf\xff\xfc\x95\xc7\xfa\xf6\x52\xeb\x48\x07\xb6\x2b\x2f\xd6\x61\x45\xab\x52\xdb\xc3\x53\xa4\xf2\x12\xa7\x6d\xcf\xc0\xdb\x84\x7a\x0e\xca\x12\xd1\x9e\x1f\xbf\x6d\xf2\xbe\xc0\x06\x5d\x24\xc0\x5b\x46\x49\x30\xcb\x84\xf3\xd8\xa1\x47\xf2\x09\x11\x4d\x01\xde\x82\x35\xcb\x5e\x29\x82\x06\xa5\x3e\x49\x13\x97\x69\xc2\x4e\xb3\xea\x3d\xf0\xbd\x23\xa9\x4c\x6a\x94\xde\x16\x28\x83\x04\x47\x79\xac\xa0\xf7\x86\x94\x50\x71\xc6\x71\x9c\x56\x91\x21\xc7\x6a\x2a\xb3\x4a\x7c\x77\x29\x0d\x07\x74\x45\xd7\x9a\x84\x6c\x1a\x67\x1b\xc7\x31\x0a\x49\xf7\x2c\xe3\x7d\x63\x9d\xc0\xec\xb6\x77\x2c\xad\x37\x1b\x3f\xff\x20\xc1\x02\x05\x5f\x98\x0e\x7e\x96\x65\x67\xc6\xcf\x47\xe7\xd6\x70\xa6\xc4\x02\x3e\xb2\x0c\x00\xa0\x71\xd4\xa0\xa3\xb9\xe7\xca\x90\x5b\x03\x06\xa9\xe7\x5f\xad\x73\xf6\xf0\x82\x3a\x50\x0e\x77\xde\x07\xea\x5b\x37\xd8\xe0\x8e\x35\x4b\xbb\xb1\x46\x9c\xd5\x9a\x5c\x0e\xf7\x51\x2c\x5f\x9f\x1e\x73\x78\x36\xcd\x9f\x1f\x17\x70\x71\xd3\x45\x64\x1c\x1e\x7f\xab\x15\x3c\x90\x04\x67\x80\xd0\xe9\x16\x78\x9a\xa6\xc2\x92\x37\x97\x02\x35\xbe\xc5\xc3\x98\x08\x00\xc9\xdf\x11\x89\x4b\xe8\xb6\x58\xf6\x81\x5a\xee\xd2\x1e\x5f\x2e\x3e\x26\x6d\xcb\x87\xce\x1f\x77\xbc\x9e\x97\xce\xee\xd7\x30\x6a\xb4\x80\xab\x2b\x30\xac\xe1\x63\x44\x4d\x22\xa1\x61\x35\x9f\xdd\x74\x85\x63\x48\x4e\x67\x32\xbd\xa4\x2e\x28\x91\x39\x18\x2b\x40\xef\xec\x65\xb6\x18\x11\x8f\x93\xe5\x37\xc3\xcd\xf7\x91\x53\xa3\x60\x43\x1e\xd2\x96\x5d\xee\xac\xd1\x6d\x8c\x9a\xf5\xe4\xcf\x41\x62\x59\x41\x8d\xf5\x2c\x91\x4b\x77\xf2\x52\x3b\x1b\xaa\x3a\x3d\x0e\x2b\x03\x1b\x21\x57\xa2\xa2\xb1\xbd\xd7\x6c\x9c\xcb\xe4\x97\x61\xb0\x6f\x3e\x89\xd6\xb2\x22\x79\x48\xd7\xdc\x0e\x80\xc9\x7b\x15\xb5\x9b\x2f\x4e\x2b\x6a\x92\x4e\xab\x0d\x36\x70\xf5\xe9\x88\xc1\x23\x8e\xf1\xfa\xcb\xa2\xb4\xf3\xf1\xfa\x94\xde\xc5\x3f\xf9\x0e\x6c\x87\x99\x39\xa0\xac\xe1\xff\xb8\x67\x9d\x37\xc7\xec\x77\x00\x00\x00\xff\xff\x88\x90\xa3\xae\xc2\x05\x00\x00" +var _transactionsSetup_account_to_receive_royaltyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4f\x6b\x3b\x37\x10\xbd\xef\xa7\x18\x7c\x48\x6c\x58\xec\xbb\x69\x0a\xa9\x4b\x20\xd0\xd2\x90\x7f\xbd\x7a\xac\x9d\xdd\x1d\x22\x4b\x42\x1a\xc5\x59\x42\xbe\x7b\x91\xf6\x8f\xbd\x25\x04\x7e\xbe\x79\x35\xf3\xe6\xcd\x7b\x6f\x36\x9b\x0d\x3c\xb7\x1c\x40\x3c\x9a\x80\x4a\xd8\x1a\xe0\x00\x08\x42\x47\xa7\x51\x08\x6a\xeb\xd3\xdf\xf3\x7b\x91\x9a\xc4\x82\xf2\x94\xde\x11\x0c\x9d\x40\xb3\x79\x03\x36\x20\x2d\xb1\x07\x54\xca\x46\x23\xa9\xea\x40\x10\x03\x55\x19\xc6\x93\x22\x7e\x67\xd3\x80\xb7\x1d\x6a\x61\x0a\xc5\xb7\x0c\x14\x9a\x59\x23\x9a\x0e\xea\x68\x1a\x3e\x68\x02\xb1\x6f\x64\x4a\x38\xb5\xac\xda\xc4\x35\x38\x52\x5c\x33\x55\x70\xe8\xd2\x7c\xd8\xbf\x63\xd4\xf2\x80\xd2\xee\x01\x7d\x13\x8f\x64\x24\xcd\xc9\xb3\xee\xeb\x5c\x33\x32\x3c\xa1\x91\x90\x78\xf6\xdc\xe8\xcc\x2c\x6d\x73\xf7\xd7\x3f\xff\x96\xa9\xbe\xbb\xd6\x3a\xd1\x81\xfd\x26\x88\xf5\xd8\xd0\xa6\xd6\xf6\xf4\x9c\xa8\xbc\xa6\x69\xfb\x0b\xf0\x2e\xa3\x5e\x82\xb2\x24\xb4\x97\xa7\x3f\x77\xe5\x50\x60\xa3\xae\x32\xe0\x1d\xa3\x64\x98\x75\xc6\x79\xea\xd1\x13\xf9\x8c\x88\xa6\x82\x60\xc1\x9a\xf5\xa0\x14\x81\x43\x69\xcf\xd2\xa4\x65\x5c\x3c\x68\x56\x83\x07\x61\x70\x24\x97\x49\x8b\x32\xd8\x02\x75\x94\xe8\xa9\x4c\x15\xf4\xe1\x48\x09\x55\x17\x1c\xa7\x69\x0d\x19\xf2\xac\xe6\x32\xab\xcc\xf7\x90\xd3\x70\x42\x5f\xf5\xad\x59\x48\xe7\xbc\x75\x9e\x53\x14\xb2\xee\x45\xc1\x47\x67\xbd\xc0\xe2\x6e\x70\x2c\xaf\xb7\x98\x3e\xff\x4d\x82\x15\x0a\xbe\x32\x9d\xc2\xa2\x28\x2e\x8c\x5f\x4e\xce\x6d\xe1\x42\x89\x15\x7c\x16\x05\x00\x80\xf3\xe4\xd0\xd3\x32\x70\x63\xc8\x6f\x01\xa3\xb4\xcb\x3f\xac\xf7\xf6\xf4\x8a\x3a\x52\x09\xf7\x21\x44\x1a\x5a\x77\xe8\xf0\xc0\x9a\xa5\xdb\x59\x23\xde\x6a\x4d\xbe\x84\x87\x24\x56\x68\xcf\x8f\x25\xbc\x18\xf7\xff\x8f\x2b\xb8\xba\xed\x23\x32\x0d\x4f\xbf\xcd\x06\x1e\x49\xa2\x37\x40\xe8\x75\x07\x3c\x4f\x53\x65\x29\x98\x6b\x81\x16\xdf\xd3\x61\xcc\x04\x80\xec\xef\x84\xc4\x35\xf4\x5b\xac\x87\x40\xad\x0f\x79\x8f\xdf\xae\x3e\x67\x6d\xeb\xc7\xde\x1f\xff\xf5\xfb\xb2\xf6\xf6\xb8\x85\x49\xa3\x15\xdc\xdc\x80\x61\x0d\x9f\x13\x6a\x16\x09\x0d\xab\xe5\xe2\xb6\x2f\x9c\x42\x72\x3e\x93\xf9\x25\xf5\x41\x49\xcc\xc1\x58\x01\xfa\xe0\x20\x8b\xd5\x84\xf8\x35\x5b\x7e\x37\xde\xfc\x10\x39\x35\x09\x36\xe6\x21\x6f\xd9\xe7\xce\x1a\xdd\xa5\xa8\xd9\x40\xe1\x12\x24\x95\x55\xe4\x6c\x60\x49\x5c\xfa\x93\x97\xd6\xdb\xd8\xb4\xf9\x71\x5c\x19\xd8\x08\xf9\x1a\x15\x4d\xed\x83\x66\xd3\x5c\xa6\xb0\x8e\xa3\x7d\xcb\x59\xb4\xd6\x0d\xc9\x63\xbe\xe6\x6e\x04\xcc\xde\xab\xa4\xdd\x72\x75\x5e\x51\x93\xf4\x5a\xed\xd0\xc1\xcd\xb7\x23\x46\x8f\x38\xc5\xeb\x27\x8b\xce\xe6\xfc\x48\x79\x24\x3c\x8e\x2d\x01\x65\x0b\xbf\x46\xbf\xe8\xed\xf9\x2a\xfe\x0b\x00\x00\xff\xff\x45\x05\x27\x05\xc5\x05\x00\x00" func transactionsSetup_account_to_receive_royaltyCdcBytes() ([]byte, error) { return bindataRead( @@ -425,7 +425,7 @@ func transactionsSetup_account_to_receive_royaltyCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account_to_receive_royalty.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x3f, 0x26, 0x1, 0x6e, 0x4c, 0x2c, 0xf5, 0x24, 0xac, 0x71, 0xda, 0xd0, 0xb1, 0x79, 0x89, 0x68, 0x55, 0x6e, 0x4a, 0x41, 0x7f, 0x67, 0xcf, 0xe7, 0x3a, 0xca, 0x7a, 0x0, 0x76, 0xd5, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x7e, 0xbd, 0x25, 0x61, 0x5f, 0x31, 0xbd, 0xd5, 0x88, 0x11, 0x79, 0xc9, 0x1e, 0xc3, 0xa9, 0xba, 0xbc, 0xdc, 0xc4, 0xae, 0xf4, 0x95, 0x9d, 0x4a, 0x49, 0xb, 0x47, 0xd, 0x64, 0xdc, 0x32}} return a, nil } diff --git a/tests/nft_forwarding_tests.cdc b/tests/nft_forwarding_tests.cdc index c1db46b..856ac8d 100644 --- a/tests/nft_forwarding_tests.cdc +++ b/tests/nft_forwarding_tests.cdc @@ -4,33 +4,22 @@ import "test_helpers.cdc" import "ViewResolver" import "NonFungibleToken" -access(all) let admin = blockchain.createAccount() -access(all) let forwarder = blockchain.createAccount() -access(all) let recipient = blockchain.createAccount() +access(all) let admin = Test.getAccount(0x0000000000000007) +access(all) let forwarder = Test.createAccount() +access(all) let recipient = Test.createAccount() access(all) let collectionStoragePath = /storage/cadenceExampleNFTCollection access(all) let collectionPublicPath = /public/cadenceExampleNFTCollection access(all) fun setup() { - blockchain.useConfiguration( - Test.Configuration( - addresses: { - "ViewResolver": admin.address, - "NonFungibleToken": admin.address, - "MetadataViews": admin.address, - "MultipleNFT": admin.address, - "ExampleNFT": admin.address, - "NFTForwarding": admin.address - } - ) - ) - - deploy("ViewResolver", admin, "../contracts/ViewResolver.cdc") - deploy("NonFungibleToken", admin, "../contracts/NonFungibleToken.cdc") - deploy("MetadataViews", admin, "../contracts/MetadataViews.cdc") - deploy("ExampleNFT", admin, "../contracts/ExampleNFT.cdc") - deploy("NFTForwarding", admin, "../contracts/utility/NFTForwarding.cdc") + deploy("ViewResolver", "../contracts/ViewResolver.cdc") + deploy("FungibleToken", "../contracts/utility/FungibleToken.cdc") + deploy("NonFungibleToken", "../contracts/NonFungibleToken.cdc") + deploy("MetadataViews", "../contracts/MetadataViews.cdc") + deploy("ExampleNFT", "../contracts/ExampleNFT.cdc") + deploy("NFTForwarding", "../contracts/utility/NFTForwarding.cdc") + } access(all) fun testCreateForwarderFails() { @@ -73,14 +62,14 @@ access(all) fun testMintNFT() { let expectedCollectionLength: Int = 1 - let royaltySetupSuccess: Bool = txExecutor( - "setup_account_to_receive_royalty.cdc", - [admin], - [/storage/flowTokenVault], - nil, - nil - ) - Test.assertEqual(true, royaltySetupSuccess) + // let royaltySetupSuccess: Bool = txExecutor( + // "setup_account_to_receive_royalty.cdc", + // [admin], + // [/storage/flowTokenVault], + // nil, + // nil + // ) + // Test.assertEqual(true, royaltySetupSuccess) // Minting to forwarder should forward minted NFT to recipient let mintSuccess: Bool = txExecutor( @@ -114,7 +103,7 @@ access(all) fun testMintNFT() { access(all) fun testChangeForwarderRecipient() { - let newRecipient = blockchain.createAccount() + let newRecipient = Test.createAccount() let newRecipientSetupSuccess: Bool = txExecutor("setup_account.cdc", [newRecipient], [], nil, nil) Test.assertEqual(true, newRecipientSetupSuccess) diff --git a/tests/test_example_nft.cdc b/tests/test_example_nft.cdc index b864efe..3260479 100644 --- a/tests/test_example_nft.cdc +++ b/tests/test_example_nft.cdc @@ -39,14 +39,14 @@ fun testSetupAccount() { access(all) fun testMintNFT() { - var txResult = executeTransaction( - "../transactions/setup_account_to_receive_royalty.cdc", - [/storage/flowTokenVault], - admin - ) - Test.expect(txResult, Test.beSucceeded()) + // var txResult = executeTransaction( + // "../transactions/setup_account_to_receive_royalty.cdc", + // [/storage/flowTokenVault], + // admin + // ) + // Test.expect(txResult, Test.beSucceeded()) - txResult = executeTransaction( + var txResult = executeTransaction( "../transactions/mint_nft.cdc", [ recipient.address, @@ -250,32 +250,32 @@ fun testGetNFTMetadata() { Test.expect(scriptResult, Test.beSucceeded()) let collectionIDs = scriptResult.returnValue! as! [UInt64] - scriptResult = executeScript( - "../scripts/get_nft_metadata.cdc", - [ - admin.address, - collectionIDs[0] - ] - ) + // scriptResult = executeScript( + // "../scripts/get_nft_metadata.cdc", + // [ + // admin.address, + // collectionIDs[0] + // ] + // ) - Test.expect(scriptResult, Test.beSucceeded()) + // Test.expect(scriptResult, Test.beSucceeded()) } -access(all) -fun testGetMissingNFTMetadata() { - let scriptResult = executeScript( - "../scripts/get_nft_metadata.cdc", - [ - admin.address, - 10 as UInt64 - ] - ) - Test.expect(scriptResult, Test.beFailed()) - Test.assertError( - scriptResult, - errorMessage: "unexpectedly found nil while forcing an Optional value" - ) -} +// access(all) +// fun testGetMissingNFTMetadata() { +// let scriptResult = executeScript( +// "../scripts/get_nft_metadata.cdc", +// [ +// admin.address, +// 10 as UInt64 +// ] +// ) +// Test.expect(scriptResult, Test.beFailed()) +// Test.assertError( +// scriptResult, +// errorMessage: "unexpectedly found nil while forcing an Optional value" +// ) +// } // access(all) // fun testGetNFTView() { @@ -283,7 +283,7 @@ fun testGetMissingNFTMetadata() { // "scripts/get_nft_view.cdc", // [ // admin.address, -// 0 as UInt64 +// collectionIDs[0] // ] // ) // Test.expect(scriptResult, Test.beSucceeded()) diff --git a/tests/test_helpers.cdc b/tests/test_helpers.cdc index a9506fd..8755462 100644 --- a/tests/test_helpers.cdc +++ b/tests/test_helpers.cdc @@ -22,7 +22,7 @@ access(all) fun deployWithArgs(_ contractName: String, _ path: String, args: [An } access(all) fun scriptExecutor(_ scriptName: String, _ arguments: [AnyStruct]): AnyStruct? { - let scriptCode = loadCode(scriptName, "transactions/scripts") + let scriptCode = loadCode(scriptName, "scripts") let scriptResult = Test.executeScript(scriptCode, arguments) if let failureError = scriptResult.error { diff --git a/transactions/mint_nft.cdc b/transactions/mint_nft.cdc index be95109..76371b9 100644 --- a/transactions/mint_nft.cdc +++ b/transactions/mint_nft.cdc @@ -44,24 +44,24 @@ transaction( execute { - // Create the royalty details - var count = 0 - var royalties: [MetadataViews.Royalty] = [] - while royaltyBeneficiaries.length > count { - let beneficiary = royaltyBeneficiaries[count] - let beneficiaryCapability = getAccount(beneficiary).capabilities.get<&{FungibleToken.Receiver}>( - MetadataViews.getRoyaltyReceiverPublicPath() - ) ?? panic("Beneficiary does not have Receiver configured at RoyaltyReceiverPublicPath") + // // Create the royalty details + // var count = 0 + // var royalties: [MetadataViews.Royalty] = [] + // while royaltyBeneficiaries.length > count { + // let beneficiary = royaltyBeneficiaries[count] + // let beneficiaryCapability = getAccount(beneficiary).capabilities.get<&{FungibleToken.Receiver}>( + // MetadataViews.getRoyaltyReceiverPublicPath() + // ) ?? panic("Beneficiary does not have Receiver configured at RoyaltyReceiverPublicPath") - royalties.append( - MetadataViews.Royalty( - receiver: beneficiaryCapability, - cut: cuts[count], - description: royaltyDescriptions[count] - ) - ) - count = count + 1 - } + // royalties.append( + // MetadataViews.Royalty( + // receiver: beneficiaryCapability, + // cut: cuts[count], + // description: royaltyDescriptions[count] + // ) + // ) + // count = count + 1 + // } // Mint the NFT and deposit it to the recipient's collection @@ -69,7 +69,7 @@ transaction( name: name, description: description, thumbnail: thumbnail, - royalties: royalties + royalties: [] //royalties ) self.recipientCollectionRef.deposit(token: <-mintedNFT) } diff --git a/transactions/setup_account.cdc b/transactions/setup_account.cdc index f45b2d6..8501ea7 100644 --- a/transactions/setup_account.cdc +++ b/transactions/setup_account.cdc @@ -25,7 +25,7 @@ transaction { // create a public capability for the collection signer.capabilities.unpublish(collectionData.publicPath) - let collectionCap = signer.capabilities.storage.issue<&{NonFungibleToken.Receiver, NonFungibleToken.Collection}>(collectionData.storagePath) + let collectionCap = signer.capabilities.storage.issue<&ExampleNFT.Collection>(collectionData.storagePath) signer.capabilities.publish(collectionCap, at: collectionData.publicPath) } } diff --git a/transactions/setup_account_from_nft_reference.cdc b/transactions/setup_account_from_nft_reference.cdc index 99b4f38..914cc43 100644 --- a/transactions/setup_account_from_nft_reference.cdc +++ b/transactions/setup_account_from_nft_reference.cdc @@ -24,7 +24,7 @@ transaction(address: Address, publicPath: PublicPath, id: UInt64) { signer.storage.save(<-emptyCollection, to: collectionData.storagePath) // create a public capability for the collection - let collectionCap = signer.capabilities.storage.issue<&{NonFungibleToken.Receiver, NonFungibleToken.Collection}>( + let collectionCap = signer.capabilities.storage.issue<&{NonFungibleToken.Collection}>( collectionData.storagePath ) signer.capabilities.publish(collectionCap, at: publicPath) diff --git a/transactions/setup_account_to_receive_royalty.cdc b/transactions/setup_account_to_receive_royalty.cdc index 5a32e0b..3aa9c13 100644 --- a/transactions/setup_account_to_receive_royalty.cdc +++ b/transactions/setup_account_to_receive_royalty.cdc @@ -23,7 +23,7 @@ transaction(vaultPath: StoragePath) { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface signer.capabilities.unpublish(MetadataViews.getRoyaltyReceiverPublicPath()) - let vaultCap = signer.capabilities.storage.issue<&{FungibleToken.Vault}>(vaultPath) + let vaultCap = signer.capabilities.storage.issue<&{FungibleToken.Receiver}>(vaultPath) signer.capabilities.publish(vaultCap, at: MetadataViews.getRoyaltyReceiverPublicPath()) }