From 049abb75eb1c257384d7d75902fb61347220ddc5 Mon Sep 17 00:00:00 2001 From: anatoly256 <94357511+anatoly256@users.noreply.github.com> Date: Thu, 27 Oct 2022 20:43:13 +0300 Subject: [PATCH] Add remix (#163) (#177) * Add remix (#163) * add remix to contracts * add remix to transactions * add remix to lib * fix misprints * add function to get moment's subedition * fix tests * fix tests * refactor subEdition contract * add subEdition tests * add new function to create subEdition resource * add documentation * refactor SubeditionAdmin * add comments/transactions/tests * add events * Revert spacings * Fix comments * use test abstractions in subedition_test.go * fix comments * fix comments * add comment to SubeditionAdminStoragePath() * add subeditionId to MomentMinted event * change SubeditionCreated event/add length check to MintMoment event * change subeditionID to subeditionId * remove spacing changes in assets.go (#178) Co-authored-by: Jamil Khan --- contracts/TopShot.cdc | 301 +++++++- lib/go/contracts/internal/assets/assets.go | 6 +- lib/go/events/moment.go | 8 + lib/go/events/moment_test.go | 8 + lib/go/events/subedition.go | 52 ++ lib/go/events/subedition_added_to_moment.go | 47 ++ .../events/subedition_added_to_moment_test.go | 49 ++ lib/go/events/subedition_test.go | 65 ++ lib/go/templates/internal/assets/assets.go | 209 +++++ lib/go/templates/topshot_admin_templates.go | 44 ++ lib/go/templates/topshot_script_templates.go | 34 + lib/go/test/subedition_test.go | 725 ++++++++++++++++++ .../batch_mint_moment_with_subedition.cdc | 43 ++ .../create_new_subedition_admin_resource.cdc | 21 + transactions/admin/create_subedition.cdc | 36 + .../admin/mint_moment_with_subedition.cdc | 39 + transactions/admin/set_nft_subedition.cdc | 25 + .../subeditions/get_all_subeditions.cdc | 12 + .../subeditions/get_nextSubeditionID.cdc | 12 + .../subeditions/get_nft_subedition.cdc | 8 + .../subeditions/get_subedition_by_id.cdc | 18 + 21 files changed, 1755 insertions(+), 7 deletions(-) create mode 100644 lib/go/events/subedition.go create mode 100644 lib/go/events/subedition_added_to_moment.go create mode 100644 lib/go/events/subedition_added_to_moment_test.go create mode 100644 lib/go/events/subedition_test.go create mode 100644 lib/go/test/subedition_test.go create mode 100644 transactions/admin/batch_mint_moment_with_subedition.cdc create mode 100644 transactions/admin/create_new_subedition_admin_resource.cdc create mode 100644 transactions/admin/create_subedition.cdc create mode 100644 transactions/admin/mint_moment_with_subedition.cdc create mode 100644 transactions/admin/set_nft_subedition.cdc create mode 100644 transactions/scripts/subeditions/get_all_subeditions.cdc create mode 100644 transactions/scripts/subeditions/get_nextSubeditionID.cdc create mode 100644 transactions/scripts/subeditions/get_nft_subedition.cdc create mode 100644 transactions/scripts/subeditions/get_subedition_by_id.cdc diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index d8c4c457..81fcb08f 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -59,6 +59,10 @@ pub contract TopShot: NonFungibleToken { // The address to which royalties should be deposited pub fun RoyaltyAddress() : Address { return 0xTOPSHOTROYALTYADDRESS } + // The path to the Subedition Admin resource belonging to the Account + // which the contract is deployed on + pub fun SubeditionAdminStoragePath() : StoragePath { return /storage/TopShotSubeditionAdmin} + // ----------------------------------------------------------------------- // TopShot contract Events // ----------------------------------------------------------------------- @@ -82,7 +86,7 @@ pub contract TopShot: NonFungibleToken { // Emitted when a Set is locked, meaning Plays cannot be added pub event SetLocked(setID: UInt32) // Emitted when a Moment is minted from a Set - pub event MomentMinted(momentID: UInt64, playID: UInt32, setID: UInt32, serialNumber: UInt32) + pub event MomentMinted(momentID: UInt64, playID: UInt32, setID: UInt32, serialNumber: UInt32, subeditionID: UInt32) // Events for Collection-related actions // @@ -94,6 +98,12 @@ pub contract TopShot: NonFungibleToken { // Emitted when a Moment is destroyed pub event MomentDestroyed(id: UInt64) + // Emitted when a Subedition is created + pub event SubeditionCreated(subeditionID: UInt32, name: String, metadata: {String:String}) + + // Emitted when a Subedition is linked to the specific Moment + pub event SubeditionAddedToMoment(momentID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32) + // ----------------------------------------------------------------------- // TopShot contract-level fields. // These contain actual values that are stored in the smart contract. @@ -362,7 +372,8 @@ pub contract TopShot: NonFungibleToken { // Mint the new moment let newMoment: @NFT <- create NFT(serialNumber: numInPlay + UInt32(1), playID: playID, - setID: self.setID) + setID: self.setID, + subeditionID: 0) // Increment the count of Moments minted for this Play self.numberMintedPerPlay[playID] = numInPlay + UInt32(1) @@ -390,6 +401,71 @@ pub contract TopShot: NonFungibleToken { return <-newCollection } + // mintMomentWithSubedition mints a new Moment with subedition and returns the newly minted Moment + // + // Parameters: playID: The ID of the Play that the Moment references + // subeditionID: The ID of the subedition within Edition that the Moment references + // + // Pre-Conditions: + // The Play must exist in the Set and be allowed to mint new Moments + // + // Returns: The NFT that was minted + // + pub fun mintMomentWithSubedition(playID: UInt32, subeditionID: UInt32): @NFT { + pre { + self.retired[playID] != nil: "Cannot mint the moment: This play doesn't exist." + !self.retired[playID]!: "Cannot mint the moment from this play: This play has been retired." + } + + // Gets the number of Moments that have been minted for this subedition + // to use as this Moment's serial number + let subeditionRef = TopShot.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + + let numInSubedition = subeditionRef.getNumberMintedPerSubedition(setID: self.setID, + playID: playID, + subeditionID: subeditionID) + + // Mint the new moment + let newMoment: @NFT <- create NFT(serialNumber: numInSubedition + UInt32(1), + playID: playID, + setID: self.setID, + subeditionID: subeditionID) + + // Increment the count of Moments minted for this subedition + subeditionRef.addToNumberMintedPerSubedition(setID: self.setID, + playID: playID, + subeditionID: subeditionID) + + subeditionRef.setMomentsSubedition(nftID: newMoment.id, subeditionID: subeditionID, setID: self.setID, playID: playID) + + self.numberMintedPerPlay[playID] = self.numberMintedPerPlay[playID]! + UInt32(1) + + return <-newMoment + } + + // batchMintMomentWithSubedition mints an arbitrary quantity of Moments with subedition + // and returns them as a Collection + // + // Parameters: playID: the ID of the Play that the Moments are minted for + // quantity: The quantity of Moments to be minted + // subeditionID: The ID of the subedition within Edition that the Moments references + // + // Returns: Collection object that contains all the Moments that were minted + // + pub fun batchMintMomentWithSubedition(playID: UInt32, quantity: UInt64, subeditionID: UInt32): @Collection { + let newCollection <- create Collection() + + var i: UInt64 = 0 + while i < quantity { + newCollection.deposit(token: <-self.mintMomentWithSubedition(playID: playID, + subeditionID: subeditionID)) + i = i + UInt64(1) + } + + return <-newCollection + } + pub fun getPlays(): [UInt32] { return self.plays } @@ -578,7 +654,7 @@ pub contract TopShot: NonFungibleToken { // Struct of Moment metadata pub let data: MomentData - init(serialNumber: UInt32, playID: UInt32, setID: UInt32) { + init(serialNumber: UInt32, playID: UInt32, setID: UInt32, subeditionID: UInt32) { // Increment the global Moment IDs TopShot.totalSupply = TopShot.totalSupply + UInt64(1) @@ -587,7 +663,11 @@ pub contract TopShot: NonFungibleToken { // Set the metadata struct self.data = MomentData(setID: setID, playID: playID, serialNumber: serialNumber) - emit MomentMinted(momentID: self.id, playID: playID, setID: self.data.setID, serialNumber: self.data.serialNumber) + emit MomentMinted(momentID: self.id, + playID: playID, + setID: self.data.setID, + serialNumber: self.data.serialNumber, + subeditionID: subeditionID) } // If the Moment is destroyed, emit an event to indicate @@ -922,6 +1002,41 @@ pub contract TopShot: NonFungibleToken { return TopShot.currentSeries } + // createSubeditionResource creates new SubeditionMap resource that + // will be used to mint Moments with Subeditions + pub fun createSubeditionAdminResource() { + TopShot.account.save<@SubeditionAdmin>(<- create SubeditionAdmin(), to: TopShot.SubeditionAdminStoragePath()) + } + + // setMomentsSubedition saves which Subedition the Moment belongs to + // + // Parameters: nftID: The ID of the NFT + // subeditionID: The ID of the Subedition the Moment belongs to + // setID: The ID of the Set that the Moment references + // playID: The ID of the Play that the Moment references + // + pub fun setMomentsSubedition(nftID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32) { + let subeditionAdmin = TopShot.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + + subeditionAdmin.setMomentsSubedition(nftID: nftID, subeditionID: subeditionID, setID: setID, playID: playID) + } + + // createSubedition creates a new Subedition struct + // and stores it in the Subeditions dictionary in the SubeditionAdmin resource + // + // Parameters: name: The name of the Subedition + // metadata: A dictionary mapping metadata titles to their data + // + // Returns: the ID of the new Subedition object + // + pub fun createSubedition(name:String, metadata:{String:String}): UInt32 { + let subeditionAdmin = TopShot.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + + return subeditionAdmin.createSubedition(name:name, metadata:metadata) + } + // createNewAdmin creates a new Admin resource // pub fun createNewAdmin(): @Admin { @@ -1324,6 +1439,184 @@ pub contract TopShot: NonFungibleToken { } } + // getMomentsSubedition returns the Subedition the Moment belongs to + // + // Parameters: nftID: The ID of the NFT + // + // returns: UInt32? Subedition's ID if exists + // + pub fun getMomentsSubedition(nftID: UInt64):UInt32? { + let subeditionAdmin = self.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + + return subeditionAdmin.getMomentsSubedition(nftID: nftID) + } + + // getAllSubeditions returns all the subeditions in topshot subeditionAdmin resource + // + // Returns: An array of all the subeditions that have been created + pub fun getAllSubeditions():[TopShot.Subedition] { + let subeditionAdmin = self.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + return subeditionAdmin.subeditionDatas.values + } + + // getSubeditionByID returns the subedition struct entity + // + // Parameters: subeditionID: The id of the Subedition that is being searched + // + // Returns: The Subedition struct + pub fun getSubeditionByID(subeditionID: UInt32):TopShot.Subedition { + let subeditionAdmin = self.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + return subeditionAdmin.subeditionDatas[subeditionID]! + } + + // This script reads the public nextSubeditionID from the SubeditionAdmin resource and + // returns that number to the caller + // + // Returns: UInt32 + // the next number in nextSubeditionID from the SubeditionAdmin resource + pub fun getNextSubeditionID():UInt32 { + let subeditionAdmin = self.account.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + return subeditionAdmin.nextSubeditionID + } + // SubeditionAdmin is a resource that allows Set to mint Moments with Subeditions + // + pub struct Subedition { + pub let subeditionID: UInt32 + + pub let name: String + + pub let metadata: {String: String} + + init(subeditionID: UInt32, name: String, metadata: {String: String}) { + pre { + name.length != 0: "New Subedition name cannot be empty" + } + self.subeditionID = subeditionID + self.name = name + self.metadata = metadata + } + } + + pub resource SubeditionAdmin { + + // Map of number of already minted Moments using Subedition. + // When a new Moment with Subedition is minted, 1 is added to the + // number in this map by the key, formed by concatinating of + // SetID, PlayID and SubeditionID + access(contract) let numberMintedPerSubedition: {String:UInt32} + + // Map of Subedition which the Moment belongs to. + // This map updates after each minting. + access(contract) let momentsSubedition: {UInt64:UInt32} + + // The ID that is used to create Subeditions. + // Every time a Subeditions is created, subeditionID is assigned + // to the new Subedition's ID and then is incremented by 1. + access(contract) var nextSubeditionID: UInt32 + + // Variable size dictionary of Subedition structs + access(contract) let subeditionDatas: {UInt32: Subedition} + + // createSubedition creates a new Subedition struct + // and stores it in the Subeditions dictionary in the SubeditionAdmin resource + // + // Parameters: name: The name of the Subedition + // metadata: A dictionary mapping metadata titles to their data + // + // Returns: the ID of the new Subedition object + // + pub fun createSubedition(name:String, metadata:{String:String}): UInt32 { + + let newID = self.nextSubeditionID + + var newSubedition = Subedition(subeditionID: newID, name: name, metadata: metadata) + + self.nextSubeditionID = self.nextSubeditionID + UInt32(1) + + self.subeditionDatas[newID] = newSubedition + + emit SubeditionCreated(subeditionID: newID, name: name, metadata: metadata) + + return newID + } + + // getMomentsSubedition function that return's wich Subedition the Moment belongs to + // + // Parameters: nftID: The ID of the NFT + // + // returns: UInt32? Subedition's ID if exists + // + pub fun getMomentsSubedition(nftID: UInt64):UInt32? { + return self.momentsSubedition[nftID] + } + + // getNumberMintedPerSubedition function that return's + // the number of Moments that have been minted for this subedition + // to use as this Moment's serial number + // + // Parameters: setID: The ID of the Set Moment will be minted from + // playID: The ID of the Play Moment will be minted from + // subeditionID: The ID of the Subedition using which moment will be minted + // + // returns: UInt32 Number of Moments, already minted for this Subedition + // + pub fun getNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32): UInt32 { + let setPlaySubedition = setID.toString().concat(playID.toString()).concat(subeditionID.toString()) + if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { + self.numberMintedPerSubedition.insert(key: setPlaySubedition,UInt32(0)) + return UInt32(0) + } + return self.numberMintedPerSubedition[setPlaySubedition]! + } + + // addToNumberMintedPerSubedition function that increments 1 to the + // number of Moments that have been minted for this subedition + // + // Parameters: setID: The ID of the Set Moment will be minted from + // playID: The ID of the Play Moment will be minted from + // subeditionID: The ID of the Subedition using which moment will be minted + // + // + pub fun addToNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32) { + let setPlaySubedition = setID.toString().concat(playID.toString()).concat(subeditionID.toString()) + + if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { + panic("Could not find specified Subedition!") + } + self.numberMintedPerSubedition[setPlaySubedition] = self.numberMintedPerSubedition[setPlaySubedition]! + UInt32(1) + } + + + // setMomentsSubedition saves which Subedition the Moment belongs to + // + // Parameters: nftID: The ID of the NFT + // subeditionID: The ID of the Subedition the Moment belongs to + // setID: The ID of the Set that the Moment references + // playID: The ID of the Play that the Moment references + // + pub fun setMomentsSubedition(nftID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32){ + pre { + !self.momentsSubedition.containsKey(nftID) : "Subedition for this moment already exists!" + } + + self.momentsSubedition.insert(key: nftID, subeditionID) + + emit SubeditionAddedToMoment(momentID: nftID, subeditionID: subeditionID, setID: setID, playID: playID) + } + + init() { + self.momentsSubedition = {} + self.numberMintedPerSubedition = {} + self.subeditionDatas = {} + self.nextSubeditionID = 1 + } + } + + // ----------------------------------------------------------------------- // TopShot initialization function // ----------------------------------------------------------------------- diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 505c2fa9..9146b152 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/MarketTopShot.cdc (12.958kB) // ../../../contracts/MarketTopShotOldVersion.cdc (11.029kB) -// ../../../contracts/TopShot.cdc (55.931kB) +// ../../../contracts/TopShot.cdc (69.597kB) // ../../../contracts/TopShotLocking.cdc (5.506kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (14.787kB) @@ -117,7 +117,7 @@ func markettopshotoldversionCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\xfd\x73\x5b\xb7\xb1\xe8\xef\xfe\x2b\x60\xdd\x37\x09\xd5\x2b\x91\x49\xd3\x9b\x37\x8f\x63\xd5\x91\x2d\x3b\xd5\xad\x2d\xfb\x9a\x4a\x33\x1d\x8f\xe7\x05\x3c\x07\x24\x51\x1d\x1e\xb0\x00\x8e\x68\xc6\xd7\xff\xfb\x1b\x2c\xbe\x3f\xce\x21\x65\x29\x6d\xef\xe3\x74\x1a\x8b\x04\x16\xc0\x62\xb1\xd8\x2f\xec\x4e\x7e\xf7\x08\x21\x84\x2e\x88\xa8\x38\xdd\x48\xca\xda\x29\x7a\x4e\x5a\xc9\x71\x83\x66\x6b\xcc\x25\x7a\xce\xd4\x5f\x95\x44\x0b\xc6\xd1\xd5\xb3\x73\x74\xcd\x36\xb3\x15\x93\x8f\xa0\xe3\xf5\x8a\x0a\x24\xa0\x61\x65\x1b\xaa\x7f\x60\xda\x0a\x24\x57\x04\x55\x8c\x13\xb4\xe8\xda\x4a\xc1\xc6\x0d\x95\x3b\x00\x04\x9d\x0d\x34\xa4\xc0\x9d\xa0\x8a\x13\x2c\x49\x8d\xe6\x3b\x74\x81\x37\x1b\xc2\xd1\x2b\x3c\x17\x76\x18\xe2\xe1\xaf\x71\x8b\x97\x44\x83\xaf\xb1\xc4\x08\x0b\xc1\x2a\x0a\x9d\xb7\x54\xae\x10\x6e\x1a\xf8\x71\xd3\xe0\x9d\x40\xb8\xad\x91\x20\x52\x00\x20\xb9\xc2\x12\x61\x4e\x50\x27\x48\x8d\xb0\x40\x92\xac\x37\x0d\x96\x44\xc0\xb4\x54\xaf\xd7\x6c\x4d\x5a\x89\xae\x5e\x5e\x9b\xc1\x7f\x5e\x91\x16\x61\xd4\x92\x2d\x7a\xdb\xe0\x1d\xda\xe2\x56\x0a\x24\x19\x9a\x13\x84\xeb\x9a\xd4\xea\xdf\xaa\x27\x27\x15\xe3\xb5\x38\x41\xb8\x45\xe7\xf5\x9a\xb6\x66\x4d\x7a\xe8\x00\x82\x90\xbc\xab\xa4\x9e\x8c\xc2\x9f\x64\x9c\xd4\x88\xb6\x00\x25\xc6\xe6\xd8\x21\xa0\x0d\xc0\x62\x0b\x1a\x60\xce\x88\x14\x63\xf8\x7f\xd5\x4d\x50\x21\x11\x5b\x20\x8c\x36\xdd\xbc\xa1\x55\x34\x1a\x00\x73\x1b\x64\x1a\xd0\x76\xc1\xf8\x1a\xab\x1d\x42\x78\xce\x3a\x89\xb0\xc2\xd8\x09\xa0\x0e\xa3\x0d\xa7\xb7\x6a\x28\x4e\x04\xeb\x78\xa5\x71\xa7\xb1\xc9\xd0\x9a\xb6\x12\x26\xb1\x06\xb4\x09\x34\xc7\x0a\xb3\x6c\xb1\x50\x73\xd0\x3b\x00\x23\xaf\xf0\x2d\x41\x73\x42\x5a\xd4\xd0\xf6\xc6\x23\x6d\x46\x82\x35\x22\x0c\xeb\x73\x23\xad\xb0\xde\xe6\x0d\xdb\x12\xae\x7a\xd4\x0c\x76\x97\x2d\xe0\x6b\xba\xde\x30\x2e\x71\x2b\x11\x06\xfa\xd2\x88\x2e\xe3\xd1\x6c\xa3\x82\x2f\x60\x0b\x15\xb8\x4a\x01\xb3\xd4\x29\x54\x4f\xbd\x72\x43\x2b\x64\xa7\x5b\xc8\x15\xa1\x1c\xcd\x19\xe7\x6c\x3b\x23\xd2\xf5\x50\x20\x96\x44\xa1\x8b\x93\x05\xe1\xa4\xad\x08\xb2\x88\x01\x40\x76\x2e\x7e\x16\x6a\x23\x4f\x2c\xe8\x36\x9d\x00\x33\x53\x27\x12\x75\x82\xb6\x4b\x8d\x3a\x07\xdc\x20\xea\x52\xb5\xa2\x6a\x15\xbb\x93\xc2\x52\x61\xdb\xa8\x14\xa8\x26\x0b\xda\x92\xda\xa1\x53\x2d\x50\x12\x68\x02\x70\xe0\xb0\x2c\x15\x1d\x21\x49\xf0\x7a\xcb\xf8\xcd\x09\xfa\x5b\x27\x24\x6a\xe8\x0d\x01\xc8\x97\x6d\x4d\x71\x8b\xd1\x5b\x5c\x11\x2e\xf4\x68\x4b\x4d\xd4\x12\xce\xaf\xea\x08\xc0\x14\xc5\x29\x54\xd1\x35\x19\xc3\x17\xfe\xec\x58\xd2\x50\xe7\x4e\xd1\x0b\xa9\x0d\x06\xd4\x17\xb4\xa5\x92\xe2\x86\xfe\xea\x4e\xaf\x39\x81\x17\xea\x68\x1b\xda\xc5\xad\x26\x38\xd5\x81\x13\xd9\xf1\x56\x33\x0a\x35\x1d\x80\xc8\xc7\x05\x46\x81\x1b\xc1\x0c\x12\x04\xc2\xe8\x39\x6b\x1a\xa2\xf7\xcd\x62\x64\xac\x19\x18\x55\x5c\x02\xb1\xf9\xdf\x48\x74\x4e\xc8\x2d\xe1\x3b\xcb\xef\x14\x43\x40\x6c\xdb\x12\x8e\xb6\xb4\x69\xf4\xa1\x35\xfb\x4b\x39\xc2\x55\xc5\xba\x56\xba\x63\x01\x3c\xca\xfc\xa6\x7a\x56\x6e\xf0\x60\xa6\x6b\x4c\x5b\xc7\x01\x2d\x08\x0d\x1e\xe6\x0e\x67\x46\xed\x24\xdb\xb6\x96\x2f\x79\x40\x86\xda\x25\x10\x52\x27\x88\x1a\x77\xc5\x9a\xda\xf5\xb0\x78\xf7\xe7\xaf\x65\x12\xed\x88\xd4\xe7\x50\x10\x7d\x08\xb0\xea\x6c\x11\x78\xc5\x24\x99\xa2\x73\x58\xa0\x3a\xf4\xd5\x0a\xb7\x4b\x45\x89\x9e\x48\x61\x7e\x1b\xdc\x2a\xce\xb1\x50\x88\xa3\xed\x2d\x6e\x68\x8d\x30\x5f\x76\x30\x47\xaa\xa7\xb6\xe1\xec\x96\x2a\xfe\xc8\x38\x62\x2d\x51\x24\xa2\xa6\xb6\xe1\xe4\xb4\x62\x6d\x4d\x0d\xcd\x73\xb4\x61\x02\xc8\xd7\x7e\x85\x39\x69\xbf\x96\x68\xad\x58\x83\x02\xf4\xd2\x8d\x0d\x4b\xa9\x19\xfc\xca\x6a\xba\xd8\x99\x69\xea\x2d\xa1\xeb\x4d\xb3\x33\x04\x82\xbe\x51\x90\x5b\xda\xe8\xbd\x54\x67\x42\xae\x98\x20\xa8\xc2\x82\x08\xd4\x12\xcd\x82\xe6\x8a\xc9\xb4\x75\xe3\xe9\x49\x1d\x49\x87\x8e\x4b\x60\xd0\xb0\x19\x9e\xd9\x48\x86\x38\x59\x93\xf5\x5c\xf1\x24\x47\x2d\x6a\x43\x7f\x64\x4d\x4d\x5a\x34\x83\x39\xfd\x8c\x39\xa7\x8c\x0b\x34\x6f\xc8\x16\x61\xf4\xdd\xe9\xb7\xa8\x21\xd8\x31\xfa\xdf\x7f\xf3\xed\xf7\x70\x86\x16\xb4\xc5\x8d\x18\x3f\x7a\xf4\xbb\xc9\xa3\x47\x7a\x18\xb5\xe4\x25\x9d\x37\xe4\x9a\xdd\x90\x16\x2d\x38\x5b\xa3\x6f\x3e\xbe\xfc\xe9\xea\xc7\xcb\x67\xaf\x5e\x5c\xbf\xf9\xf3\x8b\xab\xf3\x8b\x8b\x77\x2f\x66\x33\xdb\xe1\x8a\xb5\xc5\x3e\x57\x2f\xaf\x93\x96\xaf\x89\xc4\xea\xde\xfc\x0b\x25\x5b\x61\x9b\xbd\x7e\x71\x7d\x7e\x71\x7e\x7d\xfe\x97\xcb\x17\x3f\xcf\x92\x0e\xe6\x04\xbc\x62\xd5\x0d\x50\x82\xee\x71\xfd\xe6\xed\xec\x4f\x6f\xae\x5f\xbd\x79\xfe\xe7\xcb\xab\x1f\x6d\x97\x47\x9b\x6e\xee\x4f\xa0\xe9\x39\xcd\x67\xf7\x09\x70\x36\x99\xa0\xd3\x87\xf9\x58\x70\xf6\xb4\xd6\x64\xd3\xb0\x1d\x50\xe3\x2d\xe6\x14\xcf\x1b\x73\x0d\x3f\xe0\x90\x6e\xcc\x95\xba\x87\xa5\xe2\x9f\x11\xb7\x57\xa4\xa3\xe7\xa1\xce\x40\xab\xcf\x44\x37\x57\x47\x09\x5d\xe9\xf6\xa3\x63\x34\x45\x33\xc9\x15\x5e\x3f\x59\xca\xfd\x5f\x9f\xae\x5e\x5c\xff\xfc\xe6\xdd\x9f\x3f\xa3\xcf\xd1\x20\xb8\xae\x39\x11\x20\x7b\x6c\x57\xb4\x5a\x21\xce\x76\xb8\x91\x94\x08\x24\x56\xac\x6b\x6a\x45\xce\x35\xd9\x30\x41\xa5\xb9\xa2\xed\x78\xef\xa0\xe5\xee\x5c\x43\x80\x61\xcd\xbf\xfd\xb8\x6e\x4f\xdf\xbd\xf9\xeb\xf9\xab\xeb\xbf\x9a\x3d\x0d\x26\xf1\x50\x98\x4b\x36\xcb\x21\xec\xc5\xad\x62\x58\xbf\xd5\x3e\xbd\x58\x53\x09\x42\xa2\xba\x94\xd4\x46\x65\xe3\x53\x61\xc5\x50\x87\x3c\xa2\xa6\xe4\xa4\xe0\x4b\x7f\x5b\x8d\x8e\xcb\x80\x73\x39\xaf\x17\xaa\x6a\xf4\x5c\xff\x32\xa2\xf5\x14\xfd\x74\xd9\xca\xef\x7e\x7f\xa2\x18\x1f\x9c\xd0\x29\xfa\xa4\x69\x63\xaa\xff\xf3\xf9\x78\x60\x44\x41\xb8\x22\x04\x25\x32\x01\x7b\x97\x9c\x2e\x97\x84\x6b\xc6\x86\x8d\xe8\x93\x4c\xe0\x8a\x6c\x67\xd0\x6d\x26\x31\x57\xb3\x68\xc9\xf6\x79\xc7\x39\x69\xa5\xfe\xde\xce\x29\x58\x2b\x6c\x11\x48\xcb\x33\x22\x4f\xdf\x91\x06\x04\xef\x50\x00\x9b\x4c\x06\xa6\xa9\xe4\xa7\x5e\x84\xcc\x88\xb4\xf8\x10\x44\x5e\x5e\x78\x94\x88\x64\x3a\x7b\x30\xaf\x98\xb6\x15\xcd\xb1\x02\x5b\xc0\xfc\xb9\x6a\x70\xcd\x66\x44\xa6\x83\x29\xb1\xd5\xff\xdd\x37\x98\x1d\x88\x13\x49\x15\x9a\x81\x2f\xc2\x60\x70\xdb\x54\xb8\x55\xd7\xed\xdc\xe8\x1a\x46\x56\x2e\xcc\xe3\x9d\xee\xff\x92\xb3\xf5\xde\xb9\x9c\xa0\xb6\x5b\x6b\x49\x60\x2f\x32\x0c\xa6\x1b\x56\xdd\x28\x89\x6b\x4d\x70\xab\xd8\xcc\x5b\x90\xc9\xfd\xec\x00\x4f\xf9\x3e\xbc\x82\x6e\xf1\x6c\xfa\x46\x32\xa2\x09\x15\x46\xbc\x0b\x50\x91\x00\xd6\x2d\x5f\x43\xab\x91\x96\x4f\x2c\xf8\xef\xff\x90\x2f\xb6\x40\x04\xb8\xb9\xea\xd4\xcd\x3b\x48\x99\x5e\xd4\x3b\xe5\x77\x21\xd0\xb5\x5b\x88\x12\x45\x6b\x8e\xb7\xad\x5d\x8b\x07\x99\x2c\xe9\x67\xd3\xd2\x9d\x60\xb5\x10\xd5\xc9\x71\xd8\xa7\x7d\x78\xf3\xc3\x39\xa6\xad\x44\x74\x36\x34\xdc\x85\x6e\x19\x8d\x26\x59\x38\xd6\xde\x4d\xaa\x89\x90\x5c\x5d\x4a\xc5\xcd\xb9\xb0\xbf\x06\x43\x1c\xff\xa3\x6e\x80\xd3\x86\xdc\x92\x06\x2d\x28\x69\x6a\x31\x0e\xee\x3e\x41\xac\xda\xaa\x76\xb2\xc3\x0d\xba\xc5\x4d\x47\x84\xd7\xe8\x87\xb5\xe8\xdf\xe8\x4a\xd1\x5c\x52\x4f\x02\x74\xb2\x19\x48\xd7\x0d\x6b\x97\xea\x9a\x1e\x27\xed\x14\x5b\x52\x93\xaa\xc8\xc6\xaa\xff\x6d\x4d\x2b\xb0\x3f\x60\xb4\xe4\xac\xdb\x28\x29\x19\x54\x79\xb9\xe2\xac\x5b\xae\x02\x8d\x6a\x32\x41\xaf\x71\xbb\x33\x9a\x3e\x6e\x11\xf9\xa8\x74\x7d\xb5\x7e\x68\x75\x82\xe6\x9d\x44\xac\x6d\x76\x20\x6e\x6b\x96\x39\x76\x9b\x7c\x8b\x39\xaa\x4a\xcc\xdd\xad\xe6\x2f\x46\x52\x42\x82\xfe\x4a\x50\x4d\xb5\xd1\x86\xef\xd4\x9c\x82\x0b\xcd\xd8\x33\xaa\x4a\x49\x12\x82\x34\x8b\x63\x80\xad\x0e\xaf\x52\xda\xc4\x14\x7d\xd2\x80\xa7\xd0\xeb\xf3\x41\xf0\x67\x24\xd4\xf8\x7a\x86\x10\xba\x51\x38\x82\xe9\x77\xf0\x20\x5e\x1b\xee\x1d\x42\x4c\xd1\x0f\x21\xfc\x58\x08\xbb\xbc\x70\x86\x1b\xcb\xd8\x8d\x2d\x06\x38\xeb\x18\x05\xfc\x88\xef\x60\x63\x82\xcb\xc2\xdc\x7b\x96\xd5\x01\x45\x08\x41\x97\x4a\xa1\xb5\x1d\x8d\x65\xc4\x5e\x66\x5f\x0b\x35\xa6\x56\x60\x48\xab\x7a\xd0\xb6\x52\x0a\x48\x6b\xcc\x65\xdf\xc6\x7b\xdc\x92\x8f\xf2\x6d\xc4\x48\x0f\x9c\xbf\xb6\x23\x45\xd3\x2e\xdc\xd6\x93\x89\x66\xcb\xd1\xd4\x83\x29\x0b\x22\xbf\x64\xc6\xb3\x90\xd5\x47\x13\x96\x4c\xe2\x46\xdd\x7b\x4a\xdf\x62\x0b\x50\x98\x85\x62\x1a\x81\xa5\x2e\xb5\x31\x25\x13\x7e\x46\x2a\xac\x34\x64\x68\xaa\x4e\x0e\xc8\xc9\x86\xcf\x9d\x28\x1d\xba\x66\x44\x28\xad\xb2\x25\x8a\x1e\x30\xa7\xcd\x0e\x6e\x4c\x7f\xb4\x2d\x2c\x4e\x16\x8a\x33\x6b\xc3\x54\x3a\x37\x18\x80\x9a\x93\x49\xda\x8a\x18\x83\x0a\x20\xa7\x73\x1a\xa3\x85\xe5\x27\x6c\x2e\x4e\xc9\x50\x8d\x25\x19\xa3\x73\xa5\x72\x5a\x23\xe5\xb2\x61\x73\xdc\xd8\xeb\xe2\xf2\x42\x5f\x72\xaa\x0b\x6d\x97\x31\x2a\x61\x42\xb3\x6e\xb3\x69\x76\x96\x79\xff\x83\x79\xf7\x73\xb6\xd6\x77\x19\xba\xde\x6d\x88\xb6\xbf\xd0\xf0\xee\x7d\xf0\x79\xc0\xed\xa0\xae\x00\x40\xf5\xef\x82\x11\x7f\x07\x88\x52\xf3\x08\x79\xb4\x9d\xb0\x05\xa0\x08\x95\xc9\x15\x71\x56\x1c\x61\x4d\x2a\x63\x03\x3c\x00\x89\x6a\x06\x66\x14\x73\x1b\x39\x18\xfa\x52\x32\x97\x90\xbe\x9b\x34\x3f\x06\x03\x89\x90\xb8\xad\x08\x1a\x31\x6e\xcc\x4c\xc7\x8a\x5a\x8c\x51\x44\xc2\x18\x30\x4b\x0b\xce\xd0\x68\x60\x13\x8f\x66\xae\x17\xe3\xec\xb8\xd1\xa8\xbf\xd9\x5d\xe7\x04\x6b\xa5\xb0\x3a\x8b\xf2\x8a\x35\xb5\x70\x1a\x4b\x68\x8b\xb7\xfd\x8c\x55\x4f\x6c\x48\x45\x17\xb4\x02\x93\x87\xe2\x7e\x27\xde\xcc\xd8\x90\x25\x69\x6b\xc5\xa4\x0d\x8d\x83\xcc\x62\x01\xbc\xc3\x3b\x74\xde\x34\xa4\x45\x2b\xaa\x8f\xd2\x77\xc0\x70\xa8\xee\xfc\x27\x82\xb5\xc4\x3d\xdb\x74\x5c\x04\xd6\x95\xef\x8c\x65\x05\x2d\xf1\x9a\xa0\xef\x2d\x38\xc6\x35\xf8\x57\xb0\x25\x33\x49\x36\x2b\xd2\x0a\xd6\x6a\x3b\x8d\xe9\x4e\x30\x9c\xe7\x57\x64\xce\x59\x8b\xfe\x13\xaf\x3d\x62\xdd\x5d\x1c\xb0\x1f\x63\xb3\x6b\x02\x43\x30\x46\x82\xb6\xcb\x46\xbb\x21\x90\x31\x64\x6b\x03\x22\x5b\x58\x18\x54\x7a\xdc\x01\xb1\x59\xa7\x05\x27\xc6\x3a\xdf\xec\xcc\x1d\x45\xe7\x0d\x39\x41\x82\x21\xdc\xee\x14\xe1\x54\xb8\xf5\x2c\x09\xd7\xda\x16\x5a\xd8\x86\x14\xfd\x30\x9d\xcb\x8b\x70\x31\x8a\x79\x18\x5d\x15\x36\xf9\x93\xde\xf3\x80\x07\x77\x2d\xfd\x7b\x07\x77\x87\x75\x93\xa8\x86\xae\x95\x02\xd0\x10\x99\xc8\xef\x11\x94\x99\xa2\x51\xe1\x7c\x33\x7e\xa6\xe0\x70\xb0\xee\x1a\x85\x27\x90\x01\x94\xa6\xb2\xc6\x9b\x0d\x6d\x97\xf1\x5c\xb4\xb9\x56\x9d\x40\x20\x1c\xd6\x2e\x91\x24\x7c\x8d\xb6\x78\x07\x86\x56\x07\x18\xb6\x64\x6e\xe5\xc2\x31\xba\x54\xd7\x12\x06\x87\x0f\xe3\x98\xef\x42\xb0\x15\x6b\xcd\xfa\xb7\x2b\xda\x10\xb4\x25\x68\x41\x97\x1d\x27\x48\x7b\x43\xe6\x44\x4a\xc2\x61\x0c\xed\x84\x70\x7b\x16\x40\xc9\xb0\x91\xab\xf1\xc6\xd4\xf3\xd9\x63\x46\xb1\x95\x51\x7f\xc3\x63\x63\x28\x73\xa0\x39\x49\xbe\x51\x1f\x37\x9b\x86\xb4\x4b\xb9\x42\x8f\xcf\xd0\x37\x53\x74\x74\x65\xb5\x61\x87\x13\xaf\xf5\x91\xf5\x46\xee\x8e\x22\x48\x9f\xa3\xbf\x94\x44\x34\x36\x42\xca\x99\xe5\xf5\x63\x2f\x5b\xe4\x8d\xdd\x28\x67\x6e\xc0\x47\x31\x6c\x2f\x48\x9d\x5b\xc9\xc2\x48\xbd\x6a\xbb\x8d\x90\x19\xde\xe5\xac\xaa\xba\x40\xa8\xe7\x04\x37\x68\xcb\x78\xe3\x2e\x76\x68\xba\xc6\x37\x04\x75\x1b\x70\xc3\x68\x65\xcf\x49\xd2\xd6\x5a\x3e\x6f\x14\x3b\x06\x7e\xa3\x04\x3c\xf5\xd3\x1c\x0b\x32\xc7\x4d\x13\xb0\x85\xd7\x78\x49\x2b\x54\x61\x5e\x8b\x31\x3a\xd7\xb8\xf3\x72\x36\x6d\xd1\xba\x6b\x24\xdd\x34\x4a\xac\x5c\xc0\x39\x97\x00\xce\xb1\x5c\x2f\xee\x6b\x61\x96\x1a\x6a\x2e\x7b\xfb\xb0\xd6\x73\xac\x37\x2b\x53\x56\xce\xdd\x41\x47\x7f\xef\x40\x28\xd3\xad\x04\x58\xa1\x03\xaf\x9d\xbb\x84\xbc\xf3\x4e\x5d\x19\x15\x6e\x1a\x85\xd8\x5b\xcc\x29\xeb\x04\x5a\x02\x15\x83\x45\x20\x62\xd0\x58\x9f\x25\xd2\xe6\x53\x41\x6f\x94\x36\x21\x9d\x67\xce\x3a\xe4\xf0\x9c\x82\x2f\x37\x10\x59\x8d\x3d\x5e\x29\x28\x40\x05\x66\xcf\xac\xf7\x30\x14\xbd\xc7\x3d\xcc\xc7\xa2\x2d\xe6\x3f\x3f\x65\xbc\xc7\xda\x15\xc2\xc3\x26\x72\xf9\xd1\xf4\xbf\x52\xdc\xdf\x2c\x2c\xec\x39\x99\x20\xf2\x71\x8c\x8e\xae\xe9\x9a\x88\xd0\x28\xc8\x99\xd2\xc1\xdf\xe1\x8d\x64\x5c\xa0\x6a\xc5\x6e\x3c\x09\xaa\x13\xc1\x16\x0b\x71\x94\x4d\xa0\xc5\x6b\x62\xcf\x6d\xcc\xf9\x0e\xd1\x11\xd1\x03\xea\x89\xe8\x7e\xba\x62\x8c\xd5\x5c\x51\x74\x6c\x2b\x5c\xf1\x61\x8c\x4a\xf5\xb0\x4c\xea\x8f\x8e\x47\xcd\x0c\xf6\xee\xcc\x9e\xb4\x1e\x12\x73\x27\xd0\x23\xf2\xa6\x00\xff\x0c\x86\x29\xc1\x01\xac\x7b\x40\x91\x9a\xdc\xcb\xc4\x1c\x0b\x73\xfe\x6a\xa9\x24\xde\x58\x36\x53\x44\xe3\x7d\x67\x92\x21\x5c\xd7\x20\xad\x70\xb2\x66\xb7\x24\x14\xae\x84\xb5\x35\x09\x63\x42\x04\xe7\xba\xb1\xf6\xa5\xd2\xc7\x65\xc6\x4c\xec\x49\xd3\x4c\x25\xf1\x3c\x2b\xc1\x21\xd4\x3c\x64\xee\x6c\x77\xfe\x68\x23\x94\xac\x58\x9d\x8d\xea\x7d\xf4\x15\x98\x94\x6b\xcb\xb2\x8d\x99\xd5\x0e\xe3\xdc\xd8\xaa\x59\xb8\x8c\x88\x71\x7b\x61\x09\xfe\x54\x67\xcb\x5f\xaa\x66\xb4\xd7\xa1\x13\xd3\x7b\x90\xc1\xa8\x0d\x23\xda\x7b\xbe\x51\x1a\x17\xa8\x4b\xfa\x6c\x81\xfb\x9c\x85\xeb\x55\xad\xf5\x85\xa1\x41\x50\x79\xa2\x9a\x6f\x89\x92\xdd\x84\x93\x6a\x94\x3a\xe8\x66\x96\xf3\x76\x1f\x82\x01\x6e\x41\x6d\xfd\x0d\xf7\xcf\x0c\xe5\x2d\xae\x0e\x21\xc6\x52\x1c\x09\xd4\x0a\x50\xcb\x40\x90\x21\x5c\xdf\x7a\x76\xc9\xa1\x31\x95\xca\x8c\x00\x16\xc1\x26\x36\xac\xba\x11\x7e\xe4\x56\xb1\x63\x37\x2b\xa3\x4c\x38\x83\xb8\x5a\xb7\x3a\xfd\xb1\x20\xab\xdb\x09\x69\xd0\xa9\x07\x2f\x0c\xaa\x17\x71\xde\x34\xa3\x63\x20\x52\x35\xb4\xfa\x27\x37\xae\xd3\x1a\xcd\x71\x75\x73\x2a\xd9\xa9\xfa\xef\x09\x4a\x77\x40\xa9\x31\x0d\xb3\x41\x22\x0b\xc6\xc9\xad\xd2\xbc\xda\x5a\x09\x75\x2b\x90\xfb\x18\x27\x4e\x4b\x57\xdc\x09\x44\x58\x8b\x01\xc5\x9a\x1c\xcd\x2a\x80\xfb\x6e\x0b\x71\xa7\xdb\xe2\x9c\x73\xbc\x4b\x62\x57\xd4\xda\x30\xda\x60\x2e\xf5\x3d\xa2\x0e\x9e\xf5\x4d\x9b\x6e\x26\x48\x68\x93\x3a\x1f\xcc\x04\x4e\xe0\x50\x5d\x5e\xa8\x3b\x58\x20\xbc\xd9\x90\x56\x35\x58\x11\x1e\xf3\x6c\x63\xa0\xa9\x19\xd1\x32\xee\x12\x6e\x4d\xc5\x28\x6a\x4b\x5c\x0a\x3a\xcc\xb1\xec\x86\xf0\xe0\x8c\x69\xcb\x72\x00\x6f\xa4\x13\x53\xf4\x5e\xaf\xfc\xc3\xa3\xf8\xc2\xd8\x38\x4b\xdf\xe5\x85\x59\xfb\xa5\xbb\x78\xe8\xc2\x8d\xd6\xfa\x8b\xcc\xec\x53\x48\x2e\x31\x4a\xca\xfe\x18\x30\xba\x50\x01\x32\xbe\xfe\x7a\x81\x1b\x41\xd0\x48\xad\xda\x2c\xe5\x78\x08\x9c\x69\x73\xa2\x67\xa2\x77\x04\x10\xce\x3b\x92\xf8\x5f\x20\x86\x61\x2f\x66\x0c\xc0\xc0\xb4\xf8\x8c\xb1\xe6\x73\x84\xa1\x08\x19\x21\x41\xeb\xfb\xa2\xd9\x19\x6f\x4b\x69\xe2\xb1\x29\xcd\xae\xbf\x6b\x75\x0f\x14\xf6\x50\xd3\x7f\xeb\xf4\x40\xdc\x34\x6c\xeb\xa2\x15\x82\x53\x5c\x1a\x45\xc4\x4e\x9f\xa2\xb3\x27\xea\x77\xee\x76\xb1\x85\x83\xe8\xf1\xa5\x09\xce\x4c\x4f\x32\x37\xd5\x93\xb0\x3b\x04\xe1\x91\x8a\x0a\x13\x0e\xa5\x9a\xd8\xc5\xc2\x4c\x40\x05\x8f\x46\xbc\x5c\xe4\xce\xa9\xe2\x3c\x81\x4b\x45\x04\xda\xcf\xa8\xf4\x64\x01\x4c\x3c\x3d\x2c\xbd\xf8\xee\xe2\xcd\x42\x76\xa0\xf6\x5e\x4f\x43\xef\x78\x7a\x24\x42\xdd\xc4\x1f\x0b\x2f\x8f\x05\xa6\x3d\xb6\x70\x53\xcc\x26\x91\x99\xfa\x14\x7b\x72\x4a\xb9\x5e\x7f\x70\xae\x4a\x7b\x9b\xba\xd9\x0c\xed\x83\xd9\x27\x8f\x23\x34\xad\xcd\x15\x68\x20\x89\x15\xdb\xea\x20\x9c\x06\x57\x24\xc0\xc9\x09\x22\xcb\x31\xfa\xf6\x3b\xb5\x86\xef\xbf\xd9\x73\x54\xf4\x72\xb5\x17\xef\x2d\xe1\x6a\xf2\xc1\xb1\xd1\xff\x4d\x75\xdc\x21\x61\xf1\xae\xc2\x9c\x66\xcd\x67\xe8\xfd\x87\xfc\x37\xeb\x8d\x3d\x43\x9f\x0a\x12\xa3\xa1\xe6\x33\xcd\x6d\x0a\x62\x62\xbe\x32\x0d\x29\x6a\x3a\x99\x20\xed\xa6\xf6\x3e\x6d\xd0\x5b\xf4\x8d\x63\x18\x23\xc4\x9d\xea\x20\x31\x20\x3e\x2f\x89\x49\xc6\xf1\x32\x1e\xdc\x2e\xda\x3a\x38\xde\x7b\x94\x7c\x40\x67\x76\x00\x83\x44\xf5\xff\xc7\x81\x54\x1a\xb1\x8e\xba\x86\x49\xe3\xba\x16\xf6\x3e\xf2\xd7\x50\xc9\x5a\xa1\x04\x11\xcc\xf1\x9a\x28\xdd\x70\xea\x4c\x38\xe6\x26\x32\x7a\x13\xc0\xb4\x1a\xec\x9c\xa8\x23\xe1\xfd\xc6\x05\x80\x9c\x9c\x3e\x77\xf1\x5c\xd3\xf4\x86\x03\x68\x2d\x21\xb5\x0b\xa3\x35\xfa\x89\x82\xbb\x09\x0d\x4b\xa6\x03\x68\x08\x41\x7b\xc5\x25\xf4\x56\x16\x41\x57\xb8\xfd\xda\x9c\x38\xdc\x70\x82\xeb\x9d\x3e\x79\xd1\xad\x3c\x2b\xa3\xc3\x06\xcc\x18\x44\x8e\x92\x58\x80\x83\xd4\x1c\xbb\x9b\xce\x23\xf6\x5e\x43\xf9\x80\x1e\x9f\xa1\x96\x36\x53\x74\xf4\x5c\xb3\x3a\x25\x41\x7b\xfc\x32\x35\x29\xed\x34\x73\x0e\x09\xc0\xcb\xf8\x28\x1b\xe3\x71\x40\xcf\x39\xbc\x70\xdf\x81\x18\x17\x92\x38\x69\xc8\xc7\x88\x98\xdb\x2a\x87\xde\x77\x18\xdc\x42\xce\xec\x42\xac\xcd\x12\x80\x06\xd8\xae\x33\x19\x68\x9c\xea\x73\xe9\x99\x3a\x4f\x90\x01\xe2\xad\x15\xc7\x62\xd6\x8e\x22\x56\x30\xd6\x02\x95\xd9\xab\xe3\x0c\xf0\x9b\x8d\xd1\xed\x01\x72\xb7\x09\xdd\x27\xbd\x1c\xc4\x2f\xd5\x30\x8b\x14\xaa\x8f\x05\x0a\xf9\xad\x8e\xe1\x94\x0c\xfd\x4a\x38\x3b\x88\xc1\x04\x03\x7d\x13\x0f\x42\xd6\xb4\x2f\x54\xc5\xf3\x07\x1f\x35\x61\x97\x5f\xc0\xb0\xe7\x0c\x42\xb3\x06\x67\xc9\x72\xfa\xdb\xc0\x99\x28\xb2\x08\x61\x79\x84\x08\x99\x44\x20\x31\x97\xd9\x44\x4a\x69\xfa\x83\x21\x02\x17\x36\xfb\x80\x43\x29\x46\x6e\x0a\x56\x90\x4d\x0f\xa6\xda\xe1\x8d\x91\x55\x4d\xe3\xc2\x41\x05\x2c\xa6\x27\x5d\xfd\xf7\xb8\xc7\xf4\x10\xa3\x54\x53\x0a\x10\x95\xfe\xa7\xb0\x02\x6a\xa8\x08\x3a\x9d\x58\x87\xea\x7e\x2d\x7d\xd0\x7c\xa8\x14\x1f\x82\xf3\x03\xd8\x72\xa8\x63\x16\x40\x1e\xc0\x98\xa9\x08\x54\x1d\xe2\xee\xb2\x40\x30\x47\x23\x7c\x8b\x69\x03\x5e\xf6\xe0\x28\xc5\xf2\x7a\xb6\x79\x1e\x5b\x5f\xc4\x54\x8b\x67\x33\xe5\xa7\x46\x1b\xb7\xb8\x29\xf1\x52\x27\x65\x09\x22\x1f\x0f\xb2\x24\xba\x30\x5c\x36\x19\xf5\xf1\xa1\xb3\x3b\x03\x6d\xe4\x51\xd6\xd8\x9d\xeb\x72\xe8\x57\xff\xd9\x8e\xc3\xbf\xf6\x31\x94\xc7\x77\xa1\xe2\x73\x70\x5e\x19\x22\x8e\x1e\xd0\x78\x21\x31\xd2\x1b\xd4\x8d\xb2\xc5\xf0\xde\xa5\xf5\x8e\x4c\x47\x22\x9a\x19\x58\xe3\x0c\x90\x4a\xf8\x5c\x64\x80\xf2\x63\x7a\xd1\x86\x86\xfe\xc3\x1d\x08\x84\x83\xbb\xf2\x85\x47\xdc\x58\x37\x22\xfb\x8a\x3b\xd0\xfb\xcc\x2c\x5f\x76\x08\x61\x04\x1d\xce\x6b\xb4\xa1\x44\xd4\xb1\x08\x32\x73\xfb\x54\x26\x5a\x23\xea\xf6\x20\xc5\x09\xc2\x40\xa1\x69\x13\x20\xd0\x2c\x08\xd0\xd3\xe5\x61\xb8\x53\x9b\x6d\x6e\x45\xf5\x4f\x61\xa4\x65\xf3\x95\xb6\x81\xca\x8e\x1b\x23\x69\x4b\xb6\xcd\xce\x2a\x47\xba\x4d\x91\x9d\xdc\x91\x31\x06\x57\xb3\x37\xea\xdd\x83\x3b\xae\x3b\x91\x6b\x94\xb0\x98\x79\xa4\xaa\x1f\xc8\xe3\xdf\x69\x0c\xe8\xf9\x5f\xbd\xbc\xd6\x93\xde\x62\xab\xe3\x0d\x72\x54\x8f\xe0\x94\xa3\x4e\xd1\x0f\x0a\xd8\x83\xf1\x55\x58\x0d\xf8\x6d\x61\xb8\xa9\x76\xc4\x6e\x0e\x17\x54\x53\x16\xda\x0b\x3a\x30\x73\x6d\x80\x83\xfb\x91\x9c\xd8\x6a\x4d\x5d\xfb\x04\xca\x1f\x89\xec\xd3\xcf\xfb\x75\x72\x18\x3a\xf2\x6e\x23\xe7\xe3\xea\x04\xd1\x96\x62\x2a\x0c\xa4\xaf\x85\x89\x4a\x35\x63\x44\x9d\xc0\x2d\xd4\xad\x2f\x5b\xa3\x47\xee\x65\xd8\xd9\x0a\x5e\x5b\xe4\xf8\x27\x76\xf9\x08\x64\xfb\xda\xec\x0a\x6c\xfa\x93\x53\x1b\xd0\x75\xf5\xf2\x7a\x14\xc7\xcc\xfa\xd9\xfc\xbb\x21\x95\xd1\xb7\xc7\x27\xd9\x9e\x0d\x7f\x92\x3b\xe9\x8e\xbd\x0b\xcc\x24\x97\xac\x4d\xb4\x98\x71\x61\x28\x89\x3a\xd8\xbb\xbd\x9b\x75\x80\xa4\x5d\x44\x44\x3c\x11\xf3\x2a\xe2\xc9\xa9\x43\x70\x0f\x9f\x9b\x63\x59\xad\x5e\x67\xcc\x4e\xc9\xb3\x73\x2a\x39\xe6\x3b\xf4\xf7\x0e\xb7\x92\xca\x5d\x9f\x89\x28\x61\x86\x6b\x1d\x07\x91\x04\x01\xa3\x83\x24\x44\xb9\x97\x11\x86\x2f\xf1\x14\x16\xfb\xa4\x73\x3b\x69\xcd\x9c\x4a\x4b\xd0\xda\x78\xc6\xa9\x8a\x0c\x2e\x78\x7e\x17\xbe\xb4\x73\x8e\x32\x2b\x74\x44\x27\x74\x4b\xf8\x10\x7c\xcb\x08\x93\x1d\x18\xa5\x71\xe4\x7e\x25\x26\x9e\x79\x8a\x7e\x08\xe6\xf3\xa9\x74\xa6\x82\xdf\xfd\x89\xf2\x5f\x8e\x12\x6a\xb9\xc5\x1c\x51\x0b\x1f\x54\xb9\xf0\x57\x1d\x56\x42\xd1\x13\x8f\xc6\x82\x77\x34\x1c\x74\x6c\x42\xc2\x47\x92\xdd\x90\x76\x8a\x9e\x9c\xea\x20\x8b\x7c\x91\x46\xed\x3b\xce\xe0\x51\x74\x86\xa8\xa1\xef\xef\xff\xa0\xe8\x3b\xfc\xf5\x73\x3f\xb5\x17\xe8\x2e\x68\x6d\x91\xbe\x24\x52\x2b\x63\xc7\x5e\x0d\x4b\x56\x65\x80\x7a\x19\x6d\x0f\x3c\x23\x0f\x2b\x88\xb1\x15\x7e\x00\x6e\xaa\xf0\x94\x21\x5f\x75\xeb\x88\x15\x44\x43\x18\x8b\xe5\xc0\x20\x05\x66\x12\x0c\x88\x62\xb7\x70\x10\xef\x11\x51\x77\xf6\x6a\x39\x08\x80\xc2\xce\x3c\x37\x99\xa0\xe7\x5a\x92\x24\x58\xd0\x66\x07\xb1\x1f\x54\x7b\x3c\x75\x20\xa1\xa4\x58\x6a\xbf\x22\x41\xbf\xfc\x57\x47\xf8\xce\xd8\x07\x7f\x31\x27\xcb\xc2\x01\xbf\x99\xb6\xd0\x0b\x10\xca\x05\x91\x3e\xf4\xcb\x3a\xc2\x2e\x74\xcc\x8e\x35\x5a\x85\x00\xad\xe4\xf7\xad\x7b\xfa\xf1\x08\xc5\x21\x1b\x61\xeb\x00\x7f\x65\x3f\x5b\xfa\x6b\x14\x32\x91\x77\x8d\x42\x0f\xec\xcf\xc5\xb0\xf3\xd0\xa3\xd5\xdb\xb0\xcf\xc1\x13\x0e\x9c\x39\x03\x7a\xa1\x7d\x89\x0d\x3c\x7e\x4c\x73\x27\x53\xa2\x20\x52\xbc\x37\xf6\xe0\xc7\xa1\xed\x4d\x80\x0b\xdc\xec\xb3\x7b\x71\x1b\xfa\x10\x41\x30\x1b\x14\x95\xcc\x4e\xa1\x33\x34\xfa\xaa\x34\x20\x16\xe8\xab\x19\x91\x4f\x8f\x1f\x97\xba\x25\xf4\x13\x98\xb0\x65\x2e\xd3\x44\xa6\x7e\x31\x18\xab\x61\x00\x8d\xf7\xc4\x6c\xd8\x66\x22\x0e\xd6\x40\xa9\xb3\x40\x10\x99\xf0\x20\x94\xfb\x0c\x54\xa3\x94\xa1\xa0\x4c\x67\x52\xad\x12\x9d\x0c\x0d\x7b\x10\x54\x8f\x61\x1e\xf2\x3f\x9e\xbd\xa6\x6b\xfb\xad\x38\x6c\xc0\x7c\x82\x44\x01\x79\xc8\xaa\x97\x81\x5c\xdc\x47\x64\xa6\x5d\x13\x1d\xaf\xb1\x87\x67\xf5\x83\x3d\x54\xc7\x3c\x20\x38\xd6\x18\xd1\xbd\x47\x8e\x68\x1d\x34\x08\x1a\x33\xf0\xcb\x9a\xe1\x1b\xb9\x22\x7c\x4b\x05\x41\x37\x2d\xdb\xda\x60\x96\xb2\x62\x12\xf2\xd7\xf4\x31\xdd\x10\xbf\x2a\xbd\xce\x2b\x3c\xc7\x1b\x72\xed\xf5\x9c\x77\x17\x65\xba\xe9\x89\x2c\x0d\x07\x02\x30\xfe\xcf\x94\x2e\xc3\xb7\x3a\x2e\xb3\x03\x5d\x6f\x1a\xd0\x27\x74\x8e\x13\x48\x8e\x52\x75\x42\xb2\xb5\x0f\x8d\xbd\xa5\x64\xab\x5f\x0b\x98\x7c\x0c\xe3\x08\x10\xfc\x1c\x05\x75\x6d\xc2\xc8\xda\xbe\x88\x46\xc3\x14\xcd\xb3\xc7\xe0\xe1\x7d\x48\xb0\x76\x47\x16\x5d\xd3\x5c\x05\x57\xe2\xd3\xbc\x05\xe5\x42\x0e\x37\x69\xf0\xbe\x16\x73\xca\xe5\xaa\xc6\x72\x5f\x13\x20\xc8\xfe\x36\x7f\x23\x5c\x90\x9d\xdd\xfd\xbe\x56\x35\xc7\x0b\x79\x4d\xf0\x7a\x4f\x93\xbf\x12\xbc\x0f\xca\x8c\x18\xa1\x74\x4f\xbb\x77\xac\x6b\xeb\xfe\x36\x92\xe0\xf5\xb9\xd9\x91\xab\x67\xe7\x8a\xa0\x0f\x69\xda\xdf\x6a\xc3\xe9\x1a\xf3\xdd\x5b\x25\xad\x0f\xce\x6e\x45\xe8\x72\x35\x00\x68\xbb\xe7\x77\x78\xdb\xa3\x10\x25\x5e\x7c\xdc\xa8\xdb\xae\x1d\xda\x9f\x76\x8e\x67\x04\x8b\x41\x74\x61\x49\xde\x2c\xf6\xae\xaf\xc1\xbb\xe7\x58\x92\x25\xe3\xbb\xe1\x56\xd7\xbb\xcd\xc0\x84\x56\x6c\x4d\x14\x25\x0c\x53\x27\xde\xe2\xdd\xfe\x56\x16\xd6\xac\x62\xfc\x00\x60\x7b\x9a\x69\xd1\x21\x66\x64\xa5\x56\x7b\x0e\x56\x91\xa3\x96\xf0\x34\x20\x12\xef\x11\x98\x9d\xf5\xff\xb2\x7d\x51\x1b\x72\xb3\xf3\x8d\x79\x77\xc4\x45\x33\xce\x12\x1b\x6d\x72\xb6\x12\xff\x9e\xf1\x94\xf8\xe7\x9c\xa1\x14\x7e\x8f\xb9\x49\xdc\xa0\xc8\x4a\xe2\x26\x39\x1f\x29\xfc\x1e\x31\x91\xc2\xef\x39\x07\x29\x34\x8a\xd9\x47\xdc\xa0\x9f\x77\xf4\xb7\xeb\x69\xd2\xc7\x35\xe2\x56\x09\xcb\x88\x7f\xdc\x0e\xfd\x38\xc8\x2c\xe2\xa6\x39\xa7\x48\xd0\x52\x62\x13\xc9\x6a\x4a\x3c\x22\x6f\x12\x31\x88\x64\xa5\x25\xee\x10\x37\x29\xb2\x86\x32\x94\xf8\xc0\x97\xc1\x0c\xb5\x29\x72\x84\xb4\xc9\xd0\x99\x28\xf1\x82\x1c\x1f\x81\x34\x95\xc2\xee\xfb\x69\x90\x05\xd8\x46\x45\x29\xcc\x32\x01\x74\xe6\xf8\x41\xa1\x91\x65\x05\xaa\x95\xfd\x77\x41\x15\xc2\xae\x95\xfd\x67\xde\xc8\xf1\x05\x74\xe6\x79\x44\x4f\x33\x2d\xfd\x9e\x05\xbc\x22\x6f\x18\xb2\x09\x74\x16\x71\x8d\xbc\xb1\x63\x18\xe8\xcc\x33\x8f\x9e\x66\xea\x98\xd8\x66\xea\xdf\x3d\xcd\x1c\xfb\xb0\x6d\xdd\x17\x3d\x1d\x80\x95\xd8\xc6\xf0\x47\xde\x30\x63\x29\xe8\x2c\x67\x33\xc3\xdd\x92\x1e\x05\x01\x3b\xe6\x35\x4a\xd2\x8e\xbf\xc9\xbb\x68\xc6\x83\xce\x0c\x07\xca\x1b\x6c\x6d\x83\x6d\x4f\x83\x12\x03\x52\x33\x2d\x7c\x5d\xd0\xa2\x2d\x4b\x42\x67\x9e\x3d\x15\xb0\x1c\x70\xa6\xb3\x88\x4f\x95\xb5\x0c\xcb\xa2\x8c\xae\x61\xff\x2c\x37\x86\xe7\xcb\x67\x8e\x6f\x15\x70\x14\xb0\x2c\x85\xa9\xe0\xcf\xbc\x71\xc8\xbc\xd0\x59\xc4\xcb\xfa\x21\x03\x8b\x0a\x40\xc3\xdf\xfd\xb0\x6d\xf3\xe8\xef\x3e\xd3\x49\xa4\x4e\xd9\x3f\x8b\xba\xdb\x95\xb3\xc7\x94\x67\x7b\x88\x7a\x86\xee\xa0\xec\x0d\x1b\x87\x72\xfe\xa7\xdd\x39\xe9\xb7\x65\xeb\x81\x51\xb6\xfd\x8b\x1d\xfd\x0e\x65\xc3\x89\x30\x5e\x87\x38\x03\x28\x8a\xd5\x3a\xd7\xef\xea\xe5\x75\x9e\xd5\x6c\x7c\x79\xf5\xf2\xfa\x24\x4e\xb0\x36\x7e\x47\x04\x6b\x6e\x09\x4f\x4c\x14\x3f\xea\x37\xfd\xe6\x61\xad\x7b\xda\x9f\x89\x7c\x3e\x09\x8b\xfb\x29\x04\x63\x8c\xcd\xce\x27\x93\x3f\xbd\x0c\x84\x7d\x3c\x0d\x4c\x26\x99\xae\x5f\xb8\xb0\x86\x13\xf2\xa4\xb7\x4c\xe6\xb9\x33\x79\x0b\x5e\xbb\xbc\x05\x51\x73\x6b\x30\x0c\x52\x16\x04\x66\xc4\xf0\xdb\xd0\x85\x91\x53\x04\xad\xcb\xdd\x32\xb7\xa2\xb6\x03\x05\x6f\x8f\xb5\x92\x5e\x64\x2b\x18\x9d\x05\xb8\xf2\x11\x10\xc5\xa0\x9c\x18\x77\xe1\x5f\xc7\x85\x80\xbe\x9e\x1c\x48\x66\x2d\x25\xe8\xfe\xf7\x5a\x5b\x3a\x65\x69\x54\xff\x73\x38\xbe\x3f\x05\x21\xd9\x98\xc7\x43\x85\x9c\x40\x27\x7a\x92\xb8\x35\x49\x81\x24\x73\xb1\xee\x71\x50\x3b\x43\xac\x93\x82\xd6\x04\xb1\xdb\xb9\x20\xfc\x96\x70\xe1\xe2\xdc\x9c\xab\x3e\xce\x35\xa4\x3e\xe6\x9b\x2c\x70\x25\xc0\x4d\x9c\x82\xc8\x20\xa6\xb8\x14\x6b\x82\x6c\xf1\x9a\x8c\x8e\x7d\x2a\xbd\x58\x7d\x29\xd8\x56\x02\x92\x31\x86\x56\x75\x6a\xd5\x5e\x3f\xdb\xbd\xa4\xa4\xa9\x9d\x7b\xcd\x23\xd6\x6e\x08\x3c\xb0\x9b\xa2\xa3\x97\x06\xe6\xd1\x31\x7a\xfa\x14\x1d\x1d\x65\x83\xa6\x22\xef\x43\x0c\xfa\xd6\xc0\x2c\x0e\x6a\x0c\xaa\x45\xf1\x4e\x7d\xc6\x15\x6b\x2b\x2c\x47\x47\xe8\x28\x77\x17\xda\x1f\xed\xac\x07\x11\x5e\xfb\x8c\xd1\x83\x78\x4f\xa4\xe4\x18\x03\x33\xfd\xe3\xa8\x4c\xe1\x7d\x58\x8d\xe9\xde\xc1\x2d\x1f\x80\xb1\x64\xba\xc5\xe8\xb8\x08\xc8\x0b\xf9\x3d\x13\xd4\x6f\x40\xfb\xa6\xf8\x34\x80\xdf\xbf\x1f\x47\xe7\x36\x3b\x5f\x1e\x1e\x63\xb1\x1e\x4e\xa6\x7f\x6f\x06\x37\xce\xe0\x7a\xa8\xb7\x4d\xaf\x41\xe5\x2a\x36\x0f\x0f\xc3\xdd\xcf\x50\x20\x63\x6c\xb7\xd9\x30\x2e\x49\x1d\x5b\x55\xb3\xd4\xda\xb4\xad\x9a\xae\xb6\x1e\xcc\xe7\x4a\x66\xb9\x7a\x79\x8d\xe0\xba\xcc\x08\x6d\x49\x24\xfc\x00\x6e\x10\x45\x96\x3d\x4e\x90\xf7\xd9\xf4\x55\xe3\x27\xf1\x5d\x7c\x41\x85\xa2\xee\x3f\x8e\x0a\x31\x2f\xd0\xbc\xd7\x5e\xdb\xdf\x25\xb9\xed\x6d\x46\xce\x43\x3b\x18\x69\xe5\xf0\xf6\x1f\x25\xe1\x2d\x6e\x7e\x7a\xf7\xea\xd0\x2e\x57\x2f\xaf\xbd\x47\x5f\x71\x9b\x2f\xeb\xb8\x0f\x77\x71\xdf\x19\x10\xcd\xa1\xad\xaf\x39\xa6\xf2\x60\x1c\xbc\x26\x35\xc5\xaa\x75\xd4\xf8\x43\x81\x34\x73\xc6\xc5\xb5\x38\xa6\x00\x8d\xfe\x2f\xd0\xe7\x14\x86\x38\x9e\xa2\xf3\x76\xa7\xc5\xa9\xa7\xa9\xfa\xbc\xa5\xb2\x5a\x69\x1f\x40\xee\xa2\xad\xb0\xc9\xde\xd3\x4b\x6c\xd3\xac\x0f\xf2\x84\x5b\xec\x34\x2a\xf6\x40\xe6\x09\xfd\xd4\xfb\x49\x4b\x18\xb3\x9f\x3a\xcc\xea\xaf\x39\x57\xc8\xb5\xfb\x3b\xca\x55\xb7\x9e\xb7\x98\x36\xd3\x64\x76\x7f\xba\xbe\x7e\xfb\x92\x36\x64\xd4\xf1\xc6\x80\x74\x6d\x47\x85\x08\x14\xf5\xc9\xbf\x9d\x4c\xd0\xf3\x92\xf7\xc5\xc8\xc2\x92\xb9\xd4\x52\x69\xec\x64\x8e\xf2\xa1\x03\x3b\x88\xf6\xde\x8e\xfd\xa8\xf7\x32\xc4\x03\x8a\x0e\xfd\xbb\x10\x58\x65\xef\x3f\x9e\x85\x35\x34\xa0\x37\xf3\xde\x7b\xbc\x57\x78\xff\x70\x81\xd9\xf8\xde\xe3\x3d\xb3\xb0\xf6\x0e\x68\xec\xd0\x0f\x33\x22\x00\x1b\x1a\x32\xb6\x6c\xdf\x7b\xd0\xff\x0c\xc0\x0d\x0d\x1b\x58\xcb\xef\x3d\xe6\x85\x85\xb5\x77\x40\x6d\x7e\x7f\x98\x01\x15\xac\xbd\x03\x06\xf6\xfc\x87\x19\xd5\x01\xdc\x3b\xb4\xf1\x12\x3c\xcc\xb0\x00\x6c\x68\xc8\x82\xdf\xe1\xde\x23\x5f\xa7\x30\x0f\x9d\xc0\x03\x8f\x3d\x34\x6c\xe6\x24\xb9\xbf\xfa\x14\x43\x1c\x1a\xdc\xfa\x5e\xee\x3d\xe6\x9f\x00\xd0\xd0\x50\xdb\x87\x1a\xea\xe7\xbd\x43\x95\xfd\x42\xf7\xdf\xd1\x02\xd8\xa1\x69\x04\x3e\xa7\x7b\x8f\x7d\x65\x61\x0d\x9e\xda\xc8\x89\x75\xff\x73\x1b\x80\x1b\xa4\xe0\xc8\x31\xf6\x20\xda\xbf\x05\xb7\x6f\x58\x6d\x79\x78\x40\x83\xc3\xc0\x51\x89\x9c\x77\xf7\x3f\x30\x01\xb8\xa1\x61\x63\x87\xe0\xbd\x87\x3d\x0f\xc0\x1d\xb2\x5a\xe3\x40\x7c\xb0\xe5\x02\xbc\x43\xd6\xfb\x50\x03\x9f\x87\xf0\x86\x06\x8e\x2d\x25\x77\x31\x90\x0c\xc1\xcc\x85\xcd\x3d\x06\xa1\xe1\x09\xee\xb3\x85\x0e\x9f\x96\x22\xa6\x86\x26\x5f\xb2\xc9\xf6\xb3\xbb\x92\xd7\x36\x58\xf8\x55\xfe\x7b\x0f\x12\x4e\x7a\x67\x7b\xa8\xfa\xd5\xa7\xaf\x06\x96\x88\xb2\xe6\x64\x43\xb6\xad\xb1\x6d\x49\xa4\xe9\x03\x9b\x56\x1e\x1f\x12\x61\xe2\x8f\xb1\x5d\xed\x41\x96\x8b\x9e\x3e\x4d\x5e\x59\x84\x63\x9a\x08\xca\xcb\x76\xc1\xd0\x19\x2a\xae\x34\x48\xa7\x71\x62\xcc\x60\xd6\xd7\x32\xea\x31\xa7\x9f\xa8\xb5\x4c\x61\x41\x7f\x44\xdf\xa0\xa7\xb6\xf9\x1a\x7f\x3c\x46\x53\xd4\xd2\xa6\x1f\x0b\x66\x46\xaf\xa8\x90\x53\xf4\xbe\x38\xa3\x0f\xe8\x0c\xbd\x0f\x66\xfe\xe1\x70\xc3\x81\xdd\xbd\x7e\xf5\x35\x18\xff\x9e\x94\xe2\x6c\x3b\x77\x30\x6c\xe8\x3e\xfd\xb3\x1b\xc6\xfb\x3d\x27\x1c\x5a\xe5\xfa\x69\x5b\x57\xd3\xd9\xbd\x23\x15\xa1\xb7\x8a\x16\x9e\xe3\x8d\x49\x74\xf9\xe4\xab\x4f\xb1\xa7\xcf\x36\xfa\xfc\x47\x74\xd6\xbb\xa6\x25\x91\xe7\x3a\xa3\xf4\xc8\x12\x7f\x5a\x87\xe7\x58\x1d\x87\x70\x9c\xf3\x76\xf7\xce\x38\x19\x7b\x87\x1c\xc5\xab\x5b\x12\xf9\x2e\x9e\xfa\x5b\x48\x1d\xfc\x16\xcb\x55\x9f\x55\xa6\xb8\x47\x0e\x4d\xfd\xdb\xe4\x2a\x0e\x4d\x0b\x16\xd7\xf0\x53\x82\x3c\x60\xd6\xf2\xf3\xb2\xc8\x4f\x76\x63\xff\x33\xc3\xaa\x93\x53\xf4\xcd\xf8\x9b\xff\xd8\xdf\x34\xb2\x8c\x1d\x5d\x3d\x3b\xb7\x06\xa7\x35\xe6\x37\x44\xea\x60\x14\x33\x81\xdc\x64\x1f\x7e\xca\xd8\x45\x91\x39\x72\xb8\x7d\x2f\x3b\x8e\x0c\xbd\x77\x38\x69\x41\xc7\x91\xe5\xd3\x9a\xdb\xaa\x6f\x0a\xf4\xd0\x37\x83\x92\xdd\xf8\x0e\xf3\xc8\xba\xf7\xef\xbe\x49\x89\xa4\x08\x76\x8a\x26\xe6\xaf\x89\x9e\xb4\x87\x31\x70\x81\x3b\x7a\x9f\xa2\x89\xfe\xe3\x2e\xbd\xf5\xab\x19\x6e\xfb\xeb\x3c\x9a\x77\x1e\xde\xb7\xd4\x16\xe5\x27\xee\x2d\x8d\xff\xe5\x93\xfd\x2a\x05\xae\x4f\xec\xe7\xa2\x05\x3c\x1e\xe6\x15\x94\xcf\x34\xc2\xfd\x97\x0d\x73\x92\x05\x2e\xb8\x53\x96\xfd\x92\xf5\x2d\x47\x37\xf8\x66\x7b\xd6\x60\x70\x7d\xd0\x2a\xb2\xc9\xbc\x35\xbd\x4f\xfe\x65\xd7\xa7\xdf\x89\xbe\x58\x6f\xe4\xce\x77\xb1\xf5\x0b\xa7\x68\xb4\xe8\x5a\x34\x82\xe7\xf9\xfd\x13\x29\xf8\x18\xc2\x8f\x7b\xa9\xe9\xb2\xd5\x96\xc6\xec\x11\xc7\xd4\xe7\xf3\x7d\xaf\xd3\x1e\xbf\x50\xff\xcd\x3a\xc7\x6d\x4b\xf8\xe5\x1a\x2f\x49\x26\x8c\x81\x33\x67\xc0\xe8\x4e\x1b\xd2\xeb\x86\x18\xc4\x13\xf8\x28\x8e\x56\x52\x6e\xc4\x74\x32\x69\xe7\x58\xb2\x8d\x00\x7c\xb1\xf5\x44\x48\x2c\x69\x35\xa1\xeb\xe5\x44\xb2\xcd\xa9\xfa\xfe\xb4\x61\x4b\x76\xba\x62\x9c\xfe\xca\x5a\x89\x9b\xd3\xed\x8a\x4a\x32\x16\xb7\xcb\xfe\x2b\x60\x80\x12\xd6\x6a\x5d\x9a\xc0\x8f\xa8\x5a\xf9\x44\xdc\x2e\xff\xfd\xe3\xba\x29\x43\xeb\x97\x1b\xc5\xdf\x3b\xcc\xc9\xbf\x28\xf2\x98\xfa\xdf\x78\xd3\x3e\x14\x8e\x7a\x21\xdd\x41\x8c\x29\x91\xe7\x3e\x87\x9a\x12\x02\xd4\x81\x3a\x55\x27\xea\xe8\x40\x9f\xda\x51\x58\xc1\x1a\x51\x81\x76\xac\xe3\x90\x3e\xb3\x02\x37\x16\xdb\xb6\x27\x4a\x6f\x69\x74\x29\x65\xc9\x71\x4d\x10\x5b\x2c\x68\x45\x71\x83\x6a\xba\xa4\x12\x37\x51\x8e\x7a\xfb\xb6\x4c\x01\x56\x5d\x7e\xbe\x7a\x76\xfe\xb5\xf0\x25\x77\x37\xae\xa4\xb5\xfa\x17\xe1\x62\x60\xaa\xc4\xcb\x01\x29\x0d\x84\x22\x42\xcf\x26\x0f\x9a\x03\x3c\x45\x4e\xc3\x3f\x06\x5c\x2f\x9e\x01\x4c\xc3\x3f\x06\xc6\x60\x0a\x49\x62\xba\x87\x19\x1e\xc9\x2d\x95\x92\xf0\xa3\x83\x96\x68\x1a\x03\x11\xfb\xe5\x0e\x2d\x15\xc6\xa8\xa9\xa8\x18\xaf\x0f\x1b\xc3\x34\x86\x31\x68\x7b\x4b\x25\xb9\xcb\x50\xf0\xc2\x7b\xc9\xf1\xfa\xb0\xc1\xb6\xdb\xed\xd8\x75\xc9\x96\xd5\x7f\x03\xdc\xf3\x02\x70\xee\xfa\x32\xcb\x9f\x4c\x90\xd8\x30\x2e\x05\xe2\xb8\xc6\x1c\xbc\x07\x88\xd6\xfd\x9a\xf1\xc7\xaa\xe9\x6a\x52\x5f\xe1\x35\x28\x16\x3a\xa2\x06\x94\xe1\x82\x9b\xa2\x2c\x58\x4f\x26\xa8\x65\x3a\xd7\x9b\x4f\xab\x2a\x61\x9e\xbd\xe3\xc2\xcf\x17\xae\x42\x58\x50\x7e\xc3\x85\x02\x7c\x46\x67\x03\x14\x78\x34\x0b\x0c\x63\x47\x0f\x65\x19\x3b\x32\x66\xb0\x0c\xe0\x97\xd9\xc6\x8e\x66\x81\x26\x7d\xd4\x67\x1d\x2b\x76\x2f\xd3\x89\x4e\x26\x98\xa0\x3a\x8a\x39\x4d\x11\xbd\xe8\x9a\xc6\xe3\xd9\xda\x8f\xd6\x78\xf3\xd6\x64\xc8\x1c\xd5\xb4\x92\xd3\x74\x43\xee\xc0\xf3\x55\xff\x6b\xa6\xe9\xd2\x00\x8b\x07\x3d\x49\xa9\x2c\xfa\xf3\x70\xd2\x77\xb1\x27\x77\xd0\x84\x74\x9f\xfe\x2b\x88\x4a\xb2\xbe\xa3\x42\xbd\xe7\xe2\xb7\x9f\x2f\x17\x00\xec\xc7\x47\x7a\xa8\xcb\xba\x5b\xc3\x35\x3d\x20\x5c\xda\xcf\x01\x59\x85\xf2\xdb\xff\x6f\x1b\x32\x20\x48\x1c\x00\xf6\x9f\x8e\x24\xa5\x9e\xb0\x87\x47\x0f\x80\x9d\xac\x37\x7f\xf8\x2d\xad\x11\xe5\x8c\x30\x2d\xf5\x59\x30\x3e\x47\x21\x55\x93\x49\x50\x99\x1d\x6a\xd5\x2d\x18\x47\x15\x5b\x6f\x3a\xc8\x4f\x12\x17\x1a\x8f\x53\xc3\xf9\xa3\x8f\x56\xa4\xd9\x08\x34\xef\x68\x53\x23\x25\x3f\x01\x13\x50\x2d\x74\x2a\xb0\xe8\x9d\x75\x08\x23\x4a\x9d\xe6\x3b\xe9\x7a\x57\x4d\xa3\xae\x83\x53\xa8\x23\x62\xca\x89\x06\xe0\x74\xe2\x95\x28\x33\xa9\xcb\xa9\x96\x31\xa5\xc2\xa5\x70\x8c\xca\x77\xc5\x27\x0d\x2b\x42\xa3\x0d\x04\x7e\xed\xcb\x23\xf5\x38\x6e\x7a\x3d\x36\x60\xea\x4e\xd2\x59\x2b\x54\x83\x31\xde\x24\x38\xb5\xe0\xc7\x37\xa4\x98\x0a\x51\x4d\x43\x67\x0a\x3f\x8b\xda\xbf\x57\x40\x3e\x14\x62\x57\x91\x4e\x26\xa8\xfb\x3c\x3e\x43\x47\x47\x3d\x17\xa1\xc2\x92\x12\x42\x08\x97\xa3\x1b\xb2\xb3\x06\x75\xe8\x98\x13\xe4\xe7\x47\xfd\x7f\x19\x8a\x53\x00\x3d\xc9\x45\x74\x13\x9a\xb2\x50\x2f\x31\x68\x12\x24\xb5\x13\x81\xd5\x01\xb5\xa2\x75\x92\x45\x2d\x88\x33\x0d\x8c\x64\x3d\x11\xcd\x36\x9e\xb7\x47\x2f\xd2\xa0\x27\x47\x3e\x70\x16\x22\xd7\x83\x18\xe1\x30\x7c\x36\x5e\x56\xe0\x49\xf1\xa9\xe5\x6c\x1a\x08\xbd\xd1\xba\x28\xd0\x7a\x4e\x5b\x97\xc7\xc0\x47\xd5\x42\x22\x3a\xfd\x54\xc7\xaa\x07\xc1\x6b\x92\xc9\x04\xfd\xe2\x1c\x6e\xff\xa6\x7f\xfc\xa5\x84\x83\xc8\xa1\x83\xfe\xb1\x81\xdd\x24\x40\x81\x7b\x6e\xe4\x62\x97\xa7\xe8\xdf\x8e\x8e\x23\xcc\x06\x27\xa4\x88\xe2\x60\xc7\x02\xd0\x25\xca\x72\xf9\x85\x85\x20\x52\x9b\xcd\x0f\xa4\x00\xe8\x21\xc6\x29\x21\x28\xd6\x7d\x28\x1d\x84\x9b\x64\x73\xc0\x61\xa0\x58\xc9\x50\xad\xd5\x57\x84\x5b\xa4\xef\x5f\x28\x6b\x5b\x23\xb8\x2f\x73\xe6\x15\x5e\xd1\x03\x9b\xa7\x80\x1b\x21\x2c\x58\xb2\x43\xf5\xd3\x2d\xad\xe5\xea\xec\x3f\xbe\xfd\xfd\x51\x11\x9b\xba\x23\xe4\xdc\x7e\x03\xaa\x30\x6e\x20\x13\x9d\xd0\x71\xa1\x1d\x6f\x4e\x74\xf4\xe2\x05\x69\xe8\x7a\x8a\x8e\xbe\x3a\xea\xcd\x4a\x9d\x2d\xd4\x47\x9f\x66\x55\x0c\x07\x8e\x6f\x10\x86\x7a\xef\x75\xff\xfe\x3f\xbe\xff\x67\xac\x1b\xee\xf8\xbb\xac\xd9\xc8\x1a\x5f\xbe\xde\x09\x40\x78\xa0\xb5\x3e\xed\x5f\x2b\x40\xd1\x66\x0b\x66\x60\xa1\x96\xc8\x2d\xe3\x37\x68\xa3\x80\x42\x72\x7f\x9d\x37\xd5\xc4\x67\x9b\x87\x5a\x35\xc5\xf9\x21\xed\x9d\x94\xc6\x43\x3c\x2f\x53\x71\xa2\x07\x49\x74\x81\x9c\x6b\xee\x4a\xcf\x68\x74\x8c\xce\xce\xd0\x91\x24\x42\xb6\x44\x1e\xa5\xcf\x94\x02\x14\x75\xbc\xb1\xa8\xf4\x23\x7a\xec\x3a\x08\xfb\x6f\xbc\x8e\x37\xc9\xc5\x10\x94\x4a\x84\x02\x4f\xba\x92\xa0\x52\xb6\x70\x83\x70\x27\xc1\x4c\xa9\xaf\x81\xf8\x2d\xa3\xed\x06\xa9\x68\xc3\xa2\xa3\x92\xa1\x0d\xe1\x0b\xc6\xd7\x41\x06\xba\xa8\x32\x99\xa9\xe0\xa7\xba\x58\x28\xb6\x74\x20\x56\x43\xcb\x38\xd3\xfb\x09\x14\x97\xd3\xa6\xad\xb8\xba\xd7\x23\x94\x3e\x97\xd4\x8b\x88\x5f\x40\x6a\xb3\xb5\x2e\xd8\xa0\xed\x5b\x26\x41\x70\x50\x6a\x3c\x4b\x92\x29\x74\x19\x51\xea\xb2\xef\xea\xdc\xcb\x41\x99\x6f\x6a\xcb\xf8\x69\x8f\x5e\x5c\x08\x3e\x00\x17\x42\x0e\xf3\x68\xfa\x62\x9c\xe7\x21\x58\x53\x8c\xd4\x87\xac\x4b\x2a\x1b\x62\x33\xe7\x53\x8e\x52\xf1\xb4\xfc\x21\x1f\xf1\x7a\xa3\xd4\x8d\x4f\x10\x58\x45\x38\x32\x9a\xfe\xd1\x9f\xc9\x2d\x6d\xd1\x45\xc7\x71\x2b\x8f\x4e\x5c\xd4\xe0\x14\x1d\xfd\x6f\xb4\x20\x44\x1e\x7d\xde\x0f\xdd\x7e\x46\x73\x53\xf0\x7a\x0b\x39\x89\x75\x56\xa8\x70\x00\x5b\x43\xf5\xfb\xaf\xff\x4f\x40\x9f\x3d\x99\x3b\xe3\x8c\xa2\x6e\x87\x82\x5c\x83\xa8\x9c\x96\xd3\xef\xf0\x50\x89\x53\xfb\x9c\x34\x7f\x4d\x6a\x8a\xac\x84\xa3\x46\x4d\x74\xed\xf0\xad\xc9\xb1\x96\x8c\x63\xff\x95\xbf\xfb\x6a\xc9\x16\x5e\x18\x9b\xae\x46\x84\xd8\x93\x85\xf6\xf2\x22\xcc\xe3\x4f\x21\xe5\xb1\xae\xcf\xbd\xb4\x65\xa0\xed\x27\x2f\x96\x5a\xac\xa0\xda\x9f\x79\xd6\xe5\x87\xd7\x08\xd0\xcf\x20\xe3\xd9\x9e\xa0\xd2\x4a\xd3\x25\xcc\x82\xfa\x33\x71\x35\xc0\x81\x1a\x34\x1b\x57\xb5\x04\x10\xf5\xc1\x63\xaa\xac\x1f\xaa\x46\x3d\x9c\x5f\x13\x00\x14\x98\x8a\x4e\x78\x58\x0c\x34\x3e\xd6\x61\x6f\x33\x69\x28\xd8\x6a\x8f\x5f\x72\xba\xef\x70\xae\xb5\x9d\x5f\xa9\x07\x6d\x6f\x41\xd0\x5e\x8d\xc2\x93\xbf\x2d\xc9\x9d\x56\x95\xf3\xf4\x3e\x23\x49\xb5\xa3\x80\xc0\xf7\x50\x78\x38\x9b\x80\xc0\x15\xba\x7c\x0e\x5a\x0f\x5f\x17\x02\x1a\xa6\x5b\xfd\x9c\xfe\x4b\x48\x77\xd6\x57\x90\xa9\x9f\x70\x93\xd3\x35\x23\x52\x4b\xfc\x05\xf2\x9e\x11\x69\xa9\xdb\x68\x09\x61\x87\x13\x97\xfe\xb3\x58\x92\x73\x3f\xa5\x47\x44\x03\xfa\x7f\x71\x9d\x90\xe5\xd2\x90\xf9\x93\xd3\xc7\x66\x0e\x77\xa6\xf3\x39\xe3\x9c\x6d\x35\x55\x5b\x01\x3e\x28\x6e\xc9\x6c\x61\xb6\x88\x78\xa3\x83\x92\x94\xe9\x0c\x4a\x3b\xba\xb2\x9c\xa6\x24\x27\x62\xed\x40\x69\x81\x80\xe0\x0d\x5a\x7b\x72\x21\xee\x58\x87\xb6\x38\x2b\x10\xb6\x24\x32\x99\xfb\xbe\xe3\x71\x1e\xaf\xd4\x0e\xe2\xcc\x30\x66\x60\x6d\x83\x49\xaf\x73\xbb\x26\xf2\x71\xc3\xc4\x9e\x1c\xcf\x16\xc7\x49\x1a\xd5\x29\xe4\x26\xbd\x7f\x32\x55\x93\x8e\x5e\x0f\xa3\x0b\x31\xd9\x6a\x0c\x51\x8a\xfb\xa1\xaa\xb4\x29\x55\xfe\x98\x61\x33\xaa\x18\x60\x28\x8b\xca\xb4\x9f\xba\xba\x7f\xf9\xea\x97\xe8\xf1\xbd\x2e\xae\x91\x40\x32\x99\xb4\xc1\xbb\x98\xe6\x28\x31\xd0\x0f\x4e\xe9\x1a\x93\xb4\x90\x98\xcb\x2b\x75\x1c\xe0\xe1\x32\x08\xf0\xc0\xff\xf4\x39\xb4\x0f\x9a\x21\x29\xb1\xe1\x37\x49\xad\x76\x9b\x82\x92\x08\x13\x5c\x99\x54\x44\x4d\xd2\xb9\xdb\x12\x55\x34\x22\x12\x28\x20\xa2\xd0\x61\x59\x64\x04\xf1\x10\xd6\x7d\x50\x27\x4b\x64\xf1\xaa\x47\x03\xb2\xc9\x8b\xb6\x2e\xe1\x43\x5f\x66\x4a\xe4\xd4\x37\x1d\x6b\x49\xda\x33\x41\x59\x2c\xad\x16\x27\x1a\xd2\x6e\xc4\x07\xfb\x4a\x16\xef\x11\x2d\xdc\x02\x67\x6a\xa6\xa4\x1e\xb5\x64\xfb\x3c\xec\x7f\x18\xdb\x8d\x5f\x52\xf6\x16\x4d\xce\x05\x82\x2b\xb2\x35\x55\x74\x23\xa9\xe0\x3c\xaa\x47\xbc\x5f\xb0\xb4\x60\x20\x9e\xc6\x6a\x18\x85\x09\x3e\x39\x35\x37\xa7\x69\xdd\xab\x6a\xd9\x94\xa1\x90\xa5\xbb\x95\x84\x2f\xb0\x55\xab\x3a\x41\xb8\x30\xbc\x58\x48\x23\xf2\x9b\xf7\xec\x41\xe4\x0e\xf6\x05\x8e\x99\x56\xc1\x10\x93\x2b\xc8\x8c\xc1\x90\xc9\xe8\xee\x08\x9f\xb6\x4e\x79\x08\xf2\xbe\xa3\x4b\xa9\x2b\x0b\x1b\x0d\x6e\xc1\x38\xe2\x04\xd7\xf6\x74\x99\x93\x65\xea\x6e\x79\x58\xe6\x31\xbd\x83\x93\x2b\x61\x7e\x49\xe5\xb0\xa9\x24\x7f\xb7\x4e\xf3\x10\x25\xa1\xcf\xa3\x96\xae\x5e\x5e\x1f\xe7\xac\x1a\xcb\x6a\x75\x11\x76\x15\xc3\x11\x4f\x39\x88\xa5\x62\x53\x3e\xf7\xf1\xf7\x7f\xf8\xd0\x73\x21\x5c\xbd\xbc\x1e\xf9\x1c\x39\xea\x36\x28\xcd\xb1\xa7\xb3\xc9\xa4\x1f\xf7\x77\xf6\x80\x97\xd7\xe9\x43\x70\x9f\x39\x85\x13\xd1\x35\x56\x98\x6a\x69\x73\xa2\x89\xa6\x0e\xca\x20\x75\xbc\x25\xb5\x67\xd9\x29\x20\x53\xe2\x67\xae\x59\x9b\x00\xc3\xad\x29\xae\xcf\x97\x9d\xa9\xdd\x19\x95\x0f\x8f\x6f\x38\x26\xd2\x4b\x4f\x7d\x46\x66\x62\xba\x3e\xdf\x31\xfa\xef\xff\xb6\x5f\x3d\x85\x44\x39\x67\x88\xd6\xc7\x53\x94\xf5\x53\x9f\xe4\x0a\x4c\x33\x1a\xa7\xa2\x44\xbe\x44\x75\x76\x68\x5b\x31\xce\x49\xd5\x7b\x4f\xa6\x87\x2e\x38\x3d\x49\x31\x75\xa8\xdd\x7a\x4b\xf8\x0e\x4e\x1f\xda\xae\x20\xa2\x46\x40\x62\x26\x67\xa1\x80\x0b\xc2\xd4\xd9\x6c\xcd\x69\xc2\x95\xab\xc2\xb7\xc6\x2d\x5e\x12\xf3\xfd\xd5\xcb\xeb\x59\xaf\x89\x22\x0c\xdf\xec\x09\x2b\xcc\x13\x3e\xb9\x80\xc4\xfc\x27\x17\x72\x98\xff\x94\x03\xde\x17\x74\x88\x3e\x45\x96\x90\xc0\x97\xee\x33\x3f\x55\xac\x5d\x30\xbe\xd6\x75\xcf\xd5\x99\x0b\x7b\x5c\xbd\xbc\x2e\xd5\xaa\xd7\x52\x9a\xad\x5a\x71\x79\x91\x88\xca\x36\x25\x3e\xdb\xb6\xa4\x56\x68\x9f\xa2\x1f\x3e\xe9\xc6\x85\xec\x57\x57\x2f\xaf\xd3\x8c\xf7\xc5\x44\x84\x0e\x9a\x52\x6a\x3e\xf5\x55\x8f\x52\x53\xab\x39\xde\x9a\xfa\xd7\x90\xc8\xf9\x75\x54\x22\x88\x44\x9c\x57\x49\x93\xd0\x8e\xba\x83\x03\xf5\xc8\xfb\x84\x84\x50\x54\xb6\x63\xe5\xf2\xb2\xc2\x5b\x2c\xd4\xe8\x62\x7b\xba\xf2\x49\x52\x9a\x9b\xec\xaf\xd8\xc2\xad\x68\x52\x64\xa5\x00\x03\x36\xcf\xd7\x81\xb2\x73\x6b\x33\x1e\x66\x7f\x19\x85\xd3\xf7\x05\x4e\x8a\x03\xe4\x2a\xe8\x33\x7d\xda\xdb\x85\x16\x23\xab\x15\xa9\x6e\x10\x5d\xa4\x45\xc7\x90\x55\xef\x16\xd2\x9a\x94\x63\x06\xec\x27\x71\x9c\x9a\x58\x0d\x47\x7d\xc5\xaa\x1b\xda\x2e\xc7\x54\x98\xba\x62\xed\x42\xbe\x23\x8b\xa9\x82\x59\x32\xb3\x6e\x70\x4b\xab\x91\xe5\x4a\x16\xfe\x34\xc8\x5a\xa5\xe7\x98\x59\x58\xd3\x25\xbe\x83\x6d\xd2\x22\xe4\xa2\x48\x3e\xd9\x32\xf5\x26\x3c\x39\x4d\x28\x76\xac\x77\x5c\xfb\x39\x83\x15\xe7\x0c\xf5\xe9\xd3\x7d\xf3\x8f\x0b\x34\x78\x13\x4d\xe3\xde\xa0\x17\x44\xb7\x9f\xed\x9e\x2b\x94\xc3\x24\x21\x67\x98\x5a\xd2\xd4\xcf\x95\x3f\x1d\x63\xfd\xc2\xe4\x78\x50\x3f\xd1\x82\x32\x8c\xeb\xc8\x4c\x43\x2d\xcb\x51\xf1\x4f\x85\x2a\x48\x76\x7a\x0e\x5c\x50\x69\x54\x33\xa5\x87\x28\x75\x44\x6b\xa5\x77\xb6\xbe\x38\x2c\x94\xe5\x66\x6e\xd0\x7d\x6a\xc1\x90\x28\xa2\x14\x5a\xbf\x07\x71\x15\x97\xc3\x0d\xb0\xee\x13\xa3\x76\xbd\xbf\xea\x61\x84\xc6\x11\xac\xd4\x4a\x40\x77\x0b\x1b\x4f\x8b\x54\xeb\x50\x88\x1e\x92\x57\x4c\x1e\x46\xde\x5f\xf5\x68\x88\x9e\x2e\x25\xe1\x5a\x57\xe5\xac\x5b\xae\x8c\x4c\xa4\xf7\xdc\xf1\x73\xd8\xf4\x7d\x67\x50\x49\xbd\x14\x6a\x99\xab\xfe\x39\x6f\x48\x26\xdb\x53\x2d\xa9\xc8\x21\x69\x7d\x3c\xe4\x92\x39\xfc\x8c\x88\xf2\x21\x49\xa6\xd6\x73\x5c\xac\x32\x20\xf1\x0d\x28\x40\x41\x55\x44\x28\xd0\xeb\x6f\x31\x0f\x2a\xf4\x73\x0c\x1d\x13\x7d\x4a\x0c\x2a\xec\x2d\xa6\x6f\x2c\x33\xac\x2f\x13\x5f\x0d\x1e\xbc\x3b\xe9\x01\xc9\x36\x65\xd4\x68\x14\xa7\x60\x0e\x9a\xcb\x02\x03\xb0\x1a\xb0\x99\xea\x1a\xdf\x10\x24\x3a\x9e\x89\xcd\x54\x5a\x0d\xcd\xc8\x99\xb9\xe1\x23\xe2\xdf\x76\x88\xc7\xe8\x87\x40\xb0\x2f\x95\x0a\xf4\x97\xef\xd7\x02\x25\xa9\x47\x75\x26\x4e\x48\x5f\xab\x59\x6e\x6f\xf1\x6a\x75\xd4\xcc\x0d\xae\xb7\xaf\xb0\x65\x16\x22\x6b\xea\xeb\xf2\x3d\xf3\x9e\xd6\x1f\xdc\xec\xf3\x7a\xd6\x6d\xb3\x33\x69\x1a\x1d\x1d\xe9\x6c\x8d\x74\x91\xca\x45\x19\xfe\x40\x57\xc4\xad\x15\x92\xbf\x16\x45\x67\x00\x5d\x94\x6e\x13\x63\x2d\x2b\x9c\x47\x98\x8d\x55\xf9\xd4\xdd\xa4\x6e\x25\xc9\x0e\xb8\x93\xf2\xeb\xda\xa4\x7f\xd4\x85\x50\x80\x6b\xb1\xa6\x4e\xc5\xa2\x23\x23\x7b\xc5\x6a\x86\x49\x2e\xe9\x30\x3b\x74\x57\x5d\x24\x27\x30\x2f\x50\x67\xab\x52\x6b\x75\x2c\xb5\x5d\x1a\xcc\x0b\x44\x70\xb5\xb2\x77\x04\xa9\xb5\xa8\xad\x55\x7b\x2a\x4a\xfc\xed\xcb\xd5\xe4\x82\xf8\x06\x26\xc6\xe0\x2a\xb4\xb6\x81\xe4\xb8\x67\xb4\x07\x61\x62\x86\x9e\xe1\x09\x29\xa8\xdb\xb9\x33\xa1\xc0\xd1\xa1\x6b\xc6\x3e\x42\x9c\x68\x94\xa4\xb6\x2f\xc5\xd3\x6f\x08\x78\x68\x7b\x82\xd4\x4c\x92\xb2\x84\x95\x9b\x39\x16\x99\xf9\x0d\xd9\x65\xdc\x7c\x3f\x3d\xf5\x5c\x3a\x96\x7a\x12\xee\x9e\x57\x04\x76\x34\xa3\x89\x92\xd6\x9a\x6f\xa3\xba\xe3\xda\x27\x0f\x85\x89\x2b\x66\xa3\x1e\xa0\x7c\x70\x6a\x1b\xb5\xf5\x4e\x21\x39\x22\x96\xae\x73\x46\x27\x50\xe7\xd7\xdb\x28\x4e\x5c\xcb\x29\xfa\xe9\x25\xfd\xf8\xfd\x1f\x0a\x89\x78\x7f\x23\x91\x97\xd6\x87\x88\xba\x6a\xc2\x5f\x2c\xe6\x4e\x26\x68\x83\x85\x08\x55\x21\xcd\x48\x1b\xad\x3e\xe4\x3e\x3f\x64\x2d\xd6\xc6\x05\x04\x6e\x2d\x63\x4f\xa6\xb6\xd4\xd3\x1c\x57\x37\x5f\xc0\x80\x13\xd5\x45\xcd\x41\x29\x3c\xed\x42\x4e\x1d\x7f\x0e\x37\xc4\xfe\x2b\x59\xd4\x5d\xf8\xd2\xab\x80\xc0\xc2\x83\x6d\x48\x4d\xf4\xd3\x5a\x08\x4a\xdd\x93\xfa\xec\x8a\xa2\x38\xa6\x2b\x5a\xc3\x39\xb5\xe9\x39\x4d\x2c\x3f\xa9\xfb\x49\xd1\x4d\x30\x96\x4c\x0f\x22\xc9\x21\xe1\x50\x1f\xaa\x15\x59\xdf\x49\x08\x74\x55\xd9\xdc\x8d\x53\xda\x88\xb0\x47\x9f\xb1\xa1\x6b\x07\x8e\xb5\x94\x8a\x6b\x00\x4b\x35\xed\x62\x3f\x75\x42\x23\xba\x8d\xba\x05\x5c\xbd\xa8\x79\x27\x68\xab\xee\xcf\x86\x2d\x69\x85\x30\x87\xc2\x00\x06\x18\x69\xe8\x92\xea\xe7\xff\x19\xbe\x75\x93\xd0\x40\xf9\xff\xd9\x51\x7f\x5b\x3c\xea\x31\x46\xbd\x77\x54\xae\x08\x98\x86\x15\x75\x67\x07\x3a\xf4\x02\xab\x1f\x9d\x8f\xcc\x99\x9b\xee\x25\x8a\xf5\xed\x72\xcc\x0b\xee\x71\xee\x7f\x8a\x68\xb0\x74\xf2\xef\x72\xbe\xf5\xfc\xcc\x09\xd7\x62\xe1\x0e\xea\xfe\x6a\x72\x6b\xf2\xe0\xd1\x60\x12\x89\xde\x79\xb7\xb3\x6c\x47\xfe\xb2\xe3\x1c\x50\x7c\x98\xf3\x1b\x0d\x1c\x5e\x2d\xbc\x78\xd7\x7b\x49\x1a\x52\x17\x2c\x76\x36\xe2\x21\xa9\x2c\xf7\x3c\x0c\x54\x2d\xf4\x47\x47\x49\x34\x7d\xbb\x6b\xed\x64\xd6\x02\x81\xb0\xf9\x2e\x32\x9e\x43\x98\x80\x4b\x91\xdc\x6f\x4e\x8c\x62\x04\xb4\x89\x13\x1c\x53\x9c\xe0\x1a\x29\x79\x34\x8a\xfb\xee\xb7\xa1\x94\x4c\x9d\x92\xc1\xf1\x8a\x7d\xcd\x71\x89\xe8\xa2\x45\xa5\x10\x04\x10\x7a\x5d\xe2\x5e\x57\x0c\x72\x7e\x2a\xe9\x98\x29\x4d\x26\x08\x55\x34\xcb\x81\x38\x50\x5c\x27\x91\x67\x57\x2f\xaf\x4f\x42\x38\x8a\xd3\xe0\x56\x89\x6b\x10\x79\x1d\xbf\x45\x1b\xa3\xb7\x0d\xc1\x82\x80\xf3\x38\xf4\xf6\x28\xe0\xb1\x45\x16\xd7\x8e\x81\xb9\x52\x7e\x68\x28\x08\xe1\x30\x9f\x53\x99\x6c\x46\x5f\x15\xd8\x0b\x16\x65\x10\xfd\xee\xf9\x68\x45\xfc\x40\xb2\x3a\x94\x88\xf4\xf3\x98\xb6\x8e\xe3\x4e\xe0\x62\xa1\x72\x1c\x5d\x7d\x8a\xab\xa8\x7e\xda\x45\xaf\x0d\xe3\x8e\x10\xa3\x0c\x4e\x71\xc1\x82\x68\x23\x19\x87\x7d\x34\xdb\x6c\x4b\xca\x32\xae\xe3\x0c\xf5\x6c\x92\xb0\x68\xc5\xe3\x77\x09\x13\x70\xde\x74\x1d\xf3\xc4\xb8\x19\xd9\x98\x1c\xb1\x49\x39\xce\x04\x09\x5f\x04\xa5\x62\x79\x1c\x30\x5a\xa4\x86\x7f\xe6\x51\xba\x9f\x03\x33\x54\xeb\x3d\xf9\xf5\x6a\xf5\x90\x15\x89\x2c\xa0\x30\x70\x99\x6c\x71\x27\x57\xfb\x69\x37\x39\x03\x0a\x24\x16\x8f\xa3\x99\xc6\x9c\x1e\x91\x46\x94\x22\x78\x0a\x6f\xd2\x50\xdf\xcd\x10\x63\xea\x2f\x94\x6c\xad\x5f\x2d\xc1\x57\x98\x72\xa9\xec\x88\x4b\x0b\xd7\x7a\x47\xc8\x17\xe1\x25\x7f\x20\x26\x35\x22\x14\xdd\x9c\x69\x57\xcc\x10\x7a\x0c\x16\x82\x4e\x8a\x81\x1c\xb0\x8c\x1e\x66\x72\xb9\x50\x32\x2f\xc7\xad\xc0\x5a\x95\x37\x62\x8b\x48\x8d\x49\xda\x2e\x12\x9d\xdd\x73\x53\xb6\x1f\x04\x2c\x6f\x04\x51\x87\x54\x29\x61\x9c\xe8\x60\x06\x57\x07\xe4\x71\xd8\xf9\x75\x57\xad\x50\x43\x6f\x08\xda\x2a\xc9\xee\x02\xaf\x29\x6e\xd1\x2b\xda\x34\x98\xd7\xf1\x2c\x56\x6c\xa3\xc3\x6b\x22\x23\x2a\x27\x78\xed\xa2\xd2\x49\x2b\x29\x27\xa8\xa2\x12\x78\xc9\x9f\x58\x27\xa4\x0d\x84\x40\xf1\x81\xeb\x2b\x42\x62\xe5\xb5\x78\x53\x1f\xc5\x74\xe6\x7d\xd7\xa7\x0f\xf3\xb1\xe0\xd2\xa8\xd6\xd3\x86\xdc\x92\xc6\xf9\xff\x51\x4d\x16\xb4\xd5\x69\xde\x1e\x7a\x06\x16\x5e\x31\x97\x4c\x1c\xa7\x73\x92\x19\x51\xac\xbd\xcc\xdc\x29\x16\x16\xd6\x7e\x7b\x75\x3d\x88\x38\x3c\x33\xf0\xd1\x1b\xe3\xa3\xab\xb6\xfb\x06\xf8\x9e\xba\x56\x56\xf8\x96\xc4\x66\x39\xd7\xd9\x74\x3a\xf1\x52\x2d\x9e\x83\x87\xc9\xe6\x0f\xb3\xd0\xc2\xf0\x18\x4f\xdf\x22\x2b\xd7\xeb\x83\x8a\xb2\x34\x3a\x07\x3b\x5d\xd2\x68\xa3\x3c\xa1\x91\xf1\x9e\x78\xfa\x59\x12\x79\xde\x34\xfa\x09\x83\xbb\xc4\xcd\x81\xd2\xa9\x3e\x68\x6b\xc5\x9b\x70\xca\xd1\x7d\x11\x88\xbb\x71\x5f\xb8\xdf\x01\x8b\x50\x8a\xc7\x44\x2e\x47\x6b\x0e\x26\xa0\x0b\x6c\x98\x39\xab\x6f\x3e\xe4\x6b\xcb\x42\xc4\xc7\xf0\xca\x53\xe4\xcb\x0a\xdf\xb5\x66\x4b\x73\x6f\x28\xd2\x5b\x1d\x7b\x19\xce\x05\xfb\x4f\x26\x2e\xd6\x23\xbc\x74\xed\x5b\xd9\xeb\x28\xec\xc6\xd7\xe4\xa6\x02\xcd\x89\xba\xf0\x05\xc1\xbc\x5a\x99\x75\x17\xf0\x77\x1d\x4f\x08\x61\xfb\x52\x48\x32\xfb\x2f\x1b\x47\x6c\x1f\x2f\xa5\x28\x2c\x3e\xe2\x75\xe1\xa9\xe9\x83\x87\xa7\x39\x5e\x5d\x65\x34\x1d\x77\xaf\x41\x7c\x78\x3a\x8e\x9e\x3d\xf7\xe2\xd7\x24\x7c\x0d\xbd\xaa\x43\x28\xb6\x50\x7a\x3e\x6e\x07\x40\x46\x72\xaf\x66\xc3\x99\xf4\x77\x7e\xf1\x71\x1a\x25\xf9\x3e\xd2\xf1\x39\x76\x99\x4c\xc9\x92\x41\x20\x5b\xcf\x07\x6e\x84\xa3\xd7\x64\xbd\x51\x12\xe5\x8f\x9c\xfe\xfa\x6b\x43\x89\x38\xfa\x2d\xe8\x21\x1a\xd8\x4c\xfd\xda\xc6\x2b\x2b\x1a\xd0\xed\x9d\xe4\xb6\x8f\x82\x74\xbf\x90\x8e\xde\x1c\x40\x35\x69\xce\x5e\x5b\x6f\xcd\x4c\x28\x79\xc4\x16\x52\xd0\x64\x82\x2e\x58\xfb\x35\xd8\x91\x2b\x02\x01\x3e\xb7\x84\x3b\x4f\x90\x91\x80\x19\x37\x13\x03\xf7\xcf\x2d\x6e\x82\x6c\x2c\x74\xe1\xde\xa8\x07\xf1\xa4\x19\x35\x96\xd5\x19\xf5\xa3\x23\xd3\xf7\x30\x46\x50\x87\xa5\x24\xc6\x95\xd2\x0a\xe4\xf4\x3d\x33\x4a\x40\x48\xd3\xfa\xd9\x95\x55\x5a\xbc\xb5\xd2\xbe\x9a\x88\x37\x93\x8a\x94\xf6\xc7\x43\xf4\x13\x44\xcb\x7b\xf2\x71\xd1\xf2\x77\xe2\x26\xff\xd5\x11\xbe\xb3\x0b\x30\xef\xd8\x0c\x2f\xf6\x3c\xd0\xbf\xc1\xa3\x10\xb6\xa5\x6d\xb9\x78\xce\x3a\xf7\x6e\x23\x25\x18\x03\x32\x8b\x7f\x0f\xc7\x0b\x49\xc3\x47\xde\x44\xa1\xdf\x67\x25\x69\xbf\x98\xec\xa1\x7f\xf7\xc2\x21\xa3\xe2\x78\xfd\xc1\xb5\xfe\x59\x78\xb4\xa9\xf0\x18\xe7\x7f\xc0\xa6\x96\x1e\x0d\xc5\x7b\x13\xbe\x78\x77\x7b\x73\xe7\x03\xab\x75\xd7\xc2\x31\x4d\xae\x60\xa3\x25\xdb\x5d\x7d\x0a\xd5\x80\x8a\x28\x37\x21\xe1\x21\xd2\x4d\x98\xf9\xc1\x68\xff\x67\x22\x3e\x9d\xab\x82\x32\x27\x0d\x6b\x97\xc2\xbe\x4e\x89\xf7\x21\x4e\xbb\xe4\x76\xc2\xd4\x48\xfe\x07\xec\x84\xf0\x11\xf0\xe9\x5e\x5c\x5e\x88\x67\xbb\xec\x0c\x38\x0b\x65\xb6\x17\xc8\xed\x6a\xe1\xb6\xbc\xfb\x9e\x5c\xf5\xbd\x81\xbb\xe3\xbe\x9c\x17\x4c\xac\x01\x30\xba\x50\xa2\x3e\x38\x01\xc4\x89\xba\x7b\x14\xbf\xa1\x0b\xfb\x8e\xa6\xb0\x67\x0e\x2f\xa3\x24\xaf\x84\x35\xc3\x7e\xf7\xfb\x0f\xe1\xd6\xdd\x62\xae\xf7\x47\xf8\xdf\xd1\x19\x7a\xff\x21\xd6\x6b\x13\x2b\xb5\xe5\xbd\x76\xc7\xf4\x6b\x0d\x77\xbf\x3b\x7e\xe4\x60\xa8\x2f\xad\x39\x8a\xe6\x3b\x6e\xa4\xdf\x92\x8d\xc5\x14\xcd\x3d\xb3\xdd\xe1\x78\x16\x0c\x1a\x3e\xa2\xdc\xe6\xf8\x58\xb0\xae\xad\x4f\x9c\x8e\x0f\xd8\xcd\xba\xe9\xb5\x9b\xf7\xf9\x23\x3b\x46\xc2\x81\xd1\x80\xcd\x3c\x1e\x54\x1f\x82\x70\xdc\xf0\x22\xd8\x7f\x4e\xae\xcc\xdc\x0b\xa2\x85\x99\x69\x43\xda\xa5\x5c\x29\x84\x7c\x73\xbf\x9b\x47\xc3\x1b\xba\x65\x40\x9b\xb9\x6c\xc3\xd7\x78\xe0\x3e\xa6\x02\xea\xe4\x82\x48\x58\xf2\x09\x04\xac\xef\x37\x64\x69\xe1\xd1\xb1\x53\x29\x49\x86\x7a\x05\x19\x17\x2b\x1d\x86\x87\xe3\x63\x9e\x87\x81\x06\x99\xe0\x96\x0a\x93\x1d\xe6\x1d\x91\x94\x93\x3a\xb2\x3b\xb3\x86\x60\x13\x9e\x63\x9f\xac\x09\x35\x03\xac\x70\x34\xd1\xaf\xfc\xd9\x7a\xce\x7a\x45\xff\x11\x3c\x94\xd9\x52\x41\xe0\xb9\x7a\x6b\xa2\x6f\x4c\xe6\x96\x63\xb5\x00\xae\xc7\x1d\xf7\xc2\xb8\x5c\x04\x5d\x82\x1e\x27\x8a\x1f\x09\xa9\x55\x91\x35\xb8\x64\xfd\xa6\x9f\xf4\x82\x9b\x77\xfe\xb1\x4e\x85\x5b\xd4\x32\xa4\xee\x1d\xc2\xd1\x9c\xd8\x67\x6b\x91\x55\xfc\x41\x49\x27\x9a\xca\x83\xa9\xbb\xcf\xcc\x4e\x99\x4d\x82\x37\xd5\xc6\x7c\x96\xa1\x0d\x58\x37\x8b\xf9\x75\x4a\x04\x31\x85\xa6\x15\xa3\x8f\xf5\x80\x4f\xc3\xc0\x25\xa3\x6f\x08\x22\x4d\x3a\x2c\x9b\xa4\xbc\x28\x4f\x16\x42\x9e\x66\x84\xd8\x39\x03\x02\x82\x09\x1b\xe7\x37\x15\xd9\x53\x6a\x6d\xca\xd6\xad\xce\xec\xe0\x90\x3a\xdf\xac\xe3\xd8\x2a\x3a\x85\xf0\x71\xc7\x8a\x2d\x04\x21\xb1\xec\x8a\xf1\x9f\xa6\x45\xce\xcb\x52\xa8\x97\x9e\x0c\xb6\x78\x0f\x07\x46\x87\xe9\x4d\x54\xcc\x88\xd4\xb1\xf5\x87\x9f\xcd\x12\xb5\xb9\xd0\xfa\xb1\x9a\x26\x95\x5f\xdb\xbf\x4f\x8a\xd6\x03\x9b\x9c\xa1\x70\x4a\x20\xc9\x1a\xbc\x63\x2d\x9f\xb3\xf4\x88\xe9\x43\x9a\x1c\xaf\xb7\xc6\x9c\x05\xbc\xcc\x45\x55\xfc\x23\x04\xd0\xfe\xd3\x02\x72\x8e\x45\x4b\xf9\xa0\xb8\xcd\xc8\xb8\xb8\x3d\x13\x01\x39\x3c\x38\x07\x0f\xde\x6f\x44\xd7\x63\xa1\xf6\x4a\x28\x6c\x98\x72\xc0\xc1\xd3\xc2\xc4\x8c\xb8\xc7\x76\x13\xee\x1b\x46\x15\xe1\x6a\xaf\x2c\x6f\x19\x27\x78\xfe\x57\x65\x92\x90\x51\x90\x49\x5f\x1d\x39\x40\x47\x36\x70\x82\x9f\x08\x01\x6e\xe5\xe9\x15\x3f\x50\x01\xa7\x97\x93\xe6\x1a\xcc\xbd\x59\xe9\x3b\xeb\x65\x6f\xbb\xb5\xae\x48\xff\x96\xf0\x2c\xcf\x8a\x1a\x03\xaf\xc1\x5c\x1f\xb1\x4e\xed\xca\x8d\xfa\xf5\xb1\x51\x43\x61\x1a\xca\xb0\xa0\xe7\x79\xa3\x48\x78\xe3\x3d\x58\xe3\x43\xf9\x49\x50\xec\xa9\x01\x77\x0c\x6e\x6c\x2a\xa6\xe8\xa5\xe6\x83\x8f\x0a\xff\xc9\x9e\xd5\x41\xc6\x0f\x33\x8b\x20\xc3\x4b\x92\x6f\x01\x08\x23\x7d\x3b\xfe\x4d\xfc\xb3\x33\xf9\xa1\xb3\xf0\x59\x1e\xfc\xe6\x54\xa6\xe2\x4f\xe9\x4b\x3e\x5d\x9e\x38\x4c\x7f\xf3\x6d\xfe\x9b\xcd\x2f\x92\xfc\x04\xe7\x6e\xd6\x6d\x36\xcd\x0e\xa6\x18\x2e\xf4\x6d\x67\xdf\xd5\xc7\x5e\xa1\x34\x82\x5d\x27\x2f\xd3\x1e\xa6\xb1\xc0\xb7\xe4\xc9\x0f\xbe\xc3\x1f\x47\xe5\x97\x2d\x3a\x5e\xbd\xb7\xfa\xc8\x71\x34\x13\xf7\xb4\x46\x17\xe5\x40\x95\x2b\xe1\xe3\x34\xc9\x42\xf0\x4e\x34\xaf\x86\xb6\x37\x4f\xbe\xfa\xd4\x5b\x09\xa4\xb7\x90\x09\x92\x98\x2f\x89\x3c\x78\xae\x6f\x8d\x49\x11\x0e\x2a\x3f\x10\x5f\xf0\x56\x3e\x44\x95\x79\x3c\x9f\x60\xc9\x1c\x04\xf8\x31\x18\x15\x9e\x03\x3c\x37\xb4\xe8\xc9\xb3\x76\x1e\xb0\xcf\x8f\xfe\x5f\x00\x00\x00\xff\xff\x47\xf6\xf3\xfb\x7b\xda\x00\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7d\x73\x1b\xb9\x91\x30\xfe\xbf\x3f\x05\xac\xfb\xd5\x9a\xca\x51\xa4\x9d\xcd\xed\xaf\x1e\x96\xb5\x5e\xd9\xb2\x36\xba\xd8\xb2\xcf\xd2\x66\xeb\xca\xe5\x7a\x16\xe4\x80\x24\xa2\xe1\x80\x01\x30\xa2\xb9\x3e\x7f\xf7\xa7\xd0\x78\x7f\x99\x21\x65\xc9\x9b\xcb\x56\x58\xa9\xac\x45\x02\x8d\x46\xa3\xbb\xd1\xdd\x68\x34\xc6\x7f\x78\x80\x10\x42\xa7\x44\xcc\x38\x5d\x4b\xca\x9a\x09\x7a\x41\x1a\xc9\x71\x8d\x2e\x57\x98\x4b\xf4\x82\xa9\xbf\x66\x12\xcd\x19\x47\x17\xcf\x4f\xd0\x15\x5b\x5f\x2e\x99\x7c\x00\x1d\xaf\x96\x54\x20\x01\x0d\x67\xb6\xa1\xfa\x07\xa6\x8d\x40\x72\x49\xd0\x8c\x71\x82\xe6\x6d\x33\x53\xb0\x71\x4d\xe5\x16\x00\x41\x67\x03\x0d\x29\x70\x43\x34\xe3\x04\x4b\x52\xa1\xe9\x16\x9d\xe2\xf5\x9a\x70\xf4\x0a\x4f\x85\x1d\x86\x78\xf8\x2b\xdc\xe0\x05\xd1\xe0\x2b\x2c\x31\xc2\x42\xb0\x19\x85\xce\x1b\x2a\x97\x08\xd7\x35\xfc\xb8\xae\xf1\x56\x20\xdc\x54\x48\x10\x29\x00\x90\x5c\x62\x89\x30\x27\xa8\x15\xa4\x42\x58\x20\x49\x56\xeb\x1a\x4b\x22\x00\x2d\xd5\xeb\x35\x5b\x91\x46\xa2\x8b\xb3\x2b\x33\xf8\xcf\x4b\xd2\x20\x8c\x1a\xb2\x41\x6f\x6b\xbc\x45\x1b\xdc\x48\x81\x24\x43\x53\x82\x70\x55\x91\x4a\xfd\x5b\xf5\xe4\x64\xc6\x78\x25\x86\x08\x37\xe8\xa4\x5a\xd1\xc6\xcc\x49\x0f\x1d\x40\x10\x92\xb7\x33\xa9\x91\x51\xf4\x93\x8c\x93\x0a\xd1\x06\xa0\xc4\xd4\x1c\x39\x02\x34\x01\x58\x6c\x41\x03\xcc\x4b\x22\xc5\x08\xfe\x5f\x75\x13\x54\x48\xc4\xe6\x08\xa3\x75\x3b\xad\xe9\x2c\x1a\x0d\x80\xb9\x05\x32\x0d\x68\x33\x67\x7c\x85\xd5\x0a\x21\x3c\x65\xad\x44\x58\x51\x6c\x08\xa4\xc3\x68\xcd\xe9\x8d\x1a\x8a\x13\xc1\x5a\x3e\xd3\xb4\xd3\xd4\x64\x68\x45\x1b\x09\x48\xac\x80\x6c\x02\x4d\xb1\xa2\x2c\x9b\xcf\x15\x0e\x7a\x05\x60\xe4\x25\xbe\x21\x68\x4a\x48\x83\x6a\xda\x5c\x7b\xa2\x5d\x92\x60\x8e\x08\xc3\xfc\xdc\x48\x4b\xac\x97\x79\xcd\x36\x84\xab\x1e\x15\x83\xd5\x65\x73\xf8\x9a\xae\xd6\x8c\x4b\xdc\x48\x84\x81\xbf\x34\xa1\xcb\x74\x34\xcb\xa8\xe0\x0b\x58\x42\x05\x6e\xa6\x80\x59\xee\x14\xaa\xa7\x9e\xb9\xe1\x15\xb2\xd5\x2d\xe4\x92\x50\x8e\xa6\x8c\x73\xb6\xb9\x24\xd2\xf5\x50\x20\x16\x44\x91\x8b\x93\x39\xe1\xa4\x99\x11\x64\x09\x03\x80\x2c\x2e\x1e\x0b\xb5\x90\x43\x0b\xba\x49\x11\x60\x06\x75\x22\x51\x2b\x68\xb3\xd0\xa4\x73\xc0\x0d\xa1\xce\x55\x2b\xaa\x66\xb1\x1d\x16\xa6\x0a\xcb\x46\xa5\x40\x15\x99\xd3\x86\x54\x8e\x9c\x6a\x82\x92\x40\x13\x80\x03\xc2\xb2\x50\x7c\x84\x24\xc1\xab\x0d\xe3\xd7\x43\xf4\xb7\x56\x48\x54\xd3\x6b\x02\x90\xcf\x9b\x8a\xe2\x06\xa3\xb7\x78\x46\xb8\xd0\xa3\x2d\x34\x53\x4b\x90\x5f\xd5\x11\x80\x29\x8e\x53\xa4\xa2\x2b\x32\x82\x2f\xbc\xec\x58\xd6\x50\x72\xa7\xf8\x85\x54\x86\x02\xea\x0b\xda\x50\x49\x71\x4d\x7f\x75\xd2\x6b\x24\xf0\x54\x89\xb6\xe1\x5d\xdc\x68\x86\x53\x1d\x38\x91\x2d\x6f\xb4\xa2\x50\xe8\x00\x44\x3e\x2a\x28\x0a\x5c\x0b\x66\x88\x20\x10\x46\x2f\x58\x5d\x13\xbd\x6e\x96\x22\x23\xad\xc0\xa8\xd2\x12\x88\x4d\xff\x46\x22\x39\x21\x37\x84\x6f\xad\xbe\x53\x0a\x01\xb1\x4d\x43\x38\xda\xd0\xba\xd6\x42\x6b\xd6\x97\x72\x84\x67\x33\xd6\x36\xd2\x89\x05\xe8\x28\xf3\x9b\xea\x39\x73\x83\x07\x98\xae\x30\x6d\x9c\x06\xb4\x20\x34\x78\xc0\x1d\x64\x46\xad\x24\xdb\x34\x56\x2f\x79\x40\x86\xdb\x25\x30\x52\x2b\x88\x1a\x77\xc9\xea\xca\xf5\xb0\x74\xf7\xf2\xd7\x30\x89\xb6\x44\x6a\x39\x14\x44\x0b\x01\x56\x9d\x2d\x01\x2f\x98\x24\x13\x74\x02\x13\x54\x42\x3f\x5b\xe2\x66\xa1\x38\xd1\x33\x29\xe0\xb7\xc6\x8d\xd2\x1c\x73\x45\x38\xda\xdc\xe0\x9a\x56\x08\xf3\x45\x0b\x38\x52\x8d\xda\x9a\xb3\x1b\xaa\xf4\x23\xe3\x88\x35\x44\xb1\x88\x42\x6d\xcd\xc9\xd1\x8c\x35\x15\x35\x3c\xcf\xd1\x9a\x09\x60\x5f\xfb\x15\xe6\xa4\x79\x24\xd1\x4a\xa9\x06\x05\xe8\xcc\x8d\x0d\x53\xa9\x18\xfc\xca\x2a\x3a\xdf\x1a\x34\xf5\x92\xd0\xd5\xba\xde\x1a\x06\x41\x8f\x15\xe4\x86\xd6\x7a\x2d\x95\x4c\xc8\x25\x13\x04\xcd\xb0\x20\x02\x35\x44\xab\xa0\xa9\x52\x32\x4d\x55\x7b\x7e\x52\x22\xe9\xc8\x71\x0e\x0a\x1a\x16\xc3\x2b\x1b\xc9\x10\x27\x2b\xb2\x9a\x2a\x9d\xe4\xb8\x45\x2d\xe8\x8f\xac\xae\x48\x83\x2e\x01\xa7\x9f\x31\xe7\x94\x71\x81\xa6\x35\xd9\x20\x8c\xbe\x3d\x7a\x82\x6a\x82\x9d\xa2\xff\xe3\xe3\x27\xdf\x81\x0c\xcd\x69\x83\x6b\x31\x7a\xf0\xe0\x0f\xe3\x07\x0f\xf4\x30\x6a\xca\x0b\x3a\xad\xc9\x15\xbb\x26\x0d\x9a\x73\xb6\x42\x8f\x3f\x9e\xfd\x74\xf1\xe3\xf9\xf3\x57\x2f\xaf\xde\xfc\xe5\xe5\xc5\xc9\xe9\xe9\xbb\x97\x97\x97\xb6\xc3\x05\x6b\x8a\x7d\x2e\xce\xae\x92\x96\xaf\x89\xc4\x6a\xdf\xfc\x2b\x25\x1b\x61\x9b\xbd\x7e\x79\x75\x72\x7a\x72\x75\xf2\xd7\xf3\x97\x3f\x5f\x26\x1d\x8c\x04\xbc\x62\xb3\x6b\xe0\x04\xdd\xe3\xea\xcd\xdb\xcb\x3f\xbf\xb9\x7a\xf5\xe6\xc5\x5f\xce\x2f\x7e\xb4\x5d\x1e\xac\xdb\xa9\x97\x40\xd3\x73\x92\x63\xf7\x09\x68\x36\x1e\xa3\xa3\xfb\xf9\x58\x70\x56\x5a\x2b\xb2\xae\xd9\x16\xb8\xf1\x06\x73\x8a\xa7\xb5\xd9\x86\xef\x71\x48\x37\xe6\x52\xed\xc3\x52\xe9\xcf\x48\xdb\x2b\xd6\xd1\x78\x28\x19\x68\xb4\x4c\xb4\x53\x25\x4a\xe8\x42\xb7\x1f\x1c\xa2\x09\xba\x94\x5c\xd1\xf5\x93\xe5\xdc\xff\xef\xd3\xc5\xcb\xab\x9f\xdf\xbc\xfb\xcb\x67\xf4\x39\x1a\x04\x57\x15\x27\x02\x6c\x8f\xcd\x92\xce\x96\x88\xb3\x2d\xae\x25\x25\x02\x89\x25\x6b\xeb\x4a\xb1\x73\x45\xd6\x4c\x50\x69\xb6\x68\x3b\xde\x3b\x68\xb9\x3d\xd1\x10\x60\x58\xf3\x6f\x3f\xae\x5b\xd3\x77\x6f\xfe\xfb\xe4\xd5\xd5\x7f\x9b\x35\x4d\x90\x58\x63\xb9\x74\x9b\x77\x3b\x25\x5a\x68\x8d\x65\xe2\x76\xee\x29\xa9\x99\x56\x1c\xa6\xe9\x49\xa0\x20\xc7\x63\x83\xff\xbe\xd4\xf2\xe3\xc0\x30\x97\x92\x71\xbc\x20\x6f\xb1\x5c\x1a\x02\xba\xbf\xfd\x6c\xc6\x42\x7f\x3b\x36\x2c\x91\xc0\xf0\x93\xba\x2f\x76\x48\x38\xd0\xcd\xeb\xe5\x8d\xd2\xc2\x5f\x8b\xf9\x5e\xae\xa8\x04\xcb\x57\xed\xb4\x8a\x9e\xd9\xf8\x54\x58\xdb\xda\xd1\x94\x28\x94\x9c\x69\x7f\xee\xb7\xe0\xc1\x61\x19\x70\x6e\xbc\x76\x42\x55\x8d\x5e\xe8\x5f\x06\xb4\x9a\xa0\x9f\xce\x1b\xf9\xed\x1f\x87\x4a\x9b\x83\xda\x99\xa0\x4f\x9a\xe1\x27\xfa\x3f\x9f\x0f\x7b\x46\x14\x84\x2b\xee\x56\x76\x20\xec\x59\x92\xd3\xc5\x82\x70\xad\xad\xb1\xb1\xe7\x12\x04\x2e\xc8\xe6\x12\xba\x5d\x4a\xcc\x15\x16\x0d\xd9\xbc\x68\x39\x27\x8d\xd4\xdf\x5b\x9c\x82\xb9\xc2\x12\x81\x0b\x70\x49\xe4\xd1\x3b\x52\x83\x37\x11\x5a\x95\xe3\x71\x0f\x9a\xca\x28\xec\x24\xc8\x25\x91\x96\x1e\x82\xc8\xf3\x53\x4f\x12\x91\xa0\xb3\x83\xf2\x6a\x27\xb2\xfe\x06\x56\x60\x0b\x94\x3f\x51\x0d\xae\xd8\x25\x91\xe9\x60\xca\x16\xf7\x7f\x77\x0d\x66\x07\xe2\x44\x52\x45\x66\x50\xf6\x30\x18\x6c\xa1\x33\xdc\x28\x1b\x62\x6a\x1c\x28\xe3\x00\x14\xf0\x78\xa7\xfb\x9f\x71\xb6\xda\x89\xcb\x10\x35\xed\x4a\x9b\x37\x3b\x89\x61\x28\x5d\xb3\xd9\xb5\x32\x23\x57\x04\x37\x4a\xc9\xbc\x05\x47\xc3\x63\x07\x74\xca\xd7\xe1\x15\x74\x8b\xb1\xe9\x1a\xc9\xd8\x5b\x54\x18\x9b\x35\x20\x45\x02\x58\xb7\x7c\x0d\xad\x06\xda\xe8\xb2\xe0\xbf\xfb\x53\x3e\xd9\x02\x13\xe0\xfa\xa2\x55\xe6\x44\xf0\xad\xd3\x56\x21\xa6\x05\x7e\xf5\x56\xed\x11\xbf\x0d\xdb\xae\xdc\xf4\x94\xd5\x5d\x71\xbc\x69\xec\x0c\x3d\xc8\x64\xa2\x3f\x9b\x96\x4e\xae\xd5\xf4\x54\x27\xb7\x99\x3c\xeb\xa2\xa6\x1f\xce\xed\x4f\xca\x1b\x61\x7d\xc3\x9d\xea\x96\xd1\x68\x92\x85\x63\xed\x5c\xba\x8a\x08\xc9\xd5\x8e\x52\x5c\xb2\x53\xfb\x6b\x30\x44\x27\xd0\x60\xaf\xeb\x16\x75\xd7\xc6\x49\x7c\x61\x1d\x87\xa8\xc1\x2b\x62\xf7\xfd\x5e\xcd\xb8\x17\x2e\xb1\x43\x2d\xd6\x64\x46\xe7\x74\x66\xe6\xd8\x89\xa1\xd1\x14\xba\x55\x81\x6d\xcb\x98\xef\x50\x2a\xbf\xd1\x9e\x7a\x54\x93\x1b\x52\xa3\x39\x25\x75\x25\x46\x81\x75\x22\x88\x8d\x6e\x28\x29\x68\x71\x8d\x6e\x70\xdd\x12\xe1\x03\x3f\xfd\xc1\x96\xaf\xb4\x49\xeb\x7d\x47\x23\x01\xae\xfb\x25\x38\x61\xca\x44\x52\xd6\xdc\x28\x69\xa7\x14\xbd\x42\x6a\x46\xd6\x36\x4a\xd4\x54\x74\x06\x61\x2a\x8c\x16\x9c\xb5\x6b\xe5\x4c\x41\xc4\x47\x2e\x39\x6b\x17\xcb\xc0\xf1\x1e\x8f\xd1\x6b\xdc\x6c\x4d\x40\x08\x37\x88\x7c\xa4\x42\x22\x35\x7f\x68\x35\x44\xd3\x56\x22\xd6\xd4\x5b\xf0\xca\xf4\x26\x34\x72\x7c\x72\x83\x39\x9a\x95\xb6\x4b\x37\x9b\xbf\x1a\x83\x1a\x09\xfa\x2b\x41\x15\xd5\xb1\x3d\xbe\x55\x38\x05\x26\x82\x09\x7b\xcd\x66\xca\xe0\x14\xa4\x9e\x1f\x02\x6c\xc5\x32\xca\xb7\x17\x13\xf4\x49\x03\x9e\x40\xaf\xcf\x7b\xc1\xbf\x24\x61\x60\xa0\x63\x08\xa1\x1b\x85\x23\x98\x7e\x7b\x0f\xe2\x83\x26\x9d\x43\x88\x09\xfa\x21\x84\x1f\x9b\xc9\xe7\xa7\x2e\xbe\x67\xb7\x4a\x13\xb2\x83\xbd\x6a\x84\x02\x5d\xce\xb7\xb0\x30\xc1\xf6\x6b\xd4\x8b\x15\x30\xe0\x08\x21\xe8\xa2\x21\x95\xeb\x68\xe4\xdd\x9a\x07\x8f\x84\x1a\x53\xfb\xb9\x04\xf4\x02\x6d\x66\xca\x4f\x6d\x4c\x54\xf5\x49\xbc\xc6\x0d\xf9\x28\xdf\x46\xe2\xbb\x27\xfe\x3a\xdc\x18\xa1\x5d\xb0\x7f\xc6\x63\xad\x2b\x22\xd4\x03\x94\x05\x91\x5f\x82\xf1\x65\xa8\x7f\x22\x84\x25\x93\xb8\x56\x96\x84\x72\xcb\xd9\x1c\xe2\x2a\x42\x29\x8d\x20\xa0\x9b\x86\x22\x13\x84\x9f\x93\x19\x6e\x05\xd1\x4d\x95\xe4\x80\x3b\x65\xf6\x88\x21\xa2\x12\x55\x8c\x88\xe6\x91\x44\x0d\x51\xfc\x80\x39\xad\xb7\x60\x83\x78\xd1\xb6\xb0\x38\x99\xab\x5d\x4d\xc7\x2f\x53\xdc\x60\x00\x6a\x24\x93\x34\x33\x62\xe2\x6e\x40\x9c\xd6\x05\x16\x2c\x2c\x8f\xb0\x31\x45\x24\x43\x15\x96\x64\x84\x4e\x6a\xc1\x5c\x2c\x7b\x51\xb3\x29\xae\xed\x56\x7b\x7e\xaa\x0d\x04\xd5\x85\x36\x8b\x98\x94\x80\xd0\x65\xbb\x5e\xd7\x5b\xab\xf1\x7f\x63\xdd\xfd\x82\xad\xb4\x1d\x80\xae\xb6\x6b\xa2\xc3\x74\x34\xb4\x5b\xee\x1d\x0f\xd8\x1d\xd4\x16\x00\xa4\xfe\x43\x30\xe2\x1f\x80\x50\x0a\x8f\x50\x47\x5b\x84\x2d\x00\xc5\xa8\x4c\x2e\x89\x0b\xf6\x09\x1b\x79\x1b\x19\xe0\x01\x48\x54\x31\x88\xb6\x99\xdd\xc8\xc1\xd0\x9b\x92\xd9\x84\xf4\xde\xa4\xf5\x31\xc4\xd1\x84\xc4\xcd\x8c\xa0\x01\xe3\x26\x1a\x79\xa8\xb8\xc5\xc4\xce\x24\x8c\x01\x58\x5a\x70\x86\x47\x83\xa3\x93\x08\x73\x3d\x19\x17\xee\x8f\x46\xfd\x6a\x7b\x9d\x73\x55\x94\x7d\xe3\x0e\x1e\x96\xac\xae\x84\xb3\x74\xc2\x23\x1b\x17\x11\xd0\xc1\x5f\x67\xbe\x5c\x3c\x3f\x01\xed\x37\xf4\xd1\xe8\x9a\x2c\x48\x53\x29\x25\x6d\x78\x1c\xcc\x21\x0b\xe0\x1d\xde\xa2\x93\xba\x26\x0d\x5a\x52\x2d\x4a\xdf\x82\xc2\xa1\xba\xf3\x9f\x09\xd6\x3e\xcc\xe5\xba\xe5\x22\x08\xc2\x7d\x6b\x02\x70\x68\x81\x57\x04\x7d\x67\xc1\x31\xae\xc1\xbf\x82\x25\xb9\x94\x64\xbd\x24\x8d\x60\x8d\x0e\xe7\x99\xee\x04\x83\x3c\xbf\x22\x53\xce\x1a\xf4\x9f\x78\xe5\x09\xeb\xf6\xe2\x40\xfd\x98\xd0\x6e\x1d\x9c\x17\x60\x24\x68\xb3\xa8\xf5\x69\x15\x32\xe7\x1d\x3a\xce\xcc\xe6\x16\x06\x95\x9e\x76\x23\x1d\x85\xd1\x67\x5b\x9c\x98\x43\x9c\x7a\x6b\xf6\x28\x3a\xad\xc9\x10\x09\x86\x70\xb3\x55\x8c\x33\xc3\x8d\x57\x49\xb8\xd2\x21\xf3\xc2\x32\xa4\xe4\x07\x74\xce\x4f\xc3\xc9\x28\xe5\x61\xbc\x7f\x58\xe4\x4f\x7a\xcd\x03\x1d\xdc\x36\xf4\xef\x2d\xec\x1d\xf6\x34\x4d\x35\x74\xad\x14\x80\x9a\xc8\xc4\x6a\x8c\xa0\x5c\x2a\x1e\x15\xee\x08\xcf\x63\x0a\xe7\x52\xf6\x54\x4f\xd1\x09\x6c\x00\xe5\xfb\xad\xf0\x7a\x4d\x9b\x45\x8c\x8b\x8e\xea\x2b\x09\x04\xc6\x61\xcd\x02\x49\xc2\x57\x68\x83\xb7\x10\x8f\x77\x80\x61\x49\xa6\xd6\x2e\x1c\xa1\x73\xb5\x2d\x61\x38\x17\x64\x1c\xf3\x6d\x08\x76\xc6\x1a\x33\xff\xcd\x92\xd6\x04\x6d\x08\x9a\xd3\x45\xcb\x09\xd2\x87\x66\x53\x22\x25\xe1\x30\x86\x3e\xab\x72\x6b\x16\x40\xc9\xa8\x91\x9b\xff\xc6\x33\xf8\xec\x29\xa3\xd4\xca\xa0\xbb\xe1\xa1\x89\xa7\x3a\xd0\x9c\x24\xdf\xa8\x8f\xc3\xa6\x26\xcd\x42\x2e\xd1\xc3\x63\xf4\x78\x82\x0e\x2e\x6c\x7c\xc1\xd1\xc4\xfb\xd1\x64\xb5\x96\xdb\x83\x08\xd2\xe7\xe8\x2f\x65\x11\x8d\x8c\x91\x72\x6c\x75\xfd\xc8\xdb\x16\x79\x63\x37\xca\xb1\x1b\xf0\x41\x0c\xdb\x1b\x52\x27\xd6\xb2\x30\x56\xaf\x5a\x6e\x63\x64\x86\x7b\x39\x9b\xcd\xda\xc0\xa8\xe7\x04\xd7\x68\xc3\x78\xed\x36\x76\x68\xba\xc2\xd7\x04\xb5\x6b\x38\xad\xd3\x8e\xb2\xb3\xa4\xed\xa1\xca\xb4\x56\xea\x18\xf4\x8d\x32\xf0\xd4\x4f\x53\x2c\xc8\x14\xd7\x75\xa0\x16\x5e\xe3\x05\x9d\xa1\x19\xe6\x95\x18\xa1\x13\x4d\x3b\x6f\x67\xd3\x06\xad\xda\x5a\xd2\x75\xad\xcc\xca\x39\xc8\xb9\x04\x70\x4e\xe5\x7a\x73\x5f\x1b\xb3\xd4\x70\x73\xf9\x50\x18\x6b\x3f\xc7\x1e\x7a\x66\xce\xca\x89\x13\x74\xf4\xf7\x16\x8c\x32\xdd\x4a\xc0\x61\x45\x70\xb8\xeb\x36\x21\x7f\xc6\xab\xb6\x8c\x19\xae\x6b\x45\xd8\x1b\xcc\x29\x6b\x05\x5a\x00\x17\x43\x8c\x25\x52\xd0\x58\xcb\x12\x69\x72\x54\xd0\x1b\xe5\x4d\x48\x77\x80\x6b\xcf\x6d\xf1\x94\xc2\x91\x7f\x60\xb2\x9a\x63\x1b\xe5\xa0\x00\x17\x98\x35\xb3\x87\xcc\xa1\xe9\x3d\xea\x50\x3e\x96\x6c\xb1\xfe\xf9\x29\xd3\x3d\x36\x52\x13\x0a\x9b\xc8\xed\x47\xd3\xff\x42\x69\x7f\x33\xb1\xb0\xe7\x78\x8c\xc8\xc7\x11\x3a\xb8\xa2\x2b\x22\xc2\x30\x2b\x67\x8d\x64\xe8\x1d\x5e\x4b\xc6\x05\x9a\x2d\xd9\xb5\x67\x41\x25\x11\x6c\x3e\x17\x07\x19\x02\xa1\xeb\x1f\x6b\xbe\x7d\x7c\x44\x74\x8f\x7e\x22\xba\x9b\xaf\x18\x53\x35\x77\x14\x9d\xda\x0a\x67\xbc\x9f\xa2\x52\x3d\xac\x92\xfa\xde\xe9\xa8\x4b\x43\xbd\x5b\xab\x27\xed\x87\xc4\xda\x09\xfc\x88\xbc\x29\xc0\x3f\x86\x61\x4a\x70\x80\xea\x1e\x50\xe4\x26\x77\x2a\x31\xa7\xc2\xdc\xe1\x88\x54\x16\x6f\x6c\x9b\x29\xa6\xf1\x47\xac\x92\x21\x5c\x55\x60\xad\x70\xb2\x62\x37\x24\x34\xae\x84\x8d\xd3\x09\x13\x94\x85\x1c\x0c\x13\x3f\x4d\xad\x8f\xf3\x4c\x99\x58\x49\xd3\x4a\x25\x49\x50\x50\x86\x43\xe8\x79\xc8\x3c\x27\xc3\xa5\x2d\x18\xa3\x64\xc9\xaa\x6c\x54\x9f\xca\x31\x83\x20\x7d\x65\x55\xb6\x09\x5c\xdb\x61\x5c\xb6\x83\x6a\x16\x4e\x23\x52\xdc\xde\x58\x82\x3f\x95\x6c\xf9\x4d\xd5\x8c\xf6\x3a\x3c\xeb\xf6\x89\x06\x70\x4c\x00\x23\xda\x7d\xbe\x56\x1e\x17\xb8\x4b\xe1\x11\x55\x38\x5f\xd5\x5a\x6f\x18\x1a\x04\x95\x43\xd5\x7c\x43\x94\xed\x26\x9c\x55\xa3\xdc\x41\x87\x59\xae\xdb\x7d\xa6\x0e\x9c\x1e\xeb\x78\x7a\xb8\x7e\x66\x28\x1f\xc3\x76\x04\x31\xb1\xf7\xc8\xa0\x56\x80\x1a\x06\x86\x0c\xe1\x7a\xd7\xb3\x53\x0e\xc3\xd3\x54\x66\x0c\x30\x0f\x16\xb1\x66\xb3\x6b\xe1\x47\x6e\x94\x3a\x76\x58\x19\x67\xc2\x1d\x31\xa8\x79\x2b\xe9\x8f\x0d\x59\xdd\x4e\x48\x43\x4e\x3d\x78\x61\x50\x3d\x89\x93\xba\x1e\x1c\x02\x93\xaa\xa1\xd5\x3f\xb9\x39\x61\xaf\xd0\x14\xcf\xae\x8f\x24\x3b\x52\xff\x1d\xa2\x74\x05\x94\x1b\x53\x33\x9b\x4b\x34\x67\x9c\xdc\x28\xcf\xab\xa9\x94\x51\xb7\x04\xbb\x8f\x71\xe2\xbc\x74\xa5\x9d\xc0\x84\xb5\x14\x50\xaa\xc9\xf1\xac\x02\xb8\x6b\xb7\x10\xb7\xda\x2d\x4e\x38\xc7\xdb\x24\xc5\x49\xcd\x0d\xa3\x35\xe6\x52\xef\x23\x4a\xf0\x6c\x0a\x83\xe9\x66\x72\xc9\xd6\xe9\x71\x8e\x41\x60\x08\x42\x75\x7e\xaa\xf6\x60\x81\xf0\x7a\x4d\x1a\xd5\x60\x49\x78\xac\xb3\x4d\x80\xa6\x62\x44\xdb\xb8\x0b\xd8\x35\x95\xa2\xa8\x2c\x73\x29\xe8\x80\x63\xf9\x60\xc7\x83\x33\xa1\x2d\xab\x01\x7c\x90\x4e\x4c\xd0\x7b\x3d\xf3\x0f\x0f\xe2\x0d\x63\xed\x22\x7d\xe7\xa7\x66\xee\xe7\x6e\xe3\xa1\x73\x37\x5a\xe3\x37\x32\xb3\x4e\x21\xbb\xc4\x24\x29\x9f\x70\x41\xd0\x85\x0a\xb0\xf1\xf5\xd7\x73\x5c\x0b\x82\x06\x6a\xd6\x66\x2a\x87\x7d\xe0\x4c\x9b\xa1\xc6\x44\xaf\x08\x10\x9c\xb7\x24\x39\xd1\x82\x54\x97\x9d\x94\x31\x00\x83\xd0\xe2\x73\xc6\xea\xcf\x11\x85\x22\x62\x84\x0c\xad\xf7\x8b\x7a\x6b\xce\xaf\x4a\x88\xc7\xa1\x34\x3b\xff\xb6\xd1\x3d\x50\xd8\x43\xa1\xff\xd6\xf9\x81\xb8\xae\xd9\xc6\x25\xb5\x04\x52\x5c\x1a\x45\xc4\xc7\x68\xc5\xe3\xb3\xa8\xdf\x89\x5b\xc5\x06\x04\xd1\xd3\x4b\x33\x9c\x41\x4f\x32\x87\xea\x30\xec\x0e\xb9\x9a\x64\x46\x85\xc9\x9a\x53\x4d\xec\x64\x01\x13\x70\xc1\xa3\x11\xcf\xe7\xf9\x71\x5f\x11\x4f\xd0\x52\x11\x83\x76\x2b\x2a\x8d\x2c\x80\x89\xd1\xc3\xd2\x9b\xef\x2e\x2d\x31\x54\x07\x6a\xed\x35\x1a\x7a\xc5\x53\x91\x08\x7d\x13\x2f\x16\xde\x1e\x0b\x42\x7b\x6c\xee\x50\xcc\x90\xc8\x42\x7d\x4a\x3d\x39\xa7\x5c\xcf\x3f\x90\xab\xd2\xda\xa6\x07\x97\x86\xf7\x21\xec\x93\xa7\x9b\x9a\xd6\x66\x0b\x34\x90\xc4\x92\x6d\x74\xae\x56\x8d\x67\x24\xa0\xc9\x10\x91\xc5\x08\x3d\xf9\x56\xcd\xe1\xbb\xc7\x3b\x44\x45\x4f\x57\x9f\x8b\xbe\x25\x5c\x21\x1f\x88\x8d\xfe\x6f\xea\xe3\xf6\x19\x8b\xb7\x35\xe6\xb4\x6a\x3e\x46\xef\x3f\xe4\xbf\xd9\xf3\xed\x63\xf4\xa9\x60\x31\x1a\x6e\x3e\xd6\xda\xa6\x60\x26\xe6\x33\xd3\x90\xa2\xa6\xe3\x31\xd2\xc7\x80\x3e\x4b\x00\xfc\x16\xbd\xe3\x18\xc5\x08\xe9\xc9\x3a\x97\x10\x98\xcf\x5b\x62\x3a\x7d\x25\x82\x68\x27\x6d\x0f\x38\xde\x7b\x92\x7c\x40\xc7\x76\x00\x43\x44\xf5\xff\x87\x81\x55\x1a\xa9\x8e\xaa\x02\xa4\x71\x55\x09\xbb\x1f\xf9\x6d\xa8\x14\xad\x50\x86\x08\xe6\x78\x45\x94\x6f\x38\x71\x21\x1c\xb3\x13\x19\xbf\x09\x60\x5a\x0f\x76\x4a\x94\x48\xf8\x93\xf8\x02\x40\x4e\x8e\x5e\xb8\xb4\xbf\x49\xba\xc3\x01\xb4\x86\x90\xca\x65\x5b\x1b\xff\x44\xc1\x5d\x87\x81\x25\xd3\x01\x3c\x84\xa0\xbd\xd2\x12\x7a\x29\x8b\xa0\x67\xb8\x79\x64\x24\x0e\xd7\x9c\xe0\x6a\xab\x25\x2f\xda\x95\x2f\xcb\xe4\xb0\x99\x49\x86\x90\x83\xe4\x20\x74\x2f\x37\xc7\xae\xa6\x3b\x11\x7b\xaf\xa1\x7c\x40\x0f\x8f\x51\x43\xeb\x09\x3a\x78\xa1\x55\x9d\xb2\xa0\x3d\x7d\x99\x42\x4a\x1f\x9a\xb9\x03\x09\xa0\xcb\xe8\x20\x1b\xe3\x61\xc0\xcf\x39\xbc\x70\xdd\x81\x19\xe7\x92\x38\x6b\xc8\x67\xdd\x98\xdd\x2a\x87\xde\x25\x0c\x6e\x22\xc7\x76\x22\x36\x66\x09\x40\x03\x6a\x57\x99\x0d\x34\x4a\xfd\xb9\x54\xa6\x4e\x12\x62\x80\x79\x6b\xcd\xb1\x58\xb5\xa3\x48\x15\x8c\xb4\x41\x65\xd6\xea\x30\x03\xfc\x66\x6d\x7c\x7b\x80\xdc\xae\xc3\xe3\x93\x4e\x0d\xe2\xa7\x6a\x94\x45\x0a\xd5\x67\x57\x85\xfa\x56\xa7\xfa\x4a\x86\x7e\x25\x9c\xed\xa5\x60\x82\x81\x1e\xc7\x83\x90\x15\xed\x4a\xfe\xf1\xfa\xc1\x9f\xd5\xdb\xe9\x17\x28\xec\x35\x83\xd0\xaa\xc1\x45\xb2\x9c\xff\xd6\x23\x13\x45\x15\x21\xac\x8e\x10\xa1\x92\x08\x2c\xe6\xb2\x9a\x48\x39\x4d\x7f\x30\x24\x6a\xc3\x62\xef\x21\x94\x62\xe0\x50\xb0\x86\x6c\x2a\x98\x6a\x85\xd7\xc6\x56\x35\x8d\x0b\x82\x0a\x54\x4c\x25\x5d\xfd\xf7\xb0\x23\xf4\x10\x93\x54\x73\x0a\x30\x95\xfe\xa7\xb0\x06\x6a\xe8\x08\x3a\x9f\x58\x67\x74\x3f\x92\xfe\x6e\x45\xe8\x14\xef\x43\xf3\x3d\xd4\x72\xe8\x63\x16\x40\xee\xa1\x98\xa9\x08\x5c\x1d\xe2\xf6\xb2\xc0\x30\x47\x03\x7c\x83\x69\x0d\xa7\xec\x81\x28\xc5\xf6\x7a\xb6\x78\x9e\x5a\x5f\xa4\x54\x8b\xb2\x99\xea\x53\xe3\x8d\x5b\xda\x94\x74\xa9\xb3\xb2\x04\x91\x0f\x7b\x55\x12\x9d\x1b\x2d\x9b\x8c\xfa\x70\x5f\xec\x8e\xc1\x1b\x79\x90\x35\x76\x72\x5d\x4e\xa6\xeb\x96\xed\x38\xa1\x6e\x97\x42\x79\x78\x1b\x2e\x3e\x81\xc3\x2b\xc3\xc4\xd1\x3d\x2b\x6f\x24\x46\x7e\x83\xda\x51\x36\x18\xae\x45\x35\xfe\x20\xd3\xb1\x88\x56\x06\x36\x38\x03\xac\x12\xde\x2a\xea\xe1\xfc\x98\x5f\x74\xa0\xa1\x5b\xb8\x03\x83\xb0\x77\x55\xbe\x50\xc4\x4d\x74\x23\x8a\xaf\x38\x81\xde\x15\x66\xf9\x32\x21\x84\x11\x74\xd6\xb7\xf1\x86\x12\x53\xc7\x12\xc8\xe0\xf6\xa9\xcc\xb4\xc6\xd4\xed\x20\x8a\x33\x84\x81\x43\xd3\x26\xc0\xa0\x59\x5a\xa5\xe7\xcb\xfd\x68\xa7\x16\xdb\xec\x8a\xea\x9f\xc2\x58\xcb\xe6\x2b\x1d\x03\x95\x2d\x37\x41\xd2\x86\x6c\xea\xad\x75\x8e\x82\x14\x37\x94\xa8\x93\x5b\x2a\xc6\x60\x6b\xf6\x41\xbd\x3b\x68\xc7\x55\x2b\x72\x8f\x12\x26\x33\x8d\x5c\xf5\x3d\x75\xfc\x3b\x4d\x01\x8d\xff\xc5\xd9\x95\x46\x7a\x83\xad\x8f\xd7\xab\x51\x3d\x81\x53\x8d\x3a\x41\x3f\x28\x60\xf7\xa6\x57\x61\x36\x70\x6e\x0b\xc3\x4d\xf4\x41\xec\x7a\x7f\x43\x35\x55\xa1\x9d\xa0\x83\x30\xd7\x1a\x34\xb8\x1f\xc9\x99\xad\x36\xd4\xb5\xcb\xa0\xfc\x91\xc8\x2e\xff\xbc\xdb\x27\x87\xa1\xa3\xd3\x6d\xe4\xce\xb8\x5a\x41\x74\xa4\x98\x0a\x03\xe9\x91\x30\x79\xbe\x66\x8c\xa8\x13\x1c\x0b\xb5\xab\xf3\xc6\xf8\x91\x3b\x15\x76\x36\x83\xd7\x96\x38\xfe\x26\x66\x3e\x02\xd9\xbc\x36\xab\x02\x8b\xfe\xf4\xc8\x26\x74\x5d\x9c\x5d\x0d\xe2\x2c\x64\x8f\xcd\xbf\x1b\x56\x19\x3c\x39\x1c\x66\x6b\xd6\xff\x49\xf6\xa4\x5b\xf6\xce\x37\xb9\xdb\x02\x88\xf2\x57\x1f\xe7\xe6\xfe\xb9\x4d\x36\x33\x27\x20\xca\x20\x0f\x96\x7e\xe7\x5a\xef\x61\xa8\x17\xe9\x18\x23\x62\x6e\xab\x3c\x3d\x72\xeb\xd3\xa1\x26\xa7\x58\xce\x96\xaf\x33\x5d\xa9\xcc\xe1\x29\x95\x1c\xf3\x2d\xfa\x7b\x8b\x1b\x49\xe5\xb6\x2b\xc2\x94\xe8\xd2\x95\x4e\xa3\x48\xf2\xaf\xd1\x5e\x06\xa6\xdc\xa9\x47\xc3\xfb\x9e\x8a\x8a\x5d\xc6\xbd\x45\x5a\xeb\xb6\xd2\x14\xb4\x33\x9f\x29\xba\xa2\x7e\x0c\x2e\x79\x86\xf7\x39\xdd\x39\x9b\xb5\x59\x22\x01\xdf\x10\xde\x07\xdf\xea\xd1\x64\x05\x06\x69\x62\xbf\x9f\x89\x49\x25\x9f\xa0\x1f\x02\x7c\x3e\x95\x44\x32\xf8\xdd\x0b\xa4\xff\x72\x90\x70\xcb\x0d\xe6\x88\x5a\xf8\xe0\x09\x86\xbf\xea\xac\x14\x8a\x9e\x7a\x32\x16\x0e\x57\xc3\x41\x47\x26\x1b\x7f\x20\xd9\x35\x69\x26\xe8\xe9\x91\xce\xd1\xc8\x27\x69\xbc\xc6\xc3\x0c\x1e\x45\xc7\x88\x1a\xfe\xfe\xee\x4f\x8a\xbf\xc3\x5f\x3f\x77\x73\x7b\x81\xef\xba\x0c\x83\x9f\xa9\x5c\x06\x39\xef\x05\x33\x01\xce\x7e\xbc\xc8\xdf\xd2\x6c\xf8\x5a\x56\x43\x44\xa8\x58\x21\xc5\x20\x03\xcc\xd5\x4c\x68\x83\x5e\x9a\x3f\x7f\x67\xd6\x49\x8f\x71\x12\x2f\x72\x26\x5d\xc5\x1b\x31\xff\x32\x60\xee\x66\xc0\x78\xa2\xde\x8f\x19\xe3\xe1\xbd\x23\xf3\x20\x4a\x6f\x32\x66\x47\xba\x86\xc2\xd3\x6f\x92\xcb\x98\xdf\x0f\xf4\x2d\x22\xdb\xbc\xef\xbe\x67\xac\x5f\x9e\x3d\xd3\x57\xd1\x07\x07\x17\x2c\x92\xff\x38\x69\x41\x79\x80\x1a\xc8\x41\xa2\x51\x9d\xf1\x15\xe8\x97\xe3\x78\x1e\xa3\x05\x91\x17\xf1\x3e\x1f\xf0\xe9\x9d\x0d\x95\x1d\x9f\xbb\x99\x51\x3b\x3e\xb1\x50\x85\x7f\xe5\xf6\xd2\x57\x31\x32\x03\xaa\xff\x5e\x4c\xcd\x7e\x2a\xde\xd2\xea\xec\x10\xd0\x98\x3f\x71\x55\x5d\xb1\xdf\x86\x43\xef\x8d\x1b\xf7\xa6\x59\x3c\x55\x41\xcc\x6e\x21\x82\x09\x36\x73\x98\xa0\x63\xbe\x11\xad\xd2\xfd\x22\xfc\x6b\x58\x58\xf1\x2c\x3a\x7e\x5b\x53\x7f\xa7\xd3\x76\xff\x2e\x40\xd9\x2a\xda\xe5\x10\x24\x96\xd2\xef\xd7\x3f\xe8\x61\xb7\x2f\x34\xbe\xc4\x6e\xeb\xeb\xab\x3a\x22\x5d\x9e\xc8\x0e\xcb\x29\xf5\x4b\xba\x6d\xa9\x7f\x76\x6f\xa5\x83\x10\xbf\xf5\xd6\xf9\x9b\x39\x49\x96\x1f\x16\x44\xea\x03\xaf\x43\x7f\xd4\x95\x10\xd3\x00\xf5\x71\xf0\x1d\xf0\xcc\x99\x83\x82\x18\x67\x3a\xf5\xc0\x4d\x0f\x95\xca\x90\x2f\xda\x55\xa4\x21\xa3\x21\x4c\x56\x48\xcf\x20\x05\x1d\x1b\x0c\x88\xe2\xd4\xdb\x20\xa7\x3e\x92\xbc\xac\x80\x58\x70\xc9\x04\xbb\x14\x88\xf1\x18\xbd\xd0\xd1\x7a\x82\x05\xad\xb7\x90\x5f\x4f\x75\x56\xa9\xbe\xac\x25\x29\x96\x3a\x77\x93\xa0\x5f\xfe\xab\x25\x7c\x6b\x72\x30\x7e\x31\x52\x6f\xe1\x80\xd6\xd5\x59\x50\x02\x0e\x3e\x04\x91\xfe\x7a\x8d\x4d\x36\x3c\xd5\xf7\x22\xac\x19\x1c\x02\xb4\xbb\xf8\x13\x57\xb0\xe0\x01\x8a\xd3\xe2\xc3\xd6\x01\xfd\xca\xb9\x8c\xe9\xaf\x51\x5a\x7a\xde\x35\x4a\xef\xb6\x3f\x17\xaf\xf6\x86\x59\x83\x9d\x0d\xbb\x92\xe8\xc2\x81\xb3\x84\xab\x4e\x68\x5f\x92\x67\x14\x97\x80\xb8\x55\xba\x86\x20\x52\xbc\x37\x39\x37\x0f\xc3\xfc\x06\x41\xa4\x5f\x67\x57\xfc\x2a\xcc\xd3\x04\xdf\xb1\xd7\x9b\x33\x2b\x85\x8e\xd1\xe0\x9b\xd2\x80\x58\xa0\x6f\x2e\x89\x7c\x76\xf8\xb0\xd4\x2d\xe1\x9f\x20\x4d\x48\xe6\x71\xe3\x28\x9d\x4a\xf4\xe6\xc3\x1b\x40\xa3\x1d\x79\xf1\xb6\x99\x88\x13\xe2\x51\x9a\x90\x25\x88\x4c\x74\x10\xca\xf3\xb2\x54\xa3\x54\xa1\xa0\xec\x5c\x4a\xb5\x4a\xce\xbd\x50\x7f\x96\x96\xea\xd1\xaf\x43\xfe\xe9\xd5\x6b\x3a\xb7\xaf\xa5\x61\x03\xe5\x13\xd4\xec\xcb\xaf\x05\x7a\x53\xcb\xe5\xd6\x47\xa9\x30\x2b\xa2\x73\xe2\x77\xe8\xac\x6e\xb0\xfb\x46\xe4\xf6\xb8\x80\x68\x12\x95\x7c\xd6\x23\x89\x6d\x41\x17\x0b\xe9\x38\x7d\x7b\x23\x97\x84\x6f\xa8\x20\xe8\xba\x61\x1b\x7b\x61\xa0\x1c\x35\x09\xf5\x6b\x5a\x02\xa6\x4f\x5f\x95\x6a\xca\xe4\x10\x7a\xd3\x27\x3b\xe4\xdd\xdd\xe4\x5b\x77\xdc\xde\x0b\x07\x02\x30\xfe\xcf\x94\x2f\xc3\x7a\x08\xae\xc8\x22\x5d\xad\x6b\x70\x7f\x75\xb9\x51\xa8\x53\x3a\x6b\x85\x64\x2b\x7f\xfd\xf0\x86\x92\x8d\xbe\x91\x6d\x4a\x23\x8e\x22\x40\xf0\x73\x74\x71\x66\x1d\xde\x5e\xec\xba\x35\x66\x94\xa2\x29\xd6\x13\xd4\xc0\x0b\x19\xd6\xae\xc8\xbc\xad\xeb\x8b\x60\x4b\x7c\x96\xb7\xa0\x5c\xc8\xfe\x26\x35\xde\xd5\x62\x4a\xb9\x5c\x56\x58\xee\x6a\x02\x0c\xd9\xdd\xe6\x6f\x84\x0b\xb2\xb5\xab\xdf\xd5\xaa\xe2\x78\x2e\xaf\x08\x5e\xed\x68\xf2\xdf\x04\xef\x82\x72\x49\x8c\x51\xba\xa3\xdd\x3b\xd6\x36\x55\x77\x1b\x49\xf0\xea\xc4\xac\xc8\xc5\xf3\x13\xc5\xd0\xfb\x34\xed\x6e\xb5\xe6\x74\x85\xf9\xf6\xad\x72\x12\x7a\xb1\x5b\x12\xba\x58\xf6\x00\xda\xec\xf8\x1d\xea\x27\x28\x42\x89\x97\x1f\xd7\x6a\xb7\x6b\xfa\xd6\xa7\x99\xe2\x4b\x82\x45\x2f\xb9\xb0\x24\x6f\xe6\x3b\xe7\x57\xe3\xed\x0b\x2c\xc9\x82\xf1\x6d\x7f\xab\xab\xed\xba\x07\xa1\x25\x5b\x11\xc5\x09\xfd\xdc\x89\x37\x78\xbb\xbb\x95\x85\x75\x39\x63\x7c\x0f\x60\x3b\x9a\x69\xd3\x21\x56\x64\xa5\x56\x3b\x04\xab\xa8\x51\x4b\x74\xea\x31\x89\x77\x18\xcc\x2e\xc3\xea\xbc\x31\xe1\x02\x8f\x6f\xac\xbb\x23\x2d\x9a\x69\x96\xd8\x2d\xcd\xd5\x4a\xfc\x7b\xa6\x53\xe2\x9f\x73\x85\x52\xf8\x3d\xd6\x26\x71\x83\xa2\x2a\x89\x9b\xe4\x7a\xa4\xf0\x7b\xa4\x44\x0a\xbf\xe7\x1a\xa4\xd0\x28\x56\x1f\x71\x83\x6e\xdd\xd1\xdd\xae\xa3\x49\x97\xd6\x88\x5b\x25\x2a\x23\xfe\x71\xd3\xf7\x63\xaf\xb2\x88\x9b\xe6\x9a\x22\x21\x4b\x49\x4d\x24\xb3\x29\xe9\x88\xbc\x49\xa4\x20\x92\x99\x96\xb4\x43\xdc\xa4\xa8\x1a\xca\x50\x62\x81\x2f\x83\xe9\x6b\x53\xd4\x08\x69\x93\x3e\x99\x28\x16\xd8\xcb\xe8\x11\x58\x53\x29\xec\xae\x9f\x7a\x55\x80\x6d\x54\xb4\xc2\xac\x12\x40\xc7\x4e\x1f\x14\x1a\x59\x55\xa0\x5a\xd9\x7f\x17\x5c\x21\xec\x5a\xd9\x7f\xe6\x8d\x9c\x5e\x40\xc7\x5e\x47\x74\x34\xd3\xd6\xef\x71\xa0\x2b\xf2\x86\xa1\x9a\x40\xc7\x91\xd6\xc8\x1b\x3b\x85\x81\x8e\xbd\xf2\xe8\x68\xa6\xc4\xc4\x36\x53\xff\xee\x68\xe6\xd4\x87\x6d\xeb\xbe\xe8\xe8\x00\xaa\xc4\x36\x86\x3f\xf2\x86\x99\x4a\x41\xc7\xb9\x9a\xe9\xef\x96\xf4\x28\x18\xd8\xb1\xae\x51\x96\x76\xfc\x4d\xde\x45\x2b\x1e\x74\x6c\x34\x50\xde\x60\x63\x1b\x6c\x3a\x1a\x94\x14\x90\xc2\xb4\xf0\x75\xc1\x8b\xb6\x2a\x09\x1d\x7b\xf5\x54\xa0\x72\xa0\x99\x8e\x23\x3d\x55\xf6\x32\xac\x8a\x32\xbe\x86\xfd\xb3\xdc\x18\x4a\x44\x1d\x3b\xbd\x55\xa0\x51\xa0\xb2\x14\xa5\x82\x3f\xf3\xc6\xa1\xf2\x42\xc7\x91\x2e\xeb\x86\x0c\x2a\x2a\x00\x0d\x7f\x77\xc3\xb6\xcd\xa3\xbf\xbb\x42\x27\x91\x3b\x65\xff\x2c\xfa\x6e\x17\x2e\x1e\x53\xc6\x76\x1f\xf7\x0c\xdd\xc2\xd9\xeb\x0f\x0e\xe5\xfa\x4f\xe7\xbc\xa5\xdf\x96\xa3\x07\xc6\xd9\xf6\x55\x11\xf4\x5d\xff\x35\x27\xc2\x9c\x88\xc4\x8f\x71\xa0\xd8\xad\x73\xfd\x2e\xce\xae\xf2\x02\xe3\xa3\xf3\x8b\xb3\xab\x61\x5c\xeb\x7c\xf4\x8e\x08\x56\xdf\x10\x9e\x84\x28\x7e\xd4\x75\xd3\x4c\xf1\x22\x57\x3e\x2d\x33\xf9\x7c\x91\x50\xf7\x53\x08\xc6\x04\x9b\xdd\xc1\x54\x5e\xde\x26\x30\xf6\xf1\x24\x08\x99\x64\xbe\x7e\xa9\x22\xec\xae\x32\xb2\xa5\x23\x9d\x64\xef\xc9\x8e\x9f\x4d\xc5\xb8\xd7\xae\x62\x5c\xd4\xdc\x86\x11\x83\x62\x71\x41\x70\x31\xfc\x36\x3c\xd8\xc8\xf9\x84\x56\xe5\x6e\xd9\xd9\xb8\x8e\x0e\x05\x55\x9f\xb4\xeb\x5e\x54\x36\x18\x1d\x07\x14\xf4\x67\xdc\xc5\xeb\x10\x31\x45\xc3\xbf\x0e\x0b\x57\xa9\x3a\xea\xf9\x9a\xb9\xec\x3a\x46\xba\xdd\xa1\x53\x78\x12\x5d\xe9\xd8\xe9\x1e\x07\xf4\xe9\x7c\x7c\x67\xff\xfd\x4e\x18\x3d\x07\xf0\xb6\x4d\x72\xad\x7d\x1e\xca\x64\x58\x5d\x77\xa8\x09\x87\x1b\x53\x65\x56\x32\x77\xf3\x39\xbe\xe2\xcc\x10\x6b\xa5\xa0\x15\x41\xec\x66\x2a\x08\xbf\x21\x5c\xb8\x5b\x4f\x2e\xef\x29\xae\xda\xab\x3e\xe6\x9b\xec\x1a\x43\xb0\x5e\x71\x31\x5f\xb3\x58\xc5\xa9\xd8\x60\x69\x83\x57\x64\x70\xe8\xeb\xef\xc7\x8e\x56\x21\x0a\x14\xb0\xb1\x09\x09\x2b\xfd\xa2\xf8\xef\xf9\xf6\x8c\x92\xba\x72\x27\x8e\x7e\x49\x2c\x0b\x42\xb9\x95\x09\x3a\x38\x33\x30\x0f\x0e\xd1\xb3\x67\xe8\xe0\x20\x1b\x34\x35\xce\xef\x63\xd0\xb7\x06\x66\x71\x50\x13\xfa\x2d\x1a\xa2\xea\x33\x9a\xb1\x66\x86\xe5\xe0\x00\x1d\xe4\x07\x9b\xf6\x47\x8b\x75\x2f\xc1\x2b\xff\xcc\x54\x2f\xdd\x13\x7b\x3e\xa6\xc0\xa5\xfe\x71\x50\x96\x9c\x2e\xaa\xc6\x12\xe3\xe0\x96\x45\x67\x24\x99\x6e\x31\x38\x2c\x02\xf2\xee\x48\x07\x82\xba\x22\x50\x17\x8a\xcf\x02\xf8\xdd\xeb\x71\x70\x62\xab\xdf\xe7\xb9\x86\x96\xea\x21\x32\xdd\x6b\xd3\xbb\x70\x86\xd6\x7d\xbd\x57\x61\x8a\x6d\x18\xc8\xee\x87\x1b\x2a\xd9\x02\x53\x8c\xc7\xfa\x99\x99\x76\xbd\x66\x5c\x92\x2a\x8e\xff\x66\xef\x71\xd1\x66\x56\xb7\x95\x3d\x6b\x7d\xa1\xac\xab\x8b\xb3\x2b\x04\x1b\x7b\xc6\x68\x0b\x22\xe1\x07\x38\xb0\x51\x6c\xd9\x71\x5c\xf3\x3e\x43\x5f\x35\x7e\x1a\x5b\x0d\xa7\x54\x28\xee\xfe\x7e\x50\x48\x4b\x83\xe6\x9d\x91\xe5\xee\x2e\x89\x5d\x62\x9f\xf1\xd8\xb7\x83\xb1\xab\xf6\x6f\xff\x51\x12\xde\xe0\xfa\xa7\x77\xaf\xf6\xed\x72\x71\x76\xe5\x73\x0f\x94\xb6\xf9\xb2\x8e\xbb\x68\x17\xf7\xbd\x04\xa6\xd9\xb7\xf5\x15\xc7\x54\xee\x4d\x83\xd7\xa4\xa2\x58\xb5\x8e\x1a\x7f\x28\xb0\x66\xae\xb8\xb8\x36\x1c\x15\xa0\xc1\xff\x05\xfe\x9c\xc0\x10\x87\x13\x74\xd2\x6c\xb5\xe1\xf7\x2c\x75\xf4\x37\x54\xce\x96\xfa\xb4\x22\x3f\x4c\x9e\x61\x53\xcb\xb5\x93\xd9\x26\xc5\xfd\xdb\x30\x6e\xb1\xd3\xa0\x73\xc7\xd7\xa7\xfb\xee\x44\xb7\x44\x31\xfb\xa9\xc2\xa7\x00\xb5\xe6\x0a\xb5\x76\x77\x47\xb9\x6c\x57\xd3\x06\xd3\x7a\x92\x60\xf7\xe7\xab\xab\xb7\x67\xb4\x26\x83\x96\xd7\x06\xa4\x6b\x9b\xa6\xf3\xda\x4f\xfe\xed\x78\x8c\x5e\x94\xce\x89\x8c\xd5\x2e\x99\x2b\x34\x9c\xe6\xaa\xe7\x24\xef\x13\xd8\x5e\xb2\x77\x76\xec\x26\xbd\xb7\x21\xee\xd1\x74\xe8\x5e\x85\x20\x7e\x7c\xf7\xf1\x2c\xac\xbe\x01\x7d\x40\xfa\xce\xe3\xbd\xc2\xbb\x87\x0b\x02\xdc\x77\x1e\xef\xb9\x85\xb5\x73\x40\x13\x31\xbf\x9f\x11\x01\x58\xdf\x90\x71\x0c\xfe\xce\x83\xfe\x67\x00\xae\x6f\xd8\x20\xae\x7f\xe7\x31\x4f\x2d\xac\x9d\x03\xea\x83\x82\xfb\x19\x50\xc1\xda\x39\x60\x70\xf2\x70\x3f\xa3\x3a\x80\x3b\x87\x36\xe7\x19\xf7\x33\x2c\x00\xeb\x1b\xb2\x70\x42\x72\xe7\x91\xaf\x52\x98\xfb\x22\x70\xcf\x63\xf7\x0d\x9b\x1d\xe7\xdc\xdd\x7d\x8a\x21\xf6\x0d\x6e\x4f\x89\xee\x3c\xe6\x9f\x01\x50\xdf\x50\x9b\xfb\x1a\xea\xe7\x9d\x43\x95\x4f\xb0\xee\xbe\xa2\x05\xb0\x7d\x68\x04\xa7\x63\x77\x1e\xfb\xc2\xc2\xea\x95\xda\xe8\xb8\xed\xee\x72\x1b\x80\xeb\xe5\xe0\xe8\x08\xef\x5e\xbc\x7f\x0b\x6e\xd7\xb0\x3a\xf2\x70\x8f\x01\x87\x1e\x51\x89\x8e\x19\xef\x2e\x30\x01\xb8\xbe\x61\xe3\xa3\xcb\x3b\x0f\x7b\x12\x80\xdb\x67\xb6\xe6\xa8\xf3\xde\xa6\x0b\xf0\xf6\x99\xef\x7d\x0d\x7c\x12\xc2\xeb\x1b\x38\x8e\x94\xdc\x26\x40\xd2\x07\x33\x37\x36\x77\x04\x84\xfa\x11\xfc\xf2\x28\x6a\x27\xa5\xfa\x90\xbf\x55\xac\xb7\x78\xbe\x1c\x4c\xfc\x22\xff\xbd\x83\x08\xc3\x4e\x6c\xf7\x75\xbf\xba\xfc\xd5\x20\x12\x51\xf6\x9c\x6c\x72\xb9\x0d\xb6\x2d\x88\x34\x7d\x60\xd1\xca\xe3\xc3\xb3\x08\xf8\x63\x1c\x57\xbb\x97\xe9\xa2\x67\xcf\x92\x6b\x28\xe1\x98\x36\x04\xde\xcc\x19\x3a\x46\xc5\x99\x06\xc5\x15\x87\x26\x0c\x66\x4f\x85\x06\x65\x16\x3a\x1c\xaa\xb9\x4c\x60\x42\xdf\xa3\xc7\xe8\x99\x6d\xbe\xc2\x1f\x0f\xd1\x04\x35\xb4\xee\xa6\x82\xc1\xe8\x15\x15\x72\x82\xde\x17\x31\xfa\x80\x8e\xd1\xfb\x00\xf3\x0f\xfb\x07\x0e\xec\xea\x75\xbb\xaf\xc1\xf8\x77\xe4\x14\x17\xdb\xb9\x45\x60\x43\xf7\xe9\xc6\xae\x9f\xee\x77\x44\x38\x8c\xca\x75\xf3\xb6\x7e\x82\x77\xfb\x8e\xcc\x08\xbd\x51\xbc\xf0\x02\xaf\xcd\xb3\x07\x4f\xbf\xf9\x14\x9f\x49\xda\x46\x9f\xbf\x47\xc7\x9d\x73\x5a\x10\x69\xde\xca\x1d\x58\xe6\x4f\x1f\xef\x3d\x54\xe2\x10\x8e\x73\xd2\x6c\xdf\x99\xe3\xd0\xce\x21\x07\xf1\xec\x16\x44\xbe\x8b\x51\x7f\x0b\x0f\xc9\x94\x2e\x59\xf7\xae\x91\x23\x53\xf7\x32\xb9\x67\x8a\x27\x85\x88\x6b\xf8\x29\x41\xee\x09\x6b\x79\xbc\x2c\xf1\x93\xd5\xd8\x7d\xe5\x6b\xd6\xca\x09\x7a\x3c\x7a\xfc\x1f\xbb\x9b\x46\x91\xb1\x83\x8b\xe7\x27\x36\xe0\xb4\xc2\xfc\x9a\x48\x9d\x36\x63\x10\xc8\x43\xf6\xe1\xa7\x4c\x5d\x14\x85\x23\xfb\xdb\x77\xaa\xe3\x28\xd0\x7b\x0b\x49\x0b\x3a\x0e\xac\x9e\xd6\xda\x56\x7d\x53\xe0\x87\x2e\x0c\x4a\x71\xe3\x5b\xe0\x91\x75\xef\x5e\x7d\xe1\xab\x02\x4c\xfc\x6b\xcf\x1a\x69\x0f\xa3\x67\x03\x77\xfc\x3e\x41\x63\xfd\xc7\x6d\x7a\xeb\xfb\x3d\xdc\xf6\xd7\xaf\x2a\xdc\x7a\x78\xdf\x52\x47\x94\x9f\xba\x5b\x3f\xfe\x97\x4f\xf6\xab\x14\xb8\x96\xd8\xcf\xc5\x08\x78\x3c\xcc\x2b\x78\x22\xd4\x18\xf7\x5f\x36\xcc\x30\x4b\xb1\x70\x52\x96\xfd\x92\xf5\x2d\xe7\x61\xf8\x66\x3b\xe6\x60\x68\xbd\xd7\x2c\x32\x64\xde\x9a\xde\xc3\xff\xb5\xf3\xd3\x17\x69\x5f\xae\xd6\x72\xeb\xbb\x9c\x99\xd7\x40\x26\x68\x30\x6f\x1b\x34\x80\x5a\x27\xdd\x88\x14\xce\x18\xc2\x8f\xbb\x53\xea\xde\x2e\x29\x8d\xd9\x61\x8e\xa9\xcf\xe7\xbb\x6e\xa7\x1d\xe7\x42\xdd\x3b\xeb\x14\x37\x0d\xe1\xe7\x2b\xbc\x20\x99\x31\x06\x87\x39\x3d\x41\x77\x5a\x93\xce\x63\x88\x5e\x3a\xc1\x19\xc5\xc1\x52\xca\xb5\x98\x8c\xc7\xcd\x14\x4b\xb6\x16\x40\x2f\xb6\x1a\x0b\x89\x25\x9d\x8d\xe9\x6a\x31\x96\x6c\x7d\xa4\xbe\x3f\xaa\xd9\x82\x1d\x2d\x19\xa7\xbf\xb2\x46\xe2\xfa\x68\xb3\xa4\x92\x8c\xc4\xcd\xa2\x7b\x0b\xe8\xe1\x84\x95\x9a\x97\x66\xf0\x03\xaa\x66\x3e\x16\x37\x8b\x7f\xff\xb8\xaa\xcb\xd0\xba\xed\x46\xf1\xf7\x16\x73\xf2\xbf\x94\x78\x4c\xfd\x6f\xb4\x6e\xee\x8b\x46\x9d\x90\x6e\x61\xc6\x94\xd8\x73\xd7\x81\x9a\x32\x02\x94\x40\x1d\x29\x89\x3a\xd8\xf3\x4c\x4d\x75\x72\x37\x9b\x10\x15\x68\xcb\x5a\x0e\x8f\x29\xcc\xe0\x18\x8b\x6d\x9a\xa1\xf2\x5b\xea\xa1\x7e\x1a\x95\xe3\x8a\x20\x36\x9f\xd3\x19\xc5\x35\xaa\xe8\x82\x4a\x5c\x47\x2f\x96\xd9\x5b\x70\x0a\xb0\xea\xf2\xf3\xc5\xf3\x93\x47\x02\x2d\x40\xc2\x85\xb4\x6f\x05\x36\x15\xfc\x8b\x70\xd1\x83\x2a\xf1\x76\x40\xca\x03\xa1\x89\xd0\xb1\xc8\xbd\xe1\x00\xcf\x91\x93\xf0\x8f\x9e\xa3\x17\xaf\x00\x26\xe1\x1f\x3d\x63\x30\x45\x24\x31\xd9\xa1\x0c\x0f\xe4\x86\x4a\x49\xf8\xc1\x5e\x53\x34\x8d\x81\x89\xfd\x74\xfb\xa6\x0a\x63\x54\x54\xcc\x18\xaf\xf6\x1b\xc3\x34\x86\x31\x68\x73\x43\x25\xb9\xcd\x50\x70\x17\x7d\xc1\xf1\x6a\xbf\xc1\x36\x9b\xcd\xc8\x75\xc9\xa6\xd5\xbd\x03\xdc\x71\x03\x70\xc7\xf5\x65\x95\x3f\x1e\x23\xb1\x66\x5c\x0a\xc4\x71\x85\x39\x9c\x1e\x20\x5a\x75\x7b\xc6\x1f\x67\x75\x5b\x91\xea\x02\xaf\xc0\xb1\xd0\x19\x35\xe0\x0c\x17\x8e\x29\xca\x86\xf5\x78\x8c\x1a\xa6\x2b\x7f\xfb\x47\x36\x24\xe0\xd9\x39\x2e\xfc\x7c\xea\xde\x8b\x0e\x1e\x63\x74\xa9\x00\x9f\xd1\x71\x0f\x07\x1e\x5c\x06\x81\xb1\x83\xfb\x8a\x8c\x1d\x98\x30\x58\x06\xf0\xcb\x62\x63\x07\x97\x81\x27\x7d\xd0\x15\x1d\x2b\x76\x2f\xf3\x89\x2e\x2d\x9f\x90\x3a\xca\x8e\x4d\x09\x3d\x6f\xeb\xda\xd3\xd9\xc6\x8f\x56\x78\xfd\xd6\xbc\x97\x30\xa8\xe8\x4c\x4e\xd2\x05\xb9\x85\xce\x57\xfd\xaf\x98\xe6\x4b\x03\x2c\x1e\x74\x98\x72\x59\xf4\xe7\xfe\xac\xef\x72\x4f\x6e\xe1\x09\xe9\x3e\xdd\x5b\x10\x95\x64\x75\x4b\x87\x7a\xc7\xc6\x6f\x3f\x5f\x6e\x00\xd8\x8f\xcf\xf4\x50\x9b\x75\xbb\x82\x6d\xba\xc7\xb8\xb4\x9f\x3d\x0a\x7f\xe5\xbb\xff\xdf\xd6\xa4\xc7\x90\xd8\x03\xec\x3f\x9c\x48\xca\x3d\x61\xf7\x4f\x1e\x00\x3b\x5e\xad\xff\xf4\x35\xa3\x11\xe5\xda\x35\x0d\xf5\xf5\x3a\x3e\x47\x29\x55\xe3\x31\x3a\x73\xef\x1c\xc2\xcb\xe5\x73\xc6\xd1\x8c\xad\xd6\x2d\x54\x52\x89\x28\x1a\xf7\x0b\x44\x1f\x2d\x49\xbd\x16\x68\xda\xd2\xba\x42\xca\x7e\x02\x25\xa0\x5a\xe8\xba\x8a\xd1\x8d\xf0\x10\x46\x54\xaa\xd2\x77\xd2\xaf\x1f\xd7\xb5\xda\x0e\x8e\xe0\x55\x49\x7d\xde\x21\x02\x70\xba\x44\x4c\xf4\x4e\x85\x2b\x62\x99\x29\xa5\xc2\xa6\x70\x88\xca\x7b\xc5\x27\x0d\x2b\x22\xa3\x4d\x04\x7e\xed\x1f\xcb\xed\x38\xb8\xe9\x3c\xb1\x81\x50\x77\xf2\xb8\x91\x22\x35\x04\xe3\xcd\x73\x17\x16\xfc\xe8\x9a\x14\x0b\xe3\x2b\x34\xf4\xbb\x51\xc7\x51\xfb\xf7\x0a\xc8\x87\x42\xee\x2a\xd2\xa5\xe5\x75\x9f\x87\xc7\xe8\xe0\xa0\x63\x23\x54\x54\x52\x46\x08\xe1\x72\x70\x4d\xb6\x36\xa0\x0e\x1d\x73\x86\xfc\xfc\xa0\xfb\x2f\xc3\x71\x0a\xa0\x67\xb9\x88\x6f\xc2\x50\x16\xea\x64\x06\xcd\x82\xa4\x72\x26\xb0\x12\x50\x6b\x5a\x27\xe5\x0e\x83\x3c\xd3\x20\x48\xd6\x91\xd1\x6c\xf3\x79\x3b\xfc\x22\x0d\x7a\x7c\xe0\x13\x67\x21\x73\x3d\xc8\x11\x0e\xd3\x67\xe3\x69\x05\x27\x29\xbe\x42\xa7\x2d\x58\xa1\x17\x5a\x3f\x11\xbb\x9a\xd2\xc6\x55\x5c\xf0\x59\xb5\x50\xcf\x53\x5f\x2a\xb2\xee\x41\x70\xef\x65\x3c\x46\xbf\xb8\x03\xb7\x7f\xd3\x3f\xfe\x52\xa2\x41\x74\xa0\x83\x7e\xdb\xc4\x6e\x12\x90\xc0\x5d\x8c\x72\xb9\xcb\x13\xf4\x6f\x07\x87\x11\x65\x03\x09\x29\x92\x38\x58\xb1\x00\x74\x89\xb3\xdc\x6b\x33\x42\x10\xa9\xc3\xe6\x7b\x72\x00\xf4\x10\xa3\x94\x11\x94\xea\xde\x97\x0f\xc2\x45\xb2\x25\xfb\x30\x70\xac\x64\xa8\xd2\xee\x2b\xc2\x0d\xd2\xfb\x2f\x12\xf4\x57\x52\x21\xd8\x2f\x73\xe5\x15\x6e\xd1\x3d\x8b\xa7\x80\x1b\x23\x2c\x98\xb2\x23\xf5\xb3\x0d\xad\xe4\xf2\xf8\x3f\x9e\xfc\xf1\xa0\x48\x4d\xdd\x11\x5e\x60\x7a\x03\xae\x30\xae\xa1\x70\xa0\xd0\x79\xa1\x2d\xaf\x87\x3a\x7b\xf1\x94\xd4\x74\x35\x41\x07\xdf\x1c\x74\xbe\x51\x94\x4d\xd4\x67\x9f\x66\x6f\xda\xf7\x88\x6f\x90\x86\x7a\xe7\x79\xff\xf1\x3f\xbe\xfb\x47\xcc\x1b\xf6\xf8\xdb\xcc\xd9\xd8\x1a\x5f\x3e\xdf\x31\x40\xb8\xa7\xb9\x3e\xeb\x9e\x2b\x40\xd1\x61\x0b\x66\x60\xa1\x86\xc8\x0d\xe3\xd7\x68\xad\x80\xc2\x53\x6f\xba\x4e\xb5\xc9\xcf\x36\x97\xc7\x2a\x8a\x73\x21\xed\x44\x4a\xd3\x21\xc6\xcb\xbc\x3f\xd8\x41\x24\x3a\x47\xee\x68\xee\x42\x63\x34\x38\x44\xc7\xc7\xe8\x40\x12\x21\x1b\x22\x0f\xd2\x6b\x4a\x01\x89\x5a\x5e\x5b\x52\xfa\x11\x3d\x75\x1d\x84\xdd\x3b\x5e\xcb\xeb\x64\x63\x08\x1e\xce\x87\xf2\xc7\xfa\x5d\x79\xe5\x6c\xe1\x1a\xe1\x56\x42\x98\x52\x6f\x03\xf1\xad\x4b\xdb\x0d\x4a\x7f\xeb\x9b\x97\x6c\xd3\x10\xae\x68\xbb\x26\x7c\xce\xf8\x2a\xa8\x95\x17\xbd\x53\x6d\xde\x73\x57\x5d\x2c\x14\xfb\x90\x3c\x56\x43\xcb\xf8\xdd\xaf\x21\x3c\x35\xae\x43\x5b\xf1\x5b\xcf\x0f\x50\x7a\xb1\x53\x4f\x22\xbe\xab\xa9\xc3\xd6\xfa\xf9\x3e\x1d\xdf\x32\x75\xe0\xe1\x2b\x53\xea\x27\xe2\x23\xfb\xbe\xa2\x30\x0f\x2c\xfa\x27\xc8\x2a\xef\x5c\x52\xfb\xa8\xbb\x3e\xd1\x13\x2b\xcc\xa5\x7b\x8a\x31\x00\x17\x42\x0e\xcb\x9e\x5a\x53\x73\x82\x4e\x42\xb0\x2b\xf3\x2e\xa8\x4b\x59\x97\x54\xd6\xc4\xbe\xa3\x46\x39\x4a\xcd\xd3\xf2\x87\x7c\xc4\xab\xb5\x72\x37\x3e\x41\x62\x15\xe1\xc8\x78\xfa\x07\x7f\x21\x37\xb4\x41\xa7\x2d\xc7\x8d\x3c\x18\xba\xac\xc1\x09\x3a\xf8\xff\xd1\x9c\x10\x79\xf0\x79\x37\x74\xfb\x19\x4c\xc9\x0c\xb7\x82\xa0\x0d\xd4\x80\xd7\xf5\xab\xc2\x01\x14\x3f\x35\x4c\xa2\xef\x1e\xfd\x9f\x80\x3f\x3b\xea\x9f\xc6\x05\x60\xdd\x0a\x05\x55\x11\x51\xb9\x20\xbc\x5f\xe1\x81\xa7\xaa\xb3\x9b\xf5\x7f\x3f\x1f\xda\x2b\xae\xf9\x0d\x57\xf3\xe4\x66\x38\x6a\xd4\x04\x2a\x06\x92\x8d\xa9\x06\x97\x8c\x63\xff\x95\xdf\xfb\x6a\xc8\x06\xee\x42\x9b\xae\xc6\x84\xd8\x51\xde\xf9\xfc\x34\x7c\xd5\x8d\x42\xfd\x78\xf0\x79\xf0\x02\xd3\xf8\x12\x7d\xf8\x9e\xe9\x5b\x7b\x31\xbb\xf0\x65\x67\x15\x61\xf7\x5a\x98\x26\x80\xbe\x06\x19\x63\x3b\x44\xa5\x99\xa6\x53\xb8\x0c\x5e\x23\x8d\xdf\x86\xef\x79\x91\x74\xed\xde\xb0\x04\x42\x7d\xf0\x94\x2a\xfb\x87\xaa\x51\x87\xe6\xd7\x0c\x00\xcf\x0d\x47\x12\x7e\x09\x8f\x5c\x1b\xdd\x10\x89\x75\xd8\xdb\x20\xad\x0c\x2c\x27\x7e\x89\x74\xdf\x42\xae\x75\x9c\x5f\xb9\x07\x60\x4d\xfb\x2a\x76\xbb\xd8\x3f\xae\x4f\x67\x5e\x73\xce\xde\x18\xf7\xfc\x7e\x49\x92\xb7\x6f\x03\x06\xdf\xc1\xe1\x21\x36\x01\x83\x2b\x72\xf9\x22\xbd\x1e\xbe\x7e\x16\xb6\x9f\x6f\xf5\xc5\xff\x2f\x61\xdd\xcb\xae\xe7\x79\xbb\x19\x37\x91\xae\x4b\x22\xb5\xc5\x5f\x60\xef\x4b\x22\x2d\x77\x1b\x2f\x21\xec\x30\x74\x85\x4a\xdd\x21\xa7\x7e\x70\x5b\xc7\x54\x77\x73\x7a\xc4\x34\xe0\xff\x17\xe7\x09\xf5\x38\x0d\x9b\x3f\x3d\x7a\x68\x70\xb8\x35\x9f\xeb\xb7\x10\x34\x57\x5b\x03\xde\xd5\x2c\xd4\x2f\xa0\xc3\x33\xdd\x11\xf3\x46\x82\xe2\x04\x93\xf9\xe2\x87\xfa\xe1\x83\x19\x6e\xe0\x99\x7d\x25\xe6\x4b\x56\x09\xc4\x9a\x9e\x87\xe6\x02\x86\x37\x64\xed\xa8\xda\xb8\x65\x2d\xda\xe0\xec\xb9\xe8\x05\x91\x09\xee\xbb\xc4\xe3\x24\x9e\xa9\x1d\xc4\x85\x61\xcc\xc0\x3a\x06\x93\x6e\xe7\x76\x4e\xe4\xe3\x9a\x89\x1d\x4f\xf6\x58\x1a\x27\x05\x5f\x27\x50\x45\xf5\xee\x65\x5f\xcd\xdb\x1e\x7a\x18\xfd\x2c\xaf\x7d\x9b\x2f\x7a\x2f\x24\xad\xf9\x1a\xfe\x95\x72\xe5\x8f\x19\x35\xa3\x17\x5a\x0c\x67\x51\x99\xf6\x53\x5b\xf7\x2f\xdf\xfc\x12\x5d\xbe\xd7\x4f\x2d\x26\x90\x4c\x3d\x72\x38\x5d\x4c\xab\xa9\x18\xe8\x7b\x17\x9f\x8d\x59\x5a\x48\xcc\xe5\x85\x12\x07\xb8\xb8\x0c\x06\x3c\xe8\x3f\x2d\x87\xf6\x42\x33\x94\x4f\x36\xfa\x26\xac\x37\x6c\x1e\x8a\x37\xad\x74\x72\xa5\xda\xb3\x70\xa3\xef\xfd\x62\x99\xbe\x93\x60\x1f\x2c\xa6\x11\x93\xc0\x73\x92\x8a\x1c\x56\x45\x46\x10\xf7\x51\xdd\x7b\x75\xb2\x4c\x16\xcf\x7a\xd0\x63\x9b\xbc\x6c\xaa\x12\x3d\xf4\x66\xa6\x4c\x4e\xbd\xd3\xb1\x86\xa4\x3d\x13\x92\xc5\xd6\x6a\x11\xd1\x90\x77\x23\x3d\x18\x68\xe7\xf8\xfb\x7e\xd3\xc2\x4d\xf0\x52\x61\x4a\xaa\x41\x43\x36\x2f\xc2\xfe\xfb\xa9\xdd\xf8\x26\x65\xdc\xb4\xdf\x20\x08\xde\x81\x30\x46\x80\xb5\x0f\x60\x17\x74\x3f\xbf\xc6\xeb\xd8\xbd\xc9\x58\x63\x4a\xf4\x56\x66\x5f\x38\x8a\x9e\x46\xf0\x80\xf2\x7b\xe5\x29\x26\xe0\xa1\x58\x74\xb2\xe2\x14\xe9\xe3\x37\x02\xdf\x90\xa7\x3f\x64\x4f\xdf\x04\x9b\x74\xfc\xd3\xe0\x70\x88\x24\xbb\xed\xab\x38\x89\x44\x16\xde\xcb\x40\x0a\x11\x81\x36\x4b\x3a\x0b\xa7\x1b\xde\xb6\x9f\x92\x9a\x35\x0b\xd1\xad\xc9\x23\x23\x69\x5e\xd8\x33\x2e\xce\xae\xba\x5c\x8f\xbe\xb7\x18\x6e\x81\x4e\x0c\xb3\x77\xdf\xba\xd5\x3b\x5d\xeb\xfb\x7a\x2a\xd4\xe9\x87\x9e\x37\x4b\xfa\x5e\x64\xc8\x6a\xfc\xac\x7b\xdf\x43\x8e\xdf\x5f\xd2\xce\xf3\x6f\xf0\x02\x13\xba\x8f\x57\x98\x12\xbc\xfb\x9f\x79\x99\x6b\x5b\x6f\x9f\xf7\x5d\x6e\xf1\xf0\x79\x2a\xdb\xa9\xf7\x11\x88\x4f\x5c\x95\xa8\x2b\xc8\x10\x28\x92\x42\xa8\x21\x21\xb0\x23\xd2\x97\x3b\x25\xc5\x27\x5d\xc2\xcf\x3d\x05\x29\xf6\x74\xf7\x03\x82\xed\xeb\xf4\x87\x6b\xad\xe6\x68\x43\x73\x0e\x71\x1b\x06\xd8\x11\x05\xf8\x67\x96\x04\x1b\x49\x4d\x04\xa2\x4c\x20\x7d\x68\xe6\xc8\x93\x47\x2f\x4a\x2c\x7e\x41\x36\x9a\x24\x31\x83\xef\x66\xc3\x78\xb1\x2c\x18\x48\x4c\xb5\xa1\xba\xc2\x4c\x9e\x1e\x99\xdd\xcd\xb4\xee\x8c\x59\xda\x2a\xe1\xf0\x30\x47\x23\x09\x9f\x63\x1b\x9f\x6c\x05\xe1\xc2\x38\x35\x42\x1a\xb6\x34\x3a\x38\x48\x81\xc5\x36\x96\x08\xde\x53\x5d\xb3\x0d\x62\x72\x09\x25\xa6\x18\x32\x6f\xc7\xb8\xcd\x9e\x36\x8e\xc1\x83\x17\x66\xd0\xb9\x44\xb8\x16\xcc\x86\x42\xe7\x8c\x23\x4e\x70\x65\xcd\x54\x63\xa2\x9e\x9f\x8a\xf0\x05\x22\x23\xd3\x01\x9c\x3c\x9a\xe9\xa7\x54\xce\x3f\x4e\x9e\xec\xd0\xf5\x92\xa2\xe7\x6e\xf2\xf4\xdf\x8b\xb3\xab\xc3\xdc\xe7\xc1\x72\xb6\x3c\x0d\xbb\x8a\xfe\xd4\xe1\x1c\xc4\x42\x29\x4e\xff\xdc\xc1\x77\x7f\xfa\xd0\xe1\x59\x5d\x9c\x5d\x0d\x7c\x59\x3c\xe5\x56\x95\x70\xec\xe8\x6c\x5e\x18\x8d\xfb\xbb\xc0\xfa\xd9\x55\x5a\x51\xc5\x97\x20\xe3\x44\xb4\xb5\x8d\x4a\x34\xb4\x1e\x6a\xa6\xa9\x82\xd7\xe5\x5b\xde\x90\xca\x6f\xd0\x29\x20\xf3\x72\xfa\x54\xfb\x08\x02\x4e\x40\x35\xeb\x61\xbe\x68\x57\xa6\x88\x19\xf8\xa0\x26\xda\x1d\xbb\x8a\x4c\xa4\xde\xa3\xfa\x0c\x0c\x62\xc7\xe0\x1f\x1e\xa2\xff\xf9\x1f\xfb\xd5\x33\xa8\x82\x77\x8c\x68\x75\x38\x41\x59\x3f\xf5\x49\x7c\xc9\xd4\xc2\x48\xed\x91\x7c\x8a\x4a\x76\x68\x33\x63\x9c\x93\x59\xa7\xc3\x99\x0a\x5d\x20\x3d\x54\x07\x20\xc2\x73\x01\x72\x43\xf8\x16\xa4\x0f\x6d\x96\x90\x9a\x2a\xa0\x16\xa3\x0b\xf5\x83\x39\x2d\x74\x18\xa5\x31\xd2\x64\xf4\x2b\x58\xd7\xb8\xc1\x0b\x62\xbe\xbf\x38\xbb\xba\xec\x8c\xf5\x87\xf7\x20\x3a\xf2\xf3\xf3\x1a\x8f\x2e\xb3\x3f\xff\xc9\xe5\xee\xe7\x3f\xe5\x80\x77\x65\xef\xa3\x4f\xd1\x91\x42\x90\x94\xe6\x8b\x3d\xce\x58\x33\x67\x7c\x05\xbe\x19\xc8\x5c\xd8\xe3\xe2\xec\x2a\x25\xef\x76\x4d\x4c\xb8\xc3\xbe\x8f\x75\x7e\x9a\xc4\x9c\xec\x2b\x38\x6c\xd3\x90\x4a\x91\x7d\x82\x7e\xf8\xa4\x1b\x17\x0a\x5e\x5e\x9c\x5d\xa5\x8f\xdc\x14\x6b\x0f\x3b\x68\xe8\xe9\x51\x98\x1f\x12\x6f\x15\x0a\xb5\x8a\xe3\x0d\xe2\x64\xc5\x6e\xc0\x47\xb5\x33\x35\x0f\x97\x92\x48\xf3\x36\x15\xd2\xed\xa8\x13\x9c\x19\xae\xeb\x4e\x6f\x3b\xb4\x67\xec\x58\x45\x27\x22\xae\x1f\x08\xe1\x48\xfb\xe2\x9b\x46\xad\x2a\x21\xd4\x31\x2a\xb7\xe6\x4a\x51\x95\x02\x0c\x58\x3c\xff\x80\xad\xc5\xad\xc9\x74\x98\xfd\x65\x10\xa2\xef\x1f\x7e\x2e\x0e\x90\xc7\x72\x9f\x6b\x69\x6f\xe6\x3a\x1e\x33\x5b\x92\xd9\x35\xa2\x73\x54\x78\xd3\x06\xe2\xa4\x73\x69\xcf\x66\x63\x05\xec\x91\x88\x6d\x12\x3a\xb7\x86\xcc\x2b\x36\xbb\xa6\xcd\x62\x44\xc5\x2b\x80\xad\xcc\xe9\x77\x64\x0e\xf6\x74\xe9\xbc\xd2\x98\x31\x46\x2b\x59\xf8\x93\xa0\xfc\xa3\xc6\x31\x3b\xaa\x4c\xa7\xf8\x0e\x96\x49\xdb\x85\xf3\x22\xfb\x64\xd3\xd4\x8b\xf0\xf4\x28\xe1\xd8\x91\x5e\x71\x9d\x30\x14\xcc\x38\x57\xa8\xde\x0c\xeb\xc2\x3f\x7e\x93\xc9\x9f\x75\xd4\xae\x98\x4b\x21\x06\xf2\xb3\x5d\x73\x45\x72\x40\x12\x9e\x9a\xd4\x06\xa3\xc3\x95\x3f\x1b\x61\x7d\x55\xf3\xb0\x37\xd0\xa7\x8d\x67\x18\xd7\xb1\x99\x86\x5a\xb6\xa3\xe2\x9f\x0a\x4f\x43\x5a\xf4\x1c\x38\x81\x56\x6d\x2d\xe9\xba\x36\x7c\x2d\xee\xe3\x89\x47\x5a\x89\x09\x3a\x69\x10\xe6\x1c\x83\x06\x54\xc6\x90\x64\x6e\xd0\x5d\xae\x42\x9f\x29\xa2\x5c\x13\xbf\x06\xf1\xc3\x6d\x5d\x6e\x4d\xcf\x27\x26\xed\xaa\xfb\x11\xeb\xc8\x76\x0a\x56\x59\x78\x0b\xe8\x76\xf7\xaf\xfc\x31\x8d\xb6\xae\x75\x4e\x61\x07\xcb\x2b\x25\x0f\x23\xef\x7e\x5f\xb1\x8f\x9f\xce\x25\xe1\x3a\xe8\xcb\x59\xbb\x58\x1a\x9b\x48\xaf\xb9\xd3\xe7\xb0\xe8\xbb\x64\x50\x59\xbd\xb4\x52\x42\xa1\xfa\xe7\xba\x21\x41\xb6\xe3\x5d\xc6\xa2\x86\xa4\xd5\x61\x5f\x6e\xc3\xfe\x32\x22\xca\x42\x92\xa0\xd6\x21\x2e\xd6\x19\x90\xf8\x1a\x1c\x20\xa3\x14\x14\xa5\x70\x55\x85\xbb\x98\x07\x15\x7a\xf1\x7d\x62\xa2\xa5\xc4\x90\xc2\xee\x62\x7a\xc7\x32\xc3\x92\x2a\xd7\x37\x7d\x5c\xb9\x97\x1f\x90\x2c\x53\xc6\x8d\xc6\x71\x0a\x70\xd0\x5a\x16\x14\x80\x0d\x25\x1b\x54\x57\xf8\x9a\x20\xd1\xf2\xcc\x6c\xa6\xd2\x7a\x68\xc6\xce\xcc\x4f\x10\x22\xfd\x6d\x87\x78\x88\x7e\x08\x0c\xfb\xd2\x03\xe6\x7e\xf3\x7d\x24\x50\x52\x6d\x5c\x17\xdf\x86\x8a\xf5\x5a\xe5\x66\x00\x4e\xaa\xca\x05\x1e\xcc\x0e\xae\x97\xaf\xb0\x64\x16\x22\xab\xab\xab\xf2\x3e\xf3\x9e\x56\x1f\x1c\xf6\xd9\x58\x6f\x9a\x7a\x6b\xea\x1d\x3b\x3e\xd2\x65\x8f\xe9\x3c\xb5\x8b\x32\xfa\x81\xaf\x88\x1b\x6b\x24\x3f\x12\xc5\x53\x75\x3a\x2f\xed\x26\xe6\xd8\xa9\x20\x8f\x80\x8d\x75\xf9\xd4\xde\xa4\x76\x25\xc9\xf6\xd8\x93\xf2\xed\xda\xd4\x51\xd6\x6f\x9f\x81\xd6\x62\x75\x95\x9a\x45\x07\xc6\xf6\x8a\xdd\x0c\x53\xa5\xd9\x51\xb6\x6f\xaf\x3a\x4d\x24\x30\x7f\x2f\x17\x9b\xc7\x8c\xb5\x3b\x96\x86\xdb\x0c\xe5\x05\x22\x78\xb6\xb4\x7b\x04\xa9\xb4\xa9\xad\x5d\x7b\x2a\x4a\xfa\xed\xcb\xdd\xe4\x82\xf9\x06\x67\x75\xc1\x56\x68\x63\x03\x89\xb8\x67\xbc\x07\xf9\xd6\x86\x9f\xa1\x16\x03\xb8\xdb\xf9\xa9\x7c\x41\xa3\x43\xd7\x4c\x7d\x84\x34\xd1\x24\x49\x0f\x91\x94\x4e\xbf\x26\x10\x7f\xec\xc8\xf6\x36\xd5\x3e\x13\x55\x6e\x70\x2c\x2a\xf3\x6b\xb2\xcd\xb4\xf9\x6e\x7e\xea\xd8\x74\x2c\xf7\x24\xda\x3d\xe6\x1d\x65\x73\x3a\x9e\xd1\x4c\x49\x2b\xad\xb7\x51\xd5\x72\x9d\xdc\x46\x1b\x24\xc8\x8c\xd9\xf4\x41\xd5\x47\xc4\x6e\x84\x2b\xf3\xaf\xab\x0c\x63\xe9\x3a\x67\x7c\xa2\x7a\x07\x31\x8a\xa1\x6b\x39\x41\x3f\x9d\xd1\x8f\xdf\xfd\xa9\x50\x65\xff\x2b\x99\xbc\xb4\xda\xc7\xd4\x55\x08\x7f\xb1\x99\x3b\x1e\xa3\x35\x16\x22\x74\x85\xb4\x22\xad\xb5\xfb\x90\x27\xcf\x20\x7b\xf4\x6b\x72\x29\x20\x3f\xc4\x1c\xcc\x52\xfb\xba\xe3\x14\xcf\xae\xbf\x40\x01\x27\xae\x8b\xc2\x41\x39\x3c\xcd\x5c\x4e\x9c\x7e\x0e\x17\xc4\xfe\x2b\x99\xd4\x6d\xf4\xd2\xab\x80\xc1\x42\xc1\x36\xac\x26\xba\x79\x2d\x04\xa5\xf6\x49\x2d\xbb\xa2\x68\x8e\x01\x4b\x6a\x39\xb5\x75\xae\xcd\xa5\x38\x52\x75\xb3\xa2\x43\x30\xb6\x4c\xf7\x62\xc9\x3e\xe3\x50\x0b\xd5\x92\xac\x6e\x65\x04\xba\x87\x58\xdd\x8e\x53\x5a\x88\xb0\x47\x57\xb0\xa1\x6d\x7a\xc4\x5a\x4a\xa5\x35\x40\xa5\x9a\x76\x71\xc2\x57\xc2\x23\xba\x8d\xda\x05\xdc\x13\x91\xd3\x56\xd0\x46\xed\x9f\x35\x5b\xd0\x19\xc2\x1c\xde\x02\x32\xc0\x48\x4d\x17\x54\xd7\xd1\xc9\xe8\xad\x9b\x84\x01\xca\xdf\x99\xa8\xbf\x2d\x8a\x7a\x4c\x51\x9f\x66\x24\x97\x04\x42\xc3\x8a\xbb\x33\x81\x0e\xd3\xa9\xd4\x8f\x2e\xd9\xc4\x85\x9b\xee\x64\x8a\x75\xad\x72\xac\x0b\xee\x20\xf7\x3f\x45\x3c\x58\x92\xfc\xdb\xc8\xb7\xc6\xcf\x48\xb8\x36\x0b\xb7\x08\x73\x62\xd8\xad\xce\x6f\x61\x04\x48\x24\x7e\xe7\xed\x64\xd9\x8e\xfc\x65\xe2\x1c\x70\x7c\xf8\x78\x06\xea\x11\x5e\x6d\xbc\xf8\x1c\xb6\x92\x35\xa4\x36\x58\xec\x62\xc4\x7d\x56\x59\x7e\xf2\xd0\xf3\x50\xb1\x17\x1d\x65\xd1\x74\xad\xae\x8d\x93\xd9\x08\x04\xc2\xe6\xbb\x28\x78\x0e\xf9\x76\xee\xad\x81\xee\x70\x62\x94\x6c\xa7\x43\x9c\x70\x30\xc5\x09\xae\x90\xb2\x47\xa3\x0b\x54\xdd\x31\x94\x52\xa8\x53\x32\x10\xaf\x38\x69\x6b\xce\x76\x66\x2c\x15\xb2\xe9\xe2\xf4\x8b\x28\x16\xcd\xa0\x78\xb6\xb2\x8e\x99\xf2\x64\x82\x9c\x7f\x33\x1d\xb8\x50\x81\xab\xe4\x4c\xf7\xe2\xec\x6a\x18\xc2\x51\x9a\x06\x37\xca\x5c\x83\x2b\x4c\xf1\xa5\xee\x11\x7a\x5b\x13\x2c\x20\xcf\x26\x3a\xed\x51\xc0\xe3\x88\x2c\xae\x9c\x02\x73\xaf\xf7\xa2\xbe\x6c\xbe\xfd\xce\x9c\xca\x6c\x33\xf8\xa6\xa0\x5e\xb0\x28\x83\xe8\xce\x73\x8b\x66\xc4\xf7\x64\xab\x7d\x99\x48\xdf\x33\x6d\xaa\x38\x81\x13\x36\x16\x2a\x47\xd1\xd6\xa7\xb4\x8a\xea\xa7\x73\xdd\x74\x60\xdc\x31\x62\x94\xfd\x10\xbf\x81\x14\x2d\x24\xe3\xb0\x8e\x66\x99\xed\x2b\xf2\x8c\xeb\x94\x17\x8d\x4d\x72\xbf\x48\xe9\xf8\x6d\xa2\x04\x5c\x5a\x9a\x4e\x1e\x66\xdc\x8c\x6c\x42\x8e\xd8\xbc\xdd\xc1\x04\x09\xaf\xd6\xa6\x66\x79\x7c\xf3\xa2\xc8\x0d\xff\x48\x51\xba\xdb\x01\x66\xe8\xd6\x7b\xf6\xeb\xf4\xea\xa1\xbc\x20\x99\xa3\xe3\x4e\xb6\xc5\xad\x5c\xee\xe6\xdd\x44\x06\x14\x48\x2c\x1e\x46\x98\xc6\x9a\x1e\x91\x5a\x94\x52\x61\x0b\x97\xbb\x51\xd7\xce\x10\x53\xea\xaf\x94\x6c\xec\xb9\x5a\x42\xaf\xb0\x76\x61\xf9\x20\x2e\x7d\xab\xde\x1f\x84\x7c\x11\x5d\xf2\x9b\xd6\x52\x13\x42\xf1\xcd\xb1\x3e\x8a\xe9\x23\x8f\xa1\x42\xd0\x49\x29\x90\x3d\xa6\xd1\xa1\x4c\xce\xe7\xca\xe6\xe5\xb8\x11\x58\xbb\xf2\xc6\x6c\x11\x69\x30\x49\xc7\x45\x22\xd9\x3d\xa9\x6b\xcb\xa3\x22\x08\x82\x28\x21\x55\x4e\x18\x27\x3a\x99\xc1\x3d\xa8\xf5\x30\xec\xfc\xba\x9d\x2d\x51\x4d\xaf\x09\xda\x28\xcb\xee\x14\xaf\x28\x6e\xd0\x2b\x5a\xd7\x98\x57\x31\x16\x4b\xb6\xd6\x79\xaa\x51\x10\x95\x13\xbc\x72\xd7\xbb\x48\x23\x29\x27\x68\x46\x25\xe8\x92\x3f\xb3\x56\x48\x9b\x08\x81\x62\x81\xeb\x7a\xcd\xcb\xda\x6b\xf1\xa2\x3e\x88\xf9\xcc\x9f\x5d\x1f\xdd\xcf\xc7\x82\x4b\xaf\x87\x1c\xd5\xe4\x86\xd4\xee\xfc\x1f\x55\x64\x4e\x9b\x20\x31\xf4\x1e\x31\xb0\xf0\x8a\x45\xd9\xe2\x3c\x9d\x61\x16\x44\xb1\xf1\x32\xb3\xa7\x58\x58\x58\x9f\xdb\xab\xed\x41\xc4\xf7\x1c\x82\x33\x7a\x13\x7c\x74\x0f\xec\xbf\x01\xbd\xa7\xb6\x95\x25\xbe\x21\x71\x58\xce\x75\x36\x9d\x86\xde\xaa\xc5\x53\x38\x61\xb2\x85\x38\x2d\xb4\x30\x3d\xc6\xf3\xb7\xc8\x5e\xe8\xf7\x49\x45\x59\x3d\xba\xbd\x0f\x5d\xd2\x6c\xa3\xbc\x32\xa0\x39\x3d\xf1\xfc\xb3\x20\xf2\xa4\xae\xf5\x5d\x40\xb7\x89\x1b\x81\xd2\x35\xb3\x68\x63\xcd\x9b\x10\xe5\x68\xbf\x08\xcc\xdd\xb8\x2f\xec\xef\x40\x45\x78\xd3\xce\x5c\x01\x8a\xe6\x1c\x20\xa0\x5f\xaa\x32\x38\xab\x6f\x3e\xe4\x73\xcb\xee\x5a\x8d\xa0\x5c\x82\xc8\xa7\x15\x16\x88\xc8\xa6\xe6\xf2\xfc\xd2\x5d\x1d\x7b\x1b\xce\xdd\x9a\x1b\x8f\x5d\xae\x47\xb8\xe9\x86\x39\xb2\x3e\xed\xc6\xe7\xc8\x52\x81\xa6\x44\x6d\xf8\x82\x60\x3e\x5b\x9a\x79\x17\xe8\x77\x15\x23\x84\xb0\xbd\x72\x2b\x99\xfd\x97\xcd\x4f\xb4\xb7\x80\x53\x12\x16\xab\x61\xb8\x7b\x1e\xe9\xcd\xc1\x67\x39\x5d\xdd\x63\xa8\xfa\x02\x9b\x06\xf1\xe1\xd9\x28\xaa\x1f\xd2\x49\x5f\x53\x39\x3d\x3c\x55\xed\x23\xb1\x85\xd2\xf1\x71\x2b\x00\x36\x92\x2b\x3f\x11\x62\xd2\xdd\xf9\xe5\xc7\x49\xf4\x5a\xc6\x81\xce\xcf\xb1\xd3\x64\xca\x96\x0c\x12\xd9\x3a\x3e\xb0\x23\x1c\xbc\x26\xab\xb5\xb2\x28\x7f\xe4\xf4\xd7\x5f\x6b\x4a\xc4\xc1\xd7\xe0\x87\x68\x60\x83\xfa\x95\xbd\xf8\xa3\x78\x40\xb7\x77\x96\xdb\x2e\x0e\xd2\xfd\x42\x3e\x7a\xb3\x07\xd7\xa4\xc5\xef\x6d\xbe\xb5\x41\x28\xb9\x0d\x1e\x72\xd0\x78\x8c\x4e\x59\xf3\x08\xe2\xc8\x33\x02\x09\x3e\x37\x84\xbb\x93\x20\x63\x01\x33\x6e\x10\x83\xe3\x9f\x1b\x5c\x07\x65\xcd\xe8\xdc\x15\x7b\x09\x72\x54\x33\x6e\x2c\xbb\x33\xea\x47\xc7\xa6\xef\x61\x8c\xe0\x41\xb3\x92\x19\x57\xaa\xcf\x93\xf3\xf7\xa5\x71\x02\x42\x9e\xd6\xa9\xc1\xd6\x69\xf1\xd1\x4a\x7b\xfd\x30\x5e\x4c\x2a\x52\xde\x1f\xf5\xf1\x4f\x90\xbe\xef\xd9\xc7\xa5\xef\xdf\x4a\x9b\xfc\x57\x4b\xf8\xd6\x4e\xc0\x5c\x08\x37\xba\xd8\xeb\x40\x7f\x99\x9d\x42\xda\x96\x8e\xe5\xe2\x29\x6b\xdd\x05\xc8\x94\x61\x0c\xc8\xec\x22\x59\x38\x5e\xc8\x1a\x3e\xf3\x26\xba\x43\x75\x5c\xb2\xf6\x8b\x55\x93\xba\x57\x2f\x1c\x32\x7a\xf9\xb6\x3b\xb9\xd6\xd7\x57\x89\x16\x15\x12\xc8\xff\x09\x16\xb5\x74\xfb\x36\x5e\x9b\xb0\x74\x8c\x5b\x9b\x5b\x0b\xac\xf6\x5d\x0b\x62\x9a\x6c\xc1\xc6\x4b\xb6\xab\xfa\x0c\x9e\xd5\x2b\x92\xdc\xdc\xad\x0a\x89\x6e\xee\x6b\xed\x4d\xf6\x7f\x24\xe1\x53\x5c\x15\x94\xe4\x36\x4e\xbc\x0e\x71\xfd\x42\xb7\x12\xfa\x1f\xbf\xc5\x4a\x08\x7f\x95\x2c\x5d\x8b\xf3\x53\xf1\x7c\x9b\xc9\x80\x8b\x50\x66\x6b\x81\xdc\xaa\x16\x76\xcb\xdb\xaf\xc9\x45\xd7\x65\xf2\x5b\xae\xcb\x49\x21\xc4\x1a\x00\xa3\x73\x65\xea\xc3\x21\x80\x18\xaa\xbd\x47\xe9\x1b\x3a\xb7\x17\x52\x0b\x6b\xe6\xe8\x32\x48\x0a\x34\xd9\x30\xec\xb7\x7f\xfc\x10\x2e\xdd\x0d\xe6\x7a\x7d\x84\xff\x1d\x1d\xa3\xf7\x1f\x62\xbf\x36\x89\x52\x5b\xdd\x6b\x57\x4c\xdf\x9a\x71\xfb\xbb\xd3\x47\x0e\x86\xfa\xd2\x86\xa3\x68\xbe\xe2\xc6\xfa\x2d\xc5\x58\xcc\x3b\xf9\xc7\xb6\x3b\x88\x67\x21\xa0\xe1\x33\xca\x6d\xb1\xac\x39\x6b\x9b\x6a\xe8\x7c\x7c\xa0\x6e\xd6\x4d\xcf\xdd\x14\xba\x19\xd8\x31\x12\x0d\x8c\x7a\x62\xe6\xf1\xa0\x5a\x08\xc2\x71\xc3\x8d\x60\xb7\x9c\x5c\x18\xdc\x0b\xa6\x85\xc1\xb4\x26\xcd\x42\x2e\x15\x41\x1e\xdf\x6d\xe7\xd1\xf0\xfa\x76\x19\xf0\x66\xce\x9b\xf0\x5a\x3b\x1c\x1f\x53\x01\x4f\xe3\x83\x49\x58\x3a\x13\x08\x54\xdf\x57\x54\x69\xa1\xe8\x58\x54\x4a\x96\xa1\x9e\x41\xa6\xc5\x4a\xc2\x70\x7f\x7a\xcc\xeb\x30\xf0\x20\x13\xda\x52\xf1\xd2\x5e\x7f\x95\x94\x93\x2a\x8a\x3b\xb3\x9a\x60\x93\x9e\x63\xef\x7e\x0b\x85\x01\x56\x34\x1a\xeb\x72\x39\x6c\x35\x65\x9d\xa6\xff\x00\x2e\xca\x6c\xa8\x20\x50\xf7\xa5\x31\xd9\x37\xe6\xb6\xd1\xa1\x9a\x00\xd7\xe3\x8e\x3a\x61\x9c\xcf\x83\x2e\x41\x8f\xa1\xd2\x47\x42\x6a\x57\x64\x05\x47\xb2\x7e\xd1\x87\x9d\xe0\xa6\xad\xbf\xac\x33\xc3\x0d\x6a\x18\x52\xfb\x0e\xe1\x68\x4a\xec\xfd\xef\x28\x2a\x7e\xaf\xac\x13\xa1\x72\x6f\xee\xee\x73\xb3\x52\x66\x91\xa0\x38\x89\x09\x9f\x65\x64\x03\xd5\xcd\x62\x7d\x9d\x32\xc1\xa0\xff\x86\xa8\x1e\xf0\x59\x98\xb8\x64\xfc\x0d\x41\xa4\xa9\x2b\x69\x5f\xfb\x28\xda\x93\x85\x94\xa7\x4b\x42\x2c\xce\x40\x80\x00\x61\x73\xf8\x4d\x45\x56\x93\x44\x87\xb2\x75\xab\x63\x3b\x38\xbc\x41\x63\xe6\x71\x68\x1d\x9d\x42\xfa\xb8\x53\xc5\x16\x82\x90\x58\xb6\xc5\xfc\x4f\xd3\x22\xd7\x65\x29\xd4\x73\xcf\x06\x1b\xbc\x43\x03\xa3\xfd\xfc\x26\x2a\x2e\x89\xd4\xb9\xf5\xfb\xcb\x66\x89\xdb\x5c\x6a\xfd\x48\xa1\x49\xe5\x23\xfb\xf7\xb0\x18\x3d\xb0\x55\x8e\x0a\x52\x02\xd5\x4a\xa1\x20\x44\x59\xce\x52\x11\xd3\x42\x9a\x88\xd7\x5b\x13\xce\x02\x5d\xe6\xb2\x2a\x7e\x0b\x03\xb4\x5b\x5a\xc0\xce\xb1\x64\x29\x0b\x8a\x5b\x8c\x4c\x8b\x5b\x99\x08\xd8\xe1\xde\x35\x78\x70\x7f\x23\xda\x1e\x0b\x8f\x98\x85\xc6\x86\x79\x57\x3f\xb8\x5a\x98\x84\x11\x77\xc4\x6e\xc2\x75\xc3\x68\x46\xb8\x5a\x2b\xab\x5b\x46\x09\x9d\xff\xb7\x2a\x49\x28\xcd\xcb\x24\xae\x0b\xe4\xc8\x06\x4e\xe8\x13\x11\xc0\xcd\x3c\xdd\xe2\x7b\x9e\x92\xeb\xd4\xa4\xb9\x07\x73\x67\x55\xfa\xce\x9e\xb2\x37\xed\xea\x35\x20\xfe\x96\xf0\xac\x60\x99\x1a\x03\xaf\x20\x5c\x1f\xa9\x4e\x7d\x94\x1b\xf5\xeb\x52\xa3\x86\xc3\x34\x94\x7e\x43\xcf\xeb\x46\x91\xe8\xc6\x3b\xa8\xc6\x45\xa9\x0a\x45\x68\x1e\xee\x55\xf6\xa1\xcc\xb9\xbd\xd5\x27\x7c\x17\x77\xf5\xcb\xae\xa3\x1f\x12\x12\xce\xd5\x6a\x6a\x9f\x29\xec\x98\x15\xfa\xed\x2c\xe1\x70\x38\xc9\x19\xa4\x7c\x0f\x5d\x17\xc9\xfc\x5a\x97\xd0\xef\x74\x01\xbd\xe3\xf2\x79\xdf\xec\xe1\x3f\xe5\x93\x95\xb0\x00\x42\x7a\x08\x21\x82\xdf\xfc\x29\x4b\x46\xad\xe8\x3a\xfa\x9e\xc7\x2f\x21\xe8\xbd\x0f\x61\x02\x5c\x07\x87\x93\xf7\x39\xdd\x3f\xfc\x13\xae\xeb\x8e\x65\xf5\x7f\xf7\x9f\x26\x79\x24\x9f\x6f\xcf\x4f\xe3\x50\x56\x5a\x15\x03\x8e\x81\xe5\xb6\x6f\xa7\xc9\xaa\xbf\x04\x1b\x4e\xa8\x06\x6e\xbb\x65\x94\x2b\x74\x84\x91\x8e\x68\x1e\x83\x52\xc9\x95\xc3\x49\xbe\x32\xbf\xfb\x85\x7f\x1f\x52\xe2\xc3\xc3\x84\x01\x20\x53\x4c\xbf\x5f\x04\x69\x3c\x7a\xe1\xf5\xb3\x72\x08\xca\xfb\x05\xbd\x7d\xfe\x6b\x57\x7d\x13\x97\x44\x10\x14\xae\x86\xb5\x36\x7b\x7d\x7e\x79\xb8\xb0\xdc\x7a\xb1\xec\xd7\xfa\xe2\xcf\x47\x07\x82\x36\x5f\x80\x57\x66\x22\x24\x10\x06\x56\xc1\xff\xfe\xd8\x21\x25\xd6\x03\xbf\x85\x2b\x7f\x2f\x99\x60\xa1\x4c\x80\x49\x21\x04\x73\x71\x9f\x92\x5a\xc1\xe6\x6a\xb4\x46\x51\xda\xd4\xef\x31\x89\xbd\xa0\x3e\xc8\x5a\x85\xd5\x33\xf3\x5f\xbb\x4b\xc9\x26\x77\xe6\xcb\x85\x98\x42\xe0\xc3\x1e\x60\x69\x46\x4b\xb9\xa4\xa0\x82\x66\x63\x72\x0f\x8f\xd1\xe3\x09\x3a\xb8\x88\x2b\xe6\x40\x64\x70\x66\x0a\x42\x98\x7b\x33\x7d\x35\x04\x81\xe7\x42\xd4\x15\x1f\xa6\x4b\x1a\x35\x36\x6f\x32\x47\x01\x57\xf7\xe3\xca\x3f\x3b\x91\x3d\xa2\x11\xd9\x76\x51\x0d\x87\x94\x53\xe2\xca\xcd\xaf\xf1\x5a\xa9\x79\x6f\xd2\xe3\x5a\xa9\x93\xad\x35\xd9\x2d\xc7\xb4\x42\x29\x7c\x0f\x2b\xca\x78\xfc\x79\x49\x1a\x73\xa3\xd6\xd8\x88\x09\x83\x29\xf6\xd4\x00\x87\xe8\x09\xf0\xaa\x75\x81\xe5\x32\x2c\x6a\x13\xe8\x0a\x08\x58\xac\xf0\x1a\x4d\xb7\xf6\x82\xd5\x50\xb9\x82\x2b\x52\xa9\xaf\x74\x65\x6e\x78\x3e\xa1\x59\x20\x36\x0f\x81\x5c\xea\x14\xcb\xb7\x3e\xd1\x31\x93\x23\xf5\xc1\xb3\x19\x11\x62\x60\x13\x8b\x0e\x35\xbf\xc6\xe6\xbb\xef\xe8\xb9\x4a\x73\xdf\xe7\x12\x19\x83\x19\xeb\x3a\x6e\x45\xb3\x39\xc9\x16\x35\xf3\x6c\xd7\x95\xce\x27\x82\x3b\x3a\x90\xa2\xae\x48\x46\x9b\xc5\xa8\x1f\xe5\x55\x6a\x04\x4e\x90\xad\x47\x51\x42\xd5\x98\xe4\x76\x27\xb7\x25\xf7\xb2\x62\x77\x22\x42\xf3\x25\xd4\x1c\x91\x74\xa5\x3c\xf1\xd0\x84\xa4\xc2\xda\x6f\x71\xf1\x2f\x73\x12\x43\x17\x4d\x54\x0b\xd4\xee\x24\x71\x2d\x2a\x6d\xeb\x63\x5d\x87\xb1\x31\x25\x53\x74\x59\x45\xbd\xdc\x4f\x7a\x68\xa0\x2b\xeb\xc6\xca\x32\x57\x48\xe3\x31\xfa\x2b\xe6\x14\x72\xa2\x04\xfd\x35\xbc\x83\x9a\xac\x9c\x56\x7e\xa2\x9f\xe8\xc9\x66\x6d\x48\xfe\xed\x1f\x27\x01\xa4\x7f\x55\x32\xfb\x1d\x55\x32\xcb\x9c\x7f\x5b\x1c\x59\xeb\xed\x74\xb3\x8e\x9a\xdb\xda\xcf\x1e\xe3\xe3\x00\xfd\x64\x73\x03\xb8\x76\x6f\x4b\x4a\x89\x75\xd5\x07\x2f\xe2\xd0\x85\x5b\x77\x45\xd1\x64\xbf\xca\x2b\x87\x07\x3c\x10\x75\xd4\x65\xa0\xdd\x8f\xae\x1a\xf4\x9d\x27\xb6\x47\xc1\xe6\x62\x14\xc3\xa5\x87\x82\x9a\xd3\x50\x1e\x29\xbb\xe7\x37\xab\xad\x19\x76\xbd\x65\x94\xa3\x83\x87\xbf\x2c\xda\x91\x24\xd4\x65\x9b\xc5\x7b\x80\xf0\xa1\x9b\xb8\x17\x5d\x3b\x62\x07\x91\x23\x65\xbf\x4f\xf0\xd4\x06\x07\x99\x2e\x19\x1c\xa8\xd6\x64\xdf\x68\x85\x29\x07\x46\x45\xf8\x52\x12\xa7\x2e\x26\xb9\xc7\xd2\x75\x96\x24\x75\x96\x4b\x16\x6b\xef\xd2\x77\x3d\x25\x49\x6f\x0f\x6c\xcf\xf2\xab\xda\x0e\xd3\xc6\xc5\xaa\x34\xc8\x7e\x2c\x88\x2e\xd2\x55\x19\xa6\x96\x9f\x5b\x8f\xa2\xe2\x2f\x71\x67\x27\xa7\xf4\x47\x71\xcb\x65\x56\x3b\xaa\x48\x9a\xd0\xae\x22\x72\xa4\x4e\x61\x84\xe0\x55\x26\xfb\x74\x4b\xfe\xa6\x94\x7b\xc9\x29\x18\xb4\xeb\xcd\x29\x3a\x47\x0f\xb5\x0e\xed\x9a\xda\xc8\x9e\xbc\xfc\x85\x6c\x07\x19\x62\xa5\x0a\x4e\x3b\xe0\x85\xaf\xaf\x65\xf0\x86\x46\x71\x3f\x2e\xd4\xb8\x34\x52\xee\x5a\x84\x0d\x3e\x77\xa9\x83\x4e\x3c\xde\x67\x63\x7f\xe8\xba\x76\x85\xab\xea\x8a\xed\xab\x25\x9c\x5d\x27\xd0\x93\x6e\xfb\xff\x8e\xca\xe2\x5f\xb2\x3f\xee\x13\xd5\xfe\x05\xfb\x22\x61\xfd\xcd\x85\xf4\xab\x4a\xa9\xbd\xce\x0d\xc5\x28\x95\xb3\x3f\xa7\xca\x00\xf7\x49\x68\xae\xeb\xc3\x83\x6e\x39\xbb\xb5\x80\x39\x83\xed\x36\x42\x19\x59\x73\x81\x80\x86\xbc\xf6\xaf\x72\xe3\xbf\xdf\x72\xe3\xfb\x44\xb6\x1e\x96\x4d\xbf\x48\x2a\xf4\x89\x11\x9a\xa0\x83\x50\x77\x5b\x35\x6b\xd4\x8d\x35\x11\xb4\xb1\xfa\x30\x8d\x7d\x15\x42\x56\xd9\x98\xd1\xeb\xa2\x79\xcd\xf0\x52\x7d\xbf\xd0\x95\xad\x48\x75\xc5\xcc\x0d\x4f\x0d\xfc\x6b\x15\x1f\xef\xae\xd5\x99\x4d\x0a\x1d\xa7\x4f\xba\xf6\xcb\x71\x47\xfb\xc4\xf3\xea\x82\x9a\xbb\x79\x4f\xf2\x30\xa0\x8d\x13\xdf\xd7\x5d\x38\x03\xce\xde\xc6\x83\x2b\x77\xb8\xb6\xef\xd6\x45\xd5\x78\xef\x7d\xd4\x07\xc5\xe5\x80\xe7\x91\x0c\x16\xc1\x73\x58\xc9\xe3\x34\x40\xb2\xf4\xa1\x8d\xc7\xf1\xcf\xee\x5a\x47\x4c\x71\xbd\x26\x36\x2d\xb6\xf8\x53\x5a\xad\xd5\x2d\x90\x7b\x2b\xec\x49\xfe\x9b\x7d\x8c\x29\xf9\x09\x72\x2b\x2e\xdb\xf5\xba\xde\x02\x8a\x91\xa2\x6d\xed\x23\x24\xf1\xcd\xbf\xb4\x4a\x59\x74\xc8\xa1\x1f\xb6\xf0\x1d\xc2\x37\x2d\xc2\xfb\x77\xba\x26\xd9\xd8\xc0\x1a\xa7\x75\x7e\x0f\x23\x4c\x5c\xf9\x44\x73\xd4\x34\xc3\x6b\xac\xeb\xb4\xb8\x6c\xe1\x42\x81\x86\x08\xaf\x9a\x36\xd7\x4f\xbf\xf9\x54\xae\x27\xfc\xf9\xfb\xc1\x58\x83\xce\x10\x19\x22\x89\xf9\x82\xc8\xbd\x71\x7d\x6b\xae\x8d\x80\x04\xf2\x3d\xe9\x95\x3d\xff\x11\x3d\xfa\xe1\x46\x36\x82\x00\x3f\x06\xa3\x82\xbe\x7a\x61\x78\xd1\xb3\x67\xe5\x6e\x39\x7e\x7e\xf0\xff\x02\x00\x00\xff\xff\xc1\xb0\x4e\xce\xdd\x0f\x01\x00" func topshotCdcBytes() ([]byte, error) { return bindataRead( @@ -133,7 +133,7 @@ func topshotCdc() (*asset, error) { } info := bindataFileInfo{name: "TopShot.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x76, 0xc7, 0x62, 0xa8, 0x5, 0x3c, 0x21, 0xa3, 0x19, 0x37, 0xd1, 0x35, 0xa5, 0x7c, 0x8c, 0x32, 0x30, 0x84, 0xac, 0xff, 0xec, 0xb0, 0x27, 0xe6, 0x4b, 0x23, 0xe4, 0x99, 0xb3, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0x1c, 0x9, 0x5f, 0x1, 0xcc, 0x71, 0xb1, 0x3a, 0x47, 0xa, 0x7e, 0xf2, 0xc8, 0x26, 0xeb, 0xd7, 0x9f, 0xc, 0x38, 0xad, 0xe3, 0x64, 0xde, 0x50, 0xf0, 0x61, 0x26, 0xd7, 0x2b, 0xbd, 0x63}} return a, nil } diff --git a/lib/go/events/moment.go b/lib/go/events/moment.go index 5696b40b..d0ee980b 100644 --- a/lib/go/events/moment.go +++ b/lib/go/events/moment.go @@ -17,6 +17,7 @@ type MomentMintedEvent interface { PlayId() uint32 SetId() uint32 SerialNumber() uint32 + SubeditionId() uint32 } type momentMintedEvent cadence.Event @@ -37,6 +38,13 @@ func (evt momentMintedEvent) SerialNumber() uint32 { return uint32(evt.Fields[3].(cadence.UInt32)) } +func (evt momentMintedEvent) SubeditionId() uint32 { + if len(evt.Fields) < 5 { + return 0 + } + return uint32(evt.Fields[4].(cadence.UInt32)) +} + func (evt momentMintedEvent) validate() error { if evt.EventType.QualifiedIdentifier != EventMomentMinted { return fmt.Errorf("error validating event: event is not a valid moment minted event, expected type %s, got %s", diff --git a/lib/go/events/moment_test.go b/lib/go/events/moment_test.go index de67e688..09187d08 100644 --- a/lib/go/events/moment_test.go +++ b/lib/go/events/moment_test.go @@ -15,6 +15,7 @@ func TestCadenceEvents_MomentMinted(t *testing.T) { playID := uint32(1234) setID := uint32(1234) serialNumber := uint32(1234) + subeditionID := uint32(1234) momentMintedEventType := cadence.EventType{ Location: utils.TestLocation, @@ -36,6 +37,10 @@ func TestCadenceEvents_MomentMinted(t *testing.T) { Identifier: "serialNumber", Type: cadence.UInt32Type{}, }, + { + Identifier: "subeditionId", + Type: cadence.UInt32Type{}, + }, }, Initializer: []cadence.Parameter{}, } @@ -45,6 +50,7 @@ func TestCadenceEvents_MomentMinted(t *testing.T) { cadence.NewUInt32(playID), cadence.NewUInt32(setID), cadence.NewUInt32(serialNumber), + cadence.NewUInt32(subeditionID), }).WithType(&momentMintedEventType) payload, err := jsoncdc.Encode(momentMintedEvent) @@ -57,4 +63,6 @@ func TestCadenceEvents_MomentMinted(t *testing.T) { assert.Equal(t, playID, decodedMomentMintedEventType.PlayId()) assert.Equal(t, setID, decodedMomentMintedEventType.SetId()) assert.Equal(t, serialNumber, decodedMomentMintedEventType.SerialNumber()) + assert.Equal(t, subeditionID, decodedMomentMintedEventType.SubeditionId()) + } diff --git a/lib/go/events/subedition.go b/lib/go/events/subedition.go new file mode 100644 index 00000000..95da089e --- /dev/null +++ b/lib/go/events/subedition.go @@ -0,0 +1,52 @@ +package events + +import ( + "fmt" + + "github.com/onflow/cadence" + jsoncdc "github.com/onflow/cadence/encoding/json" +) + +var ( + EventSubeditionCreated = "TopShot.SubeditionCreated" +) + +type SubeditionCreatedEvent interface { + SubeditionId() uint32 + Name() string + MetaData() map[interface{}]interface{} +} + +type subeditionCreatedEvent cadence.Event + +func (evt subeditionCreatedEvent) SubeditionId() uint32 { + return evt.Fields[0].(cadence.UInt32).ToGoValue().(uint32) +} + +func (evt subeditionCreatedEvent) Name() string { + return evt.Fields[1].(cadence.String).ToGoValue().(string) +} + +func (evt subeditionCreatedEvent) MetaData() map[interface{}]interface{} { + return evt.Fields[2].(cadence.Dictionary).ToGoValue().(map[interface{}]interface{}) +} + +func (evt subeditionCreatedEvent) validate() error { + if evt.EventType.QualifiedIdentifier != EventSubeditionCreated { + return fmt.Errorf("error validating event: event is not a valid subedition created event, expected type %s, got %s", + EventSubeditionCreated, evt.EventType.QualifiedIdentifier) + } + return nil +} + +func DecodeSubeditionCreatedEvent(b []byte) (SubeditionCreatedEvent, error) { + value, err := jsoncdc.Decode(nil, b) + if err != nil { + return nil, err + } + event := subeditionCreatedEvent(value.(cadence.Event)) + if err := event.validate(); err != nil { + return nil, fmt.Errorf("error decoding event: %w", err) + } + return event, nil +} diff --git a/lib/go/events/subedition_added_to_moment.go b/lib/go/events/subedition_added_to_moment.go new file mode 100644 index 00000000..aec6ad26 --- /dev/null +++ b/lib/go/events/subedition_added_to_moment.go @@ -0,0 +1,47 @@ +package events + +import ( + "fmt" + + "github.com/onflow/cadence" + jsoncdc "github.com/onflow/cadence/encoding/json" +) + +var ( + EventSubeditionAddedToMoment = "TopShot.SubeditionAddedToMoment" +) + +type SubeditionAddedToMomentEvent interface { + MomentID() uint64 + SubeditionID() uint32 +} + +type subeditionAddedToMomentEvent cadence.Event + +func (evt subeditionAddedToMomentEvent) MomentID() uint64 { + return evt.Fields[0].(cadence.UInt64).ToGoValue().(uint64) +} + +func (evt subeditionAddedToMomentEvent) SubeditionID() uint32 { + return evt.Fields[1].(cadence.UInt32).ToGoValue().(uint32) +} + +func (evt subeditionAddedToMomentEvent) validate() error { + if evt.EventType.QualifiedIdentifier != EventSubeditionAddedToMoment { + return fmt.Errorf("error validating event: event is not a valid subedition added to moment event, expected type %s, got %s", + EventSubeditionAddedToMoment, evt.EventType.QualifiedIdentifier) + } + return nil +} + +func DecodeSubeditionAddedToMomentEvent(b []byte) (SubeditionAddedToMomentEvent, error) { + value, err := jsoncdc.Decode(nil, b) + if err != nil { + return nil, err + } + event := subeditionAddedToMomentEvent(value.(cadence.Event)) + if err := event.validate(); err != nil { + return nil, fmt.Errorf("error decoding event: %w", err) + } + return event, nil +} diff --git a/lib/go/events/subedition_added_to_moment_test.go b/lib/go/events/subedition_added_to_moment_test.go new file mode 100644 index 00000000..ced9aae8 --- /dev/null +++ b/lib/go/events/subedition_added_to_moment_test.go @@ -0,0 +1,49 @@ +package events + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/onflow/cadence" + jsoncdc "github.com/onflow/cadence/encoding/json" + "github.com/onflow/cadence/runtime/tests/utils" + "github.com/stretchr/testify/assert" +) + +func TestCadenceEvents_SubeditionAddedToMoment(t *testing.T) { + var ( + subeditionID = uint32(1234) + momentID = uint64(1234) + ) + + playCreatedEventType := cadence.EventType{ + Location: utils.TestLocation, + QualifiedIdentifier: "TopShot.SubeditionAddedToMoment", + Fields: []cadence.Field{ + { + Identifier: "momentID", + Type: cadence.UInt64Type{}, + }, + { + Identifier: "subeditionID", + Type: cadence.UInt32Type{}, + }, + }, + Initializer: []cadence.Parameter{}, + } + + subeditionAddedToMomentEvent := cadence.NewEvent([]cadence.Value{ + cadence.NewUInt64(momentID), + cadence.NewUInt32(subeditionID), + }).WithType(&playCreatedEventType) + + payload, err := jsoncdc.Encode(subeditionAddedToMomentEvent) + require.NoError(t, err, "failed to encode subedition added to moment cadence event") + + decodedPlayCreatedEventType, err := DecodeSubeditionAddedToMomentEvent(payload) + require.NoError(t, err, "failed to decode subedition added to moment cadence event") + + assert.Equal(t, momentID, decodedPlayCreatedEventType.MomentID()) + assert.Equal(t, subeditionID, decodedPlayCreatedEventType.SubeditionID()) +} diff --git a/lib/go/events/subedition_test.go b/lib/go/events/subedition_test.go new file mode 100644 index 00000000..743bb443 --- /dev/null +++ b/lib/go/events/subedition_test.go @@ -0,0 +1,65 @@ +package events + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/onflow/cadence" + jsoncdc "github.com/onflow/cadence/encoding/json" + "github.com/onflow/cadence/runtime/tests/utils" + "github.com/stretchr/testify/assert" +) + +func TestCadenceEvents_SubeditionCreated(t *testing.T) { + var ( + id = uint32(1234) + name = "Subedition #1" + setKey = "setID" + setValue = "1234" + playKey = "playID" + playValue = "1234" + ) + + playCreatedEventType := cadence.EventType{ + Location: utils.TestLocation, + QualifiedIdentifier: "TopShot.SubeditionCreated", + Fields: []cadence.Field{ + { + Identifier: "subeditionId", + Type: cadence.UInt32Type{}, + }, + { + Identifier: "name", + Type: cadence.StringType{}, + }, + { + Identifier: "metadata", + Type: cadence.DictionaryType{}, + }, + }, + Initializer: []cadence.Parameter{}, + } + + subeditionCreatedEvent := cadence.NewEvent([]cadence.Value{ + cadence.NewUInt32(id), + NewCadenceString(name), + cadence.NewDictionary([]cadence.KeyValuePair{ + {Key: NewCadenceString(setKey), Value: NewCadenceString(setValue)}, + {Key: NewCadenceString(playKey), Value: NewCadenceString(playValue)}, + }), + }).WithType(&playCreatedEventType) + + payload, err := jsoncdc.Encode(subeditionCreatedEvent) + require.NoError(t, err, "failed to encode play created cadence event") + + decodedSubeditionCreatedEventType, err := DecodeSubeditionCreatedEvent(payload) + require.NoError(t, err, "failed to decode play created cadence event") + + assert.Equal(t, id, decodedSubeditionCreatedEventType.SubeditionId()) + assert.Equal(t, name, decodedSubeditionCreatedEventType.Name()) + assert.Equal(t, map[interface{}]interface{}{ + setKey: setValue, + playKey: playValue, + }, decodedSubeditionCreatedEventType.MetaData()) +} diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 5fdc213c..b2534c9a 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -3,16 +3,21 @@ // ../../../transactions/admin/add_play_to_set.cdc (972B) // ../../../transactions/admin/add_plays_to_set.cdc (759B) // ../../../transactions/admin/batch_mint_moment.cdc (1.534kB) +// ../../../transactions/admin/batch_mint_moment_with_subedition.cdc (1.64kB) +// ../../../transactions/admin/create_new_subedition_admin_resource.cdc (602B) // ../../../transactions/admin/create_play.cdc (1.026kB) // ../../../transactions/admin/create_set.cdc (929B) // ../../../transactions/admin/create_set_and_play_struct.cdc (296B) +// ../../../transactions/admin/create_subedition.cdc (1.026kB) // ../../../transactions/admin/fulfill_pack.cdc (1.502kB) // ../../../transactions/admin/lock_set.cdc (795B) // ../../../transactions/admin/mark_moment_unlockable.cdc (925B) // ../../../transactions/admin/mint_moment.cdc (1.399kB) +// ../../../transactions/admin/mint_moment_with_subedition.cdc (1.524kB) // ../../../transactions/admin/retireAll_plays_from_set.cdc (756B) // ../../../transactions/admin/retire_all.cdc (807B) // ../../../transactions/admin/retire_play_from_set.cdc (1.02kB) +// ../../../transactions/admin/set_nft_subedition.cdc (769B) // ../../../transactions/admin/start_new_series.cdc (763B) // ../../../transactions/admin/transfer_admin.cdc (606B) // ../../../transactions/admin/unlock_all_moments.cdc (422B) @@ -73,6 +78,10 @@ // ../../../transactions/scripts/sets/get_setSeries.cdc (397B) // ../../../transactions/scripts/sets/get_set_data.cdc (403B) // ../../../transactions/scripts/sets/get_set_locked.cdc (458B) +// ../../../transactions/scripts/subeditions/get_all_subeditions.cdc (282B) +// ../../../transactions/scripts/subeditions/get_nextSubeditionID.cdc (317B) +// ../../../transactions/scripts/subeditions/get_nft_subedition.cdc (228B) +// ../../../transactions/scripts/subeditions/get_subedition_by_id.cdc (436B) // ../../../transactions/shardedCollection/batch_from_sharded.cdc (1.086kB) // ../../../transactions/shardedCollection/setup_sharded_collection.cdc (1.271kB) // ../../../transactions/shardedCollection/transfer_from_sharded.cdc (1.042kB) @@ -215,6 +224,46 @@ func TransactionsAdminBatch_mint_momentCdc() (*asset, error) { return a, nil } +var _TransactionsAdminBatch_mint_moment_with_subeditionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcd\x6e\xdb\x3c\x10\xbc\xfb\x29\xf6\xcb\xe1\x8b\x0c\x24\x56\xd1\x16\x3d\x18\xf9\x81\x11\x37\x6d\x80\x26\x31\x62\x17\x3d\x53\xd4\xca\x62\x4b\x91\x2a\xb9\x8a\x63\x04\x7e\xf7\x82\xa4\xa8\x1f\xb7\x28\xea\x8b\xa5\xd5\xee\xcc\x70\x76\x28\xaa\x5a\x1b\x82\x8d\xae\xd7\xa5\x26\x28\x8c\xae\xe0\xcd\xcb\xe6\x71\xb5\xfe\xfc\xb8\x59\x2c\x97\x4f\x1f\xd7\xeb\xc9\x24\x4d\x61\x53\x0a\x0b\x64\x98\xb2\x8c\x93\xd0\x0a\x2a\xa1\xc8\x42\xd5\x48\x12\xb5\x44\xa8\x74\x85\x8a\xac\x6b\xf5\x20\x0c\xac\x50\x5b\x89\x60\x91\xd2\x5a\xb2\x7d\x6a\x9b\x0c\x73\xe1\x67\xb9\xae\x32\xa1\x98\x7b\xf6\xe0\x2b\x66\x58\x85\x84\xc6\xce\x27\x69\xea\x2a\x16\xe9\x6e\x39\x07\x2a\x11\xee\x96\xa0\x0b\xff\x64\x91\x80\x34\x64\xe8\xc9\x31\xf7\x4c\xae\xdb\xe1\xff\xde\xbe\x92\x6c\x1f\xc4\xec\x4a\xc1\x4b\x5f\xbb\x0f\x32\x81\x99\x08\xe2\xd9\x3a\x69\x63\x14\x87\x7b\x6a\x07\x9f\x5d\xf3\xcf\x86\x29\x12\xb4\x0f\x8d\xf1\xcd\xb5\x47\xf0\xa1\x46\x37\x61\x90\x8b\x5a\xa0\xa2\x45\x9e\x9b\x30\x76\x2b\xf5\x0e\x58\x9e\x1b\xb4\x36\xea\x65\x9c\xeb\x46\x91\x6b\x47\xf1\x2c\xd4\xd6\x57\xb9\x96\x12\x83\xe5\xba\x88\x07\x8f\x6e\x4f\x06\x1b\x49\x5a\xcf\xbe\xde\x29\x7a\xf7\xf6\xac\x33\x25\xbe\xf7\xba\x5d\xe5\xc3\xfb\xb3\xa3\x63\xc7\xbe\x23\xb5\x8b\x20\x72\x0a\xaf\x93\x09\x00\x40\x9a\xc2\x17\xcd\x99\x84\x67\x66\x04\xcb\x24\x42\xa1\x8d\x57\x4a\xba\xb6\x2e\x44\x8b\xbc\x12\x0a\x74\xf6\x1d\x39\xf9\x11\x89\x04\xcc\x15\x9f\xb0\x98\xc3\xff\x6d\xd8\x66\xbe\x2f\x80\xd6\x06\x6b\x66\x30\x61\x9c\xd3\x1c\x16\x0d\x95\x8b\x60\x46\x47\xdb\x52\x67\xda\x18\xe7\x1c\x18\x2c\xd0\xa0\xe2\x8e\xd6\xb3\x07\x56\x83\x56\x37\x86\x23\x08\x05\x96\xb4\x61\x5b\xec\xc6\x2d\xca\x62\x16\x75\xc0\xa5\xf3\x9b\x66\x01\xf0\x62\x2c\xea\x2a\x71\xb1\x99\x43\xda\x42\xa4\xed\x57\xff\x71\xfa\x9f\x47\x3c\x04\x5d\xf8\x82\xbc\x21\xfc\x67\x99\x7f\xce\x70\x1c\x75\x4e\x59\xa4\xa0\x6f\xa4\xb7\x15\xba\x46\x8a\x7b\xf6\x7f\xd3\x11\xed\xbd\x50\x04\x4c\x4a\xcf\xa4\x70\x07\x0f\xb7\x1b\x0b\x3b\x41\x25\xac\xbb\x5d\xdb\x11\xdb\x20\x5e\x17\xe7\x2d\xf7\x2c\x63\xc4\x4b\x07\x16\x12\xfd\x4d\x50\xd9\xcf\x27\x31\x58\xe1\x7f\x18\xac\xf8\x74\x1c\xad\xe1\xdb\x58\xf1\x27\x67\xc7\x20\xfb\x21\x35\x5d\xa4\xba\x2c\xc6\x3b\xd2\x9a\x46\xfa\x07\x1e\x1d\xa4\x6f\xbd\x84\x2d\x52\x9b\x9f\x64\x94\xe6\x31\xf7\xb6\xe5\xbe\xe9\x2d\xe8\xd7\x35\x50\x80\xe2\x19\xcd\x31\x97\x2f\x86\x3d\x75\x14\xb3\x2d\xd2\x0d\xab\x59\x26\xa4\xa0\x7d\x92\xd6\x4d\x26\x05\x4f\x83\x89\x3d\xcb\xb4\x0b\xdd\x6b\x4c\xdd\x71\xcb\xca\x4f\x1e\xae\x92\x69\xc7\xeb\x7e\xd7\xd7\x50\x33\x25\x78\x72\x72\xc3\x94\xd2\xf4\x97\x9c\x75\xa2\x4e\xed\x60\xc7\x27\x63\x07\x72\xac\xb5\x15\xc1\x85\x87\xdb\x8d\xbb\x34\xc3\x33\x0f\x27\xbb\xb1\xc1\xd9\x43\x4e\x96\x01\x24\x09\x3b\x99\xc3\xc5\x79\x3f\x35\x6d\xaf\xca\xe1\x57\x00\x00\x00\xff\xff\x4e\x72\x93\x68\x68\x06\x00\x00" + +func TransactionsAdminBatch_mint_moment_with_subeditionCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminBatch_mint_moment_with_subeditionCdc, + "../../../transactions/admin/batch_mint_moment_with_subedition.cdc", + ) +} + +func TransactionsAdminBatch_mint_moment_with_subeditionCdc() (*asset, error) { + bytes, err := TransactionsAdminBatch_mint_moment_with_subeditionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/batch_mint_moment_with_subedition.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x86, 0x52, 0x23, 0x91, 0x8d, 0xa5, 0xbe, 0xc2, 0x14, 0x95, 0x79, 0x17, 0x65, 0xba, 0x95, 0x8, 0xca, 0xbe, 0x65, 0x45, 0xc2, 0x9b, 0x78, 0x97, 0xb5, 0x7e, 0xb9, 0x39, 0x21, 0x7e, 0x18}} + return a, nil +} + +var _TransactionsAdminCreate_new_subedition_admin_resourceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\x9e\x40\x10\x86\xef\xfe\x8a\x97\x1c\x8a\xb9\x68\xcf\x1f\x6d\x83\x34\x85\x1e\x0a\x29\xd1\x3f\x30\xae\x63\xdd\xa2\x3b\x32\x3b\x36\x81\x90\xff\x5e\xd6\x35\xd2\x0f\x7a\xc8\x5e\x77\xe6\x79\x9f\x97\xf1\xcb\x2a\x6a\xe8\x64\x6d\x27\x31\x8c\x2a\x0b\x3e\x3e\x77\x0f\x3f\xdb\xef\x0f\x5d\x73\x7f\xff\xf8\xad\x6d\x8b\xa2\xae\xd1\x4d\x3e\xc2\x94\x42\x24\x67\x5e\x02\x7c\xc4\x28\x0a\x9b\x18\x34\x2c\x3e\xc0\x04\x4e\x99\x8c\x41\x08\xfc\x84\xb8\xf5\x3c\xf8\x7d\x36\x0f\x28\x47\xd9\xd4\x71\xc2\x51\x18\x10\x4d\x94\xe1\x0d\x69\x79\x62\x98\xac\x88\xc9\x22\x2e\xa4\x06\x27\xc1\x94\x9c\x15\xc5\x3f\xb1\xe5\x2d\x5e\x8a\x02\x00\xea\x1a\x3f\xc4\xd1\x8c\x3f\xa4\x9e\xfa\x99\x4f\x1d\x93\x75\xc7\x34\x7b\xaa\xf4\xbf\xd9\xd9\xbe\x32\xb3\x65\x95\x47\x1e\x2f\xf8\x70\x94\xae\xf6\xb9\x0c\x5d\x95\x57\x52\x2e\xc9\x39\xbb\xa0\xd9\x6c\x6a\x9c\x93\x2d\xd8\x19\x7b\x44\xf7\xa2\x2a\x4f\x20\x28\x8f\xac\x1c\x5c\x8a\xdd\xd3\x9b\xab\xae\xa9\x5b\xea\x49\xbf\xf8\x5c\x8f\x3c\x8f\xd5\x9b\x07\x3e\x23\x85\x55\x19\xf8\xe9\x5a\xea\x4b\x99\x0e\x72\x41\x7d\x20\xea\xe3\x77\xff\xbc\x3d\x81\xe9\xdd\xdd\x61\xa5\xe0\x5d\x79\xf3\x55\xb6\x79\x40\x10\x7b\xb7\xe4\x4d\x46\xbd\xe6\x86\xfc\xcc\x6e\x33\xc6\xcb\xff\x85\xab\x7c\xe4\xf6\xbc\x6e\x93\x3f\x32\xaa\x7c\x43\xbd\xfe\x0d\x00\x00\xff\xff\x93\x89\xfa\x70\x5a\x02\x00\x00" + +func TransactionsAdminCreate_new_subedition_admin_resourceCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminCreate_new_subedition_admin_resourceCdc, + "../../../transactions/admin/create_new_subedition_admin_resource.cdc", + ) +} + +func TransactionsAdminCreate_new_subedition_admin_resourceCdc() (*asset, error) { + bytes, err := TransactionsAdminCreate_new_subedition_admin_resourceCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/create_new_subedition_admin_resource.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x2b, 0xbd, 0xa7, 0xd6, 0x48, 0x5e, 0x15, 0xbd, 0xf5, 0x72, 0x94, 0xf9, 0xd, 0x59, 0xed, 0xb0, 0x22, 0x5e, 0x3a, 0xbe, 0x8f, 0xf, 0xc1, 0xff, 0x9a, 0x38, 0x7e, 0xd8, 0x7b, 0xfd, 0x6b}} + return a, nil +} + var _TransactionsAdminCreate_playCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x53\x4d\x8b\xdb\x3c\x10\xbe\xfb\x57\x3c\x6f\x0e\x2f\x59\x28\x71\x69\x6f\x6e\xb7\x4b\x68\x0a\x5d\x68\xbb\xcb\x26\xa5\xe7\x89\x3c\x4e\x54\x6c\xc9\x8c\xc6\x4d\xc2\x92\xff\x5e\x24\x3b\xce\x07\xcd\x25\x42\x9a\xe7\x6b\x66\x6c\x9b\xd6\x8b\x62\xe5\xdb\xe5\xd6\x2b\x2a\xf1\x0d\xde\xee\x57\x4f\xcf\xcb\xaf\x4f\xab\xf9\x62\xf1\xf2\x65\xb9\xcc\xb2\x3c\xc7\x6a\x6b\x03\x54\xc8\x05\x32\x6a\xbd\x83\x11\x26\xe5\x00\x82\xe3\x1d\xda\x9a\x0e\x08\x2a\x9d\x51\xc4\x72\x72\x25\x82\x7a\xe1\x00\xab\xb0\x0e\xba\xe5\xa8\x82\x24\x13\x1a\x12\x85\xf1\x4e\x85\x8c\xc6\xfa\x5f\x0c\xd3\x89\xb0\xd3\x3a\xf1\x58\xb7\xb1\xd5\x21\xa1\x1a\x56\x2a\x49\x29\x71\x5a\x17\x58\xb4\xe7\x54\x9f\xde\x23\xfc\xd2\x58\x8f\x7e\x83\x75\xa7\xd8\x91\x53\xa8\x47\x17\xf8\xaa\x86\x64\xd3\x35\xec\x34\x20\x78\xef\x52\xc0\x67\x12\x6a\x58\x59\x42\x91\xe5\x79\xbc\x39\x09\x17\x98\xa3\xb4\x09\x48\x72\x80\xaf\x40\x75\x9d\xa4\x53\xea\xb3\xbf\x10\xbc\xb1\xa4\x5c\x66\xd9\x85\xd8\xf4\xcc\xf3\xba\x4c\xde\x0a\xf4\xff\xc7\x3b\xbc\x66\x19\x00\xe4\x39\xbe\x79\x43\x35\xfe\x90\x58\x5a\xd7\x8c\xca\x4b\x92\x50\xdf\x86\xd8\xb2\x79\xd9\x58\x07\xbf\xfe\xcd\x46\x13\xa4\x66\x05\xc5\xcb\x17\xae\x0a\xfc\x3f\x4c\x70\x96\xea\xc6\x82\xd8\xd3\xe7\x9a\x0e\x8f\x8b\x02\x3f\x1f\x9d\xbe\x7f\xd7\xeb\xb5\xc2\x2d\x09\x4f\xc9\x18\x2d\x30\xef\x74\x3b\x37\xc6\x77\x4e\x47\x47\x83\xab\xb5\x17\xf1\x3b\x10\x84\x2b\x16\x76\x26\x3a\x4a\xc6\x92\x36\x84\x83\xef\xc4\xf0\x88\x09\x5c\x57\xb3\xb3\x2c\xee\x4f\xbb\x35\x73\xbc\xd7\xfe\xf2\xc3\x75\xf5\x29\x05\xee\x11\xfd\xcc\x7a\xcd\x8f\xd7\x91\x3e\x4d\xe3\x6e\x16\xc8\xe3\x56\xd1\x86\xf3\xe1\x35\x3d\xde\x8d\x84\xf1\xf7\xf0\x80\x96\x9c\x35\xd3\xc9\x0f\x7f\x63\x33\x6e\xe2\x40\x30\xe9\x41\xc7\x3e\x2e\xef\xd9\x74\xca\x37\xe9\x3f\xa7\x1d\x07\xf5\x83\xde\x59\xdd\xa6\xe8\xa1\x65\x63\x2b\xcb\xe5\x38\xfb\x7f\x07\x9a\xf5\xdf\x48\x0c\x7d\xb1\x04\xa7\xd3\x95\x7e\xeb\x83\xe2\x75\xa4\x19\x0f\xa7\x1e\x6c\x38\xf5\xee\x3b\x2b\x2d\x48\x69\xda\x0e\x43\xbd\x69\xf7\x1d\xfe\xbb\x87\xb3\x75\x71\xd5\x90\x49\x5f\x8d\xd2\x73\x70\x0a\xde\xdb\xa0\x93\x41\xfd\xf8\x37\x00\x00\xff\xff\x12\x5d\x9c\x74\x02\x04\x00\x00" func TransactionsAdminCreate_playCdcBytes() ([]byte, error) { @@ -275,6 +324,26 @@ func TransactionsAdminCreate_set_and_play_structCdc() (*asset, error) { return a, nil } +var _TransactionsAdminCreate_subeditionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\xd1\x6a\xdb\x40\x10\x7c\xf7\x57\x4c\xfd\x50\x64\x28\x56\x69\xdf\xd4\xa6\xc1\xad\x0b\x0d\x94\x24\x44\xee\x07\xac\x4f\xab\xf8\x8a\x74\x27\xf6\x56\x8d\x43\xc8\xbf\x97\x3b\x29\xb2\x1c\xa2\x27\x71\xbb\xb3\x33\xb3\x3b\xb6\xed\xbc\x28\x76\xbe\x2b\x0f\x5e\x51\x8b\x6f\xf1\xf1\xb8\xbb\xb9\x2d\x7f\xdd\xec\x36\xdb\xed\xdd\xcf\xb2\x5c\x2c\xf2\x1c\xbb\x83\x0d\x50\x21\x17\xc8\xa8\xf5\x0e\x46\x98\x94\x03\x08\x8e\x1f\x10\xfa\x3d\x57\x36\x15\x82\x4a\x6f\x34\x62\xc8\x55\x08\xea\x85\x03\xac\xc2\x3a\xe8\x81\x23\x15\x12\x57\x68\x49\x14\xc6\x3b\x15\x32\x9a\x48\x6e\x49\xa8\x65\x65\x09\xc5\x22\xcf\xe3\x8b\xa3\x96\x0b\x24\x60\xfc\x85\xaf\x47\xc2\xf2\x44\xa8\x1e\x7b\x1e\xf5\x54\x11\xd4\xb2\x52\x45\x4a\x05\x36\xa8\x6c\x92\x4b\xf2\x98\xb0\x4d\x93\x66\x75\x0d\x3d\x4e\x6d\xa0\x10\xbc\xb1\x09\xbd\x98\x59\xcc\x12\x79\xa9\x62\xdd\xfd\x87\xd3\xd0\xa7\xe1\x65\x2c\x3c\xaf\xf0\xb4\x58\x00\x40\x9e\xe3\xb7\x37\xd4\xe0\x1f\x89\xa5\x7d\xc3\xa8\xbd\x24\x36\xf5\x5d\x88\x8e\x37\x55\x6b\x1d\xfc\xfe\x2f\x1b\x4d\x90\x86\x15\x14\x1f\xef\xb8\x2e\xf0\x7e\xbc\xc2\x3a\xf5\x4d\x0d\xa6\x17\x39\xb9\xbd\xda\x16\xf8\x73\xe5\xf4\xf3\xa7\x81\xb5\x13\xee\x48\x38\x23\x63\xb4\xc0\xa6\xd7\xc3\xc6\x18\xdf\x3b\x9d\x74\x8d\xda\xf6\x5e\xc4\x3f\x80\x20\x5c\xb3\xb0\x33\x51\x57\x92\x97\x14\x40\x38\xf8\x5e\x0c\x4f\x98\xc0\x4d\xbd\x7e\x4d\x8e\x8b\x97\xac\xac\xef\x59\xaf\xf9\xa8\xf3\x6a\xb6\xfa\x72\x0e\x7f\x31\x87\x0b\x44\x81\xeb\x41\xc4\xd7\x73\xa7\xdf\xb2\x18\xbb\x02\x79\xcc\x0a\xdd\x73\x3e\x56\x53\x71\x35\x0d\x8c\xdf\xe5\x25\x3a\x72\xd6\x64\xcb\x6b\xff\x4a\x77\xcc\xd7\x38\x60\x39\x80\x9e\x07\xff\x7c\x64\xd3\x2b\xbf\x5a\xc7\x8f\x14\x17\xd0\x3c\xb9\x0f\x56\x0f\x69\x23\xa1\x63\x63\x6b\xcb\xd5\x74\xf5\xb7\x6d\xad\x87\xd0\x9d\x56\x30\x44\x26\x45\x75\x96\x98\xe9\xef\x4c\x57\xe7\x83\xce\x45\xcd\xf6\x7a\x1a\xf8\xfd\xf1\x6a\x9b\x85\xb3\xeb\xbf\x79\x97\x15\xde\x5d\xc0\xd9\xa6\x38\x5b\xd7\xf2\xa5\x45\xd3\xed\x2a\xcf\xc1\x29\xf8\x68\x83\x2e\x47\x29\xcf\xff\x03\x00\x00\xff\xff\x41\x20\x7a\xa8\x02\x04\x00\x00" + +func TransactionsAdminCreate_subeditionCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminCreate_subeditionCdc, + "../../../transactions/admin/create_subedition.cdc", + ) +} + +func TransactionsAdminCreate_subeditionCdc() (*asset, error) { + bytes, err := TransactionsAdminCreate_subeditionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/create_subedition.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x4b, 0xac, 0xfc, 0x4a, 0x90, 0x16, 0x9f, 0x40, 0xc9, 0xbe, 0xf1, 0x62, 0xf0, 0xa3, 0x9, 0xbf, 0xa0, 0x3, 0xbd, 0xf2, 0xc5, 0xb, 0xe3, 0x1f, 0xb8, 0x2f, 0xc6, 0x44, 0x5d, 0x4, 0x83}} + return a, nil +} + var _TransactionsAdminFulfill_packCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\xf6\xf3\xe1\x8b\x0c\xb4\x66\x0f\x45\x0f\x42\x7e\x60\x44\x09\x92\x43\x93\x20\x72\xd1\x43\xd1\x03\x45\xad\x2d\x36\x32\x29\x90\xab\xb8\x41\x90\x77\x2f\x48\x51\x7f\x76\xd2\xf6\x50\x1e\x04\x81\x9a\xdd\x99\x1d\x8e\x28\xb7\xb5\x36\x04\x37\x5a\x5d\x36\x6a\x23\xf3\x0a\x57\xfa\x01\x15\xac\x8d\xde\xc2\x87\x9f\x37\x97\xab\x65\x9a\xde\x5f\x64\x59\x14\x90\x2b\x5d\x67\xa5\xa6\x0e\xb0\xba\xbd\xcb\xae\x6e\xdf\x00\x65\x25\x37\x05\x16\xe7\xba\xaa\x50\x90\xd4\x7d\xdb\xec\x6a\x79\x9f\x5e\xa4\x5d\x55\xc4\x18\xac\x4a\x69\x81\x0c\x57\x96\xb7\x50\x69\x61\x57\x72\xdf\x0b\x3c\x63\x63\xd1\x02\x69\xb0\xa8\x0a\xa0\x12\x61\xab\xb7\xa8\xc8\x82\x54\xc0\x61\x56\x73\xf1\x30\x03\xd2\xae\x19\x77\x60\x73\x64\x41\xf4\xd4\x9e\xe4\x8e\x1b\xbe\x45\x42\x63\x93\x88\x31\xb7\x63\x50\xc8\x5a\xa2\xa2\x65\x51\x98\xc4\xb7\xbd\xac\xf4\x0e\x78\x51\x18\xb4\x16\xf4\xda\xef\x71\x21\x74\xa3\xc8\xc1\x51\x3e\x4a\xb5\x01\x0e\x8e\xd0\x7d\x0f\x32\x5c\xb7\xf0\x7a\x9d\xda\x04\xb8\x02\x6e\x0c\x7f\x1a\x20\x70\x9d\xfa\x01\x72\x84\x9d\xa4\xb2\x30\x7c\x17\x1c\x71\x14\x7a\xa7\xbc\xe4\x80\x1d\x2b\x1f\xd9\x12\xef\x09\x5e\xb6\x3a\xdf\x85\x32\xcf\xfc\xed\xcb\xb5\xa2\x4f\x1f\xbf\xcf\xe1\x39\x8a\x00\x00\x6a\x83\x35\x37\x18\x73\x21\x28\x81\x65\x43\xe5\xb2\x9d\xc7\x21\x20\xac\xfe\x85\x31\xd8\x20\x79\x4d\x3d\xd9\x91\x85\xba\xc9\x2b\x29\x7a\x27\x74\xfe\x03\x05\xf5\x45\x15\xd2\x80\x86\x13\xd7\x21\x70\x4c\x15\xcf\xa3\x31\x4f\xae\x8d\x71\x66\x83\xc1\x35\x1a\x54\x02\x9d\x3f\xfb\xcc\x87\x8e\xec\xb1\xa2\x7c\x44\x73\x8f\x6b\x38\x19\xea\x16\x1b\xa4\x73\x5e\xf3\x5c\x56\x92\x9e\x62\xd6\xca\x67\x9f\x7d\xaf\x21\x91\xf3\xbe\x97\x5b\x8b\x56\xd0\xf1\xff\xcf\x21\xc1\x8b\x7d\xfc\x9d\x6f\xf3\x72\x1a\x4f\x0b\xcf\xce\xa0\xe6\x4a\x8a\x78\x76\xae\x9b\xaa\x00\xa5\xa9\x1b\x6e\x32\x5a\x27\x76\x12\xcd\xd9\xc8\x94\xbf\xb4\xe7\xed\xb0\x74\xe5\x72\xed\xdd\x19\xbe\xc0\x89\x3b\x3b\xea\x47\x7c\xeb\x1f\x5d\x1c\xec\x9c\xc6\x2e\xa4\x09\x30\x4b\xda\xf0\x0d\xb2\x80\x38\xf0\x72\x94\xa6\x49\xa2\xdc\x1a\x1d\xd3\x22\xe7\x24\xca\x14\x6b\x6d\x25\xc5\xe4\xee\x1b\x9b\xc0\xf1\xfb\x41\x6b\x8b\xf8\x1a\x7e\x92\x58\x16\x36\x19\x02\x3e\x1f\xac\x7f\x01\xac\x2c\x76\x31\x1f\xa7\xe2\x8f\x73\x2f\x7e\x33\xdf\xc1\x60\xff\xc1\x94\x81\x31\x08\xf2\xfd\x69\xec\xdd\x04\xaf\x65\xf8\x95\x13\xfa\xe7\xae\x0c\xb6\x44\xed\xf3\xe5\x57\x00\x00\x00\xff\xff\x82\x7a\xdd\x18\xde\x05\x00\x00" func TransactionsAdminFulfill_packCdcBytes() ([]byte, error) { @@ -355,6 +424,26 @@ func TransactionsAdminMint_momentCdc() (*asset, error) { return a, nil } +var _TransactionsAdminMint_moment_with_subeditionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xdd\x6e\xdb\x3c\x0c\xbd\xf7\x53\xf0\xeb\xc5\x57\x07\x58\xe3\xfd\xdc\x05\xfd\x81\xd7\xac\x58\x2f\xba\x16\x4d\x86\x5d\x2b\x32\x1d\x6b\x93\x25\x43\xa2\xeb\x16\x45\xdf\x7d\xa0\x25\x3b\x76\xb0\x2d\x08\x60\x98\xe2\xe1\x39\xa4\x8e\xa9\xea\xc6\x3a\x82\xad\x6d\x36\x95\x25\x28\x9d\xad\xe1\xfd\xf3\xf6\xfe\x61\xf3\xf5\x7e\x9b\xaf\xd7\x8f\x5f\x36\x9b\x24\xc9\x32\xd8\x56\xca\x03\x39\x61\xbc\x90\xa4\xac\x01\xe5\xa1\xab\x04\x81\x30\x20\x8a\x5a\x19\xe8\x6c\xab\x0b\x68\x3d\x02\x59\xa8\x95\x21\x10\xe0\x95\xd9\x6b\x04\x83\x1d\xd4\xb6\x46\x43\x5c\x4a\x98\x02\x0a\x6c\xac\x57\x04\xfc\x37\x20\x18\xe6\x4e\x3d\x48\xab\x35\xf6\xf5\x7b\xd2\x07\xe1\x44\x8d\x84\xce\xaf\x92\x2c\xe3\x88\x47\xba\x5d\xaf\x80\x2a\x84\xdb\x35\xd8\x92\x39\x90\x40\x5a\x43\x42\x19\x65\xf6\xfd\x11\x09\xb7\x47\x82\x46\x8b\x17\x06\xf1\xf3\x18\xc5\xb1\xd0\x6e\x57\x29\x59\x81\x98\x88\xe4\xde\xb8\x01\x2c\x7a\xca\x76\x87\x85\x62\x4d\xf3\x1a\x5c\xe1\xd4\x4f\x8e\x39\xd9\xa1\x54\x8d\x42\x43\x79\x51\xb8\x90\x7d\xa3\x6d\x07\xa2\x28\x1c\x7a\xcf\x38\x8e\x09\x29\x6d\x6b\x88\xd3\x51\x3d\x0d\xb2\x0d\x76\xfa\x25\x32\x0f\xf3\x4a\x26\x33\x4f\x63\xf7\xdf\x6f\x0d\x7d\xfa\xf8\x6e\xec\x6b\x78\x9f\x2b\x1d\xa2\x47\x92\xf2\xa0\x64\x01\xaf\x09\x00\x40\x96\x81\xb6\x52\x68\x78\x12\x4e\x89\x9d\x46\x28\xad\x0b\x1a\xfb\x5b\x75\x58\xa2\x43\x23\xb1\xcf\xd6\x48\x21\xfe\x88\xe5\x0a\xfe\x8f\xb6\x59\xe6\x1c\x4a\xfa\x8c\xc6\x61\x23\x1c\xa6\x42\x4a\x5a\x41\xde\x52\x95\x87\x5e\x07\xc2\x48\xba\xb3\xce\xf1\x5c\x0e\x04\x6c\x1b\xe6\xcd\x23\xaf\xb7\xad\x93\xc8\xf6\xf0\x64\x9d\xd8\xe3\x08\xf7\xa8\xcb\xe5\x20\x03\x2e\x78\x9a\xb4\x0c\x05\xcf\xe7\x9a\x2e\x53\xbe\xe2\x15\x64\xb1\x44\x16\x4f\xfb\xc3\xc5\x7f\x7d\xc5\xb7\x20\x1c\x9f\x51\xb6\x84\x73\x95\x9f\xff\xaa\xd2\x37\x28\x55\xa9\xb0\x60\xff\x8d\x10\x9e\x8f\x47\x0a\xb2\x66\x32\xa3\xbe\x0d\xd2\x70\x8b\xfd\x63\x91\x4c\xe9\xee\xc2\x57\xc3\x4e\xfc\x76\xb3\x85\x4e\x51\x05\x9b\x83\xbf\xa6\x2c\xc1\x1e\x1f\xe0\xfc\x2c\x12\x2e\xd9\x37\x77\x7d\xf4\x87\xa2\xea\x00\x4b\x07\x9b\x84\xe7\xb1\x4d\xa6\x6f\x73\x35\xfc\x09\x71\xab\x4d\xbb\xd3\x4a\x8e\x9e\xb5\xbb\x9f\x28\x69\xb4\xc9\x68\xaf\x99\xbc\x31\x0a\x17\x5c\x27\x7a\x20\x9d\x79\xf1\xcf\x6c\xd7\xe3\x0a\x98\x0c\x7d\x42\x86\xea\x09\xdd\x31\x57\x1f\x0c\x53\x1f\x29\x96\x7b\xa4\x6b\xd1\x88\x9d\xd2\x8a\x5e\xd2\x2c\xb4\x91\x85\x11\x1d\x58\x16\xa3\x73\x5e\x07\xeb\x1c\xa7\x3c\xf4\xc8\xb7\xcb\x74\x31\xf2\xf2\xef\xea\x0a\x1a\x61\x94\x4c\x4f\xae\x85\x31\x96\xfe\xe1\xe9\x51\xd4\xa9\x1f\x76\xcc\x61\xd5\x9d\xcc\x07\x31\xac\x46\xc6\xb1\x0b\x94\x99\xb5\x3e\x5b\x92\x03\x6c\x32\x82\x65\xc4\xa7\x64\x7f\xa1\x59\xc1\xf9\x59\xb4\xca\x22\xba\xfd\xed\x77\x00\x00\x00\xff\xff\x4f\xa0\xcd\x64\xf4\x05\x00\x00" + +func TransactionsAdminMint_moment_with_subeditionCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminMint_moment_with_subeditionCdc, + "../../../transactions/admin/mint_moment_with_subedition.cdc", + ) +} + +func TransactionsAdminMint_moment_with_subeditionCdc() (*asset, error) { + bytes, err := TransactionsAdminMint_moment_with_subeditionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/mint_moment_with_subedition.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xf, 0x56, 0xe, 0xcc, 0x60, 0x76, 0x2, 0x18, 0x25, 0xad, 0x8d, 0x77, 0x9d, 0xc9, 0xf5, 0x65, 0x9a, 0x2f, 0x89, 0xa1, 0xff, 0xff, 0x45, 0x89, 0x19, 0xac, 0x44, 0xe9, 0xa8, 0x4, 0x89}} + return a, nil +} + var _TransactionsAdminRetireall_plays_from_setCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x51\x8b\xdb\x3c\x10\x7c\xf7\xaf\x18\xee\xe1\xc3\x81\x8f\xb8\xb4\x6f\xa6\xed\x61\x48\xa1\x79\xe9\x1d\xe7\xf4\x07\xe8\xe4\x75\x2c\x2a\x4b\x66\x77\x43\xee\x28\xf7\xdf\x8b\x24\x27\x5c\xa0\x50\xbd\x48\x48\x3b\xb3\x33\xb3\x72\xf3\x12\x59\x71\x88\x4b\x3f\x45\xc5\xc8\x71\xc6\x87\x97\xc3\xc3\x63\xff\xfd\xe1\xd0\xed\x76\x4f\xdf\xfa\xbe\xaa\x9a\x06\x87\xc9\x09\x94\x4d\x10\x63\xd5\xc5\x00\x27\x18\x23\x83\x49\x1d\xbb\x70\x84\xf1\x1e\x8b\x37\xaf\x52\x48\x0c\x84\xf4\x7f\x9c\x27\x67\xa7\x84\x9f\xcd\x2f\x12\x38\x85\x44\xe8\x64\x14\x73\x9c\x29\xa8\xc0\x9a\x80\x10\xe1\x63\x38\x12\xe3\x99\x30\xbb\xa0\x34\x24\x4c\x21\xf2\x1e\x3a\x11\x68\x70\xa9\xaf\xe0\xec\x74\x2a\x14\x42\x9a\xb5\x3d\x1a\x36\x33\x29\xb1\xb4\x55\xd3\xa4\x1b\x21\xdd\xef\xda\x8c\xdb\xef\x10\xc7\x7c\x12\x52\x68\x4c\x2d\xb2\x68\x1a\x40\x21\xed\xfe\xb5\xaa\xde\x39\xab\x57\xf0\xcf\x7d\xd0\x4f\x1f\x37\xf8\x5d\x01\x80\x27\x85\x19\x66\x17\x9e\x68\x6c\xf1\xdf\x1a\xd8\xb6\x4b\x57\x55\xae\x58\x98\x16\xc3\x54\x1b\x6b\xb5\x45\x77\xd2\xa9\xb3\x36\x9e\x82\x26\x8a\x5c\x91\x56\xd3\xe0\x39\x32\xc7\x33\x0c\x98\x46\x62\x0a\x96\x92\xac\xa4\x30\xb3\x81\x49\xe2\x89\x2d\xc1\x05\x88\x46\x36\x47\xba\xc2\x85\xfc\xb8\xbd\xe8\xc0\x17\xa4\x66\xdb\x42\xf8\xf9\x56\xd4\xd7\x3a\xc5\xd7\xa2\x59\x29\x9a\xf5\x35\x3f\x6e\xae\x84\x69\xdd\xdf\x63\x31\xc1\xd9\xfa\xee\x47\x2c\x26\xff\xa6\xe1\xae\x80\xde\x8a\x17\x7a\x21\x7b\x52\x5a\xd3\xf9\xa7\x33\x59\xc8\xba\xd1\xd1\x90\x87\x76\x81\xa4\x50\x85\xb4\x58\xb9\xb1\xb6\x7a\xea\x49\x2f\xe3\xc8\xdb\xe6\x26\xc8\x32\xc6\xeb\x0f\xc9\xbf\xef\x5d\x52\x89\x77\x5b\x6a\x3a\xef\xeb\x8b\xfc\xb7\x3f\x01\x00\x00\xff\xff\x36\xab\xa5\xa4\xf4\x02\x00\x00" func TransactionsAdminRetireall_plays_from_setCdcBytes() ([]byte, error) { @@ -415,6 +504,26 @@ func TransactionsAdminRetire_play_from_setCdc() (*asset, error) { return a, nil } +var _TransactionsAdminSet_nft_subeditionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x5d\x6f\x13\x31\x10\x7c\xbf\x5f\x31\xea\x03\x4a\xa5\x2a\x46\x80\x78\x88\x80\x2a\x22\x48\x44\x02\x5a\xf5\xc2\x0f\xd8\x38\x6b\xce\x70\xe7\x3d\xec\x3d\x5a\x84\xfa\xdf\x91\x7d\x97\x8f\x06\xfc\xb2\xda\xaf\x99\x1d\x8f\xef\x7a\x89\x8a\x8d\xf4\x75\x23\x0a\x17\xa5\xc3\xf3\x87\xcd\xcd\x6d\xfd\xf1\x66\xb3\x5c\xad\xee\x3e\xd4\x75\x55\x19\x83\x4d\xe3\x13\x34\x52\x48\x64\xd5\x4b\x40\xeb\xc3\x8f\x84\xe0\x14\x2a\x48\xc3\x96\x77\x5e\xbd\x4a\x28\xd3\xb7\x14\xa9\x63\xe5\x98\x16\x95\x31\xb9\x12\x9c\xae\x57\x0b\x40\x1b\xc6\x10\xfc\xcf\x81\xb1\x5e\x41\x5c\x6e\xe4\xfe\x1e\x41\x42\x1e\xfb\x67\xea\xd8\xae\xaa\x93\x2b\x66\x13\xec\xd7\x75\xd0\xd7\xaf\xae\xce\x50\x72\xf5\xe5\x8b\x2b\x24\xd6\xd3\xb4\x6f\xe9\xf7\x31\xbf\xc4\x9f\xaa\x02\x00\x63\xf0\x49\x2c\xb5\xf8\x45\xd1\xd3\xb6\x65\x38\x89\xe5\x12\x95\x3e\xe5\xdf\x59\xee\x3a\x1f\x20\xdb\xef\x6c\xb5\xac\xb4\xac\xa0\x5c\xbc\x63\xb7\xc0\xb3\xe9\x17\xe7\x65\x6e\x04\xed\x23\xf7\x14\x79\x46\xd6\xea\x02\xcb\x41\x9b\xa5\xb5\x32\x04\xcd\xb4\x98\x9e\x31\xd8\x4a\x8c\x72\x0f\x42\x64\xc7\x91\x83\xcd\xac\x85\xbc\xe0\x23\x72\x92\x21\x5a\x3e\xec\x24\x6e\xdd\x7c\xcf\x8d\xb7\xc8\x04\xf3\x11\xe5\xcd\xd3\x43\xde\xcd\xb2\xab\x0b\x98\xa4\x12\xe9\x1b\x9b\xa9\x5b\x9a\x97\x07\xc0\xfc\xae\xaf\xd1\x53\xf0\x76\x76\xf1\x45\xce\x88\xe1\x03\x26\x80\x8b\x71\xe9\x71\x54\xc8\x0f\x6c\x07\xe5\xa7\x72\xde\x47\x26\x65\xd0\x89\x21\xb8\xf7\xda\x14\x45\xa9\x67\xeb\x9d\xe7\x1d\x3a\x56\xda\x91\xd2\xff\x55\xcd\x13\xeb\x67\xe9\x38\x68\xaa\x0f\x30\x7b\xc7\x4b\x38\x37\xfc\x34\x3b\xd8\x5e\xc2\xd1\xf5\x31\xee\x25\x3c\xfe\x0d\x00\x00\xff\xff\x27\x34\xcb\xa3\x01\x03\x00\x00" + +func TransactionsAdminSet_nft_subeditionCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminSet_nft_subeditionCdc, + "../../../transactions/admin/set_nft_subedition.cdc", + ) +} + +func TransactionsAdminSet_nft_subeditionCdc() (*asset, error) { + bytes, err := TransactionsAdminSet_nft_subeditionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/set_nft_subedition.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x7a, 0xd3, 0x31, 0x19, 0xcd, 0xa, 0x3e, 0x60, 0xe6, 0x99, 0x31, 0x7b, 0xe1, 0x6c, 0x7e, 0x76, 0x84, 0x4c, 0x9, 0x1f, 0x88, 0x39, 0x28, 0xa3, 0x49, 0x73, 0x66, 0x45, 0x8c, 0x93, 0xe2}} + return a, nil +} + var _TransactionsAdminStart_new_seriesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x5f\x8b\xdb\x30\x10\xc4\xdf\xf5\x29\x86\x3c\x94\x84\x42\xdc\x3f\x6f\xa6\xe9\x11\xb8\x42\x0f\xca\x5d\x39\xa7\x1f\x40\xd1\xad\x1b\x95\x58\x6b\x56\xeb\xe6\xe0\xc8\x77\x3f\x24\x39\x26\x86\xf8\xd1\xd2\xcc\xfc\x34\xbb\xbe\xeb\x59\x14\x3b\xee\x9b\x03\x2b\x5a\xe1\x0e\x9f\x5e\x77\x4f\xbf\x9b\x9f\x4f\xbb\xed\xfd\xfd\xf3\x8f\xa6\x31\xa6\xaa\xb0\x3b\xf8\x08\x15\x1b\xa2\x75\xea\x39\xc0\x47\xb4\x2c\xb0\x01\xdb\x97\xce\x07\x28\x23\xaa\x15\x85\x45\xa0\x53\x72\x44\xb6\x8c\x24\x9e\xa2\x31\xd7\xda\x37\x63\x00\xa0\xaa\xf0\x8b\x9d\x3d\xe2\xbf\x15\x6f\xf7\x47\xca\x8e\x7a\x20\x28\xf7\x31\x89\x8b\x35\xef\xff\x91\xd3\x2c\x39\x92\xc2\xa6\x9f\xcf\xd4\xd6\xf8\x30\x72\xaf\xf3\xbd\xe9\x82\x1b\x44\x28\x68\x93\x93\x6b\xfc\x79\x08\xfa\xf5\x4b\x89\xec\x85\x7a\x2b\xb4\xb4\xce\x69\x8d\xed\xa0\x87\xad\x73\x3c\x04\x5d\x5d\xa0\x46\xb0\x3d\x8b\xf0\x09\x16\x42\x2d\x09\x05\x97\xa0\x32\x5b\x61\x12\x8a\x3c\x88\x23\xf8\x80\xa8\x2c\xf6\x2f\x4d\xf2\x48\xc7\x76\x7d\xa1\xc4\x06\x29\x6c\x5d\x0c\xbf\xcd\x91\xbf\x2f\x53\xe3\x35\xaa\xd1\xa2\x1a\x4f\xf3\xe1\x6a\x32\x4c\xdf\xdd\x1d\x7a\x1b\xbc\x5b\x2e\x1e\xb9\x54\x70\x8b\x61\xb1\x32\x73\x8c\x59\x17\xd8\x5c\x26\x3d\xff\x9f\x25\xe7\xa2\xa4\x57\x72\x83\x12\xde\x26\x9f\xeb\x5a\x1e\x82\x13\xea\x28\x68\xae\xa2\xcc\x16\x61\xe8\xf6\x24\xb7\x9f\xbf\xce\x4b\xf1\x48\xa7\x92\xb4\x5c\x5d\x67\xf5\x1c\x75\x0c\x9a\xd4\x37\x01\xb1\xd9\xdc\x7a\xce\x47\x7c\x86\x8d\xe3\x80\xeb\x59\x5d\x8b\xb4\x84\x17\xbe\xb4\x86\x09\x83\x5e\x16\x63\xfc\xd9\xe0\x3d\x00\x00\xff\xff\xf3\xd8\x80\x23\xfb\x02\x00\x00" func TransactionsAdminStart_new_seriesCdcBytes() ([]byte, error) { @@ -1615,6 +1724,86 @@ func TransactionsScriptsSetsGet_set_lockedCdc() (*asset, error) { return a, nil } +var _TransactionsScriptsSubeditionsGet_all_subeditionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcf\x3f\x6f\x02\x31\x0c\x05\xf0\x3d\x9f\xe2\x8d\xb0\x40\xe7\x6e\x48\x54\xea\x06\x22\xb7\x55\x0c\x3e\x70\x9a\x48\xb9\x24\x72\x1c\xd4\x53\xd5\xef\x5e\xe5\x4a\xd5\x3f\xb3\xed\xdf\xf3\x0b\x53\xc9\xa2\x18\x72\xb1\x3e\x2b\x9c\xe4\x09\x0f\x6f\xc3\xe1\x68\x9f\x0f\xc3\x6e\xbf\x3f\x3d\x59\x6b\xcc\x76\x8b\xc1\x87\x8a\x7a\x91\x50\x14\xc2\xda\x24\x55\x50\x02\x89\xd0\x8c\xec\x40\x31\x42\x3d\xa3\x44\x9a\x6b\x3f\x50\x4f\x0a\x4f\x37\x06\xdf\x58\x30\x32\x27\x5c\x84\x49\xf9\x0a\x97\xa5\x47\xa2\x67\x2e\xfa\xe9\x4b\x7c\xc4\xcb\xfd\x93\xcd\x31\xd2\x7c\xee\xa3\x3f\x09\x8b\xfe\x9f\xa9\x8b\x52\xda\x08\xd7\x12\x26\x0a\x69\xb5\xfe\x25\xd9\x36\xf2\x35\x68\xc8\xe9\x8c\x77\x63\x00\xdc\x0b\x7c\xb7\xde\xbc\xb2\xee\x62\xfc\xd9\xab\xab\xb5\xf9\xf8\x0c\x00\x00\xff\xff\x51\x69\xa2\xef\x1a\x01\x00\x00" + +func TransactionsScriptsSubeditionsGet_all_subeditionsCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsScriptsSubeditionsGet_all_subeditionsCdc, + "../../../transactions/scripts/subeditions/get_all_subeditions.cdc", + ) +} + +func TransactionsScriptsSubeditionsGet_all_subeditionsCdc() (*asset, error) { + bytes, err := TransactionsScriptsSubeditionsGet_all_subeditionsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/scripts/subeditions/get_all_subeditions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xda, 0x11, 0x5a, 0x5b, 0xee, 0xbf, 0xe2, 0x97, 0xca, 0x74, 0xba, 0x81, 0x68, 0x30, 0xc3, 0xfd, 0xc3, 0xd6, 0x71, 0xaf, 0xc9, 0x2c, 0x5d, 0xdc, 0xaf, 0x75, 0x13, 0x10, 0x5, 0xc8, 0xe5}} + return a, nil +} + +var _TransactionsScriptsSubeditionsGet_nextsubeditionidCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\xef\xd8\x5e\xac\xe8\xcd\x5b\x61\x05\x7b\xb1\xd2\xac\x3f\x20\xbb\x3b\x75\x07\x9a\xc9\x32\x99\x40\x41\xfc\xef\x92\xae\x41\xf0\xe8\xf5\x25\xef\xfb\x1e\xc3\x71\x49\x6a\xe8\xd3\xe2\xe7\x64\x38\x6b\x8a\xb8\xbf\xf6\xc7\x37\xff\x72\xec\xf7\x5d\x77\x7a\xf6\xde\xb9\xdd\x0e\xfd\xcc\x19\x79\x54\x5e\x0c\x4a\x61\xca\xb0\x99\x20\x74\x35\x5f\x06\x9a\xd8\x38\xc9\xa1\x5b\x01\xf5\xe5\x37\xdd\x4f\x91\x05\x4a\x39\x15\x1d\x09\x41\xa6\xca\x53\xb2\xa2\x52\x29\xc1\x20\x25\x0e\xa4\xb0\x74\xab\x8e\xe1\x72\x21\xbd\x59\x4f\xeb\xaf\x27\xbc\x1f\xc4\x1e\x1f\x6a\xd4\xb4\xad\xc4\xf2\x8f\x15\xce\x2d\x65\xc0\xb9\x08\x62\x60\xd9\x6c\x9b\x00\x9f\xce\x01\xf8\x59\xd7\xce\x72\xf7\x41\xf6\xfa\xc7\xb1\xd9\xba\xaf\xef\x00\x00\x00\xff\xff\x82\xc4\x6a\x49\x3d\x01\x00\x00" + +func TransactionsScriptsSubeditionsGet_nextsubeditionidCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsScriptsSubeditionsGet_nextsubeditionidCdc, + "../../../transactions/scripts/subeditions/get_nextSubeditionID.cdc", + ) +} + +func TransactionsScriptsSubeditionsGet_nextsubeditionidCdc() (*asset, error) { + bytes, err := TransactionsScriptsSubeditionsGet_nextsubeditionidCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/scripts/subeditions/get_nextSubeditionID.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0xc5, 0x1d, 0x11, 0xb5, 0xbe, 0xae, 0x66, 0xf4, 0x51, 0x8b, 0x6, 0x55, 0x50, 0x80, 0x85, 0xd2, 0x56, 0x47, 0xad, 0x31, 0x52, 0xb, 0xbe, 0x39, 0x57, 0x99, 0x4a, 0x93, 0x8f, 0xd2, 0x96}} + return a, nil +} + +var _TransactionsScriptsSubeditionsGet_nft_subeditionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xc1\x4a\xc4\x30\x10\x86\xef\x79\x8a\x9f\x3d\xed\x5e\x44\x54\x3c\x08\xb2\x88\x15\xec\x41\x2a\xa6\x3e\x40\xdb\x4c\xec\x40\x33\x09\xe9\x04\x04\xf1\xdd\xc5\x96\x2e\x9d\xcb\x0c\x0c\xdf\xc7\xc7\x21\xc5\xac\x68\x63\xb2\x63\x54\xf8\x1c\x03\xae\xbf\xdb\xe6\xdd\xbe\x36\xed\x53\x55\x7d\xbc\x58\x6b\x4c\x2a\x3d\x7c\x11\x84\x8e\xe5\x28\x5e\xeb\xea\x01\x9f\xb5\xe8\xfd\xdd\x69\x3d\x6e\x6f\xf0\x63\x0c\x00\x4c\xa4\x98\x4b\x4f\x8e\x95\xa3\xe0\x71\x53\x5f\x7d\x91\xbe\xc5\x40\xa2\xb3\xbd\xbc\x37\xd7\xb2\x4e\x0b\xbf\x9f\xf3\x19\xa9\x13\x1e\x8e\x87\xe7\x58\x26\x07\xf9\x2f\x64\x71\xd0\x91\x30\x27\x1a\xd8\x33\x39\x84\x45\x7b\x58\xf9\x4c\x5a\xb2\xec\x12\xcc\xef\x5f\x00\x00\x00\xff\xff\xb2\x46\x89\x55\xe4\x00\x00\x00" + +func TransactionsScriptsSubeditionsGet_nft_subeditionCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsScriptsSubeditionsGet_nft_subeditionCdc, + "../../../transactions/scripts/subeditions/get_nft_subedition.cdc", + ) +} + +func TransactionsScriptsSubeditionsGet_nft_subeditionCdc() (*asset, error) { + bytes, err := TransactionsScriptsSubeditionsGet_nft_subeditionCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/scripts/subeditions/get_nft_subedition.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2c, 0x69, 0x26, 0xff, 0x94, 0x4d, 0x4c, 0x84, 0x9, 0xce, 0xe9, 0x1d, 0x3d, 0x8e, 0x4a, 0x9, 0x9a, 0x19, 0xd2, 0x55, 0x64, 0x2, 0xd3, 0xb4, 0x83, 0xe7, 0x4e, 0xdd, 0x5, 0xb9, 0x88}} + return a, nil +} + +var _TransactionsScriptsSubeditionsGet_subedition_by_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4e\x84\x30\x10\xc6\xef\x7d\x8a\xef\xe8\x5e\xc4\xe8\x8d\xc4\x83\x06\x13\x39\xed\x66\xc1\x07\x28\x30\x48\x13\x68\x71\x3a\x8d\x6e\x8c\xef\x6e\x28\xf2\xc7\x3d\xb6\xf9\xe6\x37\xbf\x6f\xcc\x30\x3a\x16\x94\x6e\x2c\x3a\x27\x68\xd9\x0d\xb8\xfb\x2a\x8f\xa7\xe2\xf5\x58\x3e\x65\xd9\xf9\xa5\x28\x94\x4a\x12\x94\x9d\xf1\xf0\x35\x9b\x51\xc0\x24\x81\xad\x87\x74\x84\x36\xf4\x3d\x8a\x50\x51\x63\xc4\x38\x0b\xb2\x62\xe4\x12\x41\xd3\xd8\x14\x59\xe0\x7e\xd0\x2c\xa8\x9d\x15\xd6\xb5\x44\xea\x49\xb3\x1e\x48\x88\x7d\xaa\x92\x64\xfa\xf1\x2b\x2a\xcf\x52\x94\x1d\x21\x58\xf3\x11\x08\x79\x86\xd6\x71\x04\x6e\x19\x7c\x76\xce\x13\x1a\x2d\x1a\x96\xa8\xf1\x10\x87\x8a\xc0\xa4\x9b\xb8\xe0\x3c\xab\xa6\x3b\xc5\xb8\x45\x38\xd4\x7f\x75\x17\xbd\x4d\x6c\x0c\x15\xda\x60\x31\x68\x63\x6f\xfe\x0b\xbd\xe5\x56\x1e\xee\x0f\xe9\x32\x75\xbb\xab\xfe\xad\x14\x00\xf4\x24\xab\xa1\x38\x8b\xc7\x35\xfb\x4e\xb2\xc5\x9f\x2f\x79\x76\x05\xdf\xbf\x0e\x33\x6c\x3e\xf5\x9e\xa7\x7e\x7e\x03\x00\x00\xff\xff\x3a\x91\x6a\x6a\xb4\x01\x00\x00" + +func TransactionsScriptsSubeditionsGet_subedition_by_idCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsScriptsSubeditionsGet_subedition_by_idCdc, + "../../../transactions/scripts/subeditions/get_subedition_by_id.cdc", + ) +} + +func TransactionsScriptsSubeditionsGet_subedition_by_idCdc() (*asset, error) { + bytes, err := TransactionsScriptsSubeditionsGet_subedition_by_idCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/scripts/subeditions/get_subedition_by_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0x5, 0x12, 0x2b, 0xc6, 0xf3, 0x5, 0x9f, 0xf, 0xd4, 0x56, 0x30, 0x4b, 0xde, 0xef, 0x90, 0x1d, 0x1f, 0x3f, 0x59, 0x8d, 0xe3, 0xf9, 0x3b, 0x98, 0xfd, 0x56, 0x0, 0x31, 0xed, 0x3e}} + return a, nil +} + var _TransactionsShardedcollectionBatch_from_shardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x26\x97\x16\x4b\x0d\xf4\x50\xf5\x60\x39\x51\xad\x10\x2b\x3e\xd4\xb1\x0c\x55\x0f\x55\x0f\xcb\x32\x98\x6d\x61\x17\xcd\x0e\x75\xa2\xc8\xff\xbd\x5a\x3e\x8c\x71\x92\x3d\x20\x34\xbc\x99\xf7\xf6\xbd\x41\x55\xb5\x21\x86\x8d\xd1\xab\x46\xef\x55\x5a\x62\x62\xfe\xa2\x86\x9c\x4c\x05\x9f\x9f\x36\xab\x64\x19\x45\xbb\xfb\x38\xf6\x7a\x64\x62\xea\xb8\x30\x3c\x00\x92\xc7\x6d\xfc\xf0\xf8\x0e\x28\x2e\x04\x65\x98\xdd\x99\xb2\x44\xc9\xca\x9c\xc6\xc6\x0f\xcb\x5d\x74\x1f\x0d\x5d\x5e\x18\x42\x52\x28\x0b\x4c\x42\x5b\xd1\x41\x33\xac\x8d\x55\x6c\x41\x80\x6e\xaa\x14\x09\x4c\x0e\x9b\x55\x62\x81\x0d\x08\x20\x94\xaa\x56\xa8\xb9\xed\xde\x0a\x12\x15\x32\x92\xf5\xc2\xd0\x15\x4e\x9f\xe7\xc0\x05\xc2\xaa\x34\x07\x10\x59\x46\x68\x2d\x1c\x0a\x03\x07\x55\x96\x0e\x84\xea\x1f\xb6\x08\x37\xd9\x35\x56\xa6\x42\xcd\xeb\xc8\xce\x41\x68\x10\x44\xe2\xd9\x11\x77\x65\x58\x47\x76\x94\x51\x08\x1e\x79\x26\x13\x3d\xef\xec\x26\xfe\x99\x96\x65\x27\xe1\xd3\x39\xcd\xaf\x1f\x6b\xcd\x5f\xbf\xfc\x9e\xc1\x8b\xe7\x01\x00\x94\xc8\x9d\x13\x39\x52\x9b\x86\x9d\xc3\xb7\xcb\x84\x82\xd1\xd5\xb6\xa9\x7d\xd4\x84\xb5\x20\xf4\x85\x94\x8e\xac\xe1\x62\x29\xa5\x69\x34\xbb\xd9\xd0\x9f\xd3\x8b\xc5\x32\x0f\xa6\x44\xb0\xb8\x06\xd7\x1c\xa4\x86\xc8\x1c\x16\x1f\xde\x4b\x32\x78\x55\xb9\xf5\x5d\xb8\x73\x08\x2d\x1b\x12\x7b\x0c\x7b\xc4\xf7\xf6\xa6\x23\x6e\x76\x15\xa4\x82\x65\xf1\x53\x71\x91\x91\x38\xf8\x2a\xb3\xf3\xd1\x8f\x59\x2b\xef\xd8\x39\x81\x4f\x28\x1b\xc6\xc1\x18\x77\xc2\x10\xf6\xce\x9f\x02\x47\xef\x3f\x5a\xa8\x9b\xb4\x54\xd2\x69\x77\xd7\x05\x93\xfe\x41\xc9\xa7\x26\xe7\xe8\x98\xd4\x8d\x9b\xd0\x1b\x33\x86\x33\x7b\x93\xe3\x6c\x77\x09\x73\x24\xd4\x12\x21\x37\x34\x08\x70\x69\xd3\x25\x4f\x5b\xdc\x61\x0e\x37\x23\x6b\xb0\x47\xbe\x13\xb5\x48\x55\xa9\xf8\xd9\x0f\x3b\xc1\xe1\x2b\x77\x4e\xce\xbf\xf4\xd6\x07\x97\x90\x6d\xdb\x79\xbc\xf5\x67\x57\x13\xc9\xfd\x0f\x33\x6c\x33\x28\x3d\x11\x69\x41\x4e\x37\xc6\x9d\x33\xb1\x5d\x2a\x51\x37\xc4\xe7\x7e\xef\x16\xd7\x6f\x6c\xc9\x90\xd1\xf1\x7f\x00\x00\x00\xff\xff\x53\xaa\xa5\xd9\x3e\x04\x00\x00" func TransactionsShardedcollectionBatch_from_shardedCdcBytes() ([]byte, error) { @@ -1969,16 +2158,21 @@ var _bindata = map[string]func() (*asset, error){ "../../../transactions/admin/add_play_to_set.cdc": TransactionsAdminAdd_play_to_setCdc, "../../../transactions/admin/add_plays_to_set.cdc": TransactionsAdminAdd_plays_to_setCdc, "../../../transactions/admin/batch_mint_moment.cdc": TransactionsAdminBatch_mint_momentCdc, + "../../../transactions/admin/batch_mint_moment_with_subedition.cdc": TransactionsAdminBatch_mint_moment_with_subeditionCdc, + "../../../transactions/admin/create_new_subedition_admin_resource.cdc": TransactionsAdminCreate_new_subedition_admin_resourceCdc, "../../../transactions/admin/create_play.cdc": TransactionsAdminCreate_playCdc, "../../../transactions/admin/create_set.cdc": TransactionsAdminCreate_setCdc, "../../../transactions/admin/create_set_and_play_struct.cdc": TransactionsAdminCreate_set_and_play_structCdc, + "../../../transactions/admin/create_subedition.cdc": TransactionsAdminCreate_subeditionCdc, "../../../transactions/admin/fulfill_pack.cdc": TransactionsAdminFulfill_packCdc, "../../../transactions/admin/lock_set.cdc": TransactionsAdminLock_setCdc, "../../../transactions/admin/mark_moment_unlockable.cdc": TransactionsAdminMark_moment_unlockableCdc, "../../../transactions/admin/mint_moment.cdc": TransactionsAdminMint_momentCdc, + "../../../transactions/admin/mint_moment_with_subedition.cdc": TransactionsAdminMint_moment_with_subeditionCdc, "../../../transactions/admin/retireAll_plays_from_set.cdc": TransactionsAdminRetireall_plays_from_setCdc, "../../../transactions/admin/retire_all.cdc": TransactionsAdminRetire_allCdc, "../../../transactions/admin/retire_play_from_set.cdc": TransactionsAdminRetire_play_from_setCdc, + "../../../transactions/admin/set_nft_subedition.cdc": TransactionsAdminSet_nft_subeditionCdc, "../../../transactions/admin/start_new_series.cdc": TransactionsAdminStart_new_seriesCdc, "../../../transactions/admin/transfer_admin.cdc": TransactionsAdminTransfer_adminCdc, "../../../transactions/admin/unlock_all_moments.cdc": TransactionsAdminUnlock_all_momentsCdc, @@ -2039,6 +2233,10 @@ var _bindata = map[string]func() (*asset, error){ "../../../transactions/scripts/sets/get_setSeries.cdc": TransactionsScriptsSetsGet_setseriesCdc, "../../../transactions/scripts/sets/get_set_data.cdc": TransactionsScriptsSetsGet_set_dataCdc, "../../../transactions/scripts/sets/get_set_locked.cdc": TransactionsScriptsSetsGet_set_lockedCdc, + "../../../transactions/scripts/subeditions/get_all_subeditions.cdc": TransactionsScriptsSubeditionsGet_all_subeditionsCdc, + "../../../transactions/scripts/subeditions/get_nextSubeditionID.cdc": TransactionsScriptsSubeditionsGet_nextsubeditionidCdc, + "../../../transactions/scripts/subeditions/get_nft_subedition.cdc": TransactionsScriptsSubeditionsGet_nft_subeditionCdc, + "../../../transactions/scripts/subeditions/get_subedition_by_id.cdc": TransactionsScriptsSubeditionsGet_subedition_by_idCdc, "../../../transactions/shardedCollection/batch_from_sharded.cdc": TransactionsShardedcollectionBatch_from_shardedCdc, "../../../transactions/shardedCollection/setup_sharded_collection.cdc": TransactionsShardedcollectionSetup_sharded_collectionCdc, "../../../transactions/shardedCollection/transfer_from_sharded.cdc": TransactionsShardedcollectionTransfer_from_shardedCdc, @@ -2106,16 +2304,21 @@ var _bintree = &bintree{nil, map[string]*bintree{ "add_play_to_set.cdc": {TransactionsAdminAdd_play_to_setCdc, map[string]*bintree{}}, "add_plays_to_set.cdc": {TransactionsAdminAdd_plays_to_setCdc, map[string]*bintree{}}, "batch_mint_moment.cdc": {TransactionsAdminBatch_mint_momentCdc, map[string]*bintree{}}, + "batch_mint_moment_with_subedition.cdc": {TransactionsAdminBatch_mint_moment_with_subeditionCdc, map[string]*bintree{}}, + "create_new_subedition_admin_resource.cdc": {TransactionsAdminCreate_new_subedition_admin_resourceCdc, map[string]*bintree{}}, "create_play.cdc": {TransactionsAdminCreate_playCdc, map[string]*bintree{}}, "create_set.cdc": {TransactionsAdminCreate_setCdc, map[string]*bintree{}}, "create_set_and_play_struct.cdc": {TransactionsAdminCreate_set_and_play_structCdc, map[string]*bintree{}}, + "create_subedition.cdc": {TransactionsAdminCreate_subeditionCdc, map[string]*bintree{}}, "fulfill_pack.cdc": {TransactionsAdminFulfill_packCdc, map[string]*bintree{}}, "lock_set.cdc": {TransactionsAdminLock_setCdc, map[string]*bintree{}}, "mark_moment_unlockable.cdc": {TransactionsAdminMark_moment_unlockableCdc, map[string]*bintree{}}, "mint_moment.cdc": {TransactionsAdminMint_momentCdc, map[string]*bintree{}}, + "mint_moment_with_subedition.cdc": {TransactionsAdminMint_moment_with_subeditionCdc, map[string]*bintree{}}, "retireAll_plays_from_set.cdc": {TransactionsAdminRetireall_plays_from_setCdc, map[string]*bintree{}}, "retire_all.cdc": {TransactionsAdminRetire_allCdc, map[string]*bintree{}}, "retire_play_from_set.cdc": {TransactionsAdminRetire_play_from_setCdc, map[string]*bintree{}}, + "set_nft_subedition.cdc": {TransactionsAdminSet_nft_subeditionCdc, map[string]*bintree{}}, "start_new_series.cdc": {TransactionsAdminStart_new_seriesCdc, map[string]*bintree{}}, "transfer_admin.cdc": {TransactionsAdminTransfer_adminCdc, map[string]*bintree{}}, "unlock_all_moments.cdc": {TransactionsAdminUnlock_all_momentsCdc, map[string]*bintree{}}, @@ -2192,6 +2395,12 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_set_data.cdc": {TransactionsScriptsSetsGet_set_dataCdc, map[string]*bintree{}}, "get_set_locked.cdc": {TransactionsScriptsSetsGet_set_lockedCdc, map[string]*bintree{}}, }}, + "subeditions": {nil, map[string]*bintree{ + "get_all_subeditions.cdc": {TransactionsScriptsSubeditionsGet_all_subeditionsCdc, map[string]*bintree{}}, + "get_nextSubeditionID.cdc": {TransactionsScriptsSubeditionsGet_nextsubeditionidCdc, map[string]*bintree{}}, + "get_nft_subedition.cdc": {TransactionsScriptsSubeditionsGet_nft_subeditionCdc, map[string]*bintree{}}, + "get_subedition_by_id.cdc": {TransactionsScriptsSubeditionsGet_subedition_by_idCdc, map[string]*bintree{}}, + }}, }}, "shardedCollection": {nil, map[string]*bintree{ "batch_from_sharded.cdc": {TransactionsShardedcollectionBatch_from_shardedCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/topshot_admin_templates.go b/lib/go/templates/topshot_admin_templates.go index 47ccfb1c..cff7514d 100644 --- a/lib/go/templates/topshot_admin_templates.go +++ b/lib/go/templates/topshot_admin_templates.go @@ -20,6 +20,12 @@ const ( createSetAndPlayFilename = "admin/create_set_and_play_struct.cdc" transferAdminFilename = "admin/transfer_admin.cdc" + + mintMomentWithSubeditionFilename = "admin/mint_moment_with_subedition.cdc" + batchMintMomentWithSubeditionFilename = "admin/batch_mint_moment_with_subedition.cdc" + createNewSubeditionAdminResourceFilename = "admin/create_new_subedition_admin_resource.cdc" + createSubeditionFilename = "admin/create_subedition.cdc" + setNFTsubedition = "admin/set_nft_subedition.cdc" ) // GenerateMintPlayScript creates a new play data struct @@ -118,6 +124,44 @@ func GenerateCreateSetandPlayDataScript(env Environment) []byte { return []byte(replaceAddresses(code, env)) } +// GenerateMintMomentWithSubeditionScript generates a script to mint a new moment +// with Subedition from a play-set-subedition combination +func GenerateMintMomentWithSubeditionScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + mintMomentWithSubeditionFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateBatchMintMomentWithSubeditionScript mints multiple moments with Subedition +// of the same play-set-subedition combination +func GenerateBatchMintMomentWithSubeditionScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + batchMintMomentWithSubeditionFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateCreateNewSubeditionAdminResourceScript creates new Subedition admin resource +// for minting with Subeditions +func GenerateCreateNewSubeditionAdminResourceScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + createNewSubeditionAdminResourceFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateCreateSubeditionScript creates new Subedition struct +func GenerateCreateSubeditionScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + createSubeditionFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateSetNFTsubedtitionScript creates new Subedition entity in map with NFTid as key +func GenerateSetNFTsubedtitionScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + setNFTsubedition) + + return []byte(replaceAddresses(code, env)) +} + // GenerateInvalidChangePlaysScript tries to modify the playDatas dictionary // which should be invalid func GenerateInvalidChangePlaysScript(env Environment) []byte { diff --git a/lib/go/templates/topshot_script_templates.go b/lib/go/templates/topshot_script_templates.go index e3ade344..15653984 100644 --- a/lib/go/templates/topshot_script_templates.go +++ b/lib/go/templates/topshot_script_templates.go @@ -43,6 +43,12 @@ const ( // metadata scripts getNFTMetadataFilename = "get_nft_metadata.cdc" getTopShotMetadataFilename = "get_topshot_metadata.cdc" + + //subedition scripts + getNFTSubeditionFilename = "subeditions/get_nft_subedition.cdc" + getAllSubeditionFilename = "subeditions/get_all_subeditions.cdc" + getSubeditionByIDFilename = "subeditions/get_subedition_by_id.cdc" + getNextSubeditionIDFilename = "subeditions/get_nextSubeditionID.cdc" ) // Global Data Gettetrs @@ -231,3 +237,31 @@ func GenerateGetTopShotMetadataScript(env Environment) []byte { return []byte(replaceAddresses(code, env)) } + +// GenerateGetNFTSubeditionScript creates a script that returns the subedition for an NFT. +func GenerateGetNFTSubeditionScript(env Environment) []byte { + code := assets.MustAssetString(scriptsPath + getNFTSubeditionFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateGetAllSubeditionScript creates a script that returns all subeditions. +func GenerateGetAllSubeditionScript(env Environment) []byte { + code := assets.MustAssetString(scriptsPath + getAllSubeditionFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateGetNextSubeditionIDScript creates a script that returns next subedition ID that will be used. +func GenerateGetNextSubeditionIDScript(env Environment) []byte { + code := assets.MustAssetString(scriptsPath + getNextSubeditionIDFilename) + + return []byte(replaceAddresses(code, env)) +} + +// GenerateGetSubeditionByIDScript creates a script that returns subedition struct by ID. +func GenerateGetSubeditionByIDScript(env Environment) []byte { + code := assets.MustAssetString(scriptsPath + getSubeditionByIDFilename) + + return []byte(replaceAddresses(code, env)) +} diff --git a/lib/go/test/subedition_test.go b/lib/go/test/subedition_test.go new file mode 100644 index 00000000..8e2ad3c4 --- /dev/null +++ b/lib/go/test/subedition_test.go @@ -0,0 +1,725 @@ +package test + +import ( + "testing" + + "github.com/onflow/cadence" + jsoncdc "github.com/onflow/cadence/encoding/json" + + "github.com/dapperlabs/nba-smart-contracts/lib/go/templates" + + "github.com/onflow/flow-go-sdk" + "github.com/onflow/flow-go-sdk/crypto" + "github.com/stretchr/testify/assert" +) + +// This test tests the pure functionality of the smart contract +func TestSubeditions(t *testing.T) { + tb := NewTopShotTestBlockchain(t) + b := tb.Blockchain + env := tb.env + accountKeys := tb.accountKeys + topshotAddr := tb.topshotAdminAddr + serviceKeySigner := tb.serviceKeySigner + topshotSigner := tb.topshotAdminSigner + + // Create a new user account + joshAccountKey, joshSigner := accountKeys.NewWithSigner() + joshAddress, _ := b.CreateAccount([]*flow.AccountKey{joshAccountKey}, nil) + + firstName := CadenceString("FullName") + + lebron := CadenceString("Lebron") + oladipo := CadenceString("Oladipo") + hayward := CadenceString("Hayward") + durant := CadenceString("Durant") + + playType := CadenceString("PlayType") + dunk := CadenceString("Dunk") + + playIDString := CadenceString("PlayID") + setIDString := CadenceString("SetID") + value1 := CadenceString("1") + value3 := CadenceString("3") + subedition111Name := CadenceString("Subedition PlayID:1 SetID:1 SubeditionID: 1") + subedition112Name := CadenceString("Subedition PlayID:1 SetID:1 SubeditionID: 2") + subedition133Name := CadenceString("Subedition PlayID:3 SetID:1 SubeditionID: 3") + subedition134Name := CadenceString("Subedition PlayID:3 SetID:1 SubeditionID: 4") + var result cadence.Value + // Admin sends a transaction to create a play + t.Run("Should be able to create a new Play", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateMintPlayScript(env), topshotAddr) + + metadata := []cadence.KeyValuePair{{Key: firstName, Value: lebron}, {Key: playType, Value: dunk}} + play := cadence.NewDictionary(metadata) + _ = tx.AddArgument(play) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + }) + + // Admin sends transactions to create multiple plays + t.Run("Should be able to create multiple new Plays", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateMintPlayScript(env), topshotAddr) + + metadata := []cadence.KeyValuePair{{Key: firstName, Value: oladipo}} + play := cadence.NewDictionary(metadata) + _ = tx.AddArgument(play) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateMintPlayScript(env), topshotAddr) + + metadata = []cadence.KeyValuePair{{Key: firstName, Value: hayward}} + play = cadence.NewDictionary(metadata) + _ = tx.AddArgument(play) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateMintPlayScript(env), topshotAddr) + + metadata = []cadence.KeyValuePair{{Key: firstName, Value: durant}} + play = cadence.NewDictionary(metadata) + _ = tx.AddArgument(play) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Check that the return all plays script doesn't fail + // and that we can return metadata about the plays + executeScriptAndCheck(t, b, templates.GenerateGetAllPlaysScript(env), nil) + + result = executeScriptAndCheck(t, b, templates.GenerateGetPlayMetadataFieldScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.String("FullName"))}) + assert.Equal(t, CadenceString("Lebron"), result) + }) + + // Admin creates a new Set with the name Genesis + t.Run("Should be able to create a new Set", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateMintSetScript(env), topshotAddr) + + _ = tx.AddArgument(CadenceString("Genesis")) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Check that the set name, ID, and series were initialized correctly. + result := executeScriptAndCheck(t, b, templates.GenerateGetSetNameScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, CadenceString("Genesis"), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetSetIDsByNameScript(env), [][]byte{jsoncdc.MustEncode(cadence.String("Genesis"))}) + idsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt32(1)}) + assert.Equal(t, idsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetSetSeriesScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewUInt32(0), result) + }) + + t.Run("Should not be able to create set and play data structs that increment the id counter", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateSetandPlayDataScript(env), topshotAddr) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Check that the play ID and set ID were not incremented + result = executeScriptAndCheck(t, b, templates.GenerateGetNextPlayIDScript(env), nil) + assert.Equal(t, cadence.NewUInt32(5), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNextSetIDScript(env), nil) + assert.Equal(t, cadence.NewUInt32(2), result) + + }) + + // Admin sends a transaction that adds play 1 to the set + t.Run("Should be able to add a play to a Set", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateAddPlayToSetScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + }) + + // Admin sends a transaction that adds plays 2 and 3 to the set + t.Run("Should be able to add multiple plays to a Set", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateAddPlaysToSetScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + + plays := []cadence.Value{cadence.NewUInt32(2), cadence.NewUInt32(3)} + _ = tx.AddArgument(cadence.NewArray(plays)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Make sure the plays were added correctly and the edition isn't retired or locked + result := executeScriptAndCheck(t, b, templates.GenerateGetPlaysInSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + playsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt32(1), cadence.NewUInt32(2), cadence.NewUInt32(3)}) + assert.Equal(t, playsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetIsEditionRetiredScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewBool(false), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetIsSetLockedScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewBool(false), result) + + }) + + // Admin sends a transaction that creates a new sharded collection for the admin + t.Run("Should be able to create new sharded moment collection and store it", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateSetupShardedCollectionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt64(32)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + }) + + t.Run("Should be able to create new subedition admin resource", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateNewSubeditionAdminResourceScript(env), topshotAddr) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + }) + + t.Run("Should be able to create multiple new Subeditions", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateSubeditionScript(env), topshotAddr) + + name := subedition111Name + metadata := []cadence.KeyValuePair{{Key: setIDString, Value: value1}, {Key: playIDString, Value: value1}} + subeditionMetadata := cadence.NewDictionary(metadata) + _ = tx.AddArgument(name) + _ = tx.AddArgument(subeditionMetadata) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateSubeditionScript(env), topshotAddr) + + name = subedition112Name + metadata = []cadence.KeyValuePair{{Key: setIDString, Value: value1}, {Key: playIDString, Value: value1}} + subeditionMetadata = cadence.NewDictionary(metadata) + _ = tx.AddArgument(name) + _ = tx.AddArgument(subeditionMetadata) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateSubeditionScript(env), topshotAddr) + + name = subedition133Name + metadata = []cadence.KeyValuePair{{Key: setIDString, Value: value1}, {Key: playIDString, Value: value3}} + subeditionMetadata = cadence.NewDictionary(metadata) + _ = tx.AddArgument(name) + _ = tx.AddArgument(subeditionMetadata) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateCreateSubeditionScript(env), topshotAddr) + + name = subedition134Name + metadata = []cadence.KeyValuePair{{Key: setIDString, Value: value1}, {Key: playIDString, Value: value3}} + subeditionMetadata = cadence.NewDictionary(metadata) + _ = tx.AddArgument(name) + _ = tx.AddArgument(subeditionMetadata) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNextSubeditionIDScript(env), nil) + assert.Equal(t, cadence.NewUInt32(5), result) + + // Check that the return all subeditions script works properly + // and that we can return metadata about the plays + result = executeScriptAndCheck(t, b, templates.GenerateGetAllSubeditionScript(env), nil) + + result = executeScriptAndCheck(t, b, templates.GenerateGetSubeditionByIDScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + + metadataFields := result.(cadence.Struct).Fields + + metadata = []cadence.KeyValuePair{{Key: setIDString, Value: value1}, {Key: playIDString, Value: value1}} + subeditionMetadata = cadence.NewDictionary(metadata) + assert.Equal(t, cadence.NewUInt32(1), metadataFields[0]) + assert.Equal(t, subedition111Name, metadataFields[1]) + assert.Equal(t, subeditionMetadata, metadataFields[2]) + }) + + t.Run("Should be able to link nft to subedition", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateSetNFTsubedtitionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt64(100)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNFTSubeditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(100))}) + assert.Equal(t, cadence.NewUInt32(1), result) + }) + + // Admin mints a moment that stores it in the admin's collection + t.Run("Should be able to mint a moment with subedition #1", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // make sure the moment was minted correctly and is stored in the collection with the correct data + result := executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewBool(true), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetCollectionIDsScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr))}) + idsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt64(1)}) + assert.Equal(t, idsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + }) + + t.Run("Should be able to mint a moment with subedition #2", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(2)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // make sure the moment was minted correctly and is stored in the collection with the correct data + result := executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewBool(true), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetCollectionIDsScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr))}) + idsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt64(2), cadence.NewUInt64(1)}) + assert.Equal(t, idsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + }) + + t.Run("Should be able to get moments metadata", func(t *testing.T) { + // Tests to ensure that all core metadataviews are resolvable + expectedMetadataName := "Lebron Dunk" + expectedMetadataDescription := "A series 0 Genesis moment with serial number 1" + expectedMetadataThumbnail := "https://assets.nbatopshot.com/media/1?width=256" + expectedMetadataExternalURL := "https://nbatopshot.com/moment/1" + expectedStoragePath := "/storage/MomentCollection" + expectedPublicPath := "/public/MomentCollection" + expectedPrivatePath := "/private/MomentCollection" + expectedCollectionName := "NBA-Top-Shot" + expectedCollectionDescription := "NBA Top Shot is your chance to own, sell, and trade official digital collectibles of the NBA and WNBA's greatest plays and players" + expectedCollectionSquareImage := "https://nbatopshot.com/static/img/og/og.png" + expectedCollectionBannerImage := "https://nbatopshot.com/static/img/top-shot-logo-horizontal-white.svg" + expectedRoyaltyReceiversCount := 1 + expectedTraitsCount := 5 + expectedVideoURL := "https://assets.nbatopshot.com/media/1/video" + + resultNFT := executeScriptAndCheck(t, b, templates.GenerateGetNFTMetadataScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + metadataViewNFT := resultNFT.(cadence.Struct) + assert.Equal(t, cadence.String(expectedMetadataName), metadataViewNFT.Fields[0]) + assert.Equal(t, cadence.String(expectedMetadataDescription), metadataViewNFT.Fields[1]) + assert.Equal(t, cadence.String(expectedMetadataThumbnail), metadataViewNFT.Fields[2]) + assert.Equal(t, cadence.String(expectedMetadataExternalURL), metadataViewNFT.Fields[5]) + assert.Equal(t, cadence.String(expectedStoragePath), metadataViewNFT.Fields[6]) + assert.Equal(t, cadence.String(expectedPublicPath), metadataViewNFT.Fields[7]) + assert.Equal(t, cadence.String(expectedPrivatePath), metadataViewNFT.Fields[8]) + assert.Equal(t, cadence.String(expectedCollectionName), metadataViewNFT.Fields[9]) + assert.Equal(t, cadence.String(expectedCollectionDescription), metadataViewNFT.Fields[10]) + assert.Equal(t, cadence.String(expectedCollectionSquareImage), metadataViewNFT.Fields[11]) + assert.Equal(t, cadence.String(expectedCollectionBannerImage), metadataViewNFT.Fields[12]) + assert.Equal(t, cadence.UInt32(expectedRoyaltyReceiversCount), metadataViewNFT.Fields[13]) + assert.Equal(t, cadence.UInt32(expectedTraitsCount), metadataViewNFT.Fields[14]) + assert.Equal(t, cadence.String(expectedVideoURL), metadataViewNFT.Fields[15]) + + // Tests that top-shot specific metadata is discoverable on-chain + expectedPlayID := 1 + expectedSetID := 1 + expectedSerialNumber := 1 + + resultTopShot := executeScriptAndCheck(t, b, templates.GenerateGetTopShotMetadataScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + metadataViewTopShot := resultTopShot.(cadence.Struct) + assert.Equal(t, cadence.UInt32(expectedSerialNumber), metadataViewTopShot.Fields[26]) + assert.Equal(t, cadence.UInt32(expectedPlayID), metadataViewTopShot.Fields[27]) + assert.Equal(t, cadence.UInt32(expectedSetID), metadataViewTopShot.Fields[28]) + }) + + // Admin sends a transaction that locks the set + t.Run("Should be able to lock a set which stops plays from being added", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateLockSetScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // This should fail because the set is locked + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateAddPlayToSetScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(4)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + true, + ) + + // Script should return that the set is locked + result := executeScriptAndCheck(t, b, templates.GenerateGetIsSetLockedScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewBool(true), result) + }) + + // Admin sends a transaction that mints a batch of moments + t.Run("Should be able to mint a batch of moments with subedition #1", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateBatchMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(3)) + _ = tx.AddArgument(cadence.NewUInt64(5)) + _ = tx.AddArgument(cadence.NewUInt32(3)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Ensure that the correct number of moments have been minted for each edition + result := executeScriptAndCheck(t, b, templates.GenerateGetNumMomentsInEditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewUInt32(2), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNumMomentsInEditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(3))}) + assert.Equal(t, cadence.NewUInt32(5), result) + + result = executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewBool(true), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetCollectionIDsScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr))}) + idsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt64(3), cadence.NewUInt64(5), cadence.NewUInt64(4), cadence.NewUInt64(2), cadence.NewUInt64(6), cadence.NewUInt64(7), cadence.NewUInt64(1)}) + assert.Equal(t, idsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + }) + + t.Run("Should be able to mint a batch of moments with subedition #2", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateBatchMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(3)) + _ = tx.AddArgument(cadence.NewUInt64(5)) + _ = tx.AddArgument(cadence.NewUInt32(4)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Ensure that the correct number of moments have been minted for each edition + result := executeScriptAndCheck(t, b, templates.GenerateGetNumMomentsInEditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewUInt32(2), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNumMomentsInEditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(3))}) + assert.Equal(t, cadence.NewUInt32(10), result) + + result = executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewBool(true), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetCollectionIDsScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr))}) + idsArray := cadence.NewArray([]cadence.Value{cadence.NewUInt64(3), cadence.NewUInt64(8), cadence.NewUInt64(9), cadence.NewUInt64(10), cadence.NewUInt64(12), cadence.NewUInt64(5), cadence.NewUInt64(4), cadence.NewUInt64(2), cadence.NewUInt64(6), cadence.NewUInt64(11), cadence.NewUInt64(7), cadence.NewUInt64(1)}) + assert.Equal(t, idsArray, result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + }) + + t.Run("Should be able to get moment's subedition", func(t *testing.T) { + //check separately minted moments + result = executeScriptAndCheck(t, b, templates.GenerateGetNFTSubeditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNFTSubeditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(2))}) + assert.Equal(t, cadence.NewUInt32(2), result) + + //check batch minted moments + result = executeScriptAndCheck(t, b, templates.GenerateGetNFTSubeditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(3))}) + assert.Equal(t, cadence.NewUInt32(3), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNFTSubeditionScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(8))}) + assert.Equal(t, cadence.NewUInt32(4), result) + }) + + t.Run("Should be able to check moment's serial number", func(t *testing.T) { + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(3))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(4))}) + assert.Equal(t, cadence.NewUInt32(2), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(5))}) + assert.Equal(t, cadence.NewUInt32(3), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(6))}) + assert.Equal(t, cadence.NewUInt32(4), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(7))}) + assert.Equal(t, cadence.NewUInt32(5), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(8))}) + assert.Equal(t, cadence.NewUInt32(1), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(9))}) + assert.Equal(t, cadence.NewUInt32(2), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(10))}) + assert.Equal(t, cadence.NewUInt32(3), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(11))}) + assert.Equal(t, cadence.NewUInt32(4), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSerialNumScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(12))}) + assert.Equal(t, cadence.NewUInt32(5), result) + }) + + t.Run("Should be able to mint a batch of moments with subedition and fulfill a pack", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateBatchMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(3)) + _ = tx.AddArgument(cadence.NewUInt64(5)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateFulfillPackScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + ids := []cadence.Value{cadence.NewUInt64(6), cadence.NewUInt64(7), cadence.NewUInt64(8)} + _ = tx.AddArgument(cadence.NewArray(ids)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + }) + + // Admin sends a transaction to retire a play + t.Run("Should be able to retire a Play which stops minting", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateRetirePlayScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Minting from this play should fail becuase it is retired + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + true, + ) + + // Make sure this edition is retired + result := executeScriptAndCheck(t, b, templates.GenerateGetIsEditionRetiredScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.UInt32(1))}) + assert.Equal(t, cadence.NewBool(true), result) + }) + + // Admin sends a transaction that retires all the plays in a set + t.Run("Should be able to retire all Plays which stops minting", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateRetireAllPlaysScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // minting should fail + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateMintMomentWithSubeditionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(1)) + _ = tx.AddArgument(cadence.NewUInt32(3)) + _ = tx.AddArgument(cadence.NewAddress(topshotAddr)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + true, + ) + + verifyQuerySetMetadata(t, b, env, + SetMetadata{ + setID: 1, + name: "Genesis", + series: 0, + plays: []uint32{1, 2, 3}, + //retired {UInt32: Bool} + locked: true, + //numberMintedPerPlay {UInt32: UInt32}}) + }) + }) + + // create a new Collection for a user address + t.Run("Should be able to create a moment Collection", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateSetupAccountScript(env), joshAddress) + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, joshAddress}, []crypto.Signer{serviceKeySigner, joshSigner}, + false, + ) + }) + + // Admin sends a transaction to transfer a moment to a user + t.Run("Should be able to transfer a moment", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateTransferMomentfromShardedCollectionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewAddress(joshAddress)) + _ = tx.AddArgument(cadence.NewUInt64(1)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + // make sure the user received it + result = executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(joshAddress)), jsoncdc.MustEncode(cadence.UInt64(1))}) + assert.Equal(t, cadence.NewBool(true), result) + }) + + // Admin sends a transaction to transfer a batch of moments to a user + t.Run("Should be able to batch transfer moments from a sharded collection", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateBatchTransferMomentfromShardedCollectionScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewAddress(joshAddress)) + + ids := []cadence.Value{cadence.NewUInt64(2), cadence.NewUInt64(3), cadence.NewUInt64(4)} + _ = tx.AddArgument(cadence.NewArray(ids)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + // make sure the user received them + result = executeScriptAndCheck(t, b, templates.GenerateGetMomentSetScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(joshAddress)), jsoncdc.MustEncode(cadence.UInt64(2))}) + assert.Equal(t, cadence.NewUInt32(1), result) + }) + + // Admin sends a transaction to update the current series + t.Run("Should be able to change the current series", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeSeriesScript(env), topshotAddr) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + }) + + // Make sure the contract fields are correct + result = executeScriptAndCheck(t, b, templates.GenerateGetSeriesScript(env), nil) + assert.Equal(t, cadence.NewUInt32(1), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNextPlayIDScript(env), nil) + assert.Equal(t, cadence.NewUInt32(5), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetNextSetIDScript(env), nil) + assert.Equal(t, cadence.NewUInt32(2), result) + + result = executeScriptAndCheck(t, b, templates.GenerateGetSupplyScript(env), nil) + assert.Equal(t, cadence.NewUInt64(17), result) + +} diff --git a/transactions/admin/batch_mint_moment_with_subedition.cdc b/transactions/admin/batch_mint_moment_with_subedition.cdc new file mode 100644 index 00000000..c81aeb45 --- /dev/null +++ b/transactions/admin/batch_mint_moment_with_subedition.cdc @@ -0,0 +1,43 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction mints multiple moments +// from a single set/play/subedition combination + +// Parameters: +// +// setID: the ID of the set to be minted from +// playID: the ID of the Play from which the Moments are minted +// subeditionID: the ID of play's subedition +// quantity: the quantity of Moments to be minted +// recipientAddr: the Flow address of the account receiving the collection of minted moments + +transaction(setID: UInt32, playID: UInt32, quantity: UInt64, subeditionID: UInt32, recipientAddr: Address) { + + // Local variable for the topshot Admin object + let adminRef: &TopShot.Admin + + prepare(acct: AuthAccount) { + + // borrow a reference to the Admin resource in storage + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin)! + } + + execute { + + // borrow a reference to the set to be minted from + let setRef = self.adminRef.borrowSet(setID: setID) + + // Mint all the new NFTs with Subeditions + let collection <- setRef.batchMintMomentWithSubedition(playID: playID, quantity: quantity, subeditionID: subeditionID) + + // Get the account object for the recipient of the minted tokens + let recipient = getAccount(recipientAddr) + + // get the Collection reference for the receiver + let receiverRef = recipient.getCapability(/public/MomentCollection).borrow<&{TopShot.MomentCollectionPublic}>() + ?? panic("Cannot borrow a reference to the recipient's collection") + + // deposit the NFT in the receivers collection + receiverRef.batchDeposit(tokens: <-collection) + } +} \ No newline at end of file diff --git a/transactions/admin/create_new_subedition_admin_resource.cdc b/transactions/admin/create_new_subedition_admin_resource.cdc new file mode 100644 index 00000000..9319abec --- /dev/null +++ b/transactions/admin/create_new_subedition_admin_resource.cdc @@ -0,0 +1,21 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction is for the admin to create a new subedition admin resource +// and store it in the top shot smart contract + +transaction() { + + // Local variable for the topshot Admin object + let adminRef: &TopShot.Admin + + prepare(acct: AuthAccount) { + + // borrow a reference to the Admin resource in storage + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin) + ?? panic("Could not borrow a reference to the Admin resource") + } + + execute { + self.adminRef.createSubeditionAdminResource() + } +} \ No newline at end of file diff --git a/transactions/admin/create_subedition.cdc b/transactions/admin/create_subedition.cdc new file mode 100644 index 00000000..2fd737c8 --- /dev/null +++ b/transactions/admin/create_subedition.cdc @@ -0,0 +1,36 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction creates a new subedition struct +// and stores it in the Top Shot smart contract + +// Parameters: +// +// name: the name of a new Subedition to be created +// metadata: A dictionary of all the play metadata associated + +transaction(name:String, metadata:{String:String}) { + + // Local variable for the topshot Admin object + let adminRef: &TopShot.Admin + let currSubeditionID: UInt32 + + prepare(acct: AuthAccount) { + + // borrow a reference to the admin resource + self.currSubeditionID = TopShot.getNextSubeditionID(); + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin) + ?? panic("No admin resource in storage") + } + + execute { + + // Create a subedition with the specified metadata + self.adminRef.createSubedition(name: name, metadata: metadata) + } + + post { + + TopShot.getSubeditionByID(subeditionID: self.currSubeditionID) != nil: + "SubedititonID doesnt exist" + } +} \ No newline at end of file diff --git a/transactions/admin/mint_moment_with_subedition.cdc b/transactions/admin/mint_moment_with_subedition.cdc new file mode 100644 index 00000000..123fdd74 --- /dev/null +++ b/transactions/admin/mint_moment_with_subedition.cdc @@ -0,0 +1,39 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction is what an admin would use to mint a single new moment +// and deposit it in a user's collection + +// Parameters: +// +// setID: the ID of a set containing the target play +// playID: the ID of a play from which a new moment is minted +// subeditionID: the ID of play's subedition +// recipientAddr: the Flow address of the account receiving the newly minted moment + +transaction(setID: UInt32, playID: UInt32, subeditionID: UInt32, recipientAddr: Address) { + // local variable for the admin reference + let adminRef: &TopShot.Admin + + prepare(acct: AuthAccount) { + // borrow a reference to the Admin resource in storage + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin)! + } + + execute { + // Borrow a reference to the specified set + let setRef = self.adminRef.borrowSet(setID: setID) + + // Mint a new NFT with Subedition + let moment1 <- setRef.mintMomentWithSubedition(playID: playID, subeditionID: subeditionID) + + // get the public account object for the recipient + let recipient = getAccount(recipientAddr) + + // get the Collection reference for the receiver + let receiverRef = recipient.getCapability(/public/MomentCollection).borrow<&{TopShot.MomentCollectionPublic}>() + ?? panic("Cannot borrow a reference to the recipient's moment collection") + + // deposit the NFT in the receivers collection + receiverRef.deposit(token: <-moment1) + } +} \ No newline at end of file diff --git a/transactions/admin/set_nft_subedition.cdc b/transactions/admin/set_nft_subedition.cdc new file mode 100644 index 00000000..9c78e02c --- /dev/null +++ b/transactions/admin/set_nft_subedition.cdc @@ -0,0 +1,25 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction links nft to subedititon + +// Parameters: +// +// nftID: the unique ID of nft +// subeditionID: the unique ID of subedition + +transaction(nftID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32) { + + // Local variable for the topshot Admin object + let adminRef: &TopShot.Admin + + prepare(acct: AuthAccount) { + // borrow a reference to the admin resource + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin) + ?? panic("No admin resource in storage") + } + + execute { + // Create a subedition with the specified metadata + self.adminRef.setMomentsSubedition(nftID: nftID, subeditionID: subeditionID, setID: setID, playID: playID) + } +} \ No newline at end of file diff --git a/transactions/scripts/subeditions/get_all_subeditions.cdc b/transactions/scripts/subeditions/get_all_subeditions.cdc new file mode 100644 index 00000000..17385cdf --- /dev/null +++ b/transactions/scripts/subeditions/get_all_subeditions.cdc @@ -0,0 +1,12 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This script returns an array of all the plays +// that have ever been created for Top Shot + +// Returns: [TopShot.Play] +// array of all plays created for Topshot + +pub fun main(): [TopShot.Subedition] { + + return TopShot.getAllSubeditions() +} \ No newline at end of file diff --git a/transactions/scripts/subeditions/get_nextSubeditionID.cdc b/transactions/scripts/subeditions/get_nextSubeditionID.cdc new file mode 100644 index 00000000..9d6c6b20 --- /dev/null +++ b/transactions/scripts/subeditions/get_nextSubeditionID.cdc @@ -0,0 +1,12 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This script reads the nextSubeditionID from the SubeditionAdmin resource and +// returns that number to the caller + +// Returns: UInt32 +// the next number in nextSubeditionID from the SubeditionAdmin resource + +pub fun main(): UInt32 { + + return TopShot.getNextSubeditionID() +} \ No newline at end of file diff --git a/transactions/scripts/subeditions/get_nft_subedition.cdc b/transactions/scripts/subeditions/get_nft_subedition.cdc new file mode 100644 index 00000000..17a50211 --- /dev/null +++ b/transactions/scripts/subeditions/get_nft_subedition.cdc @@ -0,0 +1,8 @@ +import TopShot from 0xTOPSHOTADDRESS + +pub fun main(nftID: UInt64): UInt32 { + + let subedition = TopShot.getMomentsSubedition(nftID: nftID) + ?? panic("Could not find the specified moment") + return subedition +} \ No newline at end of file diff --git a/transactions/scripts/subeditions/get_subedition_by_id.cdc b/transactions/scripts/subeditions/get_subedition_by_id.cdc new file mode 100644 index 00000000..b7b68b05 --- /dev/null +++ b/transactions/scripts/subeditions/get_subedition_by_id.cdc @@ -0,0 +1,18 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This script returns the full Subedition entity from +// the TopShot smart contract + +// Parameters: +// +// subeditionID: The unique ID for the subedition whose data needs to be read + +// Returns: Subedition +// struct from TopShot contract + +pub fun main(subeditionID: UInt32): TopShot.Subedition { + + let subedititon = TopShot.getSubeditionByID(subeditionID: subeditionID) + + return subedititon +} \ No newline at end of file