From b824c6f75209601a5dbe20def985f963a0b11bea Mon Sep 17 00:00:00 2001 From: Jamil Khan Date: Thu, 26 Jan 2023 12:06:00 -0500 Subject: [PATCH] Add borrowNFTSafe impl and test (#206) --- contracts/TopShot.cdc | 13 +++ lib/go/contracts/internal/assets/assets.go | 6 +- lib/go/templates/internal/assets/assets.go | 23 ++++ lib/go/templates/topshot_script_templates.go | 7 ++ lib/go/test/borrowNFT_test.go | 109 ++++++++++++++++++ lib/go/test/topshot_test.go | 19 ++- .../scripts/collections/borrow_nft_safe.cdc | 32 +++++ 7 files changed, 204 insertions(+), 5 deletions(-) create mode 100644 lib/go/test/borrowNFT_test.go create mode 100644 transactions/scripts/collections/borrow_nft_safe.cdc diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 7bd3efc3..c3f22ad8 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -1254,6 +1254,19 @@ pub contract TopShot: NonFungibleToken { return (&self.ownedNFTs[id] as &NonFungibleToken.NFT?)! } + // Safe way to borrow a reference to an NFT that does not panic + // Also now part of the NonFungibleToken.PublicCollection interface + // + // Parameters: id: The ID of the NFT to get the reference for + // + // Returns: An optional reference to the desired NFT, will be nil if the passed ID does not exist + pub fun borrowNFTSafe(id: UInt64): &NonFungibleToken.NFT? { + if let nftRef = &self.ownedNFTs[id] as &NonFungibleToken.NFT? { + return nftRef + } + return nil + } + // borrowMoment returns a borrowed reference to a Moment // so that the caller can read data and call methods from it. // They can use this to read its setID, playID, serialNumber, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 1e2c777c..7da2063a 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 (71.066kB) +// ../../../contracts/TopShot.cdc (71.634kB) // ../../../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\xec\xbd\x7d\x73\x1b\xb9\x91\x30\xfe\xbf\x3f\x05\xac\xfb\xd5\x2e\x95\xa3\x49\x6f\x36\xb7\xbf\x7a\x58\x56\x1c\xd9\xb2\x36\xba\xd8\xb2\xcf\x52\xb2\x75\xe5\x72\x3d\x01\x39\x20\x89\x78\x38\x60\x06\xa0\x68\xae\xcf\xdf\xfd\x29\x74\xe3\x1d\x98\x21\x65\xc9\x9b\xcb\x56\x58\xa9\xac\x45\x02\x8d\x46\xa3\xd1\xe8\x37\x34\xc6\xbf\x79\x40\x08\x21\x67\x4c\xce\x5a\xbe\x56\x5c\x34\x13\xf2\x9c\x35\xaa\xa5\x35\xb9\x5a\xd1\x56\x91\xe7\x42\xff\x35\x53\x64\x2e\x5a\x72\xf9\xec\x94\x5c\x8b\xf5\xd5\x52\xa8\x07\xd0\xf1\x7a\xc9\x25\x91\xd0\x70\x66\x1b\xea\x7f\x50\xde\x48\xa2\x96\x8c\xcc\x44\xcb\xc8\x7c\xd3\xcc\x34\x6c\x5a\x73\xb5\x03\x40\xd0\xd9\x40\x23\x1a\xdc\x90\xcc\x5a\x46\x15\xab\xc8\x74\x47\xce\xe8\x7a\xcd\x5a\xf2\x92\x4e\xa5\x1d\x86\x79\xf8\x2b\xda\xd0\x05\x43\xf0\x15\x55\x94\x50\x29\xc5\x8c\x43\xe7\x2d\x57\x4b\x42\xeb\x1a\x7e\x5c\xd7\x74\x27\x09\x6d\x2a\x22\x99\x92\x00\x48\x2d\xa9\x22\xb4\x65\x64\x23\x59\x45\xa8\x24\x8a\xad\xd6\x35\x55\x4c\x02\x5a\xba\xd7\x2b\xb1\x62\x8d\x22\x97\xe7\xd7\x66\xf0\x9f\x96\xac\x21\x94\x34\x6c\x4b\xde\xd4\x74\x47\xb6\xb4\x51\x92\x28\x41\xa6\x8c\xd0\xaa\x62\x95\xfe\xb7\xee\xd9\xb2\x99\x68\x2b\x39\x24\xb4\x21\xa7\xd5\x8a\x37\x66\x4e\x38\x74\x00\x41\xaa\x76\x33\x53\x88\x8c\xa6\x9f\x12\x2d\xab\x08\x6f\x00\x4a\x4c\xcd\x91\x23\x40\x13\x80\xa5\x16\x34\xc0\xbc\x62\x4a\x8e\xe0\xff\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x35\x9f\x45\xa3\x01\x30\xb7\x40\xa6\x01\x6f\xe6\xa2\x5d\x51\xbd\x42\x84\x4e\xc5\x46\x11\xaa\x29\x36\x04\xd2\x51\xb2\x6e\xf9\x8d\x1e\xaa\x65\x52\x6c\xda\x19\xd2\x0e\xa9\x29\xc8\x8a\x37\x0a\x90\x58\x01\xd9\x24\x99\x52\x4d\x59\x31\x9f\x6b\x1c\x70\x05\x60\xe4\x25\xbd\x61\x64\xca\x58\x43\x6a\xde\x7c\xf0\x44\xbb\x62\xc1\x1c\x09\x85\xf9\xb9\x91\x96\x14\x97\x79\x2d\xb6\xac\xd5\x3d\x2a\x01\xab\x2b\xe6\xf0\x35\x5f\xad\x45\xab\x68\xa3\x08\x05\xfe\x42\x42\x97\xe9\x68\x96\x51\xc3\x97\xb0\x84\x1a\xdc\x4c\x03\xb3\xdc\x29\x75\x4f\x9c\xb9\xe1\x15\xb6\xc3\x16\x6a\xc9\x78\x4b\xa6\xa2\x6d\xc5\xf6\x8a\x29\xd7\x43\x83\x58\x30\x4d\xae\x96\xcd\x59\xcb\x9a\x19\x23\x96\x30\x00\xc8\xe2\xe2\xb1\xd0\x0b\x39\xb4\xa0\x9b\x14\x01\x61\x50\x67\x8a\x6c\x24\x6f\x16\x48\x3a\x07\xdc\x10\xea\x42\xb7\xe2\x7a\x16\xbb\x61\x61\xaa\xb0\x6c\x5c\x49\x52\xb1\x39\x6f\x58\xe5\xc8\xa9\x27\xa8\x18\x34\x01\x38\xb0\x59\x16\x9a\x8f\x88\x62\x74\xb5\x15\xed\x87\x21\xf9\xdb\x46\x2a\x52\xf3\x0f\x0c\x20\x5f\x34\x15\xa7\x0d\x25\x6f\xe8\x8c\xb5\x12\x47\x5b\x20\x53\x2b\xd8\xbf\xba\x23\x00\xd3\x1c\xa7\x49\xc5\x57\x6c\x04\x5f\xf8\xbd\x63\x59\x43\xef\x3b\xcd\x2f\xac\x32\x14\xd0\x5f\xf0\x86\x2b\x4e\x6b\xfe\xb3\xdb\xbd\x66\x07\x9e\xe9\xad\x6d\x78\x97\x36\xc8\x70\xba\x43\xcb\xd4\xa6\x6d\x50\x50\x68\x74\x00\x62\x3b\x2a\x08\x0a\x5a\x4b\x61\x88\x20\x09\x25\xcf\x45\x5d\x33\x5c\x37\x4b\x91\x11\x0a\x30\xae\xa5\x04\x11\xd3\xbf\xb1\x68\x9f\xb0\x1b\xd6\xee\xac\xbc\xd3\x02\x81\x88\x6d\xc3\x5a\xb2\xe5\x75\x8d\x9b\xd6\xac\x2f\x6f\x09\x9d\xcd\xc4\xa6\x51\x6e\x5b\x80\x8c\x32\xbf\xe9\x9e\x33\x37\x78\x80\xe9\x8a\xf2\xc6\x49\x40\x0b\x02\xc1\x03\xee\xb0\x67\xf4\x4a\x8a\x6d\x63\xe5\x92\x07\x64\xb8\x5d\x01\x23\x6d\x24\xd3\xe3\x2e\x45\x5d\xb9\x1e\x96\xee\x7e\xff\x35\x42\x91\x1d\x53\xb8\x0f\x25\xc3\x4d\x40\x75\x67\x4b\xc0\x4b\xa1\xd8\x84\x9c\xc2\x04\xf5\xa6\x9f\x2d\x69\xb3\xd0\x9c\xe8\x99\x14\xf0\x5b\xd3\x46\x4b\x8e\xb9\x26\x1c\x6f\x6e\x68\xcd\x2b\x42\xdb\xc5\x06\x70\xe4\x88\xda\xba\x15\x37\x5c\xcb\x47\xd1\x12\xd1\x30\xcd\x22\x1a\xb5\x75\xcb\x1e\xcd\x44\x53\x71\xc3\xf3\x2d\x59\x0b\x09\xec\x6b\xbf\xa2\x2d\x6b\xbe\x55\x64\xa5\x45\x83\x06\x74\xee\xc6\x86\xa9\x54\x02\x7e\x15\x15\x9f\xef\x0c\x9a\xb8\x24\x7c\xb5\xae\x77\x86\x41\xc8\x63\x0d\xb9\xe1\x35\xae\xa5\xde\x13\x6a\x29\x24\x23\x33\x2a\x99\x24\x0d\x43\x11\x34\xd5\x42\xa6\xa9\x6a\xcf\x4f\x7a\x4b\x3a\x72\x5c\x80\x80\x86\xc5\xf0\xc2\x46\x09\xd2\xb2\x15\x5b\x4d\xb5\x4c\x72\xdc\xa2\x17\xf4\x47\x51\x57\xac\x21\x57\x80\xd3\x4f\xb4\x6d\xb9\x68\x25\x99\xd6\x6c\x4b\x28\xf9\xfe\xd1\x77\xa4\x66\xd4\x09\xfa\xdf\x3e\xfe\xee\x07\xd8\x43\x73\xde\xd0\x5a\x8e\x1e\x3c\xf8\xcd\xf8\xc1\x03\x1c\x46\x4f\x79\xc1\xa7\x35\xbb\x16\x1f\x58\x43\xe6\xad\x58\x91\xc7\x1f\xcf\xff\x7c\xf9\xe3\xc5\xb3\x97\x2f\xae\x5f\xff\xe9\xc5\xe5\xe9\xd9\xd9\xdb\x17\x57\x57\xb6\xc3\xa5\x68\x8a\x7d\x2e\xcf\xaf\x93\x96\xaf\x98\xa2\xfa\xdc\xfc\x0b\x67\x5b\x69\x9b\xbd\x7a\x71\x7d\x7a\x76\x7a\x7d\xfa\x97\x8b\x17\x3f\x5d\x25\x1d\xcc\x0e\x78\x29\x66\x1f\x80\x13\xb0\xc7\xf5\xeb\x37\x57\x7f\x7c\x7d\xfd\xf2\xf5\xf3\x3f\x5d\x5c\xfe\x68\xbb\x3c\x58\x6f\xa6\x7e\x07\x9a\x9e\x93\x1c\xbb\x4f\x40\xb3\xf1\x98\x3c\xba\x9f\x8f\x05\x67\x77\x6b\xc5\xd6\xb5\xd8\x01\x37\xde\xd0\x96\xd3\x69\x6d\x8e\xe1\x7b\x1c\xd2\x8d\xb9\xd4\xe7\xb0\xd2\xf2\x33\x92\xf6\x9a\x75\x10\x0f\xbd\x07\x1a\xdc\x13\x9b\xa9\xde\x4a\xe4\x12\xdb\x0f\x8e\xc9\x84\x5c\xa9\x56\xd3\xf5\x93\xe5\xdc\xff\xef\xd3\xe5\x8b\xeb\x9f\x5e\xbf\xfd\xd3\x67\xf2\x39\x1a\x84\x56\x55\xcb\x24\xe8\x1e\xdb\x25\x9f\x2d\x49\x2b\x76\xb4\x56\x9c\x49\x22\x97\x62\x53\x57\x9a\x9d\x2b\xb6\x16\x92\x2b\x73\x44\xdb\xf1\xde\x42\xcb\xdd\x29\x42\x80\x61\xcd\xbf\xfd\xb8\x6e\x4d\xdf\xbe\xfe\xef\xd3\x97\xd7\xff\x6d\xd6\x34\x41\x62\x4d\xd5\xd2\x1d\xde\x9b\x29\xc3\x4d\x6b\x34\x13\x77\x72\x4f\x59\x2d\x50\x70\x98\xa6\xa7\x81\x80\x1c\x8f\x0d\xfe\x87\x52\xcb\x8f\x03\xc3\x5c\x29\xd1\xd2\x05\x7b\x43\xd5\xd2\x10\xd0\xfd\xed\x67\x33\x96\xf8\xed\xd8\xb0\x44\x02\xc3\x4f\xea\xbe\xd8\x21\xe1\x40\x37\xaf\x17\x37\x5a\x0a\x7f\x2d\xe6\x7b\xb1\xe2\x0a\x34\x5f\x7d\xd2\x6a\x7a\x66\xe3\x73\x69\x75\x6b\x47\x53\xa6\x51\x72\xaa\xfd\x85\x3f\x82\x07\xc7\x65\xc0\xb9\xf2\xda\x09\x55\x37\x7a\x8e\xbf\x0c\x78\x35\x21\x7f\xbe\x68\xd4\xf7\xbf\x1d\x6a\x69\x0e\x62\x67\x42\x3e\x21\xc3\x4f\xf0\x3f\x9f\x8f\x7b\x46\x94\xac\xd5\xdc\xad\xf5\x40\x38\xb3\x54\xcb\x17\x0b\xd6\xa2\xb4\xa6\x46\x9f\x4b\x10\xb8\x64\xdb\x2b\xe8\x76\xa5\x68\xab\xb1\x68\xd8\xf6\xf9\xa6\x6d\x59\xa3\xf0\x7b\x8b\x53\x30\x57\x58\x22\x30\x01\xae\x98\x7a\xf4\x96\xd5\x60\x4d\x84\x5a\xe5\x78\xdc\x83\xa6\x56\x0a\x3b\x09\x72\xc5\x94\xa5\x87\x64\xea\xe2\xcc\x93\x44\x26\xe8\xec\xa1\xbc\x3e\x89\xac\xbd\x41\x35\xd8\x02\xe5\x4f\x75\x83\x6b\x71\xc5\x54\x3a\x98\xd6\xc5\xfd\xdf\x5d\x83\xd9\x81\x5a\xa6\xb8\x26\x33\x08\x7b\x18\x0c\x8e\xd0\x19\x6d\xb4\x0e\x31\x35\x06\x94\x31\x00\x0a\x78\xbc\xc5\xfe\xe7\xad\x58\xed\xc5\x65\x48\x9a\xcd\x0a\xd5\x9b\xbd\xc4\x30\x94\xae\xc5\xec\x83\x56\x23\x57\x8c\x36\x5a\xc8\xbc\x01\x43\xc3\x63\x07\x74\xca\xd7\xe1\x25\x74\x8b\xb1\xe9\x1a\xc9\xe8\x5b\x5c\x1a\x9d\x35\x20\x45\x02\x18\x5b\xbe\x82\x56\x03\x54\xba\x2c\xf8\x1f\x7e\x97\x4f\xb6\xc0\x04\xb4\xbe\xdc\x68\x75\x22\xf8\xd6\x49\xab\x10\xd3\x02\xbf\x7a\xad\xf6\x51\x7b\x1b\xb6\x5d\xb9\xe9\x69\xad\xbb\x6a\xe9\xb6\xb1\x33\xf4\x20\x93\x89\xfe\x64\x5a\xba\x7d\xad\xa7\xa7\x3b\xb9\xc3\xe4\x69\x17\x35\xfd\x70\xee\x7c\xd2\xd6\x88\xe8\x1b\xee\x0c\x5b\x46\xa3\x29\x11\x8e\xb5\x77\xe9\x2a\x26\x55\xab\x4f\x94\xe2\x92\x9d\xd9\x5f\x83\x21\x3a\x81\x06\x67\x5d\xf7\x56\x77\x6d\xdc\x8e\x2f\xac\xe3\x90\x34\x74\xc5\xec\xb9\xdf\x2b\x19\x0f\xc2\x25\x36\xa8\xe5\x9a\xcd\xf8\x9c\xcf\xcc\x1c\x3b\x31\x34\x92\x02\x5b\x15\xd8\xb6\x8c\xf9\x1e\xa1\xf2\x0b\x9d\xa9\x8f\x6a\x76\xc3\x6a\x32\xe7\xac\xae\xe4\x28\xd0\x4e\x24\xb3\xde\x0d\xbd\x0b\x36\xb4\x26\x37\xb4\xde\x30\xe9\x1d\x3f\xfd\xce\x96\xaf\x74\x48\xe3\xb9\x83\x48\x80\xe9\x7e\x05\x46\x98\x56\x91\xb4\x36\x37\x4a\xda\x69\x41\xaf\x91\x9a\xb1\xb5\xf5\x12\x35\x15\x9f\x81\x9b\x8a\x92\x45\x2b\x36\x6b\x6d\x4c\x81\xc7\x47\x2d\x5b\xb1\x59\x2c\x03\xc3\x7b\x3c\x26\xaf\x68\xb3\x33\x0e\x21\xda\x10\xf6\x91\x4b\x45\xf4\xfc\xa1\xd5\x90\x4c\x37\x8a\x88\xa6\xde\x81\x55\x86\x87\xd0\xc8\xf1\xc9\x0d\x6d\xc9\xac\x74\x5c\xba\xd9\xfc\xc5\x28\xd4\x44\xf2\x9f\x19\xa9\x38\xfa\xf6\xda\x9d\xc6\x29\x50\x11\x8c\xdb\x6b\x36\xd3\x0a\xa7\x64\xf5\xfc\x18\x60\x6b\x96\xd1\xb6\xbd\x9c\x90\x4f\x08\x78\x02\xbd\x3e\x1f\x04\xff\x8a\x85\x8e\x81\x8e\x21\x24\x36\x0a\x47\x30\xfd\x0e\x1e\xc4\x3b\x4d\x3a\x87\x90\x13\xf2\x87\x10\x7e\xac\x26\x5f\x9c\x39\xff\x9e\x3d\x2a\x8d\xcb\x0e\xce\xaa\x11\x09\x64\x79\xbb\x83\x85\x09\x8e\x5f\x23\x5e\xec\x06\x03\x8e\x90\x92\x2f\x1a\x56\xb9\x8e\x66\xbf\x5b\xf5\xe0\x5b\xa9\xc7\x44\x3b\x97\x81\x5c\xe0\xcd\x4c\xdb\xa9\x8d\xf1\xaa\x7e\x17\xaf\x71\xc3\x3e\xaa\x37\xd1\xf6\x3d\x10\x7f\x74\x37\x46\x68\x17\xf4\x9f\xf1\x18\x65\x45\x84\x7a\x80\xb2\x64\xea\x4b\x30\xbe\x0a\xe5\x4f\x84\xb0\x12\x8a\xd6\x5a\x93\xd0\x66\xb9\x98\x83\x5f\x45\x6a\xa1\x11\x38\x74\x53\x57\x64\x82\xf0\x33\x36\xa3\x1b\xc9\xb0\xa9\xde\x39\x60\x4e\x99\x33\x62\x48\xb8\x22\x95\x60\xb2\xf9\x56\x91\x86\x69\x7e\xa0\x2d\xaf\x77\xa0\x83\xf8\xad\x6d\x61\xb5\x6c\xae\x4f\x35\xf4\x5f\xa6\xb8\xc1\x00\xdc\xec\x4c\xd6\xcc\x98\xf1\xbb\x01\x71\x36\xce\xb1\x60\x61\x79\x84\x8d\x2a\xa2\x04\xa9\xa8\x62\x23\x72\x5a\x4b\xe1\x7c\xd9\x8b\x5a\x4c\x69\x6d\x8f\xda\x8b\x33\x54\x10\x74\x17\xde\x2c\x62\x52\x02\x42\x57\x9b\xf5\xba\xde\x59\x89\xff\x0b\xcb\xee\xe7\x62\x85\x7a\x00\xb9\xde\xad\x19\xba\xe9\x78\xa8\xb7\xdc\x3b\x1e\x70\x3a\xe8\x23\x00\x48\xfd\x9b\x60\xc4\xdf\x00\xa1\x34\x1e\xa1\x8c\xb6\x08\x5b\x00\x9a\x51\x85\x5a\x32\xe7\xec\x93\xd6\xf3\x36\x32\xc0\x03\x90\xa4\x12\xe0\x6d\x33\xa7\x91\x83\x81\x87\x92\x39\x84\xf0\x6c\x42\x79\x0c\x7e\x34\xa9\x68\x33\x63\x64\x20\x5a\xe3\x8d\x3c\xd6\xdc\x62\x7c\x67\x0a\xc6\x00\x2c\x2d\x38\xc3\xa3\x41\xe8\x24\xc2\x1c\x27\xe3\xdc\xfd\xd1\xa8\x5f\xed\xac\x73\xa6\x8a\xd6\x6f\x5c\xe0\x61\x29\xea\x4a\x3a\x4d\x27\x0c\xd9\x38\x8f\x00\x3a\x7f\x9d\xfa\x72\xf9\xec\x14\xa4\xdf\xd0\x7b\xa3\x6b\xb6\x60\x4d\xa5\x85\xb4\xe1\x71\x50\x87\x2c\x80\xb7\x74\x47\x4e\xeb\x9a\x35\x64\xc9\x71\x2b\x7d\x0f\x02\x87\x63\xe7\x3f\x32\x8a\x36\xcc\xd5\x7a\xd3\xca\xc0\x09\xf7\xbd\x71\xc0\x91\x05\x5d\x31\xf2\x83\x05\x27\x5a\x04\xff\x12\x96\xe4\x4a\xb1\xf5\x92\x35\x52\x34\xe8\xce\x33\xdd\x19\x85\xfd\xfc\x92\x4d\x5b\xd1\x90\xff\xa4\x2b\x4f\x58\x77\x16\x07\xe2\xc7\xb8\x76\xeb\x20\x5e\x40\x89\xe4\xcd\xa2\xc6\x68\x15\x31\xf1\x0e\xf4\x33\x8b\xb9\x85\xc1\x95\xa7\xdd\x08\xbd\x30\x18\xdb\x6a\x99\x09\xe2\xd4\x3b\x73\x46\xf1\x69\xcd\x86\x44\x0a\x42\x9b\x9d\x66\x9c\x19\x6d\xbc\x48\xa2\x15\xba\xcc\x0b\xcb\x90\x92\x1f\xd0\xb9\x38\x0b\x27\xa3\x85\x87\xb1\xfe\x61\x91\x3f\xe1\x9a\x07\x32\x78\xd3\xf0\xbf\x6f\xe0\xec\xb0\xd1\x34\xdd\xd0\xb5\xd2\x00\x6a\xa6\x12\xad\x31\x82\x72\xa5\x79\x54\xba\x10\x9e\xc7\x14\xe2\x52\x36\xaa\xa7\xe9\x04\x3a\x80\xb6\xfd\x56\x74\xbd\xe6\xcd\x22\xc6\x05\xbd\xfa\x7a\x07\x02\xe3\x88\x66\x41\x14\x6b\x57\x64\x4b\x77\xe0\x8f\x77\x80\x61\x49\xa6\x56\x2f\x1c\x91\x0b\x7d\x2c\x51\x88\x0b\x8a\x96\xb6\xbb\x10\xec\x4c\x34\x66\xfe\xdb\x25\xaf\x19\xd9\x32\x32\xe7\x8b\x4d\xcb\x08\x06\xcd\xa6\x4c\x29\xd6\xc2\x18\x18\xab\x72\x6b\x16\x40\xc9\xa8\x91\xab\xff\xc6\x32\xf8\xec\x29\xa3\xc5\xca\xa0\xbb\xe1\xb1\xf1\xa7\x3a\xd0\x2d\x4b\xbe\xd1\x1f\x87\x4d\xcd\x9a\x85\x5a\x92\x87\x27\xe4\xf1\x84\x1c\x5d\x5a\xff\x82\xa3\x89\xb7\xa3\xd9\x6a\xad\x76\x47\x11\xa4\xcf\xd1\x5f\x5a\x23\x1a\x19\x25\xe5\xc4\xca\xfa\x91\xd7\x2d\xf2\xc6\x6e\x94\x13\x37\xe0\x03\x0f\x3b\x20\x94\x59\x46\x17\x6c\xe3\x18\xbf\x6a\x8c\x07\x64\x4a\x67\x1f\xe6\xdc\xf0\x09\xe0\x0f\x7b\x53\xcc\x3e\xcc\x96\x5a\xff\x37\x0c\xbd\x12\xad\x16\xcc\x8a\xf2\xda\x1c\xf4\x16\x7a\xe5\x83\xde\x36\xa0\xa8\xc1\xe0\xfe\x9a\xb2\x86\xcd\x39\x04\x52\x97\xf4\x06\x43\x71\x2c\xea\xc2\xad\x51\x81\xfb\x6c\x2b\x36\x75\x0c\x7f\xca\x08\x28\x98\x4a\x90\x0f\x8d\xd8\xa2\xbd\xa1\x04\xaa\x98\x0e\xe9\x8a\xb7\x6c\xa6\xea\x1d\x1a\xdf\xe7\xb5\xd8\x3a\x20\x46\xe9\xb4\xd2\xfc\x18\x5c\xa1\x9b\xb5\x3e\xf9\xaf\xe9\xa2\xe6\x0d\x1b\x28\xfc\xaf\x65\x84\x63\xbb\xa7\x92\xd5\x8f\x08\xff\xee\xc8\xf4\x3e\x7a\x4f\x4e\x88\x81\xf0\x20\x6a\x6f\xd7\xd1\xe9\xea\xef\x82\x75\xd6\xbd\xf4\x9f\x51\x0f\xe3\x74\x0d\x9a\x3d\x88\x19\xc6\x6b\xc7\xa7\x56\x5d\x34\xa6\x8c\x26\xae\xb1\x1c\x42\x05\x4d\xcc\x66\x9b\xc0\x52\x6b\x19\xad\xc9\x56\xb4\xb5\xd3\xd6\xa0\xe9\x8a\x7e\x60\x64\xb3\x86\x10\x2c\x7a\x3f\x9c\x79\x64\x23\x65\xd3\x5a\x9f\xb1\x70\x88\x68\xad\x5d\xff\x34\xa5\x92\x4d\x69\x5d\x07\xb2\xfe\x15\x5d\xf0\x19\x99\xd1\xb6\x92\x23\x72\x8a\x6b\xe3\x8d\x27\xde\x90\xd5\xa6\x56\x7c\x5d\x6b\x5b\x61\x0e\xc2\x5b\x01\x38\x77\x8e\x7a\x1b\x0e\x2d\x14\x6e\x44\x54\x39\xd2\x4f\xd1\x78\xb5\xac\x90\x59\xa0\xa7\x4e\x7a\x93\xbf\x6f\x40\xd3\xc6\x56\x12\x22\x50\x41\xc4\xde\x69\x16\x3e\x70\xaf\xf5\x80\x19\xad\x6b\x4d\xd8\x1b\xda\x72\xb1\x91\x64\x01\xa2\x09\x1c\x67\xd1\xa9\x4b\x51\x40\xb2\x26\x47\x85\xbc\xd6\x26\xa2\x72\x51\x79\x1b\x8c\xa7\x53\x0e\x79\x1c\x81\x1d\x62\x62\x71\xda\xea\x84\xad\x6d\xd6\xcc\x66\x0e\x84\xf6\xd4\xa8\xe3\x44\xb1\x64\x8b\x0f\x95\x3f\x67\x07\x8a\x75\xbf\x91\x40\x82\xca\xdc\x28\x30\xfd\x2f\xf5\x91\x6e\x26\x16\xf6\x1c\x8f\x09\xfb\x38\x22\x47\xd7\x7c\xc5\x64\xe8\x3b\x6f\x45\xa3\x04\x79\x4b\xd7\x4a\xb4\x92\xcc\x96\xe2\x83\x67\x41\xcd\xd7\x62\x3e\x97\x47\x19\x02\xa1\x3f\x27\x3e\xce\x0e\x31\xfc\xc9\x3d\x1a\xff\xe4\x6e\x0e\x80\x98\xaa\xb9\xf5\x4f\xec\x59\x14\xce\xf8\xb0\xd3\x47\xf7\xb0\x27\xcf\xef\xdd\xc1\x73\x65\xa8\x77\xeb\x33\x07\x8d\xcb\xf8\xc8\x01\xe3\x30\x6f\x0a\xf0\x4f\x60\x98\x12\x1c\xa0\xba\x07\x14\xf9\x3e\x3a\x85\x98\x13\x61\x2e\xe2\xa5\xb4\x19\x13\x2b\xdc\x9a\x69\x7c\xdc\x5c\x09\x42\xab\x0a\x54\xd0\x96\xad\xc4\x0d\x0b\x35\x66\x69\x9d\xaf\xd2\x78\xda\x21\xb1\xc6\x38\xc5\x53\x95\xf2\x22\x13\x26\x76\xa7\xa1\x50\x49\xb2\x4e\xb4\x36\x18\x9a\x93\x2a\x4f\xb4\x71\xb9\x28\x46\xd3\x5c\x8a\x2a\x1b\xd5\xe7\xe7\xcc\x20\xf2\x52\x59\x91\x6d\xa2\x11\x76\x18\x97\xc2\xa2\x9b\x85\xd3\x88\x04\xb7\xd7\x80\xe1\x4f\xbd\xb7\xbc\xa6\x64\x46\x7b\x15\x26\x30\xf8\xec\x11\x88\xfd\xc0\x88\x56\x79\xab\xb5\x19\x0d\x36\x70\x18\x77\x0c\xe7\xab\x5b\xe3\x81\x81\x20\xb8\x1a\xea\xe6\x5b\xa6\x15\x72\xe9\x8f\x63\x1e\x60\x96\xcb\x76\x9f\x7e\x05\x29\x01\x18\x24\x09\xd7\xcf\x0c\xe5\x03\x13\x8e\x20\x26\xa0\x12\x59\x49\x1a\x50\x23\x40\x3b\x65\x2d\x9e\x7a\x76\xca\x61\xcc\x81\xab\x8c\x01\xe6\xc1\x22\x6a\x95\x47\xfa\x91\x1b\x81\x3a\x8f\x0b\x89\x44\x79\x6a\x7a\xde\x7a\xf7\xc7\xd6\x09\xb6\x93\xca\x90\x13\x07\x2f\x0c\x8a\x93\x38\xad\xeb\xc1\x31\x30\xa9\x1e\x5a\xff\xb3\x35\x69\x13\x15\x68\x65\x8f\x94\x78\xa4\xff\x3b\x24\xe9\x0a\x68\xdb\xb4\x16\x36\x41\x6c\x2e\x5a\x76\xa3\xcd\xe9\xa6\xd2\x9a\xfa\x12\x94\x79\xd1\x32\xe7\x7a\x01\xbd\x4a\xab\x71\x96\x02\x5a\x34\x39\x9e\xd5\x00\xf7\x9d\x16\xf2\x56\xa7\xc5\x69\xdb\xd2\x5d\x92\xb7\xa6\xe7\x46\xc9\x9a\xb6\x0a\xcf\x11\xbd\xf1\x6c\x5e\x8a\xe9\x66\x12\x04\xd7\x69\x8c\xce\x20\x30\x84\x4d\x75\x71\xa6\xcf\x60\x49\xe8\x7a\x8d\x2a\xec\x92\xb5\xb1\xcc\x36\x5e\xb7\x4a\x30\x34\x5c\x16\x70\x6a\x6a\x41\x51\x59\xe6\xd2\xd0\x01\xc7\x72\xb4\x6e\xd4\xad\x3a\x5a\xcf\xab\x9c\x90\x77\x38\xf3\xf7\x0f\xe2\x03\x63\xed\xdc\xb7\x17\x67\x66\xee\x17\xee\xe0\xe1\x73\x37\x5a\xe3\x0f\x32\xb3\x4e\x21\xbb\xc4\x24\x29\x87\x2d\xc1\x93\xc6\x25\x18\x6e\xf8\xf5\x9c\xd6\x92\x91\x81\x9e\xb5\x99\xca\x71\x1f\x38\xd3\x66\x88\x98\xe0\x8a\x00\xc1\xdb\x0d\x4b\xc2\x94\x90\xbf\xb4\x97\x32\x06\x60\xe0\x2f\x7e\x26\x44\x1d\x59\x23\x31\x31\x42\x86\xc6\xf3\xa2\xde\x99\xa0\x64\x09\xf1\xd8\x3f\x6a\xe7\xbf\x69\xb0\x07\x09\x7b\x68\xf4\xdf\x38\xe3\x9e\xd6\xb5\xd8\xba\x4c\xa5\x60\x17\x97\x46\x91\x71\x6c\xb4\x18\x13\x8d\xfa\x9d\xba\x55\x6c\x60\x23\x7a\x7a\x21\xc3\x19\xf4\x94\x70\xa8\x0e\xc3\xee\x68\x11\xcd\xb8\x34\xa9\x90\xba\x89\x9d\x2c\x60\x02\x7e\x95\x68\xc4\x8b\x79\x1e\xc3\x2d\xe2\x09\x52\x2a\x62\xd0\x6e\x41\x85\xc8\x02\x98\x18\x3d\xaa\xbc\xfa\xee\x72\x4d\x43\x71\xa0\xd7\x1e\xd1\xc0\x15\x4f\xb7\x44\x68\x9b\xf8\x6d\xe1\xf5\xb1\xc0\x5f\x2b\xe6\x0e\xc5\x0c\x89\xcc\x7f\xab\xc5\x93\xf3\xb4\xe0\xfc\x83\x7d\x55\x5a\xdb\x34\x1a\x6d\x78\x1f\x7c\x79\x79\x0e\xb1\x69\x6d\x8e\x40\x03\x49\x2e\xc5\x16\x13\xf0\x6a\x3a\x63\x01\x4d\x86\x84\x2d\x46\xe4\xbb\xef\xf5\x1c\x7e\x78\xbc\x67\xab\xe0\x74\x31\xd8\xfd\x86\xb5\x1a\xf9\x60\xdb\xe0\x7f\x53\xc7\x45\x9f\xb2\x78\x5b\x65\x0e\x45\xf3\x09\x79\xf7\x3e\xff\xcd\x26\x2d\x9c\x90\x4f\x05\x8d\xd1\x70\xf3\x09\x4a\x9b\x82\x9a\x98\xcf\x0c\x21\x45\x4d\xc7\x63\x82\xb1\x5d\x9f\xfa\x01\x76\x0b\x9e\x38\x46\x30\x42\xce\x39\x26\x88\x02\xf3\x79\x4d\x0c\x73\x92\x8a\xc6\xb6\x8d\x5a\xbd\xf3\x24\xd1\xa6\xb6\x19\xc0\x10\x51\xff\xff\x71\xd9\x5f\xa2\x37\x0e\x20\x4d\xab\x4a\xda\xf3\xc8\x1f\x43\x25\x17\x94\x56\x44\x68\x4b\x57\x4c\xdb\x86\x13\xe7\x97\x33\x27\x51\xe8\xa6\xb0\x16\xec\x94\xe9\x2d\xe1\xd3\x2b\x0a\x00\x5b\xf6\xe8\xb9\xcb\xe5\x9c\xa4\x27\x1c\x40\x6b\x18\xab\x5c\x0a\xbd\xb1\x4f\x34\xdc\x75\xe8\x2d\x34\x1d\xc0\x42\x08\xda\x6b\x29\x81\x4b\x59\x04\x3d\xa3\xcd\xb7\x66\xc7\xd1\xba\x65\xb4\xda\xe1\xce\x8b\x4e\xe5\xab\x32\x39\x6c\xba\x99\x21\xe4\x20\x89\x6e\x1f\x64\xe6\xe4\xae\x13\xeb\x35\x79\x78\x42\x1a\x5e\x4f\xc8\xd1\x73\x14\x75\x5a\x83\xf6\xf4\x15\x1a\xa9\x89\xf1\x09\x99\x28\x13\xd0\x65\x74\x94\x8d\xf1\x30\xe0\xe7\x1c\x5e\xb8\xee\xc0\x8c\x73\xc5\x9c\x36\xe4\x53\xa9\xcc\x69\x95\x43\xef\xda\x0c\x6e\x22\x27\x76\x22\xd6\x11\x0d\x40\x03\x6a\x57\x99\x0e\x34\x4a\xed\xb9\x74\x4f\x9d\x26\xc4\x00\xf5\xd6\xaa\x63\xb1\x68\x27\x91\x28\x18\xa1\x42\x65\xd6\xea\x38\x03\xfc\x7a\x6d\x6c\x7b\x80\xbc\x59\x87\x31\xb1\x4e\x09\xe2\xa7\x6a\x84\x45\x0a\xd5\xa7\xcc\x85\xf2\x16\xf3\xb7\x95\x20\x3f\xb3\x56\x1c\x24\x60\x82\x81\x1e\xc7\x83\xb0\x15\xef\xca\xe8\xf2\xf2\xc1\x27\x60\xd8\xe9\x17\x28\xec\x25\x83\x44\xd1\xe0\x3c\x59\xce\x7e\xeb\xd9\x13\x45\x11\x21\xad\x8c\x90\xa1\x90\x08\x34\xe6\xb2\x98\x48\x39\x0d\x3f\x14\xb2\xef\x61\xb1\x0f\xd8\x94\x72\xe0\x50\xb0\x8a\x6c\xba\x31\xf5\x0a\xaf\x8d\xae\x6a\x1a\x17\x36\x2a\x50\x31\xdd\xe9\xfa\xbf\xc7\x1d\xae\x87\x98\xa4\xc8\x29\xc0\x54\xf8\x4f\x69\x15\xd4\xd0\x10\x74\x36\x31\xa6\xe9\x7f\xab\xfc\x85\x99\xd0\x28\x3e\x84\xe6\x07\x88\xe5\xd0\xc6\x2c\x80\x3c\x40\x30\x73\x19\x98\x3a\xcc\x9d\x65\x81\x62\x4e\x06\xf4\x86\xf2\x1a\x3c\xdb\xc1\x56\x8a\xf5\xf5\x6c\xf1\x3c\xb5\xbe\x48\xa8\x16\xf7\x66\x2a\x4f\x8d\x35\x6e\x69\x53\x92\xa5\x4e\xcb\x92\x4c\x3d\xec\x15\x49\x7c\x6e\xa4\x6c\x32\xea\xc3\x43\xb1\x3b\x01\x6b\xe4\x41\xd6\xd8\xed\xeb\x72\x86\x64\xf7\xde\x8e\xb3\x24\xf7\x09\x94\x87\xb7\xe1\xe2\x53\x88\x48\x1a\x26\x8e\x2e\xcf\x79\x25\x31\xb2\x1b\xf4\x89\xb2\xa5\x70\xd7\xad\xf1\xd1\x69\xc7\x22\x28\x0c\xac\x73\xc6\x06\x41\x0e\xe1\xfc\x98\x5f\xd0\xd1\xd0\xbd\xb9\x03\x85\xb0\x77\x55\xbe\x70\x8b\x1b\xef\x46\xe4\x5f\x71\x1b\x7a\x9f\x9b\xe5\xcb\x36\x21\x8c\x80\xa9\xfc\xc6\x1a\x4a\x54\x1d\x4b\x20\x83\xdb\xa7\x32\xd3\x1a\x55\xb7\x83\x28\x4e\x11\x06\x0e\x4d\x9b\x00\x83\x66\xb9\xb2\x9e\x2f\x0f\xa3\x9d\x5e\x6c\x73\x2a\xea\x7f\x4a\xa3\x2d\x9b\xaf\xd0\x07\xaa\x36\xad\x71\x92\x36\x6c\x5b\xef\xac\x71\x14\xe4\x2d\x92\x44\x9c\xdc\x52\x30\x06\x47\xb3\x77\xea\xdd\x41\x3a\xae\x36\x32\xb7\x28\x61\x32\xd3\xc8\x54\x3f\x50\xc6\xbf\x45\x0a\x20\xfe\x97\xe7\xd7\x88\xf4\x96\x5a\x1b\xaf\x57\xa2\x7a\x02\xa7\x12\x75\x42\xfe\xa0\x81\xdd\x9b\x5c\x85\xd9\x40\x30\x1e\x86\x9b\x60\x58\x76\x7d\xb8\xa2\x9a\x8a\xd0\x4e\xd0\x81\x9b\x6b\x0d\x12\xdc\x8f\xe4\xd4\x56\xeb\xea\xda\xa7\x50\xfe\xc8\x54\x97\x7d\xde\x6d\x93\xc3\xd0\x51\xca\x02\x71\x31\xae\x8d\x64\xe8\x29\xe6\xd2\x40\xfa\x56\x9a\xe4\x6d\x33\x46\xd4\x09\xc2\x42\x9b\xd5\x45\x63\xec\xc8\xbd\x02\x3b\x9b\xc1\x2b\x4b\x1c\x7f\xbd\x36\x1f\x81\x6d\x5f\x99\x55\x81\x45\x7f\xf2\xc8\x66\xe9\x5d\x9e\x5f\x0f\xe2\xd4\x72\x8f\xcd\xbf\x1b\x56\x19\x7c\x77\x3c\xcc\xd6\xac\xff\x93\x9c\x49\xb7\xec\x9d\x1f\x72\xb7\x05\x10\x25\x25\x3f\xce\xd5\xfd\x0b\x9b\x41\x68\x22\x20\x5a\x21\x0f\x96\x7e\xef\x5a\x1f\xa0\xa8\x17\xe9\x18\x23\x62\xa2\xe1\x4f\x1e\xb9\xf5\xe9\x10\x93\x53\xaa\x66\xcb\x57\x99\xac\xd4\xea\xf0\x94\xab\x96\xb6\x3b\xf2\xf7\x0d\x6d\x14\x57\xbb\x2e\x0f\x53\x22\x4b\x57\x98\x1b\x93\x24\xd5\x93\x83\x14\x4c\xb5\x57\x8e\x86\x97\x78\x35\x15\xbb\x94\x7b\x8b\x34\xca\xb6\xd2\x14\xd0\x98\xcf\x04\x5d\x51\x3e\x06\x37\x77\xc3\x4b\xba\x2e\xce\x66\x75\x96\x68\x83\x6f\x59\xdb\x07\xdf\xca\xd1\x64\x05\x06\xe9\x6d\x0d\x3f\x13\x73\x3f\x60\x42\xfe\x10\xe0\xf3\xa9\xb4\x25\x83\xdf\xfd\x86\xf4\x5f\x0e\x12\x6e\xb9\xa1\x2d\xe1\x16\x3e\x58\x82\xe1\xaf\x98\x6a\xc4\xc9\x13\x4f\xc6\x42\x70\x35\x1c\x74\x64\xae\x58\x0c\x94\xf8\xc0\x9a\x09\x79\xf2\x08\xf3\x3f\xf2\x49\x1a\xab\xf1\x38\x83\xc7\xc9\x09\xe1\x86\xbf\x7f\xf8\x9d\xe6\xef\xf0\xd7\xcf\xdd\xdc\x5e\xe0\xbb\x2e\xc5\xe0\x27\xae\x96\xc1\x45\x86\x82\x9a\x00\xb1\x1f\xbf\xe5\x6f\xa9\x36\x7c\x2d\xad\x21\x22\x54\x2c\x90\x62\x90\x01\xe6\x7a\x26\xbc\x21\x2f\xcc\x9f\xbf\x32\xed\xa4\x47\x39\x89\x17\x39\xdb\x5d\xc5\x6b\x4e\xff\x52\x60\xee\xa6\xc0\x78\xa2\xde\x8f\x1a\xe3\xe1\xbd\x65\xf3\xc0\x4b\x6f\xd2\xa0\x47\x58\x18\xe3\xc9\x37\xc9\x0d\xdb\xdf\x0f\xf0\x6a\x98\x6d\xde\x77\x89\x37\x96\x2f\x4f\x9f\x62\x7d\x81\xc1\xd1\xa5\x88\xf6\x7f\x9c\xb4\xa0\x2d\x40\x04\x72\x94\x48\x54\xa7\x7c\x05\xf2\xe5\x24\x9e\xc7\x68\xc1\xd4\x65\x7c\xce\x07\x7c\x7a\x67\x45\x65\xcf\xe7\x6e\x6a\xd4\x9e\x4f\xbc\xa9\xc2\xbf\x72\x7d\xe9\xab\x28\x99\x01\xd5\x7f\x2d\xaa\x66\x3f\x15\x6f\xa9\x75\x76\x6c\xd0\x98\x3f\x69\x55\x5d\x8b\x5f\x86\x43\xef\x8d\x1b\x0f\xa6\x59\x3c\x55\xc9\xcc\x69\x21\x83\x09\x36\x73\x98\xa0\x63\xbe\x11\xaf\xd2\xf3\x22\xfc\x6b\x58\x58\xf1\xcc\x3b\x7e\x5b\x55\x7f\xaf\xd1\x76\xff\x26\x40\x59\x2b\xda\x67\x10\x24\x9a\xd2\xaf\xd7\x3e\xe8\x61\xb7\x2f\x54\xbe\xe4\x7e\xed\xeb\xab\x1a\x22\x5d\x96\xc8\x1e\xcd\x29\xb5\x4b\xba\x75\xa9\x7f\x76\x6b\xa5\x83\x10\xbf\xf4\xd1\xf9\x8b\x19\x49\x96\x1f\x16\x4c\x61\xc0\xeb\xd8\x87\xba\x12\x62\xa6\x59\xf7\x72\x0f\x3c\x13\x73\xd0\x10\xe3\x4c\xa7\x1e\xb8\x69\x50\xa9\x0c\xf9\x72\xb3\x8a\x24\x64\x34\x84\xc9\x0a\xe9\x19\xa4\x20\x63\x83\x01\x49\x9c\x7a\x1b\xe4\xd4\x47\x3b\x2f\xab\x0a\x17\xdc\x1c\xa2\x2e\x05\x62\x3c\x26\xcf\xd1\x5b\xcf\xa8\xe4\xf5\x0e\xf2\xeb\x39\x66\x95\xe2\x0d\x3c\xc5\xa9\xb2\x37\x3e\xfe\xfa\x5f\x1b\xd6\xee\x4c\x0e\xc6\x5f\xcd\xae\xb7\x70\x40\xea\x9a\x7b\x21\x10\xf8\x90\x4c\xf9\x3b\x53\x36\xd9\xf0\x0c\x2f\xbb\x58\x35\x38\x04\x68\x4f\xf1\xef\x5c\x15\x8a\x07\x24\x4e\x8b\x0f\x5b\x07\xf4\x2b\xe7\x32\xa6\xbf\x46\x69\xe9\x79\xd7\x28\xbd\xdb\xfe\x5c\xbc\xaf\x1d\x66\x0d\x76\x36\xec\x4a\xa2\x0b\x07\xce\x12\xae\x3a\xa1\x7d\x49\x9e\x51\x5c\xd7\xe3\x56\xe9\x1a\x92\x29\xf9\xce\xe4\xdc\x3c\x0c\xf3\x1b\x24\x53\x7e\x9d\x5d\x45\xb3\x30\x4f\x13\x6c\xc7\x5e\x6b\xce\xac\x14\x39\x21\x83\x6f\x4a\x03\x52\x49\xbe\xb9\x62\xea\xe9\xf1\xc3\x52\xb7\x84\x7f\x82\x34\x21\x95\xfb\x8d\xa3\x74\x2a\xd9\x9b\x0f\x6f\x00\x8d\xf6\xe4\xc5\xdb\x66\x32\x4e\x88\x27\x69\x42\x96\x64\x2a\x91\x41\x24\xcf\xcb\xd2\x8d\x52\x81\x42\xb2\xb8\x94\x6e\x95\xc4\xbd\x48\x7f\x96\x96\xee\xd1\x2f\x43\xfe\xe9\xc5\x6b\x3a\xb7\xaf\x25\x61\x03\xe1\x13\x14\x62\xcc\xef\x7a\x7a\x55\xcb\xe5\xd6\x47\xa9\x30\x2b\x86\x39\xf1\x7b\x64\x56\x37\xd8\x43\x3d\x72\x07\xdc\x2a\x35\x89\x4a\x3e\xeb\x91\xc5\xba\xa0\xf3\x85\x74\x44\xdf\x5e\xab\x25\x6b\xb7\x5c\x32\xbc\xc9\x67\x2e\x0c\x94\xbd\x26\xa1\x7c\x4d\xeb\xfa\xf4\xc9\xab\x52\xa1\xa0\x1c\x42\x6f\xfa\x64\xc7\x7e\x77\xd7\x33\xd7\x1d\x57\x32\xc3\x81\x00\x8c\xff\x33\xe5\xcb\xb0\xc8\x85\xab\x9c\xc9\x57\xeb\x1a\xcc\x5f\x6a\x2f\x53\x52\x32\xdb\x48\x25\x56\xfe\x4e\xe9\x0d\x67\x5b\xbc\x66\x6f\xea\x5d\x8e\x22\x40\xf0\x73\x74\x71\x66\x1d\x5e\x49\xed\xba\x35\x66\x84\xa2\xa9\xc0\x14\x14\x36\x0c\x19\xd6\xae\xc8\x7c\x53\xd7\x97\xc1\x91\xf8\x34\x6f\xc1\x5b\xa9\xfa\x9b\xd4\x74\x5f\x8b\x29\x6f\xd5\xb2\xa2\x6a\x5f\x13\x60\xc8\xee\x36\x7f\x63\xad\x64\x3b\xbb\xfa\x5d\xad\xaa\x96\xce\xd5\x35\xa3\xab\x3d\x4d\xfe\x9b\xd1\x7d\x50\xae\x98\x51\x4a\xf7\xb4\x7b\x2b\x36\x4d\xd5\xdd\x46\x31\xba\x3a\x35\x2b\x72\xf9\xec\x54\x33\xf4\x21\x4d\xbb\x5b\xad\x5b\xbe\xa2\xed\xee\x8d\x36\x12\x7a\xb1\x5b\x32\xbe\x58\xf6\x00\xda\xee\xf9\x1d\x8a\x62\x68\x42\xc9\x17\x1f\xd7\xfa\xb4\x6b\xfa\xd6\xa7\x99\xd2\x2b\x46\x65\x2f\xb9\xa8\x62\xaf\xe7\x7b\xe7\x57\xd3\xdd\x73\xaa\xd8\x42\xb4\xbb\xfe\x56\xd7\xbb\x75\x0f\x42\x4b\xb1\x62\x9a\x13\xfa\xb9\x93\x6e\xe9\x6e\x7f\x2b\x0b\xeb\x6a\x26\xda\x03\x80\xed\x69\x86\xaa\x43\x2c\xc8\x4a\xad\xf6\x6c\xac\xa2\x44\x2d\xd1\xa9\x47\x25\xde\xa3\x30\xbb\x0c\xab\x8b\xc6\xb8\x0b\x3c\xbe\xb1\xec\x8e\xa4\x68\x26\x59\x62\xb3\x34\x17\x2b\xf1\xef\x99\x4c\x89\x7f\xce\x05\x4a\xe1\xf7\x58\x9a\xc4\x0d\x8a\xa2\x24\x6e\x92\xcb\x91\xc2\xef\x91\x10\x29\xfc\x9e\x4b\x90\x42\xa3\x58\x7c\xc4\x0d\xba\x65\x47\x77\xbb\x8e\x26\x5d\x52\x23\x6e\x95\x88\x8c\xf8\xc7\x6d\xdf\x8f\xbd\xc2\x22\x6e\x9a\x4b\x8a\x84\x2c\x25\x31\x91\xcc\xa6\x24\x23\xf2\x26\x91\x80\x48\x66\x5a\x92\x0e\x71\x93\xa2\x68\x28\x43\x89\x37\x7c\x19\x4c\x5f\x9b\xa2\x44\x48\x9b\xf4\xed\x89\x62\xd5\xc4\x8c\x1e\x81\x36\x95\xc2\xee\xfa\xa9\x57\x04\xd8\x46\x45\x2d\xcc\x0a\x01\x72\xe2\xe4\x41\xa1\x91\x15\x05\xba\x95\xfd\x77\xc1\x14\xa2\xae\x95\xfd\x67\xde\xc8\xc9\x05\x72\xe2\x65\x44\x47\x33\xd4\x7e\x4f\x02\x59\x91\x37\x0c\xc5\x04\x39\x89\xa4\x46\xde\xd8\x09\x0c\x72\xe2\x85\x47\x47\x33\xbd\x4d\x6c\x33\xfd\xef\x8e\x66\x4e\x7c\xd8\xb6\xee\x8b\x8e\x0e\x20\x4a\x6c\x63\xf8\x23\x6f\x98\x89\x14\x72\x92\x8b\x99\xfe\x6e\x49\x8f\x82\x82\x1d\xcb\x1a\xad\x69\xc7\xdf\xe4\x5d\x50\xf0\x90\x13\x23\x81\xf2\x06\x5b\xdb\x60\xdb\xd1\xa0\x24\x80\x34\xa6\x85\xaf\x0b\x56\xb4\x15\x49\xe4\xc4\x8b\xa7\x02\x95\x03\xc9\x74\x12\xc9\xa9\xb2\x95\x61\x45\x94\xb1\x35\xec\x9f\xe5\xc6\x50\xf7\xeb\xc4\xc9\xad\x02\x8d\x02\x91\xa5\x29\x15\xfc\x99\x37\x0e\x85\x17\x39\x89\x64\x59\x37\x64\x10\x51\x01\x68\xf8\xbb\x1b\xb6\x6d\x1e\xfd\xdd\xe5\x3a\x89\xcc\x29\xfb\x67\xd1\x76\xbb\x74\xfe\x98\x32\xb6\x87\x98\x67\xe4\x16\xc6\x5e\xbf\x73\x28\x97\x7f\x98\xf3\x96\x7e\x5b\xf6\x1e\x18\x63\xdb\x57\x45\xc0\xbb\xfe\xeb\x96\x49\x13\x11\x89\x5f\x58\x21\xb1\x59\xe7\xfa\x5d\x9e\x5f\xe7\x55\xe3\x47\x17\x97\xe7\xd7\xc3\xb8\x80\xfd\xe8\x2d\x93\xa2\xbe\x61\x6d\xe2\xa2\xf8\x11\x8b\xe1\x99\x8a\x54\xae\x26\x5e\xa6\xf2\xf9\xca\xaf\xee\xa7\x10\x8c\x71\x36\xbb\xc0\x54\x5e\xb3\x28\x50\xf6\xe9\x24\x70\x99\x64\xb6\x7e\xa9\xcc\xef\xbe\xda\xc0\xa5\x90\x4e\x72\xf6\x64\xe1\x67\x53\x06\xf0\x95\x2b\x03\x18\x35\xb7\x6e\xc4\xa0\x02\x60\xe0\x5c\x0c\xbf\x0d\x03\x1b\x39\x9f\xf0\xaa\xdc\x2d\x8b\x8d\xa3\x77\x28\x28\xe5\x85\xa6\x7b\x51\xd8\x50\x72\x12\x50\xd0\xc7\xb8\x8b\xd7\x21\x62\x8a\x86\x7f\x1d\x17\xae\x52\x75\x14\x69\x36\x73\xd9\x17\x46\xba\x5d\xd0\x29\x8c\x44\x57\xe8\x3b\x3d\x20\x40\x9f\xce\xc7\x77\xf6\xdf\xef\x85\xd1\x13\x80\xb7\x6d\x92\x6b\xed\xf3\x70\x4f\x86\x25\x93\x87\x48\x38\xda\x98\xd2\xc1\x4a\xb8\x9b\xcf\xf1\x15\x67\x41\xc4\x46\x49\x5e\x31\x22\x6e\xa6\x92\xb5\x37\xac\x95\xee\xd6\x93\xcb\x7b\x8a\x4b\x31\xeb\x8f\xf9\x26\xbb\xc6\x10\xac\x57\x5c\xa1\xd9\x2c\x56\x71\x2a\xd6\x59\xda\xd0\x15\x1b\x1c\xfb\x47\x15\x62\x43\xab\xe0\x05\x0a\xd8\xd8\xb8\x84\xb5\x7c\xd1\xfc\xf7\x6c\x77\xce\x59\x5d\xb9\x88\xa3\x5f\x12\xcb\x82\x50\x6e\x65\x42\x8e\xce\x0d\xcc\xa3\x63\xf2\xf4\x29\x39\x3a\xca\x06\x4d\x95\xf3\xfb\x18\xf4\x8d\x81\x59\x1c\xd4\xb8\x7e\x8b\x8a\xa8\xfe\x8c\x66\xa2\x99\x51\x35\x38\x22\x47\x79\x60\xd3\xfe\x68\xb1\x3e\x4e\x64\x3d\x09\x85\x64\x14\xb9\x81\x38\xf6\x86\xd7\xd5\x19\x93\x33\x9c\x6a\xef\x62\x24\x4a\x7e\x4c\x96\x2b\xfc\x71\x50\xde\x4e\x5d\xa4\x8e\xb7\x91\x83\x5b\xde\x4f\x23\x25\x2c\x96\x45\x40\xde\x46\xe9\x40\x10\xcb\x04\x75\xa1\xf8\x34\x80\xdf\xbd\x48\x47\xa7\xf6\x9d\x83\x3c\x01\xd1\x2e\x45\x88\x4c\xf7\x82\xf5\xae\xa6\xa1\x75\x5f\xef\x55\x98\x77\x1b\x7a\xb7\xfb\xe1\x86\x92\xd7\x73\x4a\x20\x23\x50\x29\x28\x14\xdc\x33\xa9\x3d\x5a\x0a\x99\xa2\x74\x64\xdd\x8a\x35\x6b\x95\xab\x92\x67\xcb\xaa\x40\x59\xa8\x21\x99\x41\xdd\x58\xb8\x58\x6f\x9f\xc8\x62\x29\xcb\xb9\xa2\x4b\x11\x0a\x46\xd2\x65\xe3\x98\x3a\x91\x06\x3e\x3c\xa4\x04\xd7\x58\x65\x5a\xf2\x2f\x93\x35\xc1\x6f\xbd\x5c\x0e\x77\xc1\x99\x9c\xdd\xe7\xee\xb7\x35\xfc\x4a\x7c\x55\x62\x32\x8b\x43\x50\x82\x8b\x3c\x75\xdf\x12\x33\x54\xb6\x77\x3b\x4e\x0d\x78\x20\x6a\xb3\x5e\x8b\x56\xb1\x2a\x76\xf2\x67\x2f\xe9\xf1\x66\x56\x6f\x2a\xbb\x54\xcf\xb5\x0a\x7d\x79\x7e\x4d\x40\x7b\xcb\x48\xba\x60\x0a\x7e\x80\xa8\x9c\x96\x3d\x1d\x31\xb9\x77\x19\x3b\xea\xc6\x4f\x62\xd5\xf0\x8c\x4b\x3d\xc1\xdf\x0f\x0a\xb9\x87\xd0\xbc\x33\x7c\xd0\xdd\x25\x51\x3e\xed\x03\x3c\x87\x76\x30\xca\xf3\xe1\xed\x3f\x2a\xd6\x36\xb4\xfe\xf3\xdb\x97\x87\x76\xb9\x3c\xbf\xf6\x09\x26\x9a\xa9\xbe\xac\xe3\x3e\xda\xc5\x7d\xaf\x40\x08\x1c\xda\xfa\xba\xa5\x5c\x1d\x4c\x83\x57\xac\xe2\x54\xb7\x8e\x1a\xbf\x2f\xb0\x66\xae\x0e\xb4\x68\x1d\x68\x40\x83\xff\x0b\xfc\x39\x81\x21\x8e\x27\xe4\xb4\xd9\xa1\x76\xff\x34\xf5\xe6\x6c\xb9\x9a\x2d\x31\x24\x95\x67\x0c\xcc\xa8\xa9\xc2\xdc\xc9\x6c\x93\xa2\x92\x66\x18\xb7\xd8\x69\xd0\xa9\xd6\x61\x0a\x87\x0b\xdb\x97\x28\x66\x3f\x55\xf8\x88\x27\x0a\x8e\x50\x3e\x75\x77\x54\xcb\xcd\x6a\xda\x50\x5e\x4f\x12\xec\xfe\x78\x7d\xfd\xe6\x9c\xd7\x6c\xb0\x69\x6b\x03\xd2\xb5\x4d\x73\xb6\xed\x27\xff\x76\x3c\x26\xcf\x4b\xc1\x40\x63\x9a\x29\xe1\x4a\x84\xa7\x17\x12\x72\x92\xf7\x6d\xd8\x5e\xb2\x77\x76\xec\x26\xbd\x57\x14\xef\x51\x3f\xec\x5e\x85\x20\x48\x70\xf7\xf1\x2c\xac\xbe\x01\x7d\xd4\xe1\xce\xe3\xbd\xa4\xfb\x87\x0b\xa2\x18\x77\x1e\xef\x99\x85\xb5\x77\x40\x13\x16\xb9\x9f\x11\x01\x58\xdf\x90\x71\xa0\xe5\xce\x83\xfe\x67\x00\xae\x6f\xd8\x20\x78\x73\xe7\x31\xcf\x2c\xac\xbd\x03\x62\x34\xe8\x7e\x06\xd4\xb0\xf6\x0e\x18\x84\x97\xee\x67\x54\x07\x70\xef\xd0\x26\x68\x75\x3f\xc3\x02\xb0\xbe\x21\x0b\x61\xb0\xbb\xeb\x8b\x29\xcc\x43\x11\xb8\xe7\xb1\xfb\x86\xcd\x62\x76\x77\xb7\x91\x63\x88\x7d\x83\xdb\x50\xe0\x9d\xc7\xfc\x23\x00\xea\x1b\x6a\x7b\x5f\x43\xfd\xb4\x77\xa8\x72\x98\xf2\xee\x2b\x5a\x00\xdb\x87\x46\x10\x02\xbd\xf3\xd8\x97\x16\x56\xef\xae\x8d\x62\xaa\x77\xdf\xb7\x01\xb8\x5e\x0e\x8e\xe2\xb4\xf7\xe2\xe2\xb1\xe0\xf6\x0d\x8b\xee\xa5\x7b\xf4\x2a\xf5\x6c\x95\x28\x96\x7c\xf7\x0d\x13\x80\xeb\x1b\x36\x8e\x4f\xdf\x79\xd8\xd3\x00\xdc\x21\xb3\x35\xf1\xec\x7b\x9b\x2e\xc0\x3b\x64\xbe\xf7\x35\xf0\x69\x08\xaf\x6f\xe0\xd8\xf3\x75\x1b\x87\x57\x1f\xcc\x5c\xd9\xdc\xe3\xe0\xeb\x47\xf0\xcb\x5d\xe5\x9d\x94\xea\x43\xfe\x56\x0e\xfd\x62\x12\x41\x30\xf1\xcb\xfc\xf7\x0e\x22\x0c\x3b\xb1\x3d\xd4\xfc\xea\xb2\x57\x03\x4f\x44\xd9\x72\xb2\x37\x08\xac\xf3\x74\xc1\x94\xe9\x03\x8b\x56\x1e\x1f\x1e\x34\xa1\x1f\x63\x0f\xd7\xbd\x4c\x97\x3c\x7d\x9a\xdc\x35\x0a\xc7\xb4\x71\x8e\x66\x2e\xc8\x09\x29\xce\x34\xa8\xa0\x39\x34\x6e\x4d\x1b\xfa\x1b\x94\x59\xe8\x78\xa8\xe7\x32\x81\x09\xa1\xbf\xcc\x34\x5f\xd1\x8f\xc7\x64\x42\x1a\x5e\x77\x53\xc1\x60\xf4\x92\x4b\x35\x21\xef\x8a\x18\xbd\x27\x27\xe4\x5d\x80\xf9\xfb\xc3\x1d\x07\x76\xf5\xba\xcd\xd7\x60\xfc\x3b\x72\x8a\xf3\xed\xdc\xc2\xb1\x81\x7d\xba\xb1\xeb\xa7\xfb\x1d\x11\x0e\xbd\x72\xdd\xbc\x8d\x8f\x67\xef\xde\xb2\x19\xe3\x37\x9a\x17\x9e\xd3\xb5\x79\xdb\xe2\xc9\x37\x9f\xe2\xc0\xb3\x6d\xf4\xf9\xf7\xe4\xa4\x73\x4e\x0b\xa6\xcc\x2b\xd7\x03\xcb\xfc\xe9\xb3\xdb\xc7\x7a\x3b\x84\xe3\x9c\x36\xbb\xb7\x26\xe6\xdd\x39\xe4\x20\x9e\xdd\x82\xa9\xb7\x31\xea\x6f\xe0\x09\xa8\xd2\x4d\xfa\xde\x35\x72\x64\xea\x5e\x26\xf7\xc0\xf8\xa4\xe0\x71\x0d\x3f\x25\xc8\x3d\x6e\x2d\x8f\x97\x25\x7e\xb2\x1a\xfb\xef\xf5\xcd\x36\x6a\x42\x1e\x8f\x1e\xff\xc7\xfe\xa6\x91\x67\xec\xe8\xf2\xd9\xa9\x75\x38\xad\x68\xfb\x81\x29\xcc\x8d\x32\x08\xe4\x21\x98\xf0\x53\xa6\x2e\x89\xdc\x91\xfd\xed\x3b\xc5\x71\xe4\xe8\xbd\xc5\x4e\x0b\x3a\x0e\xac\x9c\x46\x69\xab\xbf\x29\xf0\x43\x17\x06\x25\xbf\xf1\x2d\xf0\xc8\xba\x77\xaf\xbe\xf4\xa5\x1f\x26\xfe\x9d\x76\x44\xda\xc3\xe8\x39\xc0\x1d\xbf\x4f\xc8\x18\xff\xb8\x4d\x6f\xbc\xc4\xd5\xda\xfe\xf8\x74\xc6\xad\x87\xf7\x2d\xd1\xa3\xfc\xc4\x5d\xed\xf2\xbf\x7c\xb2\x5f\xa5\xc0\x71\xc7\x7e\x2e\x7a\xc0\xe3\x61\x5e\xc2\xe3\xbe\x46\xb9\xff\xb2\x61\x86\x59\x1e\x8d\xdb\x65\xd9\x2f\x59\xdf\x72\xb2\x8d\x6f\xb6\x67\x0e\x86\xd6\x07\xcd\x22\x43\xe6\x8d\xe9\x3d\xfc\x5f\x3b\x3f\xbc\x2d\xfd\x62\xb5\x56\x3b\xdf\xe5\xdc\x44\x1f\x27\x64\x30\xdf\x34\x64\x00\x05\x6d\xba\x11\x29\xc4\x18\xc2\x8f\xbb\x38\xec\x1e\xa8\x29\x8d\xd9\xa1\x8e\xe9\xcf\xe7\xbb\x1e\xa7\x1d\x71\xa1\xee\x93\x75\x4a\x9b\x86\xb5\x17\x2b\xba\x60\x99\x32\x06\xc1\x9c\x1e\xa7\x3b\xaf\x59\x67\x18\xa2\x97\x4e\x10\xa3\x38\x5a\x2a\xb5\x96\x93\xf1\xb8\x99\x52\x25\xd6\x12\xe8\x25\x56\x63\xa9\xa8\xe2\xb3\x31\x5f\x2d\xc6\x4a\xac\x1f\xe9\xef\x1f\xd5\x62\x21\x1e\x2d\x45\xcb\x7f\x16\x8d\xa2\xf5\xa3\xed\x92\x2b\x36\x92\x37\x8b\xee\x23\xa0\x87\x13\x56\x7a\x5e\xc8\xe0\x47\x5c\xcf\x7c\x2c\x6f\x16\xff\xfe\x71\x55\x97\xa1\x75\xeb\x8d\xf2\xef\x1b\xda\xb2\xff\xa5\xc4\x13\xfa\x7f\xa3\x75\x73\x5f\x34\xea\x84\x74\x0b\x35\xa6\xc4\x9e\xfb\x02\x6a\x5a\x09\xd0\x1b\xea\x91\xde\x51\x47\x07\xc6\xd4\x74\x27\x77\x7d\x8d\x70\x49\x76\x62\xd3\xc2\x8b\x19\x33\x08\x63\x89\x6d\x33\xd4\x76\x4b\x3d\xc4\x47\x8d\x5b\x5a\x31\x22\xe6\x73\x3e\xe3\xb4\x26\x15\x5f\x70\x45\xeb\xe8\x59\x3a\x9b\xe3\xa0\x01\xeb\x2e\x3f\x5d\x3e\x3b\xfd\x56\x92\x05\xec\x70\xa9\xec\x2b\x9f\x4d\x05\xff\x62\xad\xec\x41\x95\x79\x3d\x20\xe5\x81\x50\x45\xe8\x58\xe4\x5e\x77\x80\xe7\xc8\x49\xf8\x47\x4f\xe8\xc5\x0b\x80\x49\xf8\x47\xcf\x18\x42\x13\x49\x4e\xf6\x08\xc3\x23\xb5\xe5\x4a\xb1\xf6\xe8\xa0\x29\x9a\xc6\xc0\xc4\x7e\xba\x7d\x53\x85\x31\x2a\x2e\x67\xa2\xad\x0e\x1b\xc3\x34\x86\x31\x78\x73\xc3\x15\xbb\xcd\x50\x50\x70\x60\xd1\xd2\xd5\x61\x83\x6d\xb7\xdb\x91\xeb\x92\x4d\xab\xfb\x04\xb8\xe3\x01\xe0\xc2\xf5\x65\x91\x3f\x1e\x13\xb9\x16\xad\x92\xa4\xa5\x15\x6d\x21\x7a\x40\x78\xd5\x6d\x19\x7f\x9c\xd5\x9b\x8a\x55\x97\x74\x05\x86\x05\xe6\x9a\x80\x31\x5c\x08\x53\x94\x15\xeb\xf1\x98\x34\x02\xb3\x5a\xfc\x4b\x2a\x0a\xf0\xec\x1c\x17\x7e\x3e\x73\x2f\xbd\x07\xcf\xa8\xba\x54\x80\xcf\xe4\xa4\x87\x03\x8f\xae\x02\xc7\xd8\xd1\x7d\x79\xc6\x8e\x8c\x1b\x2c\x03\xf8\x65\xbe\xb1\xa3\xab\xc0\x92\x3e\xea\xf2\x8e\x15\xbb\x97\xf9\x04\xdf\x0f\x48\x48\x1d\xa5\x40\xa7\x84\x9e\x6f\xea\xda\xd3\xd9\xfa\x8f\x56\x74\xfd\xc6\x3c\x8a\x31\xa8\xf8\x4c\x4d\xd2\x05\xb9\x85\xcc\xd7\xfd\xaf\x05\xf2\xa5\x01\x16\x0f\x3a\x4c\xb9\x2c\xfa\xf3\x70\xd6\x77\xb9\x27\xb7\xb0\x84\xb0\x4f\xf7\x11\xc4\x15\x5b\xdd\xd2\xa0\xde\x73\xf0\xdb\xcf\x97\x2b\x00\xf6\xe3\x33\x3d\xf4\x61\xbd\x59\xc1\x31\xdd\xa3\x5c\xda\xcf\x01\xd5\xdd\xf2\xd3\xff\x6f\x6b\xd6\xa3\x48\x1c\x00\xf6\x1f\x4e\x24\x6d\x9e\x88\xfb\x27\x0f\x80\x1d\xaf\xd6\xbf\xfb\x9a\xde\x88\x72\x81\xa2\x86\xfb\xa2\x2c\x9f\xa3\x94\xaa\xf1\x98\x9c\xbb\xc7\x2c\x37\xd2\x14\xb4\x9b\x89\xd5\x7a\x03\xe5\x72\x22\x8a\xc6\xfd\x82\xad\x4f\x96\xac\x5e\x4b\xcc\xd8\x24\x5a\x7f\x02\x21\xa0\x5b\x60\xf1\xcc\xe8\xda\x7f\x08\x23\xaa\x47\xea\x3b\xe1\x33\xcf\x75\xad\x8f\x83\x47\x90\xc3\x89\xf1\x0e\x19\x80\xc3\x3a\x40\xd1\x63\x24\xae\x52\x69\x26\x94\x0a\x87\xc2\x31\x29\x9f\x15\x9f\x10\x56\x44\x46\x9b\xef\xf9\xca\x3f\x73\xdd\x11\xb8\xe9\x8c\xd8\x80\xab\x3b\x79\xc1\x4a\x93\x1a\x9c\xf1\xe6\x4d\x13\x0b\x7e\xf4\x81\x15\x5f\x3f\xd0\x68\xe0\xe3\x60\x27\x51\xfb\x77\x1a\xc8\xfb\x42\xce\x28\xc1\xf7\x03\xb0\xcf\xc3\x13\x72\x74\xd4\x71\x10\x6a\x2a\x69\x25\x84\xb5\x6a\xf0\x81\xed\xac\x43\x1d\x3a\xe6\x0c\xf9\xf9\x41\xf7\x5f\x86\xe3\x34\x40\xcf\x72\x11\xdf\x84\xae\x2c\xd2\xc9\x0c\xc8\x82\xac\x72\x2a\xb0\xde\xa0\x56\xb5\x4e\x6a\x5a\x06\x79\xa6\x81\x93\xac\x23\x77\xd7\xe6\x67\x77\xd8\x45\x08\x7a\x7c\xe4\x13\xa1\xe1\x7a\x42\x90\xf3\x5d\x4a\x9c\xc7\x69\x05\x91\x14\x5f\x86\xd5\x56\x25\xc1\x85\xc6\x77\x80\x57\x53\xde\xd0\x3c\x65\x1a\x8a\xb6\xe2\xcd\x31\x6b\x1e\x04\x97\x9b\xc6\x63\xf2\x57\x17\x70\xfb\x37\xfc\xf1\xaf\x25\x1a\x44\x01\x1d\xf2\xcb\x26\xea\xb3\x80\x04\xee\xf6\x9b\xcb\x45\x9f\x90\x7f\x3b\x3a\x8e\x28\x1b\xec\x90\x22\x89\x83\x15\x0b\x40\x97\x38\xcb\x3d\x29\x24\x25\x53\xe8\x36\x3f\x90\x03\xa0\x87\x1c\xa5\x8c\xa0\x45\xf7\xa1\x7c\x10\x2e\x92\xad\xcb\x48\x81\x63\x95\x20\x15\x9a\xaf\x84\x36\x04\xcf\x5f\x22\xf9\xcf\xac\x22\x70\x5e\xe6\xc2\x2b\x3c\xa2\x7b\x16\x4f\x03\x37\x4a\x58\x30\x65\x47\xea\xa7\x5b\x5e\xa9\xe5\xc9\x7f\x7c\xf7\xdb\xa3\x22\x35\xb1\x23\x3c\xb3\xf5\x1a\x4c\x61\x5a\x43\x75\x48\x89\x79\xa1\x9b\xb6\x1e\x62\xf6\xe2\x19\xab\xf9\x6a\x42\x8e\xbe\x39\xea\x7c\x88\x2a\x9b\xa8\xcf\x3e\xd5\xcb\xa1\xad\x40\xbd\x93\x5d\xc5\xad\x8e\xed\x1b\xa4\xa1\xde\x79\xde\xbf\xfd\x8f\x1f\xfe\x11\xf3\x86\x33\xfe\x36\x73\x36\xba\xc6\x97\xcf\x77\x0c\x10\xee\x69\xae\x4f\xbb\xe7\x0a\x50\xd0\x6d\x21\x0c\x2c\xd2\x30\xb5\x15\xed\x07\xb2\xd6\x40\xe1\x3d\x3f\x2c\x46\x6e\xf2\xb3\xcd\x0d\xc1\x8a\xd3\x7c\x93\x76\x22\x85\x74\x88\xf1\x32\x8f\x4c\x76\x10\x89\xcf\x89\x0b\xcd\x5d\x22\x46\x83\x63\x72\x72\x42\x8e\x14\x93\xaa\x61\xea\x28\xbd\x8b\x16\x90\x68\xd3\xd6\x96\x94\x7e\x44\x4f\x5d\x07\x61\xff\x89\xb7\x69\xeb\xe4\x60\xf0\xb7\x67\xf1\x89\x69\x10\xfe\x60\x6c\xd1\x9a\xd0\x8d\x02\x37\x25\x1e\x03\xf1\xd5\x5a\xdb\x0d\xea\xbb\xe3\x8d\x15\xb1\x6d\x58\xab\x69\xbb\x66\xed\x5c\xb4\xab\xa0\x20\x62\xf4\x18\xb9\x79\xb4\x5f\x77\xb1\x50\x6e\x68\xcb\xc5\x46\x12\xaa\x87\x56\xf1\xe3\x6e\x43\x78\x4f\x1e\x5d\x5b\xf1\x83\xde\x0f\x48\x7a\x7b\x17\x27\x11\x5f\xc8\x45\xb7\x35\xbe\xd1\x88\xfe\x2d\x53\xec\x1f\xbe\x32\xf5\x9c\x22\x3e\xb2\x8f\x68\x4a\xf3\x8a\xa6\x7f\x67\xae\xf2\xc6\x25\xb7\x2f\xf7\x63\x44\x4f\xae\x68\xab\xdc\x7b\x9b\x01\xb8\x10\x72\x58\xdb\xd6\xaa\x9a\x13\x72\x1a\x82\x5d\x99\xc7\x5f\x5d\xca\xba\xe2\xaa\x66\xf6\xb1\x3c\xde\x92\x54\x3d\x2d\x7f\xd8\x47\xba\x5a\x6b\x73\xe3\x13\x24\x56\xb1\x96\x18\x4b\xff\xe8\x4f\xec\x86\x37\xe4\x6c\xd3\xd2\x46\x1d\x0d\x5d\xd6\xe0\x84\x1c\xfd\xff\x64\xce\x98\x3a\xfa\xbc\x1f\xba\xfd\x0c\xa6\x6c\x46\x37\x92\x91\x2d\x14\xfa\xc7\x22\x65\xe1\x00\xf6\x8e\xd3\x0f\xdf\xfe\x9f\x80\x3f\x3b\x8a\xdc\xc6\x55\x7e\xdd\x0a\x05\xa5\x2f\x49\xb9\xea\xbf\x5f\xe1\x81\xa7\xaa\xd3\x9b\xf1\xbf\x9f\x8f\xed\x3d\xe6\xfc\x1a\xb3\x79\x57\x35\x1c\x35\x6a\x02\x65\x21\xd9\xd6\x94\xfc\x4b\xc6\xb1\xff\xca\xef\xf1\x35\x6c\x0b\x17\xde\x4d\x57\xa3\x42\xec\xa9\xe1\x7d\x71\x16\x3e\xdd\xc7\xe1\x91\x00\xb0\x79\xe8\x82\xf2\xb8\x52\x42\xf8\x68\xed\x1b\x7b\xfb\xbe\xf0\x65\x67\xa9\x68\xf7\x24\x1c\x12\x00\xef\xba\xc6\xd8\x0e\x49\x69\xa6\xe9\x14\xae\x82\x27\x67\xb1\x10\xf9\x01\xcf\xce\xae\xdd\x43\xa5\x40\xa8\xf7\x9e\x52\x65\xfb\x50\x37\x2a\x4b\xfe\x31\xb9\x66\x5a\xd4\xd0\x96\xd7\x3b\xc2\x1a\x3a\xad\x59\x85\x64\x2c\x5e\xfe\x5b\xdb\x37\xf0\xa7\x0c\xde\x8d\x9f\xf3\xba\x8e\xea\xee\x1d\xf2\x6e\xc7\xda\x3c\x18\xba\x59\x47\xd5\x4f\xc6\xc9\xa6\x51\x78\x5d\x4e\xef\x72\x89\x27\x03\x16\x98\xc6\x35\x45\xc1\x69\xda\xb8\xfb\x6b\xeb\xf8\x35\xda\xc4\xea\x88\x51\xc8\x36\x03\xe2\x03\xd9\x94\x08\x36\xab\xe0\xec\x50\x72\x67\x56\x71\x63\x80\xe7\x72\xb5\x36\x5c\xdf\xfd\xbc\xac\x7f\x34\xc1\x94\x80\x48\x0a\x94\xc6\x1b\xc3\x40\x1c\x21\x9a\x16\x45\x87\x92\xf9\x47\x51\x55\x48\x6c\x8d\xcf\x05\x29\x0f\xcf\x8a\x47\x42\xfe\x0a\x1e\xb3\x37\xc7\x43\x24\xd9\xc3\xde\x86\x6f\xb5\x8e\xed\x24\x70\x22\xe0\x6f\x21\xda\x31\xd4\xa3\xd7\x0a\x0c\x2a\x5f\xad\x72\x9f\x04\x8c\x97\xd7\xbc\xda\x1e\xbd\xa1\x1c\x8b\xbc\x2b\x96\xbc\x71\x1d\x2c\xe5\x1e\x21\x17\x62\x43\xbc\x8c\xd3\xe4\xf2\xc5\xb8\x3d\x7c\x7c\xfe\xb9\x5f\x74\x61\x81\x8f\x2f\x91\x5e\x57\x5d\xcf\x70\x77\xcb\xae\x44\xc0\x5e\x31\x85\x46\x5f\x41\xc2\x5d\x31\x65\x05\x9c\x31\x14\xc3\x0e\x43\x57\x90\xd8\xc5\xb9\xf1\x61\x7d\x74\xab\xef\x17\x76\x11\xd3\x80\x0b\xa8\x38\x4f\xa8\xbb\x6b\x24\xdd\x93\x47\x0f\x0d\x0e\xb7\x15\x75\x04\xdf\x3c\x41\xae\xb6\x36\x9c\xab\x4d\xaa\x65\x8b\x79\x8e\x3f\x62\xde\x68\xa3\x38\xd9\x2c\x7c\x91\x53\x7c\xe0\x44\x8b\xc4\x99\x3e\xc7\x57\x4c\x2d\x45\x25\x89\x68\x7a\x1e\x94\x0c\x18\xde\x90\xb5\xa3\x3a\xeb\x4e\x6c\xc8\x96\x66\xcf\xc2\x2f\x98\x4a\x70\xdf\xb7\x3d\x4e\xe3\x99\xda\x41\x9c\x27\xce\x0c\x8c\x6e\xb8\x54\xa3\xb3\x73\x62\x1f\xd7\x42\xee\x79\x9a\xcb\xd2\x38\x29\xec\x3c\x81\x6a\xc9\x77\x2f\xef\x6c\xde\xf0\xc1\x61\xf0\xf9\x6d\xfb\x06\x67\xf4\x2e\x50\x5a\xdb\x39\xfc\x2b\xe5\xca\x1f\x33\x6a\x46\x2f\x31\x19\xce\xe2\x2a\xed\xa7\xb5\xb7\xbf\x7e\xf3\xd7\xa8\xc8\x06\x3e\xa9\x9a\x40\x32\xef\x0e\x40\x80\x39\xad\x9a\x64\xa0\x1f\x5c\x64\x3a\x66\x69\xa9\x68\xab\x2e\xf5\x76\x80\x5a\x04\x60\xc3\x81\xfc\xc3\x7d\x68\x6b\x14\x40\x99\x74\x23\x6f\xc2\xba\xe2\xe3\xb1\x2b\x8a\xab\xcf\x1d\xcc\xc1\x26\x2b\x46\x1b\xbc\xfa\x4d\x55\xfa\x1e\x8a\x7d\x98\x9c\x47\x4c\x02\xcf\xc6\xe2\x2d\x7c\x14\x91\x11\xc4\x43\x44\xf7\x41\x9d\x2c\x93\xc5\xb3\x1e\xf4\xa8\xa7\x2f\x9a\xaa\x44\x0f\x3c\xcc\xb4\xd5\x81\x27\x9d\x68\x58\xda\x33\x21\x59\x6c\xb0\x14\x11\x0d\x79\x37\x92\x83\x81\x74\x8e\xbf\xef\xd7\x2e\xdd\x04\xaf\x34\xa6\xac\x1a\x34\x6c\xfb\x3c\xec\x7f\x98\xd8\x8d\x2f\xd3\xc6\x4d\xfb\x15\x82\xe0\xbd\x17\xa3\x04\x58\xfd\x00\x4e\x41\xf7\xf3\x2b\xba\x8e\x2d\xdc\x8c\x35\xac\xd2\x66\x5f\x32\x8b\x9e\x40\xf1\x80\xf2\xd2\x02\x29\x26\x60\xa4\x5a\x74\xb2\x22\x34\xe9\x23\x57\x92\xde\xb0\x27\x7f\xc8\x9e\xb8\x0a\x0e\xe9\xf8\xa7\xc1\xf1\x90\x28\x71\xdb\xd7\xaf\x92\x1d\x59\x78\x17\x87\x68\x44\x24\xd9\x2e\xf9\x2c\x9c\x6e\x58\x70\x61\xca\x6a\xd1\x2c\x64\xb7\x24\x8f\x94\xa4\x79\xe1\xcc\xb8\x3c\xbf\xee\xb2\x3e\xfb\xde\x5c\xb9\x05\x3a\x31\xcc\xde\x73\xeb\x56\xef\xf1\x95\x8d\x84\x2f\x78\x12\xd8\xc9\x87\x9e\xb7\x89\xfa\x5e\x5e\xc9\x6a\x79\xad\x7b\xdf\x3d\x8f\xdf\x59\x43\xff\xc9\x2f\xf0\xd2\x1a\xb9\x8f\xd7\xd6\x12\xbc\xfb\x9f\x73\x9a\xa3\xae\x77\xc8\x3b\x4e\xc5\x27\x9c\xca\x3b\x25\xdd\xdb\xa9\xf5\x11\x6c\x9f\xb8\xfa\x58\x97\x9f\x29\x10\x24\x05\x6f\x53\x42\x60\x47\xa4\x2f\x37\x4a\x8a\x4f\x37\x85\x9f\x7b\xf2\x53\x1d\xe8\xf1\x09\x08\x76\xa8\xdf\x27\x5c\x6b\x3d\x47\xeb\x9d\x75\x88\x5b\x4f\xd0\x1e\x47\xd0\x3f\xf3\x4e\xb0\xce\xf4\x64\x43\x94\x09\x84\x71\x53\x47\x9e\xdc\x81\x55\x62\xf1\x4b\xb6\x45\x92\xc4\x0c\xbe\x9f\x0d\xe3\xc5\xb2\x60\x20\x37\xd9\x7a\x6b\x0b\x33\x79\xf2\xc8\x9c\x6e\xa6\x75\xa7\xdb\xda\xbe\x06\x00\x0f\xf0\x34\x8a\xb5\x73\x6a\x5d\xd4\x1b\xc9\x5a\x69\x8c\x1a\xa9\x0c\x5b\x1a\x19\x1c\x64\x41\x53\xeb\x4e\x06\xeb\xa9\xae\xc5\x96\x08\xb5\x84\x52\x72\x82\x98\x37\xa2\xdc\x61\xcf\x1b\xc7\xe0\xc1\x4b\x52\xe4\x42\x11\x5a\x4b\x61\xbd\xe1\x73\xd1\x92\x96\xd1\xca\xaa\xa9\x46\x45\xbd\x38\x93\xe1\x4b\x63\x66\x4f\x07\x70\x72\x87\xb6\x9f\x52\x39\x05\x3d\x79\x9a\x07\x8b\x43\x45\xcf\x5a\xe5\x19\xe0\x97\xe7\xd7\xc7\xb9\xcd\x43\xd5\x6c\x79\x16\x76\x95\xfd\xd9\xe3\x39\x88\x85\x16\x9c\xfe\x59\x93\x1f\x7e\xf7\xbe\xc3\xb2\xba\x3c\xbf\x1e\xf8\xf2\x97\xda\xac\x2a\xe1\xd8\xd1\xd9\xbc\x24\x1c\xf7\x77\xb1\x95\xf3\xeb\xb4\xa8\x8e\x2f\xc0\xd5\x32\xb9\xa9\xad\x57\xa2\xe1\xf5\x10\x99\xa6\xb2\xf2\x07\x59\x8f\x55\xfe\x80\x4e\x01\xc9\xa5\xd8\xd4\xf0\xac\x2d\x58\x1c\x10\x04\x47\xd6\xa3\xed\x62\xb3\x32\xc5\x0a\xc1\x06\x4d\x0b\x81\xc1\x44\x84\x4c\xad\x47\xfd\x19\x18\xc4\x4e\xc0\x3e\x3c\x26\xff\xf3\x3f\xf6\xab\xa7\x50\xed\xf2\x84\xf0\xea\x78\x42\xb2\x7e\xfa\x93\xd8\x92\xa9\x86\x91\xea\x23\xf9\x14\xf5\xde\xe1\xcd\x4c\xb4\x2d\x9b\x75\x1a\x9c\xe9\xa6\x0b\x76\x0f\x47\x07\x44\x18\x1a\x62\x37\xac\xdd\xc1\xee\x23\xdb\x25\x64\x27\x4b\xa8\xb9\xea\xa2\x3d\xa0\x4e\x4b\x74\xa3\x34\x66\x37\x19\xf9\x0a\xda\x35\x6d\xe8\x82\x99\xef\x2f\xcf\xaf\xaf\x1e\x90\x8e\x70\x4f\x78\x15\xa6\xe3\x8a\x46\x5e\xcb\xd5\x5d\xee\xc8\x7f\x72\xd7\x37\xf2\x9f\x72\xc0\xfb\x2e\x70\x90\x4f\x51\x54\x29\xc8\x4b\xf4\x45\x5d\x67\xa2\x99\x8b\x76\x85\x6e\x61\xbd\xe7\xc2\x1e\x97\xe7\xd7\x29\x79\x77\x6b\x66\xdc\x1d\xf6\x1d\xbc\x8b\xb3\xc4\xe7\x64\x5f\xbb\x12\xdb\x86\x55\x9a\xec\x13\xf2\x87\x4f\xd8\xb8\x50\xd8\xf6\xf2\xfc\x3a\x7d\xcc\xaa\x58\x63\xdc\x41\x23\x4f\x1e\x85\x29\x42\xf1\x51\xa1\x51\xab\x5a\xba\x25\x2d\x5b\x89\x1b\xb0\x51\xed\x4c\xcd\x03\xc5\x2c\x92\xbc\x4d\x45\xb0\x1d\x77\x1b\x67\x46\xeb\xba\xd3\xda\x0e\xf5\x19\x3b\x56\xd1\x88\x88\xeb\x84\x82\x3b\xd2\xbe\xec\x88\xa8\x55\x25\x84\x3a\x46\x6d\xad\xba\x52\x14\xa5\xe8\xc1\xd7\x7f\xf9\x87\xaa\x2d\x6e\x79\xe5\x3e\xfb\xcb\x20\x44\xdf\x3f\xf0\x5e\x1c\x20\xf7\xe5\x3e\xc3\xdd\xde\xcc\xd1\x1f\x33\x5b\xb2\xd9\x07\xc2\xe7\xa4\xf0\x76\x15\xf8\x49\xe7\xca\x86\xe7\x63\x01\xec\x91\x88\x75\x12\x3e\xb7\x8a\xcc\x4b\x31\xfb\xc0\x9b\xc5\x88\xcb\x97\x00\x5b\xab\xd3\x6f\xd9\x1c\xf4\xe9\x52\xc8\xda\xa8\x31\x46\x2a\x59\xf8\x93\xa0\xcc\x2b\xe2\x98\x45\xab\xd3\x29\xbe\x85\x65\x42\xbd\x70\x5e\x64\x9f\x3c\x58\x01\x8b\xf0\xe4\x51\xc2\xb1\x23\x5c\x71\xcc\x19\x0b\x66\x9c\x0b\x54\xaf\x86\x75\xe1\x1f\x87\x36\x7c\xb8\xab\x76\xf5\x7c\x0a\x3e\x90\x9f\xec\x9a\x6b\x92\x03\x92\xf0\xa4\x2c\x2a\x8c\x0e\xd7\xf6\xe9\x88\xe2\x6d\xdd\xe3\x5e\x47\x1f\x2a\xcf\x30\xae\x63\x33\x84\x5a\xd6\xa3\xe2\x9f\x0a\x4f\xc0\x5a\xf4\x1c\x38\x49\x56\x9b\x5a\xf1\x75\x6d\xf8\x5a\xde\xc7\x53\xae\xbc\x92\x13\x72\xda\x10\xda\xb6\x14\x24\xa0\x56\x86\x94\x70\x83\xee\x33\x15\xfa\x54\x11\x6d\x9a\xf8\x35\x88\x1f\x68\xec\x32\x6b\x7a\x3e\x31\x69\x57\xdd\x8f\xd5\x47\xba\x53\xb0\xca\xd2\x6b\x40\xb7\xbb\x82\xe7\xc3\x34\xa8\x5d\x63\x5a\x69\x07\xcb\x6b\x21\x0f\x23\xef\x7f\x47\xb5\x8f\x9f\x2e\x14\x6b\xd1\xe9\xdb\x8a\xcd\x62\x69\x74\x22\x5c\x73\x27\xcf\x61\xd1\xf7\xed\x41\xad\xf5\xf2\x4a\x6f\x0a\xdd\x3f\x97\x0d\x09\xb2\x1d\xef\xaf\x16\x25\x24\xaf\x8e\xfb\xd2\x5b\x0e\xdf\x23\xb2\xbc\x49\x12\xd4\x3a\xb6\x8b\x35\x06\x14\xfd\x00\x06\x90\x11\x0a\x9a\x52\xb4\xaa\xc2\x53\xcc\x83\x0a\xad\xf8\xbe\x6d\x82\xbb\xc4\x90\xc2\x9e\x62\x78\x62\x99\x61\x59\x95\xcb\x9b\x3e\xae\x3c\xc8\x0e\x48\x96\x29\xe3\x46\x63\x38\x05\x38\xa0\x94\x05\x01\x60\x5d\xc9\x06\xd5\x15\xfd\xc0\x88\xdc\xb4\x99\xda\xcc\x95\xb5\xd0\x8c\x9e\x99\x47\x10\x22\xf9\x6d\x87\x78\x48\xfe\x10\x28\xf6\xd9\x11\xf1\xa3\x29\xf0\x0e\xcd\xbf\x95\x24\x79\x55\x00\x8b\xec\xc3\xcb\x14\x28\x72\x33\x00\xa7\x55\xe5\x1c\x0f\xe6\x04\x37\x39\x03\xf9\x92\x59\x88\xa2\xae\xae\xcb\xe7\xcc\x3b\x5e\xbd\x77\xd8\x67\x63\xbd\x6e\xea\x9d\xa9\x6b\xee\xf8\x08\xcb\x9b\xf3\x79\xaa\x17\x65\xf4\x03\x5b\x91\x36\x56\x49\xfe\x56\x16\x13\x2b\xf8\xbc\x74\x9a\x98\xb0\x53\x61\x3f\x02\x36\xd6\xe4\xd3\x67\x93\x3e\x95\x94\x38\xe0\x4c\xca\x8f\x6b\x53\x2f\x1d\xdf\x38\x04\xa9\x25\xea\x2a\x55\x8b\x8e\x8c\xee\x15\x9b\x19\xa6\x1a\xbb\xa3\x6c\xdf\x59\x75\x96\xec\xc0\xfc\x5d\x6c\x6a\x1e\x2d\x47\x73\x2c\x75\xb7\x19\xca\x4b\xc2\xe8\x6c\x69\xcf\x08\x56\xa1\xaa\x8d\xa6\x3d\x97\x25\xf9\xf6\xe5\x66\x72\x41\x7d\x83\x58\x5d\x70\x14\x5a\xdf\x40\xb2\xdd\x33\xde\x83\x94\x7b\xc3\xcf\x50\x8e\x03\xcc\xed\x3c\x2a\x5f\x90\xe8\xd0\x35\x13\x1f\x21\x4d\x90\x24\x69\x10\x49\xcb\xf4\x0f\x0c\xfc\x8f\x1d\x09\xff\xa6\xe0\x6b\x22\xca\x0d\x8e\x45\x61\xfe\x81\xed\x32\x69\xbe\x9f\x9f\x3a\x0e\x1d\xcb\x3d\x89\x74\x8f\x79\x47\xeb\x9c\x8e\x67\x90\x29\x79\x85\x72\x9b\x54\x9b\x16\xf3\x1b\x79\x43\x24\x9b\x09\x9b\x41\xaa\xfb\xc8\xd8\x8c\x70\xcf\x79\x60\xa2\x0e\x55\xae\x73\xc6\x27\xba\x77\xe0\xa3\x18\xba\x96\x13\xf2\xe7\x73\xfe\xf1\x87\xdf\x15\x5e\xd3\xf8\x4a\x2a\x2f\xaf\x0e\x51\x75\x35\xc2\x5f\xac\xe6\x8e\xc7\x64\x4d\xa5\x0c\x4d\x21\x14\xa4\x35\x9a\x0f\x79\xf2\x0c\xb1\xa1\x5f\x93\x4b\x01\xf9\x21\x26\x30\xcb\xed\x2b\xae\x53\x3a\xfb\xf0\x05\x02\x38\x31\x5d\x34\x0e\xda\xe0\x69\xe6\x6a\xe2\xe4\x73\xb8\x20\xf6\x5f\xc9\xa4\x6e\x23\x97\x5e\x06\x0c\x16\x6e\x6c\xc3\x6a\xb2\x9b\xd7\x42\x50\xfa\x9c\xc4\xbd\x2b\x8b\xea\x18\xb0\x24\xee\x53\x9b\x2a\x66\xee\x45\xb2\xaa\x9b\x15\x1d\x82\xb1\x66\x7a\x10\x4b\xf6\x29\x87\xb8\xa9\x96\x6c\x75\x2b\x25\xd0\x3d\xb8\xec\x4e\x9c\xd2\x42\x84\x3d\xba\x9c\x0d\x9b\xa6\x67\x5b\x2b\xa5\xa5\x06\x88\x54\xd3\x2e\x4e\xf8\x4a\x78\x04\xdb\xe8\x53\xc0\x3d\x05\x3b\xdd\x48\xde\xe8\xf3\xb3\x16\x0b\x3e\x23\xb4\x85\x37\xbf\x0c\x30\x56\xf3\x05\xc7\x52\x4a\x19\xbd\xb1\x49\xe8\xa0\xfc\x95\x6d\xf5\x37\xc5\xad\x1e\x53\xd4\xa7\x19\xa9\x25\x03\xd7\xb0\xe6\xee\x6c\x43\x87\xe9\x54\xfa\x47\x97\x6c\xe2\xdc\x4d\x77\x52\xc5\xba\x56\x39\x96\x05\x77\xd8\xf7\x7f\x8e\x78\xb0\xb4\xf3\x6f\xb3\xbf\x11\x3f\xb3\xc3\x51\x2d\xdc\x11\xda\x32\xc3\x6e\x75\x7e\x11\x27\x40\x22\xb1\x3b\x6f\xb7\x97\xed\xc8\x5f\xb6\x9d\x03\x8e\x0f\x1f\xc9\x21\x3d\x9b\x17\x95\x17\x9f\xc3\x56\xd2\x86\xe0\x31\x0c\xe7\x23\xee\xd3\xca\xf2\xc8\x43\xcf\x83\xe4\x7e\xeb\x68\x8d\xa6\x6b\x75\xad\x9f\xcc\x7a\x20\x08\x35\xdf\x45\xce\x73\xc8\xb7\x73\xcf\x4d\x74\xbb\x13\xa3\x64\x3b\x74\x71\x42\x60\xaa\x65\xb4\x22\x5a\x1f\x8d\xee\xd0\x75\xfb\x50\x4a\xae\x4e\x25\x60\x7b\xc5\x49\x5b\x73\xb1\x37\x63\xa9\x90\x4d\x17\xa7\x5f\x44\xbe\x68\x01\xf5\xd3\xb5\x76\x2c\xb4\x25\x13\x5c\xfb\x30\xd3\x81\x3b\x35\xb4\x4a\x62\xba\x97\xe7\xd7\xc3\x10\x8e\x96\x34\xb4\xd1\xea\x1a\xdc\x62\x8b\xef\xf5\x8f\xc8\x9b\x9a\x51\x09\x79\x36\x51\xb4\x47\x03\x8f\x3d\xb2\xb4\x72\x02\xcc\xbd\xd2\x4d\xfa\xb2\xf9\x0e\x8b\x39\x95\xd9\x66\xf0\x4d\x41\xbc\x50\x59\x06\xd1\x9d\xe7\x16\xcd\xa8\x3d\x90\xad\x0e\x65\x22\xbc\x6a\xdc\x54\x71\x02\x27\x1c\x2c\x5c\x8d\xa2\xa3\x4f\x4b\x15\xdd\x0f\x73\xdd\xd0\x31\xee\x18\x31\xca\x7e\x88\xdf\x3a\x8b\x16\x52\xb4\xb0\x8e\x66\x99\x25\xc3\xd7\xfa\x45\x8b\x29\x2f\x88\x4d\x72\xc5\x4c\xcb\xf8\x5d\x22\x04\x5c\x5a\x1a\x26\x0f\x8b\xd6\x8c\x6c\x5c\x8e\xd4\x3c\xdf\x22\x24\x0b\x6f\x57\xa7\x6a\x79\x7c\xf9\xa6\xc8\x0d\xff\xc8\xad\x74\xb7\x00\x66\x68\xd6\x7b\xf6\xeb\xb4\xea\xa1\xc2\x24\x9b\x93\x93\x4e\xb6\xa5\x1b\xb5\xdc\xcf\xbb\xc9\x1e\xd0\x20\xa9\x7c\x18\x61\x1a\x4b\x7a\xc2\x6a\x59\x4a\x85\x2d\xdc\xef\x27\x5d\x27\x43\x4c\xa9\xbf\x70\xb6\xb5\x71\xb5\x84\x5e\x61\xf9\xca\x72\x20\xee\x73\x21\xbd\x03\x03\x21\x5f\x44\x97\xfc\xb2\xbd\x42\x42\x68\xbe\x39\xc1\x50\x4c\x1f\x79\x0c\x15\x82\x4e\x5a\x80\x1c\x30\x8d\x0e\x61\x72\x31\xd7\x3a\x6f\x4b\x1b\x49\xd1\x94\x37\x6a\x8b\x4c\x9d\x49\xe8\x17\x89\xf6\xee\x69\x5d\x5b\x1e\x95\x81\x13\x44\x6f\x52\x6d\x84\xb5\x0c\x93\x19\xdc\xc3\x79\x0f\xc3\xce\xaf\x36\xb3\x25\xa9\xf9\x07\x46\xb6\x5a\xb3\x3b\xa3\x2b\x4e\x1b\xf2\x92\xd7\x35\x6d\xab\x18\x8b\xa5\x58\x63\x9e\x6a\xe4\x44\x6d\x19\x5d\xb9\x1b\x7e\xac\x51\xbc\x65\x64\xc6\xf1\xdd\xad\x3f\x8a\x8d\x54\x36\x11\x82\xc4\x1b\xae\xeb\xd5\x3e\xab\xaf\xc5\x8b\xfa\x20\xe6\x33\x1f\xbb\x7e\x74\x3f\x1f\x0b\x2e\xbd\x1e\xf2\xa8\x66\x37\xac\x76\xf1\x7f\x52\xb1\x39\x6f\x82\xc4\xd0\x7b\xc4\xc0\xc2\x2b\xd6\xe5\x8b\xf3\x74\x86\x99\x13\xc5\xfa\xcb\xcc\x99\x62\x61\x51\x8c\xdb\xeb\xe3\x41\xc6\xf7\x1c\x82\x18\xbd\x71\x3e\x8e\x6c\xa7\xd7\x20\xf7\xf4\xb1\xb2\xa4\x37\x2c\x76\xcb\xb9\xce\xa6\xd3\xd0\x6b\xb5\x74\x0a\x11\x26\x5b\x8b\xd5\x42\x0b\xd3\x63\x3c\x7f\x4b\x3b\xda\x03\x92\x25\x15\x65\x25\x09\x0f\x0e\xba\xa4\xd9\x46\x79\x71\x48\x13\x3d\xf1\xfc\xb3\x60\xea\xb4\xae\xf1\x3a\xa8\x3b\xc4\xcd\x86\xc2\xb2\x69\xbc\xb1\xea\x4d\x88\x72\x74\x5e\x04\xea\x6e\xdc\x17\xce\x77\xa0\x22\xbc\x5d\x69\xae\x00\x45\x73\x0e\x10\xc0\xc7\xca\x0c\xce\xfa\x9b\xf7\xf9\xdc\xb2\x8b\x5b\x23\xa8\x98\x21\xf3\x69\x85\x35\x42\xb2\xa9\xb9\x3c\xbf\xf4\x54\xa7\x5e\x87\x73\x17\x27\xc7\x63\x97\xeb\xd1\x75\x91\xce\xa7\xdd\xf8\x1c\x59\x2e\xc9\x94\xe9\x03\x5f\x32\xda\xce\x96\x66\xde\x05\xfa\x5d\xc7\x08\x11\x6a\x6f\x5d\x2b\x61\xff\x65\xf3\x13\xed\x45\xf0\x94\x84\xc5\x82\x28\xee\x9e\x47\x7a\x79\xf4\x69\x4e\x57\xf7\xe8\x71\x74\x1b\xee\xe9\x28\x2a\x21\xd3\x49\x5f\x53\x3c\x3f\x8c\xaa\xf6\x91\xd8\x42\xe9\xf8\xb8\x15\x00\x1d\xc9\x55\x20\x09\x31\xe9\xee\xfc\xe2\xe3\x24\x7a\x30\xe5\x08\xf3\x73\xec\x34\x85\xd6\x25\x83\x44\xb6\x8e\x0f\x9c\x08\x47\xaf\xd8\x6a\xad\x35\xca\x1f\x5b\xfe\xf3\xcf\x35\x67\xf2\xe8\x6b\xf0\x43\x34\xb0\x41\xfd\xda\x5e\xfc\xd1\x3c\x80\xed\x9d\xe6\xb6\x8f\x83\xb0\x5f\xc8\x47\xaf\x0f\xe0\x9a\xf4\xfd\x03\x9b\x6f\x6d\x10\x4a\x0a\x02\x84\x1c\x34\x1e\x93\x33\xd1\x7c\x0b\x7e\xe4\x19\x83\x04\x9f\x1b\xd6\xba\x48\x90\xd1\x80\x45\x6b\x10\x83\xf0\xcf\x0d\xad\x83\xca\x76\x7c\xee\xea\xfd\xf4\xde\xcd\x2c\x9a\x33\xfa\x47\xc7\xa6\xef\x60\x8c\xe0\x4d\xbb\x92\x1a\x57\x2a\xd1\x94\xf3\xf7\x95\x31\x02\x42\x9e\xc6\xd4\x60\x6b\xb4\x78\x6f\xa5\xbd\x7e\x18\x2f\x26\x97\x29\xef\x8f\xfa\xf8\x27\x48\xdf\xf7\xec\xe3\xd2\xf7\x6f\x25\x4d\xfe\x6b\xc3\xda\x9d\x9d\x80\xa9\x09\x60\x64\xb1\x97\x81\xbe\x9e\x01\x87\xb4\x2d\xf4\xe5\xd2\xa9\xd8\xb8\x0b\x90\x29\xc3\x18\x90\xd9\x45\xb2\x70\xbc\x90\x35\x7c\xe6\x4d\x74\x87\xea\xa4\xa4\xed\x17\x0b\x67\x75\xaf\x5e\x38\x64\xf4\xc2\x75\x77\x72\xad\x2f\xb1\x13\x2d\x2a\x24\x90\xff\x13\x2c\x6a\xe9\xf6\x6d\xbc\x36\x61\xf5\x20\xb7\x36\xb7\xde\xb0\x68\xbb\x16\xb6\x69\x72\x04\x1b\x2b\xd9\xae\xea\x53\x78\x59\xb1\x48\x72\x73\xb7\x2a\x24\xba\xb9\xaf\x75\x30\xd9\xff\x91\x84\x4f\x71\xd5\x50\x92\xdb\x38\xf1\x3a\xc4\x25\x2c\xdd\x4a\xe0\x3f\x7e\x89\x95\x90\xfe\x2a\x59\xba\x16\x17\x67\xf2\xd9\x2e\xdb\x03\xce\x43\x99\xad\x05\x71\xab\x5a\x38\x2d\x6f\xbf\x26\x97\x5d\x97\xc9\x6f\xb9\x2e\xa7\x05\x17\x6b\x00\x8c\xcf\xb5\xaa\x0f\x41\x00\x39\xd4\x67\x8f\x96\x37\x7c\x6e\x2f\xa4\x16\xd6\xcc\xd1\x65\x90\xd4\xe8\xb2\x6e\xd8\xef\x7f\xfb\x3e\x5c\xba\x1b\xda\xe2\xfa\x48\xff\x3b\x39\x21\xef\xde\xc7\x76\x6d\xe2\xa5\xb6\xb2\xd7\xae\x18\xde\x9a\x71\xe7\xbb\x93\x47\x0e\x86\xfe\xd2\xba\xa3\x78\xbe\xe2\x46\xfb\x2d\xf9\x58\x50\xd0\x9d\x9c\xd8\xee\xb0\x3d\x0b\x0e\x0d\x9f\x51\x6e\xeb\xa5\xcd\xc5\xa6\xa9\x86\xce\xc6\x07\xea\x66\xdd\x70\xee\xa6\xd6\xd1\xc0\x8e\x91\x48\x60\xd2\xe3\x33\x8f\x07\xc5\x4d\x10\x8e\x1b\x1e\x04\xfb\xf7\xc9\xa5\xc1\xbd\xa0\x5a\x18\x4c\xcd\x83\xcd\x27\x27\xe4\xf1\xdd\x4e\x1e\x84\xd7\x77\xca\x80\x35\x73\xd1\x84\xd7\xda\x21\x7c\xcc\xa5\xd2\x4c\x0a\x2a\x61\x29\x26\x10\x88\xbe\xaf\x28\xd2\xc2\xad\x63\x51\x29\x69\x86\x38\x83\x4c\x8a\x95\x36\xc3\xfd\xc9\x31\x2f\xc3\xc0\x82\x4c\x68\xcb\xe5\x0b\x7b\xfd\x55\xf1\x96\x55\x91\xdf\x59\xd4\x8c\x9a\xf4\x1c\x7b\xf7\x5b\x6a\x0c\xa8\xa6\xd1\x18\x2b\x26\x89\xd5\x54\x74\xaa\xfe\x03\xb8\x28\xb3\xe5\x92\x41\xe9\x9f\xc6\x64\xdf\x98\xdb\x46\xc7\x7a\x02\x2d\x8e\x3b\xea\x84\x71\x31\x0f\xba\x04\x3d\x86\x5a\x1e\x49\x85\xa6\xc8\x0a\x42\xb2\x7e\xd1\x87\x9d\xe0\xa6\x1b\x7f\x59\x67\x46\x1b\xd2\x08\xa2\xcf\x1d\xd6\x92\x29\xb3\xf7\xbf\x23\xaf\xf8\xbd\xb2\x4e\x84\xca\xbd\x99\xbb\xcf\xcc\x4a\x99\x45\x82\xe2\x24\xc6\x7d\x96\x91\x0d\x44\xb7\x88\xe5\x75\xca\x04\x83\xfe\x1b\xa2\x38\xe0\xd3\x30\x71\xc9\xd8\x1b\x92\x29\x53\x5a\xd4\x3e\xf8\x52\xd4\x27\x0b\x29\x4f\x57\x8c\x59\x9c\xdf\x98\x77\xf5\x2d\xc2\x26\xf8\xcd\x65\x56\x93\x04\x5d\xd9\xd8\xea\xc4\x0e\x0e\xcf\x10\x99\x79\x1c\x5b\x43\xa7\x90\x3e\xee\x44\xb1\x85\x20\x15\x55\x9b\x62\xfe\xa7\x69\x91\xcb\xb2\x14\xea\x85\x67\x83\x2d\xdd\x23\x81\xc9\x61\x76\x13\x97\x57\x4c\x61\x6e\xfd\xe1\x7b\xb3\xc4\x6d\x2e\xb5\x7e\xa4\xd1\xe4\xea\x5b\xfb\xf7\xb0\xe8\x3d\xb0\x85\xae\x0a\xbb\x04\x0a\xd6\x42\x41\x88\xf2\x3e\x4b\xb7\x18\x6e\xd2\x64\x7b\xbd\x31\xee\x2c\x90\x65\x2e\xab\xe2\x97\x50\x40\xbb\x77\x0b\xe8\x39\x96\x2c\xe5\x8d\xe2\x16\x23\x93\xe2\x76\x4f\x04\xec\x70\xef\x12\x3c\xb8\xbf\x11\x1d\x8f\x85\x77\xec\x42\x65\x03\x6b\x38\x84\x57\x0b\x13\x37\xe2\x1e\xdf\x4d\xb8\x6e\x94\xcc\x58\xab\xd7\xca\xca\x96\x51\x42\xe7\xff\xad\x42\x12\xaa\x33\x0b\x45\xeb\x02\x39\xb2\x81\x13\xfa\x44\x04\x70\x33\x4f\x8f\xf8\x9e\xd7\x04\x3b\x25\x69\x6e\xc1\xdc\x59\x94\xbe\xb5\x51\xf6\x66\xb3\x7a\x05\x88\xbf\x61\x6d\x56\xb3\x4e\x8f\x41\x57\xe0\xae\x8f\x44\x27\x86\x72\xa3\x7e\x5d\x62\xd4\x70\x18\x42\xe9\x57\xf4\xbc\x6c\x94\x89\x6c\xbc\x83\x68\x5c\x94\xaa\x50\x84\xea\xe1\x41\x65\x1f\xca\x9c\xdb\x5b\x7d\xc2\x77\x71\x57\xbf\xec\x3a\xfa\x21\x21\xe1\x5c\xaf\x26\xda\x4c\x61\xc7\xac\xd6\x73\x67\x09\x87\xe3\x49\xce\x20\xe5\x7b\xe8\x58\x27\xf5\x6b\x5d\x42\xbf\xd3\x05\xf4\x8e\xcb\xe7\x7d\xb3\x87\xff\x94\x23\x2b\x61\x01\x84\x34\x08\x21\x83\xdf\x7c\x94\x25\xa3\x56\x74\x1d\xfd\xc0\xf0\x4b\x08\xfa\xe0\x20\x4c\x80\xeb\xe0\x78\xf2\x2e\xa7\xfb\xfb\x7f\xc2\x75\xdd\xb3\xac\xfe\xef\xfe\x68\x92\x47\xf2\xd9\xee\xe2\x2c\x76\x65\xa5\x55\x31\x20\x0c\xac\x76\x7d\x27\x4d\x56\xfd\x25\x38\x70\x42\x31\x70\xdb\x23\xa3\x5c\xa1\x23\xf4\x74\x44\xf3\x18\x94\x4a\xae\x1c\x4f\xf2\x95\xf9\xd5\x2f\xfc\xbb\x90\x12\xef\x1f\x26\x0c\x00\x99\x62\x58\x78\x13\xd2\x78\x70\xe1\xf1\x65\x41\x02\xe5\xfd\x82\xde\x3e\xff\xb5\xab\xbe\x89\x4b\x22\x08\x6a\x97\xc3\x5a\x9b\xb3\x3e\xbf\x3c\x5c\x58\x6e\x5c\x2c\xfb\x35\x5e\xfc\xf9\xe8\x40\xf0\xe6\x0b\xf0\xca\x54\x84\x04\xc2\xc0\x0a\xf8\x5f\x1f\x3b\xa4\xc4\x7a\xe0\x8f\x70\x6d\xef\x25\x13\x2c\x94\x09\x30\x29\x84\xa0\x2e\x1e\x52\x52\x2b\x38\x5c\x8d\xd4\x28\xee\x36\xfd\x7b\x4c\x62\xbf\x51\x1f\x64\xad\xc2\xea\x99\xf9\xaf\xdd\xd5\x84\x93\x3b\xf3\xe5\x42\x4c\x21\xf0\x61\x0f\xb0\x34\xa3\xa5\x5c\x52\x50\x43\xb3\x3e\xb9\x87\x27\xe4\xf1\x84\x1c\x5d\xc6\x15\x73\xc0\x33\x38\x33\x05\x21\xcc\xbd\x99\xbe\x1a\x82\xc0\x73\x21\xea\x9a\x0f\xd3\x25\x8d\x1a\x9b\x67\xb9\x23\x87\xab\xfb\x71\xe5\x5f\x1e\xc9\xde\x51\x89\x74\xbb\xa8\x86\x43\xca\x29\x71\xf1\xee\x57\x74\xad\xc5\xbc\x57\xe9\x69\xad\xc5\xc9\xce\xaa\xec\x96\x63\x36\x52\x0b\x7c\x0f\x2b\xca\x78\xfc\x69\xc9\x1a\x73\xa3\xd6\xe8\x88\x09\x83\x69\xf6\x44\x80\x43\xf2\x1d\xf0\xaa\x35\x81\xd5\x32\x2c\x6a\x13\xc8\x0a\x70\x58\xac\xe8\x9a\x4c\x77\xf6\x82\xd5\x50\x9b\x82\x2b\x56\xe9\xaf\xb0\x38\x3b\xbc\xa0\xd1\x2c\x88\x98\x87\x40\xae\x30\xc5\xf2\x8d\x4f\x74\xcc\xf6\x91\xfe\xd0\xd9\x8c\x49\x39\xb0\x89\x45\xc7\xc8\xaf\xb1\xfa\xee\x3b\x7a\xae\x42\xee\xfb\x5c\x22\x63\x30\x63\xac\xe3\x56\x54\x9b\x93\x6c\x51\x33\x4f\x2c\xd8\x2b\xcd\x1d\x1d\x48\x51\xd7\x24\xe3\xcd\x62\xd4\x8f\xf2\x2a\x55\x02\x27\xc4\xd6\xa3\x28\xa1\x6a\x54\x72\x7b\x92\xdb\x92\x7b\x59\xb1\x3b\x19\xa1\xf9\x02\x6a\x8e\x28\xbe\xd2\x96\x78\xa8\x42\x72\x69\xf5\xb7\xb8\xf8\x97\x89\xc4\xf0\x45\x13\xd5\x02\xb5\x27\x49\x5c\x8b\x0a\x75\x7d\x8a\x75\x18\x1b\x53\x32\x05\xcb\x2a\xe2\x72\x7f\xd7\x43\x03\xac\xac\x1b\x0b\xcb\x5c\x20\x8d\xc7\xe4\x2f\xb4\xe5\x90\x13\x25\xf9\xcf\xe1\x1d\xd4\x64\xe5\x50\xf8\xc9\x7e\xa2\x27\x87\xb5\x21\xf9\xf7\xbf\x9d\x04\x90\xfe\x55\xc9\xec\x57\x54\xc9\x2c\x33\xfe\x6d\x71\x64\x94\xdb\xe9\x61\x1d\x35\xb7\xb5\x9f\x3d\xc6\x27\x01\xfa\xc9\xe1\x06\x70\xed\xd9\x96\x94\x12\xeb\x2a\x11\x5f\xc4\xa1\x0b\xb7\xee\x8a\xa2\xc9\x79\x95\x17\x8f\x0f\x78\x20\xea\x88\x65\xa0\xdd\x8f\xae\x1a\xf4\x9d\x27\x76\x40\xc1\xe6\xa2\x17\xc3\xa5\x87\x82\x98\x43\x28\xdf\x6a\xbd\xe7\x17\xab\xad\x19\x76\xbd\xa5\x97\xa3\x83\x87\xbf\xcc\xdb\x91\x24\xd4\x65\x87\xc5\x3b\x80\xf0\xbe\x9b\xb8\x97\x5d\x27\x62\x07\x91\x23\x61\x7f\x88\xf3\xd4\x3a\x07\x05\x96\x0c\x0e\x44\x6b\x72\x6e\x6c\xa4\x29\x07\xc6\x65\xf8\x58\x56\xcb\x9d\x4f\xf2\x80\xa5\xeb\x2c\x49\xea\x34\x97\xcc\xd7\xde\x25\xef\x7a\x4a\x92\xde\x1e\xd8\x81\xe5\x57\x51\x0f\x43\xe5\x62\x55\x1a\xe4\x30\x16\x24\x97\xe9\xaa\x0c\x53\xcd\xcf\xad\x47\x51\xf0\x97\xb8\xb3\x93\x53\xfa\xbd\xb8\xe5\x32\xab\x1d\x55\x24\x8d\x6b\x57\x13\x39\x12\xa7\x30\x42\xf0\x30\x97\x7d\xbd\x27\x7f\x56\xcc\x3d\xe6\x15\x0c\xda\xf5\xec\x18\x9f\x93\x87\x28\x43\xbb\xa6\x36\xb2\x91\x97\x3f\xb1\xdd\x20\x43\xac\x54\xc1\x69\x0f\xbc\xf0\x01\xbe\x0c\xde\xd0\x08\xee\xc7\x85\x1a\x97\x66\x97\xbb\x16\x61\x83\xcf\x5d\xe2\xa0\x13\x8f\x77\xd9\xd8\xef\xbb\xae\x5d\xd1\xaa\xba\x16\x87\x4a\x09\xa7\xd7\x49\xf2\x5d\xb7\xfe\x7f\x47\x61\xf1\xaf\xbd\x3f\xee\xdb\xaa\xfd\x0b\xf6\x45\x9b\xf5\x17\xdf\xa4\x5f\x75\x97\xda\xeb\xdc\x50\x8c\x52\x1b\xfb\x73\xae\x15\x70\x9f\x84\xe6\xba\x3e\x3c\xea\xde\x67\xb7\xde\x60\x4e\x61\xbb\xcd\xa6\x8c\xb4\xb9\x60\x83\x86\xbc\xf6\xaf\x72\xe3\xbf\xde\x72\xe3\x87\x78\xb6\x1e\x96\x55\xbf\x68\x57\x60\xc4\x88\x4c\xc8\x51\x28\xbb\xad\x98\x35\xe2\xc6\xaa\x08\xa8\xac\x3e\x4c\x7d\x5f\x05\x97\x55\x36\x66\xf4\xc0\x6c\x5e\x33\xbc\x54\xdf\x2f\x34\x65\x2b\x56\x5d\x0b\x73\xc3\x13\x81\x7f\xad\xe2\xe3\xdd\xb5\x3a\xb3\x49\x91\x93\xf4\x55\xdf\xfe\x7d\xdc\xd1\x3e\xb1\xbc\xba\xa0\xe6\x66\xde\x77\xb9\x1b\xd0\xfa\x89\xef\xeb\x2e\x9c\x01\x67\x6f\xe3\xc1\x95\x3b\x5a\xdb\xa7\x0b\xa3\x6a\xbc\xf7\x3e\xea\x83\xe2\x72\xc0\xf3\x48\x06\x8b\xe0\x45\xb4\xe4\x71\x1a\x20\x59\xfa\xd0\xc6\xe3\xf8\x67\x77\xad\x23\xa6\x38\xae\x89\x4d\x8b\x2d\xfe\x94\x56\x6b\x75\x0b\xe4\x9e\x8b\xfb\x2e\xff\xcd\x3e\xc6\x94\xfc\x04\xb9\x15\x57\x9b\xf5\xba\xde\x01\x8a\x91\xa0\xdd\xd8\x47\x48\xe2\x9b\x7f\x69\x95\xb2\x28\xc8\x81\x0f\x5b\xf8\x0e\xe1\x9b\x16\xe1\xfd\x3b\xac\x49\x36\x36\xb0\xc6\x69\x9d\xdf\xe3\x08\x13\x57\x3e\xd1\x84\x9a\x66\x74\x4d\xb1\x4e\x8b\xcb\x16\x2e\x14\x68\x88\xf0\xaa\x79\xf3\xe1\xc9\x37\x9f\xca\xf5\x84\x3f\xff\x7e\x30\x46\xd0\x19\x22\x43\xa2\x68\xbb\x60\xea\x60\x5c\xdf\x98\x6b\x23\xb0\x03\xdb\x03\xe9\x95\x3d\xff\x11\x3d\xfa\xe1\x46\x36\x1b\x01\x7e\x0c\x46\x05\x79\xf5\xdc\xf0\xa2\x67\xcf\xca\xdd\x72\xfc\xfc\xe0\xff\x05\x00\x00\xff\xff\x01\xd5\x3a\xde\x9a\x15\x01\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\x2e\x95\xa3\x49\x6f\x36\xb7\xbf\x7a\x58\x56\x1c\xd9\xb2\x36\xba\xd8\xb2\xcf\x52\xb2\x75\xe5\x72\x3d\x01\x39\x20\x89\x78\x38\x60\x06\xa0\x68\xae\xcf\xdf\xfd\x29\x74\xe3\x1d\x98\x21\x65\xc9\x9b\xcb\x56\x58\xa9\xac\x45\x02\x8d\x46\xa3\xd1\xe8\x37\x34\xc6\xbf\x79\x40\x08\x21\x67\x4c\xce\x5a\xbe\x56\x5c\x34\x13\xf2\x9c\x35\xaa\xa5\x35\xb9\x5a\xd1\x56\x91\xe7\x42\xff\x35\x53\x64\x2e\x5a\x72\xf9\xec\x94\x5c\x8b\xf5\xd5\x52\xa8\x07\xd0\xf1\x7a\xc9\x25\x91\xd0\x70\x66\x1b\xea\x7f\x50\xde\x48\xa2\x96\x8c\xcc\x44\xcb\xc8\x7c\xd3\xcc\x34\x6c\x5a\x73\xb5\x03\x40\xd0\xd9\x40\x23\x1a\xdc\x90\xcc\x5a\x46\x15\xab\xc8\x74\x47\xce\xe8\x7a\xcd\x5a\xf2\x92\x4e\xa5\x1d\x86\x79\xf8\x2b\xda\xd0\x05\x43\xf0\x15\x55\x94\x50\x29\xc5\x8c\x43\xe7\x2d\x57\x4b\x42\xeb\x1a\x7e\x5c\xd7\x74\x27\x09\x6d\x2a\x22\x99\x92\x00\x48\x2d\xa9\x22\xb4\x65\x64\x23\x59\x45\xa8\x24\x8a\xad\xd6\x35\x55\x4c\x02\x5a\xba\xd7\x2b\xb1\x62\x8d\x22\x97\xe7\xd7\x66\xf0\x9f\x96\xac\x21\x94\x34\x6c\x4b\xde\xd4\x74\x47\xb6\xb4\x51\x92\x28\x41\xa6\x8c\xd0\xaa\x62\x95\xfe\xb7\xee\xd9\xb2\x99\x68\x2b\x39\x24\xb4\x21\xa7\xd5\x8a\x37\x66\x4e\x38\x74\x00\x41\xaa\x76\x33\x53\x88\x8c\xa6\x9f\x12\x2d\xab\x08\x6f\x00\x4a\x4c\xcd\x91\x23\x40\x13\x80\xa5\x16\x34\xc0\xbc\x62\x4a\x8e\xe0\xff\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x35\x9f\x45\xa3\x01\x30\xb7\x40\xa6\x01\x6f\xe6\xa2\x5d\x51\xbd\x42\x84\x4e\xc5\x46\x11\xaa\x29\x36\x04\xd2\x51\xb2\x6e\xf9\x8d\x1e\xaa\x65\x52\x6c\xda\x19\xd2\x0e\xa9\x29\xc8\x8a\x37\x0a\x90\x58\x01\xd9\x24\x99\x52\x4d\x59\x31\x9f\x6b\x1c\x70\x05\x60\xe4\x25\xbd\x61\x64\xca\x58\x43\x6a\xde\x7c\xf0\x44\xbb\x62\xc1\x1c\x09\x85\xf9\xb9\x91\x96\x14\x97\x79\x2d\xb6\xac\xd5\x3d\x2a\x01\xab\x2b\xe6\xf0\x35\x5f\xad\x45\xab\x68\xa3\x08\x05\xfe\x42\x42\x97\xe9\x68\x96\x51\xc3\x97\xb0\x84\x1a\xdc\x4c\x03\xb3\xdc\x29\x75\x4f\x9c\xb9\xe1\x15\xb6\xc3\x16\x6a\xc9\x78\x4b\xa6\xa2\x6d\xc5\xf6\x8a\x29\xd7\x43\x83\x58\x30\x4d\xae\x96\xcd\x59\xcb\x9a\x19\x23\x96\x30\x00\xc8\xe2\xe2\xb1\xd0\x0b\x39\xb4\xa0\x9b\x14\x01\x61\x50\x67\x8a\x6c\x24\x6f\x16\x48\x3a\x07\xdc\x10\xea\x42\xb7\xe2\x7a\x16\xbb\x61\x61\xaa\xb0\x6c\x5c\x49\x52\xb1\x39\x6f\x58\xe5\xc8\xa9\x27\xa8\x18\x34\x01\x38\xb0\x59\x16\x9a\x8f\x88\x62\x74\xb5\x15\xed\x87\x21\xf9\xdb\x46\x2a\x52\xf3\x0f\x0c\x20\x5f\x34\x15\xa7\x0d\x25\x6f\xe8\x8c\xb5\x12\x47\x5b\x20\x53\x2b\xd8\xbf\xba\x23\x00\xd3\x1c\xa7\x49\xc5\x57\x6c\x04\x5f\xf8\xbd\x63\x59\x43\xef\x3b\xcd\x2f\xac\x32\x14\xd0\x5f\xf0\x86\x2b\x4e\x6b\xfe\xb3\xdb\xbd\x66\x07\x9e\xe9\xad\x6d\x78\x97\x36\xc8\x70\xba\x43\xcb\xd4\xa6\x6d\x50\x50\x68\x74\x00\x62\x3b\x2a\x08\x0a\x5a\x4b\x61\x88\x20\x09\x25\xcf\x45\x5d\x33\x5c\x37\x4b\x91\x11\x0a\x30\xae\xa5\x04\x11\xd3\xbf\xb1\x68\x9f\xb0\x1b\xd6\xee\xac\xbc\xd3\x02\x81\x88\x6d\xc3\x5a\xb2\xe5\x75\x8d\x9b\xd6\xac\x2f\x6f\x09\x9d\xcd\xc4\xa6\x51\x6e\x5b\x80\x8c\x32\xbf\xe9\x9e\x33\x37\x78\x80\xe9\x8a\xf2\xc6\x49\x40\x0b\x02\xc1\x03\xee\xb0\x67\xf4\x4a\x8a\x6d\x63\xe5\x92\x07\x64\xb8\x5d\x01\x23\x6d\x24\xd3\xe3\x2e\x45\x5d\xb9\x1e\x96\xee\x7e\xff\x35\x42\x91\x1d\x53\xb8\x0f\x25\xc3\x4d\x40\x75\x67\x4b\xc0\x4b\xa1\xd8\x84\x9c\xc2\x04\xf5\xa6\x9f\x2d\x69\xb3\xd0\x9c\xe8\x99\x14\xf0\x5b\xd3\x46\x4b\x8e\xb9\x26\x1c\x6f\x6e\x68\xcd\x2b\x42\xdb\xc5\x06\x70\xe4\x88\xda\xba\x15\x37\x5c\xcb\x47\xd1\x12\xd1\x30\xcd\x22\x1a\xb5\x75\xcb\x1e\xcd\x44\x53\x71\xc3\xf3\x2d\x59\x0b\x09\xec\x6b\xbf\xa2\x2d\x6b\xbe\x55\x64\xa5\x45\x83\x06\x74\xee\xc6\x86\xa9\x54\x02\x7e\x15\x15\x9f\xef\x0c\x9a\xb8\x24\x7c\xb5\xae\x77\x86\x41\xc8\x63\x0d\xb9\xe1\x35\xae\xa5\xde\x13\x6a\x29\x24\x23\x33\x2a\x99\x24\x0d\x43\x11\x34\xd5\x42\xa6\xa9\x6a\xcf\x4f\x7a\x4b\x3a\x72\x5c\x80\x80\x86\xc5\xf0\xc2\x46\x09\xd2\xb2\x15\x5b\x4d\xb5\x4c\x72\xdc\xa2\x17\xf4\x47\x51\x57\xac\x21\x57\x80\xd3\x4f\xb4\x6d\xb9\x68\x25\x99\xd6\x6c\x4b\x28\xf9\xfe\xd1\x77\xa4\x66\xd4\x09\xfa\xdf\x3e\xfe\xee\x07\xd8\x43\x73\xde\xd0\x5a\x8e\x1e\x3c\xf8\xcd\xf8\xc1\x03\x1c\x46\x4f\x79\xc1\xa7\x35\xbb\x16\x1f\x58\x43\xe6\xad\x58\x91\xc7\x1f\xcf\xff\x7c\xf9\xe3\xc5\xb3\x97\x2f\xae\x5f\xff\xe9\xc5\xe5\xe9\xd9\xd9\xdb\x17\x57\x57\xb6\xc3\xa5\x68\x8a\x7d\x2e\xcf\xaf\x93\x96\xaf\x98\xa2\xfa\xdc\xfc\x0b\x67\x5b\x69\x9b\xbd\x7a\x71\x7d\x7a\x76\x7a\x7d\xfa\x97\x8b\x17\x3f\x5d\x25\x1d\xcc\x0e\x78\x29\x66\x1f\x80\x13\xb0\xc7\xf5\xeb\x37\x57\x7f\x7c\x7d\xfd\xf2\xf5\xf3\x3f\x5d\x5c\xfe\x68\xbb\x3c\x58\x6f\xa6\x7e\x07\x9a\x9e\x93\x1c\xbb\x4f\x40\xb3\xf1\x98\x3c\xba\x9f\x8f\x05\x67\x77\x6b\xc5\xd6\xb5\xd8\x01\x37\xde\xd0\x96\xd3\x69\x6d\x8e\xe1\x7b\x1c\xd2\x8d\xb9\xd4\xe7\xb0\xd2\xf2\x33\x92\xf6\x9a\x75\x10\x0f\xbd\x07\x1a\xdc\x13\x9b\xa9\xde\x4a\xe4\x12\xdb\x0f\x8e\xc9\x84\x5c\xa9\x56\xd3\xf5\x93\xe5\xdc\xff\xef\xd3\xe5\x8b\xeb\x9f\x5e\xbf\xfd\xd3\x67\xf2\x39\x1a\x84\x56\x55\xcb\x24\xe8\x1e\xdb\x25\x9f\x2d\x49\x2b\x76\xb4\x56\x9c\x49\x22\x97\x62\x53\x57\x9a\x9d\x2b\xb6\x16\x92\x2b\x73\x44\xdb\xf1\xde\x42\xcb\xdd\x29\x42\x80\x61\xcd\xbf\xfd\xb8\x6e\x4d\xdf\xbe\xfe\xef\xd3\x97\xd7\xff\x6d\xd6\x34\x41\x62\x4d\xd5\xd2\x1d\xde\x9b\x29\xc3\x4d\x6b\x34\x13\x77\x72\x4f\x59\x2d\x50\x70\x98\xa6\xa7\x81\x80\x1c\x8f\x0d\xfe\x87\x52\xcb\x8f\x03\xc3\x5c\x29\xd1\xd2\x05\x7b\x43\xd5\xd2\x10\xd0\xfd\xed\x67\x33\x96\xf8\xed\xd8\xb0\x44\x02\xc3\x4f\xea\xbe\xd8\x21\xe1\x40\x37\xaf\x17\x37\x5a\x0a\x7f\x2d\xe6\x7b\xb1\xe2\x0a\x34\x5f\x7d\xd2\x6a\x7a\x66\xe3\x73\x69\x75\x6b\x47\x53\xa6\x51\x72\xaa\xfd\x85\x3f\x82\x07\xc7\x65\xc0\xb9\xf2\xda\x09\x55\x37\x7a\x8e\xbf\x0c\x78\x35\x21\x7f\xbe\x68\xd4\xf7\xbf\x1d\x6a\x69\x0e\x62\x67\x42\x3e\x21\xc3\x4f\xf0\x3f\x9f\x8f\x7b\x46\x94\xac\xd5\xdc\xad\xf5\x40\x38\xb3\x54\xcb\x17\x0b\xd6\xa2\xb4\xa6\x46\x9f\x4b\x10\xb8\x64\xdb\x2b\xe8\x76\xa5\x68\xab\xb1\x68\xd8\xf6\xf9\xa6\x6d\x59\xa3\xf0\x7b\x8b\x53\x30\x57\x58\x22\x30\x01\xae\x98\x7a\xf4\x96\xd5\x60\x4d\x84\x5a\xe5\x78\xdc\x83\xa6\x56\x0a\x3b\x09\x72\xc5\x94\xa5\x87\x64\xea\xe2\xcc\x93\x44\x26\xe8\xec\xa1\xbc\x3e\x89\xac\xbd\x41\x35\xd8\x02\xe5\x4f\x75\x83\x6b\x71\xc5\x54\x3a\x98\xd6\xc5\xfd\xdf\x5d\x83\xd9\x81\x5a\xa6\xb8\x26\x33\x08\x7b\x18\x0c\x8e\xd0\x19\x6d\xb4\x0e\x31\x35\x06\x94\x31\x00\x0a\x78\xbc\xc5\xfe\xe7\xad\x58\xed\xc5\x65\x48\x9a\xcd\x0a\xd5\x9b\xbd\xc4\x30\x94\xae\xc5\xec\x83\x56\x23\x57\x8c\x36\x5a\xc8\xbc\x01\x43\xc3\x63\x07\x74\xca\xd7\xe1\x25\x74\x8b\xb1\xe9\x1a\xc9\xe8\x5b\x5c\x1a\x9d\x35\x20\x45\x02\x18\x5b\xbe\x82\x56\x03\x54\xba\x2c\xf8\x1f\x7e\x97\x4f\xb6\xc0\x04\xb4\xbe\xdc\x68\x75\x22\xf8\xd6\x49\xab\x10\xd3\x02\xbf\x7a\xad\xf6\x51\x7b\x1b\xb6\x5d\xb9\xe9\x69\xad\xbb\x6a\xe9\xb6\xb1\x33\xf4\x20\x93\x89\xfe\x64\x5a\xba\x7d\xad\xa7\xa7\x3b\xb9\xc3\xe4\x69\x17\x35\xfd\x70\xee\x7c\xd2\xd6\x88\xe8\x1b\xee\x0c\x5b\x46\xa3\x29\x11\x8e\xb5\x77\xe9\x2a\x26\x55\xab\x4f\x94\xe2\x92\x9d\xd9\x5f\x83\x21\x3a\x81\x06\x67\x5d\xf7\x56\x77\x6d\xdc\x8e\x2f\xac\xe3\x90\x34\x74\xc5\xec\xb9\xdf\x2b\x19\x0f\xc2\x25\x36\xa8\xe5\x9a\xcd\xf8\x9c\xcf\xcc\x1c\x3b\x31\x34\x92\x02\x5b\x15\xd8\xb6\x8c\xf9\x1e\xa1\xf2\x0b\x9d\xa9\x8f\x6a\x76\xc3\x6a\x32\xe7\xac\xae\xe4\x28\xd0\x4e\x24\xb3\xde\x0d\xbd\x0b\x36\xb4\x26\x37\xb4\xde\x30\xe9\x1d\x3f\xfd\xce\x96\xaf\x74\x48\xe3\xb9\x83\x48\x80\xe9\x7e\x05\x46\x98\x56\x91\xb4\x36\x37\x4a\xda\x69\x41\xaf\x91\x9a\xb1\xb5\xf5\x12\x35\x15\x9f\x81\x9b\x8a\x92\x45\x2b\x36\x6b\x6d\x4c\x81\xc7\x47\x2d\x5b\xb1\x59\x2c\x03\xc3\x7b\x3c\x26\xaf\x68\xb3\x33\x0e\x21\xda\x10\xf6\x91\x4b\x45\xf4\xfc\xa1\xd5\x90\x4c\x37\x8a\x88\xa6\xde\x81\x55\x86\x87\xd0\xc8\xf1\xc9\x0d\x6d\xc9\xac\x74\x5c\xba\xd9\xfc\xc5\x28\xd4\x44\xf2\x9f\x19\xa9\x38\xfa\xf6\xda\x9d\xc6\x29\x50\x11\x8c\xdb\x6b\x36\xd3\x0a\xa7\x64\xf5\xfc\x18\x60\x6b\x96\xd1\xb6\xbd\x9c\x90\x4f\x08\x78\x02\xbd\x3e\x1f\x04\xff\x8a\x85\x8e\x81\x8e\x21\x24\x36\x0a\x47\x30\xfd\x0e\x1e\xc4\x3b\x4d\x3a\x87\x90\x13\xf2\x87\x10\x7e\xac\x26\x5f\x9c\x39\xff\x9e\x3d\x2a\x8d\xcb\x0e\xce\xaa\x11\x09\x64\x79\xbb\x83\x85\x09\x8e\x5f\x23\x5e\xec\x06\x03\x8e\x90\x92\x2f\x1a\x56\xb9\x8e\x66\xbf\x5b\xf5\xe0\x5b\xa9\xc7\x44\x3b\x97\x81\x5c\xe0\xcd\x4c\xdb\xa9\x8d\xf1\xaa\x7e\x17\xaf\x71\xc3\x3e\xaa\x37\xd1\xf6\x3d\x10\x7f\x74\x37\x46\x68\x17\xf4\x9f\xf1\x18\x65\x45\x84\x7a\x80\xb2\x64\xea\x4b\x30\xbe\x0a\xe5\x4f\x84\xb0\x12\x8a\xd6\x5a\x93\xd0\x66\xb9\x98\x83\x5f\x45\x6a\xa1\x11\x38\x74\x53\x57\x64\x82\xf0\x33\x36\xa3\x1b\xc9\xb0\xa9\xde\x39\x60\x4e\x99\x33\x62\x48\xb8\x22\x95\x60\xb2\xf9\x56\x91\x86\x69\x7e\xa0\x2d\xaf\x77\xa0\x83\xf8\xad\x6d\x61\xb5\x6c\xae\x4f\x35\xf4\x5f\xa6\xb8\xc1\x00\xdc\xec\x4c\xd6\xcc\x98\xf1\xbb\x01\x71\x36\xce\xb1\x60\x61\x79\x84\x8d\x2a\xa2\x04\xa9\xa8\x62\x23\x72\x5a\x4b\xe1\x7c\xd9\x8b\x5a\x4c\x69\x6d\x8f\xda\x8b\x33\x54\x10\x74\x17\xde\x2c\x62\x52\x02\x42\x57\x9b\xf5\xba\xde\x59\x89\xff\x0b\xcb\xee\xe7\x62\x85\x7a\x00\xb9\xde\xad\x19\xba\xe9\x78\xa8\xb7\xdc\x3b\x1e\x70\x3a\xe8\x23\x00\x48\xfd\x9b\x60\xc4\xdf\x00\xa1\x34\x1e\xa1\x8c\xb6\x08\x5b\x00\x9a\x51\x85\x5a\x32\xe7\xec\x93\xd6\xf3\x36\x32\xc0\x03\x90\xa4\x12\xe0\x6d\x33\xa7\x91\x83\x81\x87\x92\x39\x84\xf0\x6c\x42\x79\x0c\x7e\x34\xa9\x68\x33\x63\x64\x20\x5a\xe3\x8d\x3c\xd6\xdc\x62\x7c\x67\x0a\xc6\x00\x2c\x2d\x38\xc3\xa3\x41\xe8\x24\xc2\x1c\x27\xe3\xdc\xfd\xd1\xa8\x5f\xed\xac\x73\xa6\x8a\xd6\x6f\x5c\xe0\x61\x29\xea\x4a\x3a\x4d\x27\x0c\xd9\x38\x8f\x00\x3a\x7f\x9d\xfa\x72\xf9\xec\x14\xa4\xdf\xd0\x7b\xa3\x6b\xb6\x60\x4d\xa5\x85\xb4\xe1\x71\x50\x87\x2c\x80\xb7\x74\x47\x4e\xeb\x9a\x35\x64\xc9\x71\x2b\x7d\x0f\x02\x87\x63\xe7\x3f\x32\x8a\x36\xcc\xd5\x7a\xd3\xca\xc0\x09\xf7\xbd\x71\xc0\x91\x05\x5d\x31\xf2\x83\x05\x27\x5a\x04\xff\x12\x96\xe4\x4a\xb1\xf5\x92\x35\x52\x34\xe8\xce\x33\xdd\x19\x85\xfd\xfc\x92\x4d\x5b\xd1\x90\xff\xa4\x2b\x4f\x58\x77\x16\x07\xe2\xc7\xb8\x76\xeb\x20\x5e\x40\x89\xe4\xcd\xa2\xc6\x68\x15\x31\xf1\x0e\xf4\x33\x8b\xb9\x85\xc1\x95\xa7\xdd\x08\xbd\x30\x18\xdb\x6a\x99\x09\xe2\xd4\x3b\x73\x46\xf1\x69\xcd\x86\x44\x0a\x42\x9b\x9d\x66\x9c\x19\x6d\xbc\x48\xa2\x15\xba\xcc\x0b\xcb\x90\x92\x1f\xd0\xb9\x38\x0b\x27\xa3\x85\x87\xb1\xfe\x61\x91\x3f\xe1\x9a\x07\x32\x78\xd3\xf0\xbf\x6f\xe0\xec\xb0\xd1\x34\xdd\xd0\xb5\xd2\x00\x6a\xa6\x12\xad\x31\x82\x72\xa5\x79\x54\xba\x10\x9e\xc7\x14\xe2\x52\x36\xaa\xa7\xe9\x04\x3a\x80\xb6\xfd\x56\x74\xbd\xe6\xcd\x22\xc6\x05\xbd\xfa\x7a\x07\x02\xe3\x88\x66\x41\x14\x6b\x57\x64\x4b\x77\xe0\x8f\x77\x80\x61\x49\xa6\x56\x2f\x1c\x91\x0b\x7d\x2c\x51\x88\x0b\x8a\x96\xb6\xbb\x10\xec\x4c\x34\x66\xfe\xdb\x25\xaf\x19\xd9\x32\x32\xe7\x8b\x4d\xcb\x08\x06\xcd\xa6\x4c\x29\xd6\xc2\x18\x18\xab\x72\x6b\x16\x40\xc9\xa8\x91\xab\xff\xc6\x32\xf8\xec\x29\xa3\xc5\xca\xa0\xbb\xe1\xb1\xf1\xa7\x3a\xd0\x2d\x4b\xbe\xd1\x1f\x87\x4d\xcd\x9a\x85\x5a\x92\x87\x27\xe4\xf1\x84\x1c\x5d\x5a\xff\x82\xa3\x89\xb7\xa3\xd9\x6a\xad\x76\x47\x11\xa4\xcf\xd1\x5f\x5a\x23\x1a\x19\x25\xe5\xc4\xca\xfa\x91\xd7\x2d\xf2\xc6\x6e\x94\x13\x37\xe0\x03\x0f\x3b\x20\x94\x59\x46\x17\x6c\xe3\x18\xbf\x6a\x8c\x07\x64\x4a\x67\x1f\xe6\xdc\xf0\x09\xe0\x0f\x7b\x53\xcc\x3e\xcc\x96\x5a\xff\x37\x0c\xbd\x12\xad\x16\xcc\x8a\xf2\xda\x1c\xf4\x16\x7a\xe5\x83\xde\x36\xa0\xa8\xc1\xe0\xfe\x9a\xb2\x86\xcd\x39\x04\x52\x97\xf4\x06\x43\x71\x2c\xea\xc2\xad\x51\x81\xfb\x6c\x2b\x36\x75\x0c\x7f\xca\x08\x28\x98\x4a\x90\x0f\x8d\xd8\xa2\xbd\xa1\x04\xaa\x98\x0e\xe9\x8a\xb7\x6c\xa6\xea\x1d\x1a\xdf\xe7\xb5\xd8\x3a\x20\x46\xe9\xb4\xd2\xfc\x18\x5c\xa1\x9b\xb5\x3e\xf9\xaf\xe9\xa2\xe6\x0d\x1b\x28\xfc\xaf\x65\x84\x63\xbb\xa7\x92\xd5\x8f\x08\xff\xee\xc8\xf4\x3e\x7a\x4f\x4e\x88\x81\xf0\x20\x6a\x6f\xd7\xd1\xe9\xea\xef\x82\x75\xd6\xbd\xf4\x9f\x51\x0f\xe3\x74\x0d\x9a\x3d\x88\x19\xc6\x6b\xc7\xa7\x56\x5d\x34\xa6\x8c\x26\xae\xb1\x1c\x42\x05\x4d\xcc\x66\x9b\xc0\x52\x6b\x19\xad\xc9\x56\xb4\xb5\xd3\xd6\xa0\xe9\x8a\x7e\x60\x64\xb3\x86\x10\x2c\x7a\x3f\x9c\x79\x64\x23\x65\xd3\x5a\x9f\xb1\x70\x88\x68\xad\x5d\xff\x34\xa5\x92\x4d\x69\x5d\x07\xb2\xfe\x15\x5d\xf0\x19\x99\xd1\xb6\x92\x23\x72\x8a\x6b\xe3\x8d\x27\xde\x90\xd5\xa6\x56\x7c\x5d\x6b\x5b\x61\x0e\xc2\x5b\x01\x38\x77\x8e\x7a\x1b\x0e\x2d\x14\x6e\x44\x54\x39\xd2\x4f\xd1\x78\xb5\xac\x90\x59\xa0\xa7\x4e\x7a\x93\xbf\x6f\x40\xd3\xc6\x56\x12\x22\x50\x41\xc4\xde\x69\x16\x3e\x70\xaf\xf5\x80\x19\xad\x6b\x4d\xd8\x1b\xda\x72\xb1\x91\x64\x01\xa2\x09\x1c\x67\xd1\xa9\x4b\x51\x40\xb2\x26\x47\x85\xbc\xd6\x26\xa2\x72\x51\x79\x1b\x8c\xa7\x53\x0e\x79\x1c\x81\x1d\x62\x62\x71\xda\xea\x84\xad\x6d\xd6\xcc\x66\x0e\x84\xf6\xd4\xa8\xe3\x44\xb1\x64\x8b\x0f\x95\x3f\x67\x07\x8a\x75\xbf\x91\x40\x82\xca\xdc\x28\x30\xfd\x2f\xf5\x91\x6e\x26\x16\xf6\x1c\x8f\x09\xfb\x38\x22\x47\xd7\x7c\xc5\x64\xe8\x3b\x6f\x45\xa3\x04\x79\x4b\xd7\x4a\xb4\x92\xcc\x96\xe2\x83\x67\x41\xcd\xd7\x62\x3e\x97\x47\x19\x02\xa1\x3f\x27\x3e\xce\x0e\x31\xfc\xc9\x3d\x1a\xff\xe4\x6e\x0e\x80\x98\xaa\xb9\xf5\x4f\xec\x59\x14\xce\xf8\xb0\xd3\x47\xf7\xb0\x27\xcf\xef\xdd\xc1\x73\x65\xa8\x77\xeb\x33\x07\x8d\xcb\xf8\xc8\x01\xe3\x30\x6f\x0a\xf0\x4f\x60\x98\x12\x1c\xa0\xba\x07\x14\xf9\x3e\x3a\x85\x98\x13\x61\x2e\xe2\xa5\xb4\x19\x13\x2b\xdc\x9a\x69\x7c\xdc\x5c\x09\x42\xab\x0a\x54\xd0\x96\xad\xc4\x0d\x0b\x35\x66\x69\x9d\xaf\xd2\x78\xda\x21\xb1\xc6\x38\xc5\x53\x95\xf2\x22\x13\x26\x76\xa7\xa1\x50\x49\xb2\x4e\xb4\x36\x18\x9a\x93\x2a\x4f\xb4\x71\xb9\x28\x46\xd3\x5c\x8a\x2a\x1b\xd5\xe7\xe7\xcc\x20\xf2\x52\x59\x91\x6d\xa2\x11\x76\x18\x97\xc2\xa2\x9b\x85\xd3\x88\x04\xb7\xd7\x80\xe1\x4f\xbd\xb7\xbc\xa6\x64\x46\x7b\x15\x26\x30\xf8\xec\x11\x88\xfd\xc0\x88\x56\x79\xab\xb5\x19\x0d\x36\x70\x18\x77\x0c\xe7\xab\x5b\xe3\x81\x81\x20\xb8\x1a\xea\xe6\x5b\xa6\x15\x72\xe9\x8f\x63\x1e\x60\x96\xcb\x76\x9f\x7e\x05\x29\x01\x18\x24\x09\xd7\xcf\x0c\xe5\x03\x13\x8e\x20\x26\xa0\x12\x59\x49\x1a\x50\x23\x40\x3b\x65\x2d\x9e\x7a\x76\xca\x61\xcc\x81\xab\x8c\x01\xe6\xc1\x22\x6a\x95\x47\xfa\x91\x1b\x81\x3a\x8f\x0b\x89\x44\x79\x6a\x7a\xde\x7a\xf7\xc7\xd6\x09\xb6\x93\xca\x90\x13\x07\x2f\x0c\x8a\x93\x38\xad\xeb\xc1\x31\x30\xa9\x1e\x5a\xff\xb3\x35\x69\x13\x15\x68\x65\x8f\x94\x78\xa4\xff\x3b\x24\xe9\x0a\x68\xdb\xb4\x16\x36\x41\x6c\x2e\x5a\x76\xa3\xcd\xe9\xa6\xd2\x9a\xfa\x12\x94\x79\xd1\x32\xe7\x7a\x01\xbd\x4a\xab\x71\x96\x02\x5a\x34\x39\x9e\xd5\x00\xf7\x9d\x16\xf2\x56\xa7\xc5\x69\xdb\xd2\x5d\x92\xb7\xa6\xe7\x46\xc9\x9a\xb6\x0a\xcf\x11\xbd\xf1\x6c\x5e\x8a\xe9\x66\x12\x04\xd7\x69\x8c\xce\x20\x30\x84\x4d\x75\x71\xa6\xcf\x60\x49\xe8\x7a\x8d\x2a\xec\x92\xb5\xb1\xcc\x36\x5e\xb7\x4a\x30\x34\x5c\x16\x70\x6a\x6a\x41\x51\x59\xe6\xd2\xd0\x01\xc7\x72\xb4\x6e\xd4\xad\x3a\x5a\xcf\xab\x9c\x90\x77\x38\xf3\xf7\x0f\xe2\x03\x63\xed\xdc\xb7\x17\x67\x66\xee\x17\xee\xe0\xe1\x73\x37\x5a\xe3\x0f\x32\xb3\x4e\x21\xbb\xc4\x24\x29\x87\x2d\xc1\x93\xc6\x25\x18\x6e\xf8\xf5\x9c\xd6\x92\x91\x81\x9e\xb5\x99\xca\x71\x1f\x38\xd3\x66\x88\x98\xe0\x8a\x00\xc1\xdb\x0d\x4b\xc2\x94\x90\xbf\xb4\x97\x32\x06\x60\xe0\x2f\x7e\x26\x44\x1d\x59\x23\x31\x31\x42\x86\xc6\xf3\xa2\xde\x99\xa0\x64\x09\xf1\xd8\x3f\x6a\xe7\xbf\x69\xb0\x07\x09\x7b\x68\xf4\xdf\x38\xe3\x9e\xd6\xb5\xd8\xba\x4c\xa5\x60\x17\x97\x46\x91\x71\x6c\xb4\x18\x13\x8d\xfa\x9d\xba\x55\x6c\x60\x23\x7a\x7a\x21\xc3\x19\xf4\x94\x70\xa8\x0e\xc3\xee\x68\x11\xcd\xb8\x34\xa9\x90\xba\x89\x9d\x2c\x60\x02\x7e\x95\x68\xc4\x8b\x79\x1e\xc3\x2d\xe2\x09\x52\x2a\x62\xd0\x6e\x41\x85\xc8\x02\x98\x18\x3d\xaa\xbc\xfa\xee\x72\x4d\x43\x71\xa0\xd7\x1e\xd1\xc0\x15\x4f\xb7\x44\x68\x9b\xf8\x6d\xe1\xf5\xb1\xc0\x5f\x2b\xe6\x0e\xc5\x0c\x89\xcc\x7f\xab\xc5\x93\xf3\xb4\xe0\xfc\x83\x7d\x55\x5a\xdb\x34\x1a\x6d\x78\x1f\x7c\x79\x79\x0e\xb1\x69\x6d\x8e\x40\x03\x49\x2e\xc5\x16\x13\xf0\x6a\x3a\x63\x01\x4d\x86\x84\x2d\x46\xe4\xbb\xef\xf5\x1c\x7e\x78\xbc\x67\xab\xe0\x74\x31\xd8\xfd\x86\xb5\x1a\xf9\x60\xdb\xe0\x7f\x53\xc7\x45\x9f\xb2\x78\x5b\x65\x0e\x45\xf3\x09\x79\xf7\x3e\xff\xcd\x26\x2d\x9c\x90\x4f\x05\x8d\xd1\x70\xf3\x09\x4a\x9b\x82\x9a\x98\xcf\x0c\x21\x45\x4d\xc7\x63\x82\xb1\x5d\x9f\xfa\x01\x76\x0b\x9e\x38\x46\x30\x42\xce\x39\x26\x88\x02\xf3\x79\x4d\x0c\x73\x92\x8a\xc6\xb6\x8d\x5a\xbd\xf3\x24\xd1\xa6\xb6\x19\xc0\x10\x51\xff\xff\x71\xd9\x5f\xa2\x37\x0e\x20\x4d\xab\x4a\xda\xf3\xc8\x1f\x43\x25\x17\x94\x56\x44\x68\x4b\x57\x4c\xdb\x86\x13\xe7\x97\x33\x27\x51\xe8\xa6\xb0\x16\xec\x94\xe9\x2d\xe1\xd3\x2b\x0a\x00\x5b\xf6\xe8\xb9\xcb\xe5\x9c\xa4\x27\x1c\x40\x6b\x18\xab\x5c\x0a\xbd\xb1\x4f\x34\xdc\x75\xe8\x2d\x34\x1d\xc0\x42\x08\xda\x6b\x29\x81\x4b\x59\x04\x3d\xa3\xcd\xb7\x66\xc7\xd1\xba\x65\xb4\xda\xe1\xce\x8b\x4e\xe5\xab\x32\x39\x6c\xba\x99\x21\xe4\x20\x89\x6e\x1f\x64\xe6\xe4\xae\x13\xeb\x35\x79\x78\x42\x1a\x5e\x4f\xc8\xd1\x73\x14\x75\x5a\x83\xf6\xf4\x15\x1a\xa9\x89\xf1\x09\x99\x28\x13\xd0\x65\x74\x94\x8d\xf1\x30\xe0\xe7\x1c\x5e\xb8\xee\xc0\x8c\x73\xc5\x9c\x36\xe4\x53\xa9\xcc\x69\x95\x43\xef\xda\x0c\x6e\x22\x27\x76\x22\xd6\x11\x0d\x40\x03\x6a\x57\x99\x0e\x34\x4a\xed\xb9\x74\x4f\x9d\x26\xc4\x00\xf5\xd6\xaa\x63\xb1\x68\x27\x91\x28\x18\xa1\x42\x65\xd6\xea\x38\x03\xfc\x7a\x6d\x6c\x7b\x80\xbc\x59\x87\x31\xb1\x4e\x09\xe2\xa7\x6a\x84\x45\x0a\xd5\xa7\xcc\x85\xf2\x16\xf3\xb7\x95\x20\x3f\xb3\x56\x1c\x24\x60\x82\x81\x1e\xc7\x83\xb0\x15\xef\xca\xe8\xf2\xf2\xc1\x27\x60\xd8\xe9\x17\x28\xec\x25\x83\x44\xd1\xe0\x3c\x59\xce\x7e\xeb\xd9\x13\x45\x11\x21\xad\x8c\x90\xa1\x90\x08\x34\xe6\xb2\x98\x48\x39\x0d\x3f\x14\xb2\xef\x61\xb1\x0f\xd8\x94\x72\xe0\x50\xb0\x8a\x6c\xba\x31\xf5\x0a\xaf\x8d\xae\x6a\x1a\x17\x36\x2a\x50\x31\xdd\xe9\xfa\xbf\xc7\x1d\xae\x87\x98\xa4\xc8\x29\xc0\x54\xf8\x4f\x69\x15\xd4\xd0\x10\x74\x36\x31\xa6\xe9\x7f\xab\xfc\x85\x99\xd0\x28\x3e\x84\xe6\x07\x88\xe5\xd0\xc6\x2c\x80\x3c\x40\x30\x73\x19\x98\x3a\xcc\x9d\x65\x81\x62\x4e\x06\xf4\x86\xf2\x1a\x3c\xdb\xc1\x56\x8a\xf5\xf5\x6c\xf1\x3c\xb5\xbe\x48\xa8\x16\xf7\x66\x2a\x4f\x8d\x35\x6e\x69\x53\x92\xa5\x4e\xcb\x92\x4c\x3d\xec\x15\x49\x7c\x6e\xa4\x6c\x32\xea\xc3\x43\xb1\x3b\x01\x6b\xe4\x41\xd6\xd8\xed\xeb\x72\x86\x64\xf7\xde\x8e\xb3\x24\xf7\x09\x94\x87\xb7\xe1\xe2\x53\x88\x48\x1a\x26\x8e\x2e\xcf\x79\x25\x31\xb2\x1b\xf4\x89\xb2\xa5\x70\xd7\xad\xf1\xd1\x69\xc7\x22\x28\x0c\xac\x73\xc6\x06\x41\x0e\xe1\xfc\x98\x5f\xd0\xd1\xd0\xbd\xb9\x03\x85\xb0\x77\x55\xbe\x70\x8b\x1b\xef\x46\xe4\x5f\x71\x1b\x7a\x9f\x9b\xe5\xcb\x36\x21\x8c\x80\xa9\xfc\xc6\x1a\x4a\x54\x1d\x4b\x20\x83\xdb\xa7\x32\xd3\x1a\x55\xb7\x83\x28\x4e\x11\x06\x0e\x4d\x9b\x00\x83\x66\xb9\xb2\x9e\x2f\x0f\xa3\x9d\x5e\x6c\x73\x2a\xea\x7f\x4a\xa3\x2d\x9b\xaf\xd0\x07\xaa\x36\xad\x71\x92\x36\x6c\x5b\xef\xac\x71\x14\xe4\x2d\x92\x44\x9c\xdc\x52\x30\x06\x47\xb3\x77\xea\xdd\x41\x3a\xae\x36\x32\xb7\x28\x61\x32\xd3\xc8\x54\x3f\x50\xc6\xbf\x45\x0a\x20\xfe\x97\xe7\xd7\x88\xf4\x96\x5a\x1b\xaf\x57\xa2\x7a\x02\xa7\x12\x75\x42\xfe\xa0\x81\xdd\x9b\x5c\x85\xd9\x40\x30\x1e\x86\x9b\x60\x58\x76\x7d\xb8\xa2\x9a\x8a\xd0\x4e\xd0\x81\x9b\x6b\x0d\x12\xdc\x8f\xe4\xd4\x56\xeb\xea\xda\xa7\x50\xfe\xc8\x54\x97\x7d\xde\x6d\x93\xc3\xd0\x51\xca\x02\x71\x31\xae\x8d\x64\xe8\x29\xe6\xd2\x40\xfa\x56\x9a\xe4\x6d\x33\x46\xd4\x09\xc2\x42\x9b\xd5\x45\x63\xec\xc8\xbd\x02\x3b\x9b\xc1\x2b\x4b\x1c\x7f\xbd\x36\x1f\x81\x6d\x5f\x99\x55\x81\x45\x7f\xf2\xc8\x66\xe9\x5d\x9e\x5f\x0f\xe2\xd4\x72\x8f\xcd\xbf\x1b\x56\x19\x7c\x77\x3c\xcc\xd6\xac\xff\x93\x9c\x49\xb7\xec\x9d\x1f\x72\xb7\x05\x10\x25\x25\x3f\xce\xd5\xfd\x0b\x9b\x41\x68\x22\x20\x5a\x21\x0f\x96\x7e\xef\x5a\x1f\xa0\xa8\x17\xe9\x18\x23\x62\xa2\xe1\x4f\x1e\xb9\xf5\xe9\x10\x93\x53\xaa\x66\xcb\x57\x99\xac\xd4\xea\xf0\x94\xab\x96\xb6\x3b\xf2\xf7\x0d\x6d\x14\x57\xbb\x2e\x0f\x53\x22\x4b\x57\x98\x1b\x93\x24\xd5\x93\x83\x14\x4c\xb5\x57\x8e\x86\x97\x78\x35\x15\xbb\x94\x7b\x8b\x34\xca\xb6\xd2\x14\xd0\x98\xcf\x04\x5d\x51\x3e\x06\x37\x77\xc3\x4b\xba\x2e\xce\x66\x75\x96\x68\x83\x6f\x59\xdb\x07\xdf\xca\xd1\x64\x05\x06\xe9\x6d\x0d\x3f\x13\x73\x3f\x60\x42\xfe\x10\xe0\xf3\xa9\xb4\x25\x83\xdf\xfd\x86\xf4\x5f\x0e\x12\x6e\xb9\xa1\x2d\xe1\x16\x3e\x58\x82\xe1\xaf\x98\x6a\xc4\xc9\x13\x4f\xc6\x42\x70\x35\x1c\x74\x64\xae\x58\x0c\x94\xf8\xc0\x9a\x09\x79\xf2\x08\xf3\x3f\xf2\x49\x1a\xab\xf1\x38\x83\xc7\xc9\x09\xe1\x86\xbf\x7f\xf8\x9d\xe6\xef\xf0\xd7\xcf\xdd\xdc\x5e\xe0\xbb\x2e\xc5\xe0\x27\xae\x96\xc1\x45\x86\x82\x9a\x00\xb1\x1f\xbf\xe5\x6f\xa9\x36\x7c\x2d\xad\x21\x22\x54\x2c\x90\x62\x90\x01\xe6\x7a\x26\xbc\x21\x2f\xcc\x9f\xbf\x32\xed\xa4\x47\x39\x89\x17\x39\xdb\x5d\xc5\x6b\x4e\xff\x52\x60\xee\xa6\xc0\x78\xa2\xde\x8f\x1a\xe3\xe1\xbd\x65\xf3\xc0\x4b\x6f\xd2\xa0\x47\x58\x18\xe3\xc9\x37\xc9\x0d\xdb\xdf\x0f\xf0\x6a\x98\x6d\xde\x77\x89\x37\x96\x2f\x4f\x9f\x62\x7d\x81\xc1\xd1\xa5\x88\xf6\x7f\x9c\xb4\xa0\x2d\x40\x04\x72\x94\x48\x54\xa7\x7c\x05\xf2\xe5\x24\x9e\xc7\x68\xc1\xd4\x65\x7c\xce\x07\x7c\x7a\x67\x45\x65\xcf\xe7\x6e\x6a\xd4\x9e\x4f\xbc\xa9\xc2\xbf\x72\x7d\xe9\xab\x28\x99\x01\xd5\x7f\x2d\xaa\x66\x3f\x15\x6f\xa9\x75\x76\x6c\xd0\x98\x3f\x69\x55\x5d\x8b\x5f\x86\x43\xef\x8d\x1b\x0f\xa6\x59\x3c\x55\xc9\xcc\x69\x21\x83\x09\x36\x73\x98\xa0\x63\xbe\x11\xaf\xd2\xf3\x22\xfc\x6b\x58\x58\xf1\xcc\x3b\x7e\x5b\x55\x7f\xaf\xd1\x76\xff\x26\x40\x59\x2b\xda\x67\x10\x24\x9a\xd2\xaf\xd7\x3e\xe8\x61\xb7\x2f\x54\xbe\xe4\x7e\xed\xeb\xab\x1a\x22\x5d\x96\xc8\x1e\xcd\x29\xb5\x4b\xba\x75\xa9\x7f\x76\x6b\xa5\x83\x10\xbf\xf4\xd1\xf9\x8b\x19\x49\x96\x1f\x16\x4c\x61\xc0\xeb\xd8\x87\xba\x12\x62\xa6\x59\xf7\x72\x0f\x3c\x13\x73\xd0\x10\xe3\x4c\xa7\x1e\xb8\x69\x50\xa9\x0c\xf9\x72\xb3\x8a\x24\x64\x34\x84\xc9\x0a\xe9\x19\xa4\x20\x63\x83\x01\x49\x9c\x7a\x1b\xe4\xd4\x47\x3b\x2f\xab\x0a\x17\xdc\x1c\xa2\x2e\x05\x62\x3c\x26\xcf\xd1\x5b\xcf\xa8\xe4\xf5\x0e\xf2\xeb\x39\x66\x95\xe2\x0d\x3c\xc5\xa9\xb2\x37\x3e\xfe\xfa\x5f\x1b\xd6\xee\x4c\x0e\xc6\x5f\xcd\xae\xb7\x70\x40\xea\x9a\x7b\x21\x10\xf8\x90\x4c\xf9\x3b\x53\x36\xd9\xf0\x0c\x2f\xbb\x58\x35\x38\x04\x68\x4f\xf1\xef\x5c\x15\x8a\x07\x24\x4e\x8b\x0f\x5b\x07\xf4\x2b\xe7\x32\xa6\xbf\x46\x69\xe9\x79\xd7\x28\xbd\xdb\xfe\x5c\xbc\xaf\x1d\x66\x0d\x76\x36\xec\x4a\xa2\x0b\x07\xce\x12\xae\x3a\xa1\x7d\x49\x9e\x51\x5c\xd7\xe3\x56\xe9\x1a\x92\x29\xf9\xce\xe4\xdc\x3c\x0c\xf3\x1b\x24\x53\x7e\x9d\x5d\x45\xb3\x30\x4f\x13\x6c\xc7\x5e\x6b\xce\xac\x14\x39\x21\x83\x6f\x4a\x03\x52\x49\xbe\xb9\x62\xea\xe9\xf1\xc3\x52\xb7\x84\x7f\x82\x34\x21\x95\xfb\x8d\xa3\x74\x2a\xd9\x9b\x0f\x6f\x00\x8d\xf6\xe4\xc5\xdb\x66\x32\x4e\x88\x27\x69\x42\x96\x64\x2a\x91\x41\x24\xcf\xcb\xd2\x8d\x52\x81\x42\xb2\xb8\x94\x6e\x95\xc4\xbd\x48\x7f\x96\x96\xee\xd1\x2f\x43\xfe\xe9\xc5\x6b\x3a\xb7\xaf\x25\x61\x03\xe1\x13\x14\x62\xcc\xef\x7a\x7a\x55\xcb\xe5\xd6\x47\xa9\x30\x2b\x86\x39\xf1\x7b\x64\x56\x37\xd8\x43\x3d\x72\x07\xdc\x2a\x35\x89\x4a\x3e\xeb\x91\xc5\xba\xa0\xf3\x85\x74\x44\xdf\x5e\xab\x25\x6b\xb7\x5c\x32\xbc\xc9\x67\x2e\x0c\x94\xbd\x26\xa1\x7c\x4d\xeb\xfa\xf4\xc9\xab\x52\xa1\xa0\x1c\x42\x6f\xfa\x64\xc7\x7e\x77\xd7\x33\xd7\x1d\x57\x32\xc3\x81\x00\x8c\xff\x33\xe5\xcb\xb0\xc8\x85\xab\x9c\xc9\x57\xeb\x1a\xcc\x5f\x6a\x2f\x53\x52\x32\xdb\x48\x25\x56\xfe\x4e\xe9\x0d\x67\x5b\xbc\x66\x6f\xea\x5d\x8e\x22\x40\xf0\x73\x74\x71\x66\x1d\x5e\x49\xed\xba\x35\x66\x84\xa2\xa9\xc0\x14\x14\x36\x0c\x19\xd6\xae\xc8\x7c\x53\xd7\x97\xc1\x91\xf8\x34\x6f\xc1\x5b\xa9\xfa\x9b\xd4\x74\x5f\x8b\x29\x6f\xd5\xb2\xa2\x6a\x5f\x13\x60\xc8\xee\x36\x7f\x63\xad\x64\x3b\xbb\xfa\x5d\xad\xaa\x96\xce\xd5\x35\xa3\xab\x3d\x4d\xfe\x9b\xd1\x7d\x50\xae\x98\x51\x4a\xf7\xb4\x7b\x2b\x36\x4d\xd5\xdd\x46\x31\xba\x3a\x35\x2b\x72\xf9\xec\x54\x33\xf4\x21\x4d\xbb\x5b\xad\x5b\xbe\xa2\xed\xee\x8d\x36\x12\x7a\xb1\x5b\x32\xbe\x58\xf6\x00\xda\xee\xf9\x1d\x8a\x62\x68\x42\xc9\x17\x1f\xd7\xfa\xb4\x6b\xfa\xd6\xa7\x99\xd2\x2b\x46\x65\x2f\xb9\xa8\x62\xaf\xe7\x7b\xe7\x57\xd3\xdd\x73\xaa\xd8\x42\xb4\xbb\xfe\x56\xd7\xbb\x75\x0f\x42\x4b\xb1\x62\x9a\x13\xfa\xb9\x93\x6e\xe9\x6e\x7f\x2b\x0b\xeb\x6a\x26\xda\x03\x80\xed\x69\x86\xaa\x43\x2c\xc8\x4a\xad\xf6\x6c\xac\xa2\x44\x2d\xd1\xa9\x47\x25\xde\xa3\x30\xbb\x0c\xab\x8b\xc6\xb8\x0b\x3c\xbe\xb1\xec\x8e\xa4\x68\x26\x59\x62\xb3\x34\x17\x2b\xf1\xef\x99\x4c\x89\x7f\xce\x05\x4a\xe1\xf7\x58\x9a\xc4\x0d\x8a\xa2\x24\x6e\x92\xcb\x91\xc2\xef\x91\x10\x29\xfc\x9e\x4b\x90\x42\xa3\x58\x7c\xc4\x0d\xba\x65\x47\x77\xbb\x8e\x26\x5d\x52\x23\x6e\x95\x88\x8c\xf8\xc7\x6d\xdf\x8f\xbd\xc2\x22\x6e\x9a\x4b\x8a\x84\x2c\x25\x31\x91\xcc\xa6\x24\x23\xf2\x26\x91\x80\x48\x66\x5a\x92\x0e\x71\x93\xa2\x68\x28\x43\x89\x37\x7c\x19\x4c\x5f\x9b\xa2\x44\x48\x9b\xf4\xed\x89\x62\xd5\xc4\x8c\x1e\x81\x36\x95\xc2\xee\xfa\xa9\x57\x04\xd8\x46\x45\x2d\xcc\x0a\x01\x72\xe2\xe4\x41\xa1\x91\x15\x05\xba\x95\xfd\x77\xc1\x14\xa2\xae\x95\xfd\x67\xde\xc8\xc9\x05\x72\xe2\x65\x44\x47\x33\xd4\x7e\x4f\x02\x59\x91\x37\x0c\xc5\x04\x39\x89\xa4\x46\xde\xd8\x09\x0c\x72\xe2\x85\x47\x47\x33\xbd\x4d\x6c\x33\xfd\xef\x8e\x66\x4e\x7c\xd8\xb6\xee\x8b\x8e\x0e\x20\x4a\x6c\x63\xf8\x23\x6f\x98\x89\x14\x72\x92\x8b\x99\xfe\x6e\x49\x8f\x82\x82\x1d\xcb\x1a\xad\x69\xc7\xdf\xe4\x5d\x50\xf0\x90\x13\x23\x81\xf2\x06\x5b\xdb\x60\xdb\xd1\xa0\x24\x80\x34\xa6\x85\xaf\x0b\x56\xb4\x15\x49\xe4\xc4\x8b\xa7\x02\x95\x03\xc9\x74\x12\xc9\xa9\xb2\x95\x61\x45\x94\xb1\x35\xec\x9f\xe5\xc6\x50\xf7\xeb\xc4\xc9\xad\x02\x8d\x02\x91\xa5\x29\x15\xfc\x99\x37\x0e\x85\x17\x39\x89\x64\x59\x37\x64\x10\x51\x01\x68\xf8\xbb\x1b\xb6\x6d\x1e\xfd\xdd\xe5\x3a\x89\xcc\x29\xfb\x67\xd1\x76\xbb\x74\xfe\x98\x32\xb6\x87\x98\x67\xe4\x16\xc6\x5e\xbf\x73\x28\x97\x7f\x98\xf3\x96\x7e\x5b\xf6\x1e\x18\x63\xdb\x57\x45\xc0\xbb\xfe\xeb\x96\x49\x13\x11\x89\x5f\x58\x21\xb1\x59\xe7\xfa\x5d\x9e\x5f\xe7\x55\xe3\x47\x17\x97\xe7\xd7\xc3\xb8\x80\xfd\xe8\x2d\x93\xa2\xbe\x61\x6d\xe2\xa2\xf8\x11\x8b\xe1\x99\x8a\x54\xae\x26\x5e\xa6\xf2\xf9\xca\xaf\xee\xa7\x10\x8c\x71\x36\xbb\xc0\x54\x5e\xb3\x28\x50\xf6\xe9\x24\x70\x99\x64\xb6\x7e\xa9\xcc\xef\xbe\xda\xc0\xa5\x90\x4e\x72\xf6\x64\xe1\x67\x53\x06\xf0\x95\x2b\x03\x18\x35\xb7\x6e\xc4\xa0\x02\x60\xe0\x5c\x0c\xbf\x0d\x03\x1b\x39\x9f\xf0\xaa\xdc\x2d\x8b\x8d\xa3\x77\x28\x28\xe5\x85\xa6\x7b\x51\xd8\x50\x72\x12\x50\xd0\xc7\xb8\x8b\xd7\x21\x62\x8a\x86\x7f\x1d\x17\xae\x52\x75\x14\x69\x36\x73\xd9\x17\x46\xba\x5d\xd0\x29\x8c\x44\x57\xe8\x3b\x3d\x20\x40\x9f\xce\xc7\x77\xf6\xdf\xef\x85\xd1\x13\x80\xb7\x6d\x92\x6b\xed\xf3\x70\x4f\x86\x25\x93\x87\x48\x38\xda\x98\xd2\xc1\x4a\xb8\x9b\xcf\xf1\x15\x67\x41\xc4\x46\x49\x5e\x31\x22\x6e\xa6\x92\xb5\x37\xac\x95\xee\xd6\x93\xcb\x7b\x8a\x4b\x31\xeb\x8f\xf9\x26\xbb\xc6\x10\xac\x57\x5c\xa1\xd9\x2c\x56\x71\x2a\xd6\x59\xda\xd0\x15\x1b\x1c\xfb\x47\x15\x62\x43\xab\xe0\x05\x0a\xd8\xd8\xb8\x84\xb5\x7c\xd1\xfc\xf7\x6c\x77\xce\x59\x5d\xb9\x88\xa3\x5f\x12\xcb\x82\x50\x6e\x65\x42\x8e\xce\x0d\xcc\xa3\x63\xf2\xf4\x29\x39\x3a\xca\x06\x4d\x95\xf3\xfb\x18\xf4\x8d\x81\x59\x1c\xd4\xb8\x7e\x8b\x8a\xa8\xfe\x8c\x66\xa2\x99\x51\x35\x38\x22\x47\x79\x60\xd3\xfe\x68\xb1\x3e\x4e\x64\x3d\x09\x85\x64\x14\xb9\x81\x38\xf6\x86\xd7\xd5\x19\x93\x33\x9c\x6a\xef\x62\x24\x4a\x7e\x4c\x96\x2b\xfc\x71\x50\xde\x4e\x5d\xa4\x8e\xb7\x91\x83\x5b\xde\x4f\x23\x25\x2c\x96\x45\x40\xde\x46\xe9\x40\x10\xcb\x04\x75\xa1\xf8\x34\x80\xdf\xbd\x48\x47\xa7\xf6\x9d\x83\x3c\x01\xd1\x2e\x45\x88\x4c\xf7\x82\xf5\xae\xa6\xa1\x75\x5f\xef\x55\x98\x77\x1b\x7a\xb7\xfb\xe1\x86\x92\xd7\x73\x4a\x20\x23\x50\x29\x28\x14\xdc\x33\xa9\x3d\x5a\x0a\x99\xa2\x74\x64\xdd\x8a\x35\x6b\x95\xab\x92\x67\xcb\xaa\x40\x59\xa8\x21\x99\x41\xdd\x58\xb8\x58\x6f\x9f\xc8\x62\x29\xcb\xb9\xa2\x4b\x11\x0a\x46\xd2\x65\xe3\x98\x3a\x91\x06\x3e\x3c\xa4\x04\xd7\x58\x65\x5a\xf2\x2f\x93\x35\xc1\x6f\xbd\x5c\x0e\x77\xc1\x99\x9c\xdd\xe7\xee\xb7\x35\xfc\x4a\x7c\x55\x62\x32\x8b\x43\x50\x82\x8b\x3c\x75\xdf\x12\x33\x54\xb6\x77\x3b\x4e\x0d\x78\x20\x6a\xb3\x5e\x8b\x56\xb1\x2a\x76\xf2\x67\x2f\xe9\xf1\x66\x56\x6f\x2a\xbb\x54\xcf\xb5\x0a\x7d\x79\x7e\x4d\x40\x7b\xcb\x48\xba\x60\x0a\x7e\x80\xa8\x9c\x96\x3d\x1d\x31\xb9\x77\x19\x3b\xea\xc6\x4f\x62\xd5\xf0\x8c\x4b\x3d\xc1\xdf\x0f\x0a\xb9\x87\xd0\xbc\x33\x7c\xd0\xdd\x25\x51\x3e\xed\x03\x3c\x87\x76\x30\xca\xf3\xe1\xed\x3f\x2a\xd6\x36\xb4\xfe\xf3\xdb\x97\x87\x76\xb9\x3c\xbf\xf6\x09\x26\x9a\xa9\xbe\xac\xe3\x3e\xda\xc5\x7d\xaf\x40\x08\x1c\xda\xfa\xba\xa5\x5c\x1d\x4c\x83\x57\xac\xe2\x54\xb7\x8e\x1a\xbf\x2f\xb0\x66\xae\x0e\xb4\x68\x1d\x68\x40\x83\xff\x0b\xfc\x39\x81\x21\x8e\x27\xe4\xb4\xd9\xa1\x76\xff\x34\xf5\xe6\x6c\xb9\x9a\x2d\x31\x24\x95\x67\x0c\xcc\xa8\xa9\xc2\xdc\xc9\x6c\x93\xa2\x92\x66\x18\xb7\xd8\x69\xd0\xa9\xd6\x61\x0a\x87\x0b\xdb\x97\x28\x66\x3f\x55\xf8\x88\x27\x0a\x8e\x50\x3e\x75\x77\x54\xcb\xcd\x6a\xda\x50\x5e\x4f\x12\xec\xfe\x78\x7d\xfd\xe6\x9c\xd7\x6c\xb0\x69\x6b\x03\xd2\xb5\x4d\x73\xb6\xed\x27\xff\x76\x3c\x26\xcf\x4b\xc1\x40\x63\x9a\x29\xe1\x4a\x84\xa7\x17\x12\x72\x92\xf7\x6d\xd8\x5e\xb2\x77\x76\xec\x26\xbd\x57\x14\xef\x51\x3f\xec\x5e\x85\x20\x48\x70\xf7\xf1\x2c\xac\xbe\x01\x7d\xd4\xe1\xce\xe3\xbd\xa4\xfb\x87\x0b\xa2\x18\x77\x1e\xef\x99\x85\xb5\x77\x40\x13\x16\xb9\x9f\x11\x01\x58\xdf\x90\x71\xa0\xe5\xce\x83\xfe\x67\x00\xae\x6f\xd8\x20\x78\x73\xe7\x31\xcf\x2c\xac\xbd\x03\x62\x34\xe8\x7e\x06\xd4\xb0\xf6\x0e\x18\x84\x97\xee\x67\x54\x07\x70\xef\xd0\x26\x68\x75\x3f\xc3\x02\xb0\xbe\x21\x0b\x61\xb0\xbb\xeb\x8b\x29\xcc\x43\x11\xb8\xe7\xb1\xfb\x86\xcd\x62\x76\x77\xb7\x91\x63\x88\x7d\x83\xdb\x50\xe0\x9d\xc7\xfc\x23\x00\xea\x1b\x6a\x7b\x5f\x43\xfd\xb4\x77\xa8\x72\x98\xf2\xee\x2b\x5a\x00\xdb\x87\x46\x10\x02\xbd\xf3\xd8\x97\x16\x56\xef\xae\x8d\x62\xaa\x77\xdf\xb7\x01\xb8\x5e\x0e\x8e\xe2\xb4\xf7\xe2\xe2\xb1\xe0\xf6\x0d\x8b\xee\xa5\x7b\xf4\x2a\xf5\x6c\x95\x28\x96\x7c\xf7\x0d\x13\x80\xeb\x1b\x36\x8e\x4f\xdf\x79\xd8\xd3\x00\xdc\x21\xb3\x35\xf1\xec\x7b\x9b\x2e\xc0\x3b\x64\xbe\xf7\x35\xf0\x69\x08\xaf\x6f\xe0\xd8\xf3\x75\x1b\x87\x57\x1f\xcc\x5c\xd9\xdc\xe3\xe0\xeb\x47\xf0\xcb\x5d\xe5\x9d\x94\xea\x43\xfe\x56\x0e\xfd\x62\x12\x41\x30\xf1\xcb\xfc\xf7\x0e\x22\x0c\x3b\xb1\x3d\xd4\xfc\xea\xb2\x57\x03\x4f\x44\xd9\x72\xb2\x37\x08\xac\xf3\x74\xc1\x94\xe9\x03\x8b\x56\x1e\x1f\x1e\x34\xa1\x1f\x63\x0f\xd7\xbd\x4c\x97\x3c\x7d\x9a\xdc\x35\x0a\xc7\xb4\x71\x8e\x66\x2e\xc8\x09\x29\xce\x34\xa8\xa0\x39\x34\x6e\x4d\x1b\xfa\x1b\x94\x59\xe8\x78\xa8\xe7\x32\x81\x09\xa1\xbf\xcc\x34\x5f\xd1\x8f\xc7\x64\x42\x1a\x5e\x77\x53\xc1\x60\xf4\x92\x4b\x35\x21\xef\x8a\x18\xbd\x27\x27\xe4\x5d\x80\xf9\xfb\xc3\x1d\x07\x76\xf5\xba\xcd\xd7\x60\xfc\x3b\x72\x8a\xf3\xed\xdc\xc2\xb1\x81\x7d\xba\xb1\xeb\xa7\xfb\x1d\x11\x0e\xbd\x72\xdd\xbc\x8d\x8f\x67\xef\xde\xb2\x19\xe3\x37\x9a\x17\x9e\xd3\xb5\x79\xdb\xe2\xc9\x37\x9f\xe2\xc0\xb3\x6d\xf4\xf9\xf7\xe4\xa4\x73\x4e\x0b\xa6\xcc\x2b\xd7\x03\xcb\xfc\xe9\xb3\xdb\xc7\x7a\x3b\x84\xe3\x9c\x36\xbb\xb7\x26\xe6\xdd\x39\xe4\x20\x9e\xdd\x82\xa9\xb7\x31\xea\x6f\xe0\x09\xa8\xd2\x4d\xfa\xde\x35\x72\x64\xea\x5e\x26\xf7\xc0\xf8\xa4\xe0\x71\x0d\x3f\x25\xc8\x3d\x6e\x2d\x8f\x97\x25\x7e\xb2\x1a\xfb\xef\xf5\xcd\x36\x6a\x42\x1e\x8f\x1e\xff\xc7\xfe\xa6\x91\x67\xec\xe8\xf2\xd9\xa9\x75\x38\xad\x68\xfb\x81\x29\xcc\x8d\x32\x08\xe4\x21\x98\xf0\x53\xa6\x2e\x89\xdc\x91\xfd\xed\x3b\xc5\x71\xe4\xe8\xbd\xc5\x4e\x0b\x3a\x0e\xac\x9c\x46\x69\xab\xbf\x29\xf0\x43\x17\x06\x25\xbf\xf1\x2d\xf0\xc8\xba\x77\xaf\xbe\xf4\xa5\x1f\x26\xfe\x9d\x76\x44\xda\xc3\xe8\x39\xc0\x1d\xbf\x4f\xc8\x18\xff\xb8\x4d\x6f\xbc\xc4\xd5\xda\xfe\xf8\x74\xc6\xad\x87\xf7\x2d\xd1\xa3\xfc\xc4\x5d\xed\xf2\xbf\x7c\xb2\x5f\xa5\xc0\x71\xc7\x7e\x2e\x7a\xc0\xe3\x61\x5e\xc2\xe3\xbe\x46\xb9\xff\xb2\x61\x86\x59\x1e\x8d\xdb\x65\xd9\x2f\x59\xdf\x72\xb2\x8d\x6f\xb6\x67\x0e\x86\xd6\x07\xcd\x22\x43\xe6\x8d\xe9\x3d\xfc\x5f\x3b\x3f\xbc\x2d\xfd\x62\xb5\x56\x3b\xdf\xe5\xdc\x44\x1f\x27\x64\x30\xdf\x34\x64\x00\x05\x6d\xba\x11\x29\xc4\x18\xc2\x8f\xbb\x38\xec\x1e\xa8\x29\x8d\xd9\xa1\x8e\xe9\xcf\xe7\xbb\x1e\xa7\x1d\x71\xa1\xee\x93\x75\x4a\x9b\x86\xb5\x17\x2b\xba\x60\x99\x32\x06\xc1\x9c\x1e\xa7\x3b\xaf\x59\x67\x18\xa2\x97\x4e\x10\xa3\x38\x5a\x2a\xb5\x96\x93\xf1\xb8\x99\x52\x25\xd6\x12\xe8\x25\x56\x63\xa9\xa8\xe2\xb3\x31\x5f\x2d\xc6\x4a\xac\x1f\xe9\xef\x1f\xd5\x62\x21\x1e\x2d\x45\xcb\x7f\x16\x8d\xa2\xf5\xa3\xed\x92\x2b\x36\x92\x37\x8b\xee\x23\xa0\x87\x13\x56\x7a\x5e\xc8\xe0\x47\x5c\xcf\x7c\x2c\x6f\x16\xff\xfe\x71\x55\x97\xa1\x75\xeb\x8d\xf2\xef\x1b\xda\xb2\xff\xa5\xc4\x13\xfa\x7f\xa3\x75\x73\x5f\x34\xea\x84\x74\x0b\x35\xa6\xc4\x9e\xfb\x02\x6a\x5a\x09\xd0\x1b\xea\x91\xde\x51\x47\x07\xc6\xd4\x74\x27\x77\x7d\x8d\x70\x49\x76\x62\xd3\xc2\x8b\x19\x33\x08\x63\x89\x6d\x33\xd4\x76\x4b\x3d\xc4\x47\x8d\x5b\x5a\x31\x22\xe6\x73\x3e\xe3\xb4\x26\x15\x5f\x70\x45\xeb\xe8\x59\x3a\x9b\xe3\xa0\x01\xeb\x2e\x3f\x5d\x3e\x3b\xfd\x56\x92\x05\xec\x70\xa9\xec\x2b\x9f\x4d\x05\xff\x62\xad\xec\x41\x95\x79\x3d\x20\xe5\x81\x50\x45\xe8\x58\xe4\x5e\x77\x80\xe7\xc8\x49\xf8\x47\x4f\xe8\xc5\x0b\x80\x49\xf8\x47\xcf\x18\x42\x13\x49\x4e\xf6\x08\xc3\x23\xb5\xe5\x4a\xb1\xf6\xe8\xa0\x29\x9a\xc6\xc0\xc4\x7e\xba\x7d\x53\x85\x31\x2a\x2e\x67\xa2\xad\x0e\x1b\xc3\x34\x86\x31\x78\x73\xc3\x15\xbb\xcd\x50\x50\x70\x60\xd1\xd2\xd5\x61\x83\x6d\xb7\xdb\x91\xeb\x92\x4d\xab\xfb\x04\xb8\xe3\x01\xe0\xc2\xf5\x65\x91\x3f\x1e\x13\xb9\x16\xad\x92\xa4\xa5\x15\x6d\x21\x7a\x40\x78\xd5\x6d\x19\x7f\x9c\xd5\x9b\x8a\x55\x97\x74\x05\x86\x05\xe6\x9a\x80\x31\x5c\x08\x53\x94\x15\xeb\xf1\x98\x34\x02\xb3\x5a\xfc\x4b\x2a\x0a\xf0\xec\x1c\x17\x7e\x3e\x73\x2f\xbd\x07\xcf\xa8\xba\x54\x80\xcf\xe4\xa4\x87\x03\x8f\xae\x02\xc7\xd8\xd1\x7d\x79\xc6\x8e\x8c\x1b\x2c\x03\xf8\x65\xbe\xb1\xa3\xab\xc0\x92\x3e\xea\xf2\x8e\x15\xbb\x97\xf9\x04\xdf\x0f\x48\x48\x1d\xa5\x40\xa7\x84\x9e\x6f\xea\xda\xd3\xd9\xfa\x8f\x56\x74\xfd\xc6\x3c\x8a\x31\xa8\xf8\x4c\x4d\xd2\x05\xb9\x85\xcc\xd7\xfd\xaf\x05\xf2\xa5\x01\x16\x0f\x3a\x4c\xb9\x2c\xfa\xf3\x70\xd6\x77\xb9\x27\xb7\xb0\x84\xb0\x4f\xf7\x11\xc4\x15\x5b\xdd\xd2\xa0\xde\x73\xf0\xdb\xcf\x97\x2b\x00\xf6\xe3\x33\x3d\xf4\x61\xbd\x59\xc1\x31\xdd\xa3\x5c\xda\xcf\x01\xd5\xdd\xf2\xd3\xff\x6f\x6b\xd6\xa3\x48\x1c\x00\xf6\x1f\x4e\x24\x6d\x9e\x88\xfb\x27\x0f\x80\x1d\xaf\xd6\xbf\xfb\x9a\xde\x88\x72\x81\xa2\x86\xfb\xa2\x2c\x9f\xa3\x94\xaa\xf1\x98\x9c\xbb\xc7\x2c\x37\xd2\x14\xb4\x9b\x89\xd5\x7a\x03\xe5\x72\x22\x8a\xc6\xfd\x82\xad\x4f\x96\xac\x5e\x4b\xcc\xd8\x24\x5a\x7f\x02\x21\xa0\x5b\x60\xf1\xcc\xe8\xda\x7f\x08\x23\xaa\x47\xea\x3b\xe1\x33\xcf\x75\xad\x8f\x83\x47\x90\xc3\x89\xf1\x0e\x19\x80\xc3\x3a\x40\xd1\x63\x24\xae\x52\x69\x26\x94\x0a\x87\xc2\x31\x29\x9f\x15\x9f\x10\x56\x44\x46\x9b\xef\xf9\xca\x3f\x73\xdd\x11\xb8\xe9\x8c\xd8\x80\xab\x3b\x79\xc1\x4a\x93\x1a\x9c\xf1\xe6\x4d\x13\x0b\x7e\xf4\x81\x15\x5f\x3f\xd0\x68\xe0\xe3\x60\x27\x51\xfb\x77\x1a\xc8\xfb\x42\xce\x28\xc1\xf7\x03\xb0\xcf\xc3\x13\x72\x74\xd4\x71\x10\x6a\x2a\x69\x25\x84\xb5\x6a\xf0\x81\xed\xac\x43\x1d\x3a\xe6\x0c\xf9\xf9\x41\xf7\x5f\x86\xe3\x34\x40\xcf\x72\x11\xdf\x84\xae\x2c\xd2\xc9\x0c\xc8\x82\xac\x72\x2a\xb0\xde\xa0\x56\xb5\x4e\x6a\x5a\x06\x79\xa6\x81\x93\xac\x23\x77\xd7\xe6\x67\x77\xd8\x45\x08\x7a\x7c\xe4\x13\xa1\xe1\x7a\x42\x90\xf3\x5d\x4a\x9c\xc7\x69\x05\x91\x14\x5f\x86\xd5\x56\x25\xc1\x85\xc6\x77\x80\x57\x53\xde\xd0\x3c\x65\x1a\x8a\xb6\xe2\xcd\x31\x6b\x1e\x04\x97\x9b\xc6\x63\xf2\x57\x17\x70\xfb\x37\xfc\xf1\xaf\x25\x1a\x44\x01\x1d\xf2\xcb\x26\xea\xb3\x80\x04\xee\xf6\x9b\xcb\x45\x9f\x90\x7f\x3b\x3a\x8e\x28\x1b\xec\x90\x22\x89\x83\x15\x0b\x40\x97\x38\xcb\x3d\x29\x24\x25\x53\xe8\x36\x3f\x90\x03\xa0\x87\x1c\xa5\x8c\xa0\x45\xf7\xa1\x7c\x10\x2e\x92\xad\xcb\x48\x81\x63\x95\x20\x15\x9a\xaf\x84\x36\x04\xcf\x5f\x22\xf9\xcf\xac\x22\x70\x5e\xe6\xc2\x2b\x3c\xa2\x7b\x16\x4f\x03\x37\x4a\x58\x30\x65\x47\xea\xa7\x5b\x5e\xa9\xe5\xc9\x7f\x7c\xf7\xdb\xa3\x22\x35\xb1\x23\x3c\xb3\xf5\x1a\x4c\x61\x5a\x43\x75\x48\x89\x79\xa1\x9b\xb6\x1e\x62\xf6\xe2\x19\xab\xf9\x6a\x42\x8e\xbe\x39\xea\x7c\x88\x2a\x9b\xa8\xcf\x3e\xd5\xcb\xa1\xad\x40\xbd\x93\x5d\xc5\xad\x8e\xed\x1b\xa4\xa1\xde\x79\xde\xbf\xfd\x8f\x1f\xfe\x11\xf3\x86\x33\xfe\x36\x73\x36\xba\xc6\x97\xcf\x77\x0c\x10\xee\x69\xae\x4f\xbb\xe7\x0a\x50\xd0\x6d\x21\x0c\x2c\xd2\x30\xb5\x15\xed\x07\xb2\xd6\x40\xe1\x3d\x3f\x2c\x46\x6e\xf2\xb3\xcd\x0d\xc1\x8a\xd3\x7c\x93\x76\x22\x85\x74\x88\xf1\x32\x8f\x4c\x76\x10\x89\xcf\x89\x0b\xcd\x5d\x22\x46\x83\x63\x72\x72\x42\x8e\x14\x93\xaa\x61\xea\x28\xbd\x8b\x16\x90\x68\xd3\xd6\x96\x94\x7e\x44\x4f\x5d\x07\x61\xff\x89\xb7\x69\xeb\xe4\x60\xf0\xb7\x67\xf1\x89\x69\x10\xfe\x60\x6c\xd1\x9a\xd0\x8d\x02\x37\x25\x1e\x03\xf1\xd5\x5a\xdb\x0d\xea\xbb\xe3\x8d\x15\xb1\x6d\x58\xab\x69\xbb\x66\xed\x5c\xb4\xab\xa0\x20\x62\xf4\x18\xb9\x79\xb4\x5f\x77\xb1\x50\x6e\x68\xcb\xc5\x46\x12\xaa\x87\x56\xf1\xe3\x6e\x43\x78\x4f\x1e\x5d\x5b\xf1\x83\xde\x0f\x48\x7a\x7b\x17\x27\x11\x5f\xc8\x45\xb7\x35\xbe\xd1\x88\xfe\x2d\x53\xec\x1f\xbe\x32\xf5\x9c\x22\x3e\xb2\x8f\x68\x4a\xf3\x8a\xa6\x7f\x67\xae\xf2\xc6\x25\xb7\x2f\xf7\x63\x44\x4f\xae\x68\xab\xdc\x7b\x9b\x01\xb8\x10\x72\x58\xdb\xd6\xaa\x9a\x13\x72\x1a\x82\x5d\x99\xc7\x5f\x5d\xca\xba\xe2\xaa\x66\xf6\xb1\x3c\xde\x92\x54\x3d\x2d\x7f\xd8\x47\xba\x5a\x6b\x73\xe3\x13\x24\x56\xb1\x96\x18\x4b\xff\xe8\x4f\xec\x86\x37\xe4\x6c\xd3\xd2\x46\x1d\x0d\x5d\xd6\xe0\x84\x1c\xfd\xff\x64\xce\x98\x3a\xfa\xbc\x1f\xba\xfd\x0c\xa6\x6c\x46\x37\x92\x91\x2d\x14\xfa\xc7\x22\x65\xe1\x00\xf6\x8e\xd3\x0f\xdf\xfe\x9f\x80\x3f\x3b\x8a\xdc\xc6\x55\x7e\xdd\x0a\x05\xa5\x2f\x49\xb9\xea\xbf\x5f\xe1\x81\xa7\xaa\xd3\x9b\xf1\xbf\x9f\x8f\xed\x3d\xe6\xfc\x1a\xb3\x79\x57\x35\x1c\x35\x6a\x02\x65\x21\xd9\xd6\x94\xfc\x4b\xc6\xb1\xff\xca\xef\xf1\x35\x6c\x0b\x17\xde\x4d\x57\xa3\x42\xec\xa9\xe1\x7d\x71\x16\x3e\xdd\xc7\xe1\x91\x00\xb0\x79\xe8\x82\xf2\xb8\x52\x42\xf8\x68\xed\x1b\x7b\xfb\xbe\xf0\x65\x67\xa9\x68\xf7\x24\x1c\x12\x00\xef\xba\xc6\xd8\x0e\x49\x69\xa6\xe9\x14\xae\x82\x27\x67\xb1\x10\xf9\x01\xcf\xce\xae\xdd\x43\xa5\x40\xa8\xf7\x9e\x52\x65\xfb\x50\x37\x2a\x4b\xfe\x31\xb9\x66\x5a\xd4\xd0\x96\xd7\x3b\xc2\x1a\x3a\xad\x59\x85\x64\x2c\x5e\xfe\x5b\xdb\x37\xf0\xa7\x0c\xde\x8d\x9f\xf3\xba\x8e\xea\xee\x1d\xf2\x6e\xc7\xda\x3c\x18\xba\x59\x47\xd5\x4f\xc6\xc9\xa6\x51\x78\x5d\x4e\xef\x72\x89\x27\x03\x16\x98\xc6\x35\x45\xc1\x69\xda\xb8\xfb\x6b\xeb\xf8\x35\xda\xc4\xea\x88\x51\xc8\x36\x03\xe2\x03\xd9\x94\x08\x36\xab\xe0\xec\x50\x72\x67\x56\x71\x63\x80\xe7\x72\xb5\x36\x5c\xdf\xfd\xbc\xac\x7f\x34\xc1\x94\x80\x48\x0a\x94\xc6\x1b\xc3\x40\x1c\x21\x9a\x16\x45\x87\x92\xf9\x47\x51\x55\x48\x6c\x8d\xcf\x05\x29\x0f\xcf\x8a\x47\x42\xfe\x0a\x1e\xb3\x37\xc7\x43\x24\xd9\xc3\xde\x86\x6f\xb5\x8e\xed\x24\x70\x22\xe0\x6f\x21\xda\x31\xd4\xa3\xd7\x0a\x0c\x2a\x5f\xad\x72\x9f\x04\x8c\x97\xd7\xbc\xda\x1e\xbd\xa1\x1c\x8b\xbc\x2b\x96\xbc\x71\x1d\x2c\xe5\x1e\x21\x17\x62\x43\xbc\x8c\xd3\xe4\xf2\xc5\xb8\x3d\x7c\x7c\xfe\xb9\x5f\x74\x61\x81\x8f\x2f\x91\x5e\x57\x5d\xcf\x70\x77\xcb\xae\x44\xc0\x5e\x31\x85\x46\x5f\x41\xc2\x5d\x31\x65\x05\x9c\x31\x14\xc3\x0e\x43\x57\x90\xd8\xc5\xb9\xf1\x61\x7d\x74\xab\xef\x17\x76\x11\xd3\x80\x0b\xa8\x38\x4f\xa8\xbb\x6b\x24\xdd\x93\x47\x0f\x0d\x0e\xb7\x15\x75\x04\xdf\x3c\x41\xae\xb6\x36\x9c\xab\x4d\xaa\x65\x8b\x79\x8e\x3f\x62\xde\x68\xa3\x38\xd9\x2c\x7c\x91\x53\x7c\xe0\x44\x8b\xc4\x99\x3e\xc7\x57\x4c\x2d\x45\x25\x89\x68\x7a\x1e\x94\x0c\x18\xde\x90\xb5\xa3\x3a\xeb\x4e\x6c\xc8\x96\x66\xcf\xc2\x2f\x98\x4a\x70\xdf\xb7\x3d\x4e\xe3\x99\xda\x41\x9c\x27\xce\x0c\x8c\x6e\xb8\x54\xa3\xb3\x73\x62\x1f\xd7\x42\xee\x79\x9a\xcb\xd2\x38\x29\xec\x3c\x81\x6a\xc9\x77\x2f\xef\x6c\xde\xf0\xc1\x61\xf0\xf9\x6d\xfb\x06\x67\xf4\x2e\x50\x5a\xdb\x39\xfc\x2b\xe5\xca\x1f\x33\x6a\x46\x2f\x31\x19\xce\xe2\x2a\xed\xa7\xb5\xb7\xbf\x7e\xf3\xd7\xa8\xc8\x06\x3e\xa9\x9a\x40\x32\xef\x0e\x40\x80\x39\xad\x9a\x64\xa0\x1f\x5c\x64\x3a\x66\x69\xa9\x68\xab\x2e\xf5\x76\x80\x5a\x04\x60\xc3\x81\xfc\xc3\x7d\x68\x6b\x14\x40\x99\x74\x23\x6f\xc2\xba\xe2\xe3\xb1\x2b\x8a\xab\xcf\x1d\xcc\xc1\x26\x2b\x46\x1b\xbc\xfa\x4d\x55\xfa\x1e\x8a\x7d\x98\x9c\x47\x4c\x02\xcf\xc6\xe2\x2d\x7c\x14\x91\x11\xc4\x43\x44\xf7\x41\x9d\x2c\x93\xc5\xb3\x1e\xf4\xa8\xa7\x2f\x9a\xaa\x44\x0f\x3c\xcc\xb4\xd5\x81\x27\x9d\x68\x58\xda\x33\x21\x59\x6c\xb0\x14\x11\x0d\x79\x37\x92\x83\x81\x74\x8e\xbf\xef\xd7\x2e\xdd\x04\xaf\x34\xa6\xac\x1a\x34\x6c\xfb\x3c\xec\x7f\x98\xd8\x8d\x2f\xd3\xc6\x4d\xfb\x15\x82\xe0\xbd\x17\xa3\x04\x58\xfd\x00\x4e\x41\xf7\xf3\x2b\xba\x8e\x2d\xdc\x8c\x35\xac\xd2\x66\x5f\x32\x8b\x9e\x40\xf1\x80\xf2\xd2\x02\x29\x26\x60\xa4\x5a\x74\xb2\x22\x34\xe9\x23\x57\x92\xde\xb0\x27\x7f\xc8\x9e\xb8\x0a\x0e\xe9\xf8\xa7\xc1\xf1\x90\x28\x71\xdb\xd7\xaf\x92\x1d\x59\x78\x17\x87\x68\x44\x24\xd9\x2e\xf9\x2c\x9c\x6e\x58\x70\x61\xca\x6a\xd1\x2c\x64\xb7\x24\x8f\x94\xa4\x79\xe1\xcc\xb8\x3c\xbf\xee\xb2\x3e\xfb\xde\x5c\xb9\x05\x3a\x31\xcc\xde\x73\xeb\x56\xef\xf1\x95\x8d\x84\x2f\x78\x12\xd8\xc9\x87\x9e\xb7\x89\xfa\x5e\x5e\xc9\x6a\x79\xad\x7b\xdf\x3d\x8f\xdf\x59\x43\xff\xc9\x2f\xf0\xd2\x1a\xb9\x8f\xd7\xd6\x12\xbc\xfb\x9f\x73\x9a\xa3\xae\x77\xc8\x3b\x4e\xc5\x27\x9c\xca\x3b\x25\xdd\xdb\xa9\xf5\x11\x6c\x9f\xb8\xfa\x58\x97\x9f\x29\x10\x24\x05\x6f\x53\x42\x60\x47\xa4\x2f\x37\x4a\x8a\x4f\x37\x85\x9f\x7b\xf2\x53\x1d\xe8\xf1\x09\x08\x76\xa8\xdf\x27\x5c\x6b\x3d\x47\xeb\x9d\x75\x88\x5b\x4f\xd0\x1e\x47\xd0\x3f\xf3\x4e\xb0\xce\xf4\x64\x43\x94\x09\x84\x71\x53\x47\x9e\xdc\x81\x55\x62\xf1\x4b\xb6\x45\x92\xc4\x0c\xbe\x9f\x0d\xe3\xc5\xb2\x60\x20\x37\xd9\x7a\x6b\x0b\x33\x79\xf2\xc8\x9c\x6e\xa6\x75\xa7\xdb\xda\xbe\x06\x00\x0f\xf0\x34\x8a\xb5\x73\x6a\x5d\xd4\x1b\xc9\x5a\x69\x8c\x1a\xa9\x0c\x5b\x1a\x19\x1c\x64\x41\x53\xeb\x4e\x06\xeb\xa9\xae\xc5\x96\x08\xb5\x84\x52\x72\x82\x98\x37\xa2\xdc\x61\xcf\x1b\xc7\xe0\xc1\x4b\x52\xe4\x42\x11\x5a\x4b\x61\xbd\xe1\x73\xd1\x92\x96\xd1\xca\xaa\xa9\x46\x45\xbd\x38\x93\xe1\x4b\x63\x66\x4f\x07\x70\x72\x87\xb6\x9f\x52\x39\x05\x3d\x79\x9a\x07\x8b\x43\x45\xcf\x5a\xe5\x19\xe0\x97\xe7\xd7\xc7\xb9\xcd\x43\xd5\x6c\x79\x16\x76\x95\xfd\xd9\xe3\x39\x88\x85\x16\x9c\xfe\x59\x93\x1f\x7e\xf7\xbe\xc3\xb2\xba\x3c\xbf\x1e\xf8\xf2\x97\xda\xac\x2a\xe1\xd8\xd1\xd9\xbc\x24\x1c\xf7\x77\xb1\x95\xf3\xeb\xb4\xa8\x8e\x2f\xc0\xd5\x32\xb9\xa9\xad\x57\xa2\xe1\xf5\x10\x99\xa6\xb2\xf2\x07\x59\x8f\x55\xfe\x80\x4e\x01\xc9\xa5\xd8\xd4\xf0\xac\x2d\x58\x1c\x10\x04\x47\xd6\xa3\xed\x62\xb3\x32\xc5\x0a\xc1\x06\x4d\x0b\x81\xc1\x44\x84\x4c\xad\x47\xfd\x19\x18\xc4\x4e\xc0\x3e\x3c\x26\xff\xf3\x3f\xf6\xab\xa7\x50\xed\xf2\x84\xf0\xea\x78\x42\xb2\x7e\xfa\x93\xd8\x92\xa9\x86\x91\xea\x23\xf9\x14\xf5\xde\xe1\xcd\x4c\xb4\x2d\x9b\x75\x1a\x9c\xe9\xa6\x0b\x76\x0f\x47\x07\x44\x18\x1a\x62\x37\xac\xdd\xc1\xee\x23\xdb\x25\x64\x27\x4b\xa8\xb9\xea\xa2\x3d\xa0\x4e\x4b\x74\xa3\x34\x66\x37\x19\xf9\x0a\xda\x35\x6d\xe8\x82\x99\xef\x2f\xcf\xaf\xaf\x1e\x90\x8e\x70\x4f\x78\x15\xa6\xe3\x8a\x46\x5e\xcb\xd5\x5d\xee\xc8\x7f\x72\xd7\x37\xf2\x9f\x72\xc0\xfb\x2e\x70\x90\x4f\x51\x54\x29\xc8\x4b\xf4\x45\x5d\x67\xa2\x99\x8b\x76\x85\x6e\x61\xbd\xe7\xc2\x1e\x97\xe7\xd7\x29\x79\x77\x6b\x66\xdc\x1d\xf6\x1d\xbc\x8b\xb3\xc4\xe7\x64\x5f\xbb\x12\xdb\x86\x55\x9a\xec\x13\xf2\x87\x4f\xd8\xb8\x50\xd8\xf6\xf2\xfc\x3a\x7d\xcc\xaa\x58\x63\xdc\x41\x23\x4f\x1e\x85\x29\x42\xf1\x51\xa1\x51\xab\x5a\xba\x25\x2d\x5b\x89\x1b\xb0\x51\xed\x4c\xcd\x03\xc5\x2c\x92\xbc\x4d\x45\xb0\x1d\x77\x1b\x67\x46\xeb\xba\xd3\xda\x0e\xf5\x19\x3b\x56\xd1\x88\x88\xeb\x84\x82\x3b\xd2\xbe\xec\x88\xa8\x55\x25\x84\x3a\x46\x6d\xad\xba\x52\x14\xa5\xe8\xc1\xd7\x7f\xf9\x87\xaa\x2d\x6e\x79\xe5\x3e\xfb\xcb\x20\x44\xdf\x3f\xf0\x5e\x1c\x20\xf7\xe5\x3e\xc3\xdd\xde\xcc\xd1\x1f\x33\x5b\xb2\xd9\x07\xc2\xe7\xa4\xf0\x76\x15\xf8\x49\xe7\xca\x86\xe7\x63\x01\xec\x91\x88\x75\x12\x3e\xb7\x8a\xcc\x4b\x31\xfb\xc0\x9b\xc5\x88\xcb\x97\x00\x5b\xab\xd3\x6f\xd9\x1c\xf4\xe9\x52\xc8\xda\xa8\x31\x46\x2a\x59\xf8\x93\xa0\xcc\x2b\xe2\x98\x45\xab\xd3\x29\xbe\x85\x65\x42\xbd\x70\x5e\x64\x9f\x3c\x58\x01\x8b\xf0\xe4\x51\xc2\xb1\x23\x5c\x71\xcc\x19\x0b\x66\x9c\x0b\x54\xaf\x86\x75\xe1\x1f\x87\x36\x7c\xb8\xab\x76\xf5\x7c\x0a\x3e\x90\x9f\xec\x9a\x6b\x92\x03\x92\xf0\xa4\x2c\x2a\x8c\x0e\xd7\xf6\xe9\x88\xe2\x6d\xdd\xe3\x5e\x47\x1f\x2a\xcf\x30\xae\x63\x33\x84\x5a\xd6\xa3\xe2\x9f\x0a\x4f\xc0\x5a\xf4\x1c\x38\x49\x56\x9b\x5a\xf1\x75\x6d\xf8\x5a\xde\xc7\x53\xae\xbc\x92\x13\x72\xda\x10\xda\xb6\x14\x24\xa0\x56\x86\x94\x70\x83\xee\x33\x15\xfa\x54\x11\x6d\x9a\xf8\x35\x88\x1f\x68\xec\x32\x6b\x7a\x3e\x31\x69\x57\xdd\x8f\xd5\x47\xba\x53\xb0\xca\xd2\x6b\x40\xb7\xbb\x82\xe7\xc3\x34\xa8\x5d\x63\x5a\x69\x07\xcb\x6b\x21\x0f\x23\xef\x7f\x47\xb5\x8f\x9f\x2e\x14\x6b\xd1\xe9\xdb\x8a\xcd\x62\x69\x74\x22\x5c\x73\x27\xcf\x61\xd1\xf7\xed\x41\xad\xf5\xf2\x4a\x6f\x0a\xdd\x3f\x97\x0d\x09\xb2\x1d\xef\xaf\x16\x25\x24\xaf\x8e\xfb\xd2\x5b\x0e\xdf\x23\xb2\xbc\x49\x12\xd4\x3a\xb6\x8b\x35\x06\x14\xfd\x00\x06\x90\x11\x0a\x9a\x52\xb4\xaa\xc2\x53\xcc\x83\x0a\xad\xf8\xbe\x6d\x82\xbb\xc4\x90\xc2\x9e\x62\x78\x62\x99\x61\x59\x95\xcb\x9b\x3e\xae\x3c\xc8\x0e\x48\x96\x29\xe3\x46\x63\x38\x05\x38\xa0\x94\x05\x01\x60\x5d\xc9\x06\xd5\x15\xfd\xc0\x88\xdc\xb4\x99\xda\xcc\x95\xb5\xd0\x8c\x9e\x99\x47\x10\x22\xf9\x6d\x87\x78\x48\xfe\x10\x28\xf6\xd9\x11\xf1\xa3\x29\xf0\x0e\xcd\xbf\x95\x24\x79\x55\x00\x8b\xec\xc3\xcb\x14\x28\x72\x33\x00\xa7\x55\xe5\x1c\x0f\xe6\x04\x37\x39\x03\xf9\x92\x59\x88\xa2\xae\xae\xcb\xe7\xcc\x3b\x5e\xbd\x77\xd8\x67\x63\xbd\x6e\xea\x9d\xa9\x6b\xee\xf8\x08\xcb\x9b\xf3\x79\xaa\x17\x65\xf4\x03\x5b\x91\x36\x56\x49\xfe\x56\x16\x13\x2b\xf8\xbc\x74\x9a\x98\xb0\x53\x61\x3f\x02\x36\xd6\xe4\xd3\x67\x93\x3e\x95\x94\x38\xe0\x4c\xca\x8f\x6b\x53\x2f\x1d\xdf\x38\x04\xa9\x25\xea\x2a\x55\x8b\x8e\x8c\xee\x15\x9b\x19\xa6\x1a\xbb\xa3\x6c\xdf\x59\x75\x96\xec\xc0\xfc\x5d\x6c\x6a\x1e\x2d\x47\x73\x2c\x75\xb7\x19\xca\x4b\xc2\xe8\x6c\x69\xcf\x08\x56\xa1\xaa\x8d\xa6\x3d\x97\x25\xf9\xf6\xe5\x66\x72\x41\x7d\x83\x58\x5d\x70\x14\x5a\xdf\x40\xb2\xdd\x33\xde\x83\x94\x7b\xc3\xcf\x50\x8e\x03\xcc\xed\x3c\x2a\x5f\x90\xe8\xd0\x35\x13\x1f\x21\x4d\x90\x24\x69\x10\x49\xcb\xf4\x0f\x0c\xfc\x8f\x1d\x09\xff\xa6\xe0\x6b\x22\xca\x0d\x8e\x45\x61\xfe\x81\xed\x32\x69\xbe\x9f\x9f\x3a\x0e\x1d\xcb\x3d\x89\x74\x8f\x79\x47\xeb\x9c\x8e\x67\x90\x29\x79\x85\x72\x9b\x54\x9b\x16\xf3\x1b\x79\x43\x24\x9b\x09\x9b\x41\xaa\xfb\xc8\xd8\x8c\x70\xcf\x79\x60\xa2\x0e\x55\xae\x73\xc6\x27\xba\x77\xe0\xa3\x18\xba\x96\x13\xf2\xe7\x73\xfe\xf1\x87\xdf\x15\x5e\xd3\xf8\x4a\x2a\x2f\xaf\x0e\x51\x75\x35\xc2\x5f\xac\xe6\x8e\xc7\x64\x4d\xa5\x0c\x4d\x21\x14\xa4\x35\x9a\x0f\x79\xf2\x0c\xb1\xa1\x5f\x93\x4b\x01\xf9\x21\x26\x30\xcb\xed\x2b\xae\x53\x3a\xfb\xf0\x05\x02\x38\x31\x5d\x34\x0e\xda\xe0\x69\xe6\x6a\xe2\xe4\x73\xb8\x20\xf6\x5f\xc9\xa4\x6e\x23\x97\x5e\x06\x0c\x16\x6e\x6c\xc3\x6a\xb2\x9b\xd7\x42\x50\xfa\x9c\xc4\xbd\x2b\x8b\xea\x18\xb0\x24\xee\x53\x9b\x2a\x66\xee\x45\xb2\xaa\x9b\x15\x1d\x82\xb1\x66\x7a\x10\x4b\xf6\x29\x87\xb8\xa9\x96\x6c\x75\x2b\x25\xd0\x3d\xb8\xec\x4e\x9c\xd2\x42\x84\x3d\xba\x9c\x0d\x9b\xa6\x67\x5b\x2b\xa5\xa5\x06\x88\x54\xd3\x2e\x4e\xf8\x4a\x78\x04\xdb\xe8\x53\xc0\x3d\x05\x3b\xdd\x48\xde\xe8\xf3\xb3\x16\x0b\x3e\x23\xb4\x85\x37\xbf\x0c\x30\x56\xf3\x05\xc7\x52\x4a\x19\xbd\xb1\x49\xe8\xa0\xfc\x95\x6d\xf5\x37\xc5\xad\x1e\x53\xd4\xa7\x19\xa9\x25\x03\xd7\xb0\xe6\xee\x6c\x43\x87\xe9\x54\xfa\x47\x97\x6c\xe2\xdc\x4d\x77\x52\xc5\xba\x56\x39\x96\x05\x77\xd8\xf7\x7f\x8e\x78\xb0\xb4\xf3\x6f\xb3\xbf\x11\x3f\xb3\xc3\x51\x2d\xdc\x11\xda\x32\xc3\x6e\x75\x7e\x11\x27\x40\x22\xb1\x3b\x6f\xb7\x97\xed\xc8\x5f\xb6\x9d\x03\x8e\x0f\x1f\xc9\x21\x3d\x9b\x17\x95\x17\x9f\xc3\x56\xd2\x86\xe0\x31\x0c\xe7\x23\xee\xd3\xca\xf2\xc8\x43\xcf\x83\xe4\x7e\xeb\x68\x8d\xa6\x6b\x75\xad\x9f\xcc\x7a\x20\x08\x35\xdf\x45\xce\x73\xc8\xb7\x73\xcf\x4d\x74\xbb\x13\xa3\x64\x3b\x74\x71\x42\x60\xaa\x65\xb4\x22\x5a\x1f\x8d\xee\xd0\x75\xfb\x50\x4a\xae\x4e\x25\x60\x7b\xc5\x49\x5b\x73\xb1\x37\x63\xa9\x90\x4d\x17\xa7\x5f\x44\xbe\x68\x01\xf5\xd3\xb5\x76\x2c\xb4\x25\x13\x5c\xfb\x30\xd3\x81\x3b\x35\xb4\x4a\x62\xba\x97\xe7\xd7\xc3\x10\x8e\x96\x34\xb4\xd1\xea\x1a\xdc\x62\x8b\xef\xf5\x8f\xc8\x9b\x9a\x51\x09\x79\x36\x51\xb4\x47\x03\x8f\x3d\xb2\xb4\x72\x02\xcc\xbd\xd2\x4d\xfa\xb2\xf9\x0e\x8b\x39\x95\xd9\x66\xf0\x4d\x41\xbc\x50\x59\x06\xd1\x9d\xe7\x76\x45\xe7\x8c\x6c\x31\x6b\xdc\xc4\x6b\xd2\xdc\xcd\x06\x57\x14\x54\x4b\x2b\x98\x41\x78\x87\x70\x4e\x6b\x29\x48\x23\xb6\x64\x4d\x5b\xe5\x08\x9d\x85\x39\x92\x62\x61\x3e\x94\xf8\xcb\x73\x5a\xe3\xef\x63\x65\x3c\x57\x31\xc9\x5b\x34\xc1\x86\x2e\xd1\x4a\x1b\xac\xc6\x2e\xd6\x8a\x25\xab\x48\x96\x57\xde\xbd\xce\x9a\xce\x07\xac\x75\x1a\x28\xe4\x73\xeb\x2c\x7f\xcb\xe6\xe4\x84\xdc\x6a\xd1\xbb\x6f\x6f\x21\xbc\x1e\xe7\x55\xe9\xfe\x7b\x41\x16\xb9\xd0\xde\x61\xe2\xe8\x50\xe1\x83\x57\xd4\x9b\x2a\x4e\xfc\x05\x85\x84\xab\x51\xa4\x32\xe9\xd3\x48\xf7\xc3\x1c\x49\x0c\xa8\x38\x01\x16\x65\xcd\xc4\x6f\xe4\x45\x02\x40\xb4\xb0\xff\x0d\x57\x49\x06\x0f\xee\xe9\x6f\xdf\xf8\x0b\xf3\xc9\xd5\x44\xad\x1b\xec\x92\xc3\xc3\xa5\x33\x62\xd2\xb9\x68\xcd\xc8\xc6\x55\x4d\xcd\xb3\x3f\x42\xb2\xf0\x56\x7e\x6a\xce\xc5\x97\xb6\x8a\x52\xe4\x1f\x29\x82\xef\x16\xf8\x0e\xdd\x41\x9e\x83\x3b\xbd\x41\x50\x99\x14\x18\xbf\x4b\xdc\xd1\x8d\x5a\xee\x97\x79\x09\x5b\x6b\x90\x54\x3e\x8c\x30\x8d\x37\x03\x61\xb5\x2c\xa5\x50\x17\xf6\x05\xe9\xd2\x28\x62\x4a\xfd\x85\xb3\xad\x8d\xc7\x26\xf4\x0a\xcb\x9e\x96\x03\xb8\x9f\x0b\x69\x41\x18\x40\xfb\x22\xba\xe4\x45\x1a\x14\x12\x42\xf3\xcd\x09\x86\xf0\xfa\xc8\x63\xa8\x10\x74\xd2\x32\xe8\x80\x69\x74\x08\x93\x8b\xb9\xb6\x95\x5a\xda\x48\x8a\xc7\x82\x51\x77\x65\xea\x84\x44\x7f\xda\x30\x3e\x78\x6a\xcb\xa3\x32\x70\x9e\xe9\x4d\xaa\x8d\xf7\x96\x61\x12\x8c\x7b\x70\xf1\x61\xd8\xf9\xd5\x66\xb6\x24\x35\xff\xc0\xc8\x56\x5b\x04\x67\x74\xc5\x69\x43\x5e\xf2\xba\xa6\x6d\x15\x63\xb1\x14\x6b\xcc\x6f\x8e\x9c\xef\x2d\xa3\x2b\x77\x33\x94\x35\x8a\xb7\x8c\xcc\x38\xbe\xd7\xf6\x47\xb1\x91\xca\x26\xd0\x90\x78\xc3\x75\xbd\xf6\x68\xf5\xfc\x78\x51\x1f\xc4\x7c\xe6\x73\x1e\x1e\xdd\xcf\xc7\x82\x4b\xaf\x15\x3d\xaa\xd9\x0d\xab\x5d\xde\x08\xa9\xd8\x9c\x37\x41\x42\xf1\x3d\x62\x60\xe1\x15\xeb\x39\xc6\xf9\x5d\xc3\xcc\xf9\x66\xfd\xac\xe6\x4c\xb1\xb0\x28\xe6\x7b\xe8\xe3\x41\xc6\xf7\x63\x82\xdc\x0e\xe3\xb4\x1e\xd9\x4e\xaf\x41\xee\xe9\x63\x65\x49\x6f\x58\xec\xce\x75\x9d\x4d\xa7\xa1\xb7\x86\xe8\x14\x22\x93\xb6\x86\xaf\x85\x16\xa6\x55\x79\xfe\x96\x76\xb4\x07\x24\x4b\x46\xcb\x4a\x59\x1e\x1c\xac\x4b\xb3\xd4\xf2\xa2\xa2\x26\xea\xe6\xf9\x67\xc1\xd4\x69\x5d\xe3\x35\x62\x77\x88\x9b\x0d\x85\xe5\xf6\x78\x63\xd5\xe2\x10\xe5\x44\x91\x72\x66\x52\xdc\x17\xce\x77\xa0\x22\xbc\x79\x6a\xae\x8e\x45\x73\x0e\x10\xc0\x47\xee\x0c\xce\xfa\x9b\xf7\xf9\xdc\xb2\x0b\x7f\x23\xa8\xb4\x22\xf3\x69\x85\xb5\x65\xb2\xa9\xb9\xfc\xd0\xf4\x54\xa7\x5e\xf7\x77\x17\x6e\xc7\x63\x97\x23\xd4\x75\x01\xd3\xa7\x6b\xf9\xdc\x6a\x2e\xc9\x94\xe9\x03\x5f\x32\xda\xce\x96\x66\xde\x05\xfa\x5d\xc7\x08\x11\x6a\x6f\xeb\x2b\x61\xff\x65\xf3\x5a\xad\xc2\x9a\x92\xb0\x58\x48\xc7\xdd\x0f\x4a\x2f\x1d\x3f\xcd\xe9\xea\x1e\xcb\x8e\x6e\x51\x3e\x1d\x45\xa5\x87\x3a\xe9\x6b\x1e\x5d\x08\xa3\xf1\x7d\x24\xb6\x50\x3a\x3e\x6e\x05\x40\x47\x72\x95\x6b\x42\x4c\xba\x3b\xbf\xf8\x38\x89\x1e\xda\x39\x42\xed\xdd\x4e\x53\x68\x5d\x32\x48\x80\xec\xf8\xc0\x89\x70\xf4\x8a\xad\xd6\x5a\xa3\xfc\xb1\xe5\x3f\xff\x5c\x73\x26\x8f\xbe\x06\x3f\x44\x03\x1b\xd4\xaf\xed\x85\x31\xcd\x03\xd8\xde\x69\x6e\xfb\x38\x08\xfb\x85\x7c\xf4\xfa\x00\xae\x49\xdf\xcd\xb0\x79\xfa\x06\xa1\xa4\x90\x44\xc8\x41\xe3\x31\x39\x13\xcd\xb7\x10\x7f\x98\x31\x30\x1e\x6f\x58\xeb\x22\x88\x46\x03\x16\xad\x41\x0c\xc2\x86\x37\xb4\x0e\x2a\x22\x1a\x1b\x67\xbd\xef\x4e\x6f\xd1\x0c\xd6\x3f\x3a\x36\x7d\x07\x63\x04\x6f\x21\x96\xd4\xb8\xa2\x69\x93\xf1\xf7\x95\x31\x02\x42\x9e\xc6\x94\x72\x6b\xb4\x78\x2f\xb7\xbd\xb6\x1a\x2f\x26\x97\x29\xef\x8f\xfa\xf8\x27\xb8\xf6\xe1\xd9\xc7\x5d\xfb\xb8\x95\x34\xf9\xaf\x0d\x6b\x77\x76\x02\xa6\x96\x84\x91\xc5\x5e\x06\xfa\x3a\x18\x1c\xd2\xfd\x30\x06\x40\xa7\x62\xe3\x2e\xce\xa6\x0c\x63\x40\x66\x17\x10\xc3\xf1\x42\xd6\xf0\x19\x5b\xd1\xdd\xbb\x93\x92\xb6\x5f\x2c\xb8\xd6\xbd\x7a\xe1\x90\xd1\xcb\xe8\xdd\x49\xd9\xbe\x34\x53\xb4\xa8\x70\xf1\xe0\x9f\x60\x51\x4b\xb7\xb6\xe3\xb5\x09\xab\x4e\xb9\xb5\xb9\xf5\x86\x45\xdb\xb5\xb0\x4d\x93\x23\xd8\x58\xc9\x76\x55\x9f\xc2\x8b\x9c\x45\x92\x9b\x3b\x79\x21\xd1\xcd\x3d\xbf\x83\xc9\xfe\x8f\x24\x7c\x8a\xab\x86\x92\xdc\xe2\x8a\xd7\x21\x2e\x7d\xea\x56\x02\xff\xf1\x4b\xac\x84\xf4\x57\x10\xd3\xb5\xb8\x38\x93\xcf\x76\xd9\x1e\x70\x9e\xed\x6c\x2d\x88\x5b\xd5\xc2\x69\x79\xfb\x35\xb9\xec\x2a\x42\x70\xcb\x75\x39\x2d\xb8\xe6\x03\x60\x7c\xae\x55\x7d\xf0\xc8\xc9\xa1\x3e\x7b\x8c\xeb\xce\x5c\x64\x2e\xac\x99\xa3\xcb\x20\xa9\xed\x66\xdd\xf7\xdf\xff\xf6\x7d\xb8\x74\x37\xb4\xc5\xf5\x91\xfe\x77\x72\x42\xde\xbd\x8f\xed\xda\x24\xba\x61\x65\xaf\x5d\x31\xbc\x6d\xe5\xce\x77\x27\x8f\x1c\x0c\xfd\xa5\x75\x47\xf1\x7c\xc5\x8d\xf6\x5b\xf2\xb1\xa0\xa0\x3b\x39\xb1\xdd\x61\x7b\x16\x1c\x1a\xfe\x26\x82\xad\xb3\x37\x17\x9b\xa6\x1a\x3a\x1b\x1f\xa8\x9b\x75\xc3\xb9\x9b\x1a\x59\x03\x3b\x46\x22\x81\x49\x4f\xac\x25\x1e\x14\x37\x41\x38\x6e\x78\x10\xec\xdf\x27\x97\x06\xf7\x82\x6a\x61\x30\x35\x0f\x7d\x9f\x9c\x90\xc7\x77\x3b\x79\x10\x5e\xdf\x29\x03\xd6\xcc\x45\x13\x96\x43\x80\xb4\x03\x2e\xc1\x31\x0e\x2a\x61\x29\x96\x14\x88\xbe\xaf\x28\xd2\xc2\xad\x63\x51\x29\x69\x86\x38\x83\x4c\x8a\x95\x36\xc3\xfd\xc9\x31\x2f\xc3\xc0\x82\x4c\x68\xcb\xe5\x0b\x7b\x6d\x5a\x81\x7b\x3e\xf4\x3b\x8b\x9a\x51\x93\xd6\x65\x6b\x06\x48\x8d\x01\xd5\x34\x1a\x63\xa5\x2d\xb1\x9a\x8a\x4e\xd5\x7f\x00\x17\xac\xb6\x5c\x32\x28\x19\xd5\x98\xac\x2d\x73\x4b\xed\x58\x4f\xa0\xc5\x71\x47\x9d\x30\x2e\xe6\x41\x97\xa0\xc7\x50\xcb\x23\xa9\xd0\x14\x59\x41\x28\xdf\x2f\xfa\xb0\x13\xdc\x74\xe3\x2f\x79\xcd\x68\x43\x1a\x41\xf4\xb9\xc3\x5a\x32\x65\xb6\x6e\x40\xe4\x15\xbf\x57\xd6\x89\x50\xb9\x37\x73\xf7\x99\x59\x29\xb3\x48\x50\xd4\xc6\xb8\xcf\x32\xb2\x81\xe8\x16\xb1\xbc\x4e\x99\x60\xd0\x7f\xb3\x18\x07\x7c\x1a\x26\xbc\x19\x7b\x43\x32\x65\x4a\xd2\xda\x87\x82\x8a\xfa\x64\x21\x55\xee\x8a\x31\x8b\x33\x10\x20\x40\xd8\x24\x4d\x70\x99\xd5\xb2\x41\x57\x36\xb6\x3a\xb1\x83\xc3\xf3\x55\x66\x1e\xc7\xd6\xd0\x29\x5c\x3b\x70\xa2\xd8\x42\x90\x8a\xaa\x4d\x31\x6f\xd8\xb4\xc8\x65\x59\x0a\xf5\xc2\xb3\xc1\x96\xee\x91\xc0\xe4\x30\xbb\x89\xcb\x2b\xa6\xf0\x4e\xc6\xe1\x7b\xb3\xc4\x6d\xee\x4a\xc6\x48\xa3\xc9\xd5\xb7\xf6\xef\x61\xd1\x7b\x60\x0b\xa4\x15\x76\x09\x14\x3a\x86\x42\x22\xe5\x7d\x96\x6e\x31\xdc\xa4\xc9\xf6\x7a\x63\xdc\x59\x20\xcb\x5c\x36\xce\x2f\xa1\x80\x76\xef\x16\xd0\x73\x2c\x59\xca\x1b\xc5\x2d\x46\x26\xc5\xed\x9e\x08\xd8\xe1\xde\x25\x78\x70\xef\x27\x3a\x1e\x0b\xef\x1f\x86\xca\x06\xd6\xfe\x08\xaf\xa4\x26\x6e\xc4\x3d\xbe\x9b\x70\xdd\x28\x99\xb1\x56\xaf\x95\x95\x2d\xa3\x84\xce\xff\x5b\x85\x24\x54\xf5\x16\x8a\xd6\x05\x72\x64\x03\x27\xf4\x89\x08\xe0\x66\x9e\x1e\xf1\x3d\xaf\x50\x76\x4a\xd2\xdc\x82\xb9\xb3\x28\x7d\x6b\xb3\x33\x9a\xcd\xea\x15\x20\xfe\x86\xb5\x59\xad\x43\x3d\x06\x5d\x81\xbb\x3e\x12\x9d\x18\xca\x8d\xfa\x75\x89\x51\xc3\x61\x08\xa5\x5f\xd1\xf3\xb2\x51\x26\xb2\xf1\x0e\xa2\x71\x51\xaa\x5e\x12\xaa\x87\x07\x95\x0b\x29\x73\x6e\x6f\xd5\x12\xdf\xc5\x5d\x19\xb4\xeb\xe8\x87\x84\x8b\x0a\x7a\x35\xd1\x66\x0a\x3b\x66\x35\xc2\x3b\x4b\x7f\x1c\x4f\x72\x06\x29\xd7\x2f\xc0\xfa\xba\x5f\xab\x78\xc1\x9d\x0a\x17\x74\x14\x2d\xe8\x9b\x3d\xfc\xa7\x1c\x59\x09\x0b\x67\xa4\x41\x08\x19\xfc\xe6\xa3\x2c\x19\xb5\xa2\x32\x06\x07\x86\x5f\x42\xd0\x07\x07\x61\x02\x5c\x07\xc7\x93\x77\x39\xdd\xdf\xff\x13\xae\xeb\x9e\x65\xf5\x7f\xf7\x47\x93\x3c\x92\xcf\x76\x17\x67\xb1\x2b\x2b\xad\xa6\x02\x61\x60\xb5\xeb\x3b\x69\xb2\xaa\x41\xc1\x81\x13\x8a\x81\xdb\x1e\x19\xe5\xca\x2e\xa1\xa7\x23\x9a\xc7\xa0\x54\xaa\xe7\x78\x92\xaf\xcc\xaf\x7e\xe1\xdf\x85\x94\x78\xff\x30\x61\x00\xc8\x30\xc4\x82\xad\x90\xc6\x83\x0b\x8f\x2f\x52\x12\x28\x0b\x19\xf4\xf6\x79\xd3\x5d\x75\x71\x5c\x12\x41\x50\xf3\x1e\xd6\xda\x9c\xf5\xf9\xa5\xf3\xc2\x72\xe3\x62\xd9\xaf\xf1\xc2\xd8\x47\x07\x82\x37\x5f\x80\x57\xa6\x22\x24\x10\x06\x56\xc0\xff\xfa\xd8\x21\x25\xd6\x03\x7f\x84\x6b\x7b\x2f\x99\x60\xa1\xbc\x84\x49\x3d\x05\x75\xf1\x90\x52\x6c\xc1\xe1\x6a\xa4\x46\x71\xb7\xe9\xdf\x63\x12\xfb\x8d\xfa\x20\x6b\x15\x56\x5d\xcd\x7f\xed\xae\x42\x9d\xd4\x5a\x28\x17\xf0\x0a\x81\x0f\x7b\x80\xa5\x19\x2d\xe5\x52\x94\x1a\x9a\xf5\xc9\x3d\x3c\x21\x8f\x27\xe4\xe8\x32\xae\xb4\x04\x9e\xc1\x99\x29\x24\x62\xee\x5b\xf5\xd5\x9e\x04\x9e\x0b\x51\xd7\x7c\x98\x2e\x69\xd4\xd8\x3c\xe7\x1e\x39\x5c\xdd\x8f\x2b\xff\x62\x4d\xf6\xfe\x4e\xa4\xdb\x45\xb5\x3f\x52\x4e\x89\x8b\xbe\xbf\xa2\x6b\x2d\xe6\xbd\x4a\x4f\x6b\x2d\x4e\x76\x56\x65\xb7\x1c\xb3\x91\x5a\xe0\x7b\x58\x51\xc6\xe3\x4f\x4b\xd6\x98\x9b\xd8\x46\x47\x4c\x18\x4c\xb3\x27\x02\x1c\x92\xef\x80\x57\xad\x09\xac\x96\x61\x9a\x6d\x20\x2b\xc0\x61\xb1\xa2\x6b\x32\xdd\xd9\x8b\x79\x43\x6d\x0a\xae\x58\xa5\xbf\xc2\xa2\xfe\xf0\xf2\x4a\xb3\x20\x62\x1e\x02\xb9\xc2\x14\xcb\x37\x3e\xd1\x31\xdb\x47\xfa\x43\x67\x33\x26\xe5\xc0\x26\x16\x1d\x23\xbf\xc6\xea\xbb\xef\xe8\xb9\x0a\xb9\xef\x73\x89\x8c\xc1\x8c\xb1\xfe\x5f\x51\x6d\x4e\xb2\x45\xcd\x3c\xb1\xd0\xb3\x34\x77\xbb\xe0\x6a\x83\x26\x19\x6f\x16\xa3\x7e\x94\x57\xa9\x12\x38\x21\xb6\x8e\x49\x09\x55\xa3\x92\xdb\x93\xdc\x96\x6a\xcc\x8a\x24\xca\x08\xcd\x17\x50\xab\x46\xf1\x95\xb6\xc4\x43\x15\x92\x4b\xab\xbf\xc5\x45\xe3\x4c\x24\x86\x2f\x9a\xa8\x86\xac\x3d\x49\xe2\x1a\x66\xa8\xeb\x53\xac\xdf\xd9\x98\x52\x3b\x58\x8e\x13\x97\xfb\xbb\x1e\x1a\x60\x45\xe6\x58\x58\xe6\x02\x69\x3c\x26\x7f\xa1\x2d\x87\x9c\x28\xc9\x7f\x0e\xef\x2e\x27\x2b\x87\xc2\x4f\xf6\x13\x3d\x39\xac\x0d\xc9\xbf\xff\xed\x24\x80\xf4\xaf\x0a\x78\xbf\xa2\x0a\x78\x99\xf1\x6f\x8b\x6a\xa3\xdc\x4e\x0f\xeb\xa8\xb9\xad\x19\xee\x31\x3e\x09\xd0\x4f\x0e\x37\x80\x6b\xcf\xb6\xa4\x04\x5d\xd7\xd3\x02\x45\x1c\xba\x70\xeb\xae\x44\x9b\x9c\x57\xf9\xa3\x03\x01\x0f\x44\x1d\xb1\x7c\xb8\xfb\xd1\x55\x11\xbf\xf3\xc4\x0e\x28\xf4\x5d\xf4\x62\xb8\xf4\x50\x10\x73\x08\xe5\x5b\xad\xf7\xfc\x62\x35\x59\xc3\xae\xb7\xf4\x72\x74\xf0\xf0\x97\x79\x3b\x92\x84\xba\xec\xb0\x78\x07\x10\xde\x77\x13\xf7\xb2\xeb\x44\xec\x20\x72\x24\xec\x0f\x71\x9e\x5a\xe7\xa0\xc0\x52\xd3\x81\x68\x4d\xce\x8d\x8d\x34\x65\xe4\xb8\x0c\x1f\x59\x6b\xb9\xf3\x49\x1e\xb0\x74\x9d\xa5\x6c\x9d\xe6\x92\xf9\xda\xbb\xe4\x5d\x4f\x29\xdb\xdb\x03\x3b\xb0\x6c\x2f\xea\x61\xa8\x5c\xac\x4a\x83\x1c\xc6\x82\xe4\x32\x5d\x95\x61\xaa\xf9\xb9\xf5\x28\x0a\xfe\x12\x77\x76\x72\x4a\xbf\x17\xb7\x5c\x9e\xb7\xa3\xfa\xa8\x71\xed\x6a\x22\x47\xe2\x14\x46\x08\x1e\x74\xb3\xaf\x3e\xe5\xcf\xd1\xb9\x47\xe0\x82\x41\xbb\x9e\xab\xe3\x73\xf2\x10\x65\x68\xd7\xd4\x46\x36\xf2\xf2\x27\xb6\x1b\x64\x88\x95\x2a\x7f\xed\x81\x17\x3e\xdc\x98\xc1\x1b\x1a\xc1\xfd\xb8\x50\x1b\xd5\xec\x72\xd7\x22\x6c\xf0\xb9\x4b\x1c\x74\xe2\xf1\x2e\x1b\xfb\x7d\xd7\x75\x3d\x5a\x55\xd7\xe2\x50\x29\xe1\xf4\x3a\x49\xbe\xeb\xd6\xff\xef\x28\x2c\xfe\xb5\xf7\xc7\x7d\x5b\xb5\x7f\xc1\xbe\x68\xb3\xfe\xe2\x9b\xf4\xab\xee\x52\x5b\x06\x00\x8a\x98\x6a\x63\x7f\xce\xb5\x02\xee\x93\xd0\x5c\xd7\x87\x47\xdd\xfb\xec\xd6\x1b\xcc\x29\x6c\xb7\xd9\x94\x91\x36\x17\x6c\xd0\x90\xd7\xfe\x55\xa6\xfe\xd7\x5b\xa6\xfe\x10\xcf\xd6\xc3\xb2\xea\x17\xed\x0a\x8c\x18\x91\x09\x39\x0a\x65\xb7\x15\xb3\x46\xdc\x58\x15\x01\x95\xd5\x87\xa9\xef\xab\xe0\xb2\xca\xc6\x8c\x1e\x26\xce\x6b\xcd\x97\xea\x42\x86\xa6\x6c\xc5\xaa\x6b\x61\x6e\x78\x22\xf0\xaf\x55\xb4\xbe\xbb\xc6\x6b\x36\x29\x72\x92\xbe\x06\xdd\xbf\x8f\x3b\xda\x27\x96\x57\x17\xd4\xdc\xcc\xfb\x2e\x77\x03\x5a\x3f\xf1\x7d\xdd\x85\x33\xe0\xec\x6d\x3c\xb8\x72\x47\x6b\xfb\xe4\x65\x54\xc5\xf9\xde\x47\x7d\x50\x5c\x0e\x78\x56\xcb\x60\x11\xbc\xa4\x97\x3c\x6a\x04\x24\x4b\x1f\x68\x79\x1c\xff\xec\xae\x75\xc4\x14\xc7\x35\xb1\x69\xb1\xc5\x9f\xd2\x2a\xbf\x6e\x81\xdc\x33\x83\xdf\xe5\xbf\xd9\x47\xbc\x92\x9f\x20\xb7\xe2\x6a\xb3\x5e\xd7\x3b\x40\x31\x12\xb4\x1b\xfb\x78\x4d\x7c\xf3\x2f\xad\x6e\x17\x05\x39\xf0\x41\x14\xdf\x21\x7c\x0b\x25\xbc\x7f\x87\xb5\xec\xc6\x06\xd6\x38\xad\x0f\x7d\x1c\x61\xe2\xca\x6e\x9a\x50\xd3\x8c\xae\x29\xd6\xf7\x71\xd9\xc2\x85\xc2\x1e\x11\x5e\x35\x6f\x3e\x3c\xf9\xe6\x53\xb9\x0e\xf5\xe7\xdf\x0f\xc6\x08\x3a\x43\x64\x48\x14\x6d\x17\x4c\x1d\x8c\xeb\x1b\x73\x6d\x04\x76\x60\x7b\x20\xbd\xb2\x67\x63\xa2\xc7\x62\xdc\xc8\x66\x23\xc0\x8f\xc1\xa8\x20\xaf\x9e\x1b\x5e\xf4\xec\x59\xb9\x5b\x8e\x9f\x1f\xfc\xbf\x00\x00\x00\xff\xff\x03\x73\x5c\xec\xd2\x17\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{0xf8, 0x50, 0x6a, 0x6c, 0x4, 0x5a, 0xf7, 0xd9, 0xea, 0xb0, 0xfa, 0x64, 0x96, 0x2b, 0x2f, 0xbf, 0xad, 0xf5, 0x80, 0xfa, 0xdd, 0x59, 0x3, 0x3f, 0x13, 0x37, 0xc5, 0xa9, 0xad, 0xe1, 0xc1, 0x9a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0xc7, 0x42, 0x56, 0xfb, 0x73, 0x12, 0xc4, 0x4c, 0x4b, 0x36, 0xf4, 0x17, 0xa3, 0x40, 0x62, 0x56, 0x29, 0xa6, 0x85, 0xe3, 0x26, 0xe9, 0x5d, 0x2f, 0x36, 0xd2, 0x6a, 0xef, 0xb4, 0x9f, 0x48}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index b289b088..71fc0d7e 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -49,6 +49,7 @@ // ../../../transactions/marketV3/start_sale.cdc (829B) // ../../../transactions/marketV3/stop_sale.cdc (1.34kB) // ../../../transactions/marketV3/upgrade_sale.cdc (1.463kB) +// ../../../transactions/scripts/collections/borrow_nft_safe.cdc (1.027kB) // ../../../transactions/scripts/collections/get_collection_ids.cdc (742B) // ../../../transactions/scripts/collections/get_id_in_Collection.cdc (690B) // ../../../transactions/scripts/collections/get_locked_nfts_length.cdc (255B) @@ -1145,6 +1146,26 @@ func TransactionsMarketv3Upgrade_saleCdc() (*asset, error) { return a, nil } +var _TransactionsScriptsCollectionsBorrow_nft_safeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6e\xdb\x3c\x10\x84\xef\x7a\x8a\xf9\x2f\x3f\x6c\x20\xb0\x7a\x28\x7a\x30\x9a\x02\x69\x5c\xa3\x39\xd4\x09\x62\x15\xbd\x66\x45\xad\x24\xa2\xf4\x52\x20\x29\x2b\x46\x90\x77\x2f\x48\xc9\x76\x9d\xa0\xbe\x58\x58\x2e\xbf\x99\x9d\xa5\xde\x75\xd6\x05\x14\xb6\xdb\xb6\x36\xa0\x76\x76\x87\x0f\xcf\xc5\xfd\xc3\xf6\xfb\x7d\x71\xb3\x5a\x3d\x7e\xdb\x6e\xb3\xa9\x69\x63\x65\xdd\x4b\xa3\x4b\xc3\x85\xfd\xcd\x72\xec\xde\xac\x4f\x9d\x59\x9e\xa3\x68\xb5\x87\xf6\x20\x78\xe5\x74\x17\x10\x2c\x1a\x0e\x20\x94\xd6\x1a\x26\xc1\x9e\x4c\xcf\xf0\x54\xb3\x39\xc4\x53\xcf\x0c\x5d\x83\xb0\xb3\x3b\x96\x00\x7e\xd6\x3e\x78\x68\x01\x41\x59\x63\x58\x05\x6d\x25\xb2\x7f\x31\xf8\xb9\x63\x15\x10\xa2\xca\xa0\x8d\x81\xd8\x80\x8e\x44\xab\xc8\x08\x2d\x63\xb3\x2e\xa2\x7e\xac\x6b\x49\x95\x4b\xc8\x6d\x4b\xd2\x70\x3a\x78\x22\xa5\x6c\x2f\xe1\x29\xda\x18\x5a\x0a\xbc\x67\x87\xa9\x88\x83\xed\x31\x90\x84\x78\x89\xa4\x02\x79\x18\x2b\x4d\xfc\x0f\x2d\x1f\xd0\xd2\x9e\x41\xe8\xfa\xd2\x68\xdf\x72\x85\xdb\x93\x0e\x1c\x2b\xd6\x7b\x76\x57\x89\xa2\x48\x10\x29\x31\x07\xc7\x35\x3b\x16\xc5\x51\x73\xf2\x3b\x01\xed\x20\x8b\x94\xe1\x03\x39\xda\x71\x60\xe7\x97\x59\x9e\x27\xfd\xd1\xd3\x12\x45\xcb\x58\x1b\x3b\xe0\xa6\xaa\x1c\x7b\x0f\x3b\x4e\x7d\x34\x3d\xb4\xd6\xf3\x31\xc9\x8a\x02\x41\x98\x2b\x1f\xc5\x4a\x86\x63\xaa\x22\x4e\xea\x70\xb7\x1a\x61\x77\xab\x23\x22\x06\x17\x2c\x1c\x87\xde\x49\xf2\xf1\x98\x3e\xfd\x12\x5f\x2f\x56\xa7\xa5\xd2\x8a\x82\x96\xe6\x4d\xe6\xef\xf3\xce\xba\xbe\x44\xdd\x0b\x76\xa4\x65\x76\x9a\x62\x32\x7f\x75\x34\xf2\xf3\x4e\xc2\xa7\x8f\x98\x8f\x4a\x78\xc9\x32\x00\x30\xf1\xd9\x28\x15\x70\x1d\x93\xbb\x19\x2f\x1f\x21\xf3\x73\xcf\x59\xef\x91\x6b\x5c\xa7\x3b\x8b\x86\xc3\x2d\x75\x54\x6a\xa3\xc3\x61\x96\xa7\x2d\xa9\xfc\x47\x0a\xe6\xbc\xa8\x79\x82\xfc\xeb\xb7\x28\xad\x73\x76\xf8\xfc\xff\xcb\xdb\xc7\xbf\x38\x23\x1e\x12\xf9\xf5\xcb\x6c\xfe\xdf\xd9\x92\xed\xe2\x11\x99\x18\xcc\xf5\xa5\xc1\x09\xba\x59\x17\x5b\xaa\x79\xa6\xab\xe5\x98\xc2\x34\x50\x9e\x9f\x2e\xa3\x8c\x49\x4b\x93\xea\xba\x4e\x60\xa9\x63\x1c\x7f\xe3\x5f\x4e\x23\x8c\x9b\x43\x70\x3d\xa7\xda\x2b\xd8\x78\x7e\xdf\x50\x93\xf1\x53\x47\xf6\xfa\x27\x00\x00\xff\xff\xfb\x21\xd9\xc0\x03\x04\x00\x00" + +func TransactionsScriptsCollectionsBorrow_nft_safeCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsScriptsCollectionsBorrow_nft_safeCdc, + "../../../transactions/scripts/collections/borrow_nft_safe.cdc", + ) +} + +func TransactionsScriptsCollectionsBorrow_nft_safeCdc() (*asset, error) { + bytes, err := TransactionsScriptsCollectionsBorrow_nft_safeCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/scripts/collections/borrow_nft_safe.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xe2, 0x5f, 0x10, 0x65, 0xde, 0x2b, 0xd, 0x78, 0xbf, 0x92, 0x4c, 0x8b, 0x2d, 0x7f, 0x29, 0x39, 0x4a, 0xca, 0xdf, 0x7f, 0x4b, 0x96, 0xf2, 0xd2, 0xd2, 0x7c, 0x95, 0x71, 0x49, 0x72, 0x67}} + return a, nil +} + var _TransactionsScriptsCollectionsGet_collection_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x8b\xd3\x40\x10\xc7\xdf\xf3\x29\xfe\xbe\x68\x03\xd2\xf8\x20\x3e\x1c\x9e\x50\xae\x8a\x27\xc8\x95\x36\x3e\x89\x70\x93\xcd\x34\xbb\xb0\xd9\x0d\xbb\x93\xc6\x72\xdc\x77\x97\xdd\xe6\xda\x53\xd4\xbc\x84\x24\x33\xbf\xf9\xcd\x3f\x6b\xfa\xc1\x07\x41\xed\x87\x9d\xf6\x82\x7d\xf0\x3d\xde\xfc\xac\xef\x36\xbb\xcf\x77\xf5\x6a\xbd\xde\x7e\xdc\xed\x8a\xa2\xaa\x50\x6b\x13\x61\x22\x44\x33\xa2\x0a\x66\x10\x88\x47\xc7\x02\x82\x35\x51\xe0\xf7\x20\x6b\xf3\xf7\xde\xf7\xec\x24\xbe\x82\x69\x23\xc8\x81\x94\xf2\xa3\x13\xf8\xc9\xc5\xc4\xfa\x32\x46\x81\xd2\xe4\x3a\xce\xf5\x14\xba\x31\x75\x24\xe2\x7d\xc7\xb2\x3a\xd5\xdf\xa7\xe7\x49\x93\xf0\x81\xc3\x19\x72\xf4\x23\x26\x72\x92\x40\xe4\x5a\x50\x84\xf5\xae\x4b\x77\xd1\x7c\x84\xa6\x03\x83\x30\x8c\x8d\x35\x51\x73\x8b\x1b\x6f\x2d\x2b\x31\xde\x21\xb0\x62\x73\xe0\xf0\x3a\x53\x14\x39\x44\xe6\x04\x7a\x66\x7d\xa2\xf8\xc9\x2d\xf3\xde\x1b\x0a\xd4\xb3\x70\x88\x57\x45\x55\xe5\xa1\x27\x91\x2b\xd4\x9a\xf1\xc9\xfa\x09\xab\xb6\x0d\x1c\x63\x8a\x20\xaf\x33\x9b\x4e\xda\xc7\x27\x2c\x5a\x12\x82\x63\x6e\x63\xda\xaa\x61\x04\xa6\x36\x4f\xd8\xb2\x8c\xc1\xc5\x2b\x7c\xff\x76\xeb\xe4\xdd\xdb\x1f\xe9\xe5\xf3\x48\xff\x1b\x67\x31\x8c\x0d\xf6\xa3\x43\x4f\xc6\x2d\xce\x6e\xb3\x52\x79\xa1\xe2\xa1\x28\x00\xc0\xa6\x5f\xa6\x94\xe0\x1a\x97\xa8\x9f\x1a\xcb\x4b\x8d\x3a\xc7\xb6\xe5\x3d\xae\x73\xcf\xb2\x63\xb9\xa1\x81\x1a\x63\x8d\x1c\x17\x55\x0e\x59\x55\x5f\xb3\xe0\x25\xe7\x32\x43\xfe\x75\x2d\x1b\x1f\x82\x9f\xde\xbf\x7c\x98\x4f\xdd\xf2\xcf\xfe\x4d\xc6\x3e\x7e\x58\x94\x2f\x66\x1f\xdf\x2d\x7e\xf3\x49\x22\xb7\xeb\xb8\x28\x67\xe1\x90\x33\xc4\xdf\x6b\x8a\xc7\x5f\x01\x00\x00\xff\xff\x84\xa0\xfd\x5c\xe6\x02\x00\x00" func TransactionsScriptsCollectionsGet_collection_idsCdcBytes() ([]byte, error) { @@ -2225,6 +2246,7 @@ var _bindata = map[string]func() (*asset, error){ "../../../transactions/marketV3/start_sale.cdc": TransactionsMarketv3Start_saleCdc, "../../../transactions/marketV3/stop_sale.cdc": TransactionsMarketv3Stop_saleCdc, "../../../transactions/marketV3/upgrade_sale.cdc": TransactionsMarketv3Upgrade_saleCdc, + "../../../transactions/scripts/collections/borrow_nft_safe.cdc": TransactionsScriptsCollectionsBorrow_nft_safeCdc, "../../../transactions/scripts/collections/get_collection_ids.cdc": TransactionsScriptsCollectionsGet_collection_idsCdc, "../../../transactions/scripts/collections/get_id_in_Collection.cdc": TransactionsScriptsCollectionsGet_id_in_collectionCdc, "../../../transactions/scripts/collections/get_locked_nfts_length.cdc": TransactionsScriptsCollectionsGet_locked_nfts_lengthCdc, @@ -2383,6 +2405,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "scripts": {nil, map[string]*bintree{ "collections": {nil, map[string]*bintree{ + "borrow_nft_safe.cdc": {TransactionsScriptsCollectionsBorrow_nft_safeCdc, map[string]*bintree{}}, "get_collection_ids.cdc": {TransactionsScriptsCollectionsGet_collection_idsCdc, map[string]*bintree{}}, "get_id_in_Collection.cdc": {TransactionsScriptsCollectionsGet_id_in_collectionCdc, map[string]*bintree{}}, "get_locked_nfts_length.cdc": {TransactionsScriptsCollectionsGet_locked_nfts_lengthCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/topshot_script_templates.go b/lib/go/templates/topshot_script_templates.go index 15653984..28207d07 100644 --- a/lib/go/templates/topshot_script_templates.go +++ b/lib/go/templates/topshot_script_templates.go @@ -39,6 +39,7 @@ const ( momentSerialNumFilename = "collections/get_moment_serialNum.cdc" momentSetNameFilename = "collections/get_moment_setName.cdc" getSetPlaysAreOwnedFilename = "collections/get_setplays_are_owned.cdc" + borrowNFTSafeFilename = "collections/borrow_nft_safe.cdc" // metadata scripts getNFTMetadataFilename = "get_nft_metadata.cdc" @@ -265,3 +266,9 @@ func GenerateGetSubeditionByIDScript(env Environment) []byte { return []byte(replaceAddresses(code, env)) } + +func GenerateBorrowNFTSafeScript(env Environment) []byte { + code := assets.MustAssetString(scriptsPath + borrowNFTSafeFilename) + + return []byte(replaceAddresses(code, env)) +} diff --git a/lib/go/test/borrowNFT_test.go b/lib/go/test/borrowNFT_test.go new file mode 100644 index 00000000..5280b954 --- /dev/null +++ b/lib/go/test/borrowNFT_test.go @@ -0,0 +1,109 @@ +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/crypto" + + "github.com/onflow/flow-go-sdk" + "github.com/stretchr/testify/assert" +) + +func TestBorrowNFTSafe(t *testing.T) { + tb := NewTopShotTestBlockchain(t) + tb.genericBootstrapping(t) // TODO: Should be able to find a codeGen/declarative way to set things up + b := tb.Blockchain + env := tb.env + + t.Run("Should return non nil if the moment id in the collection", func(t *testing.T) { + for _, momentID := range []uint64{1, 2} { + r, err := b.ExecuteScript(templates.GenerateBorrowNFTSafeScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(tb.userAddress)), jsoncdc.MustEncode(cadence.UInt64(momentID))}) + assert.NoError(t, err) + assert.NoError(t, r.Error) + expectedValue := cadence.NewBool(true) + assert.Equal(t, expectedValue, r.Value) + } + }) + + t.Run("Should return nil/empty optional if the moment does not exist in the collection", func(t *testing.T) { + r, err := b.ExecuteScript(templates.GenerateBorrowNFTSafeScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(tb.userAddress)), jsoncdc.MustEncode(cadence.UInt64(3))}) + assert.NoError(t, err) + assert.NoError(t, r.Error) + expectedValue := cadence.NewBool(false) + assert.Equal(t, expectedValue, r.Value) + }) +} + +// genericBootstrapping should get us the blockchain in a state where we can run interesting tests against it +// will need to likely expose more of the generated ids for this to be generally useful +func (tb *topshotTestBlockchain) genericBootstrapping(t *testing.T) { + b := tb.Blockchain + serviceKeySigner := tb.serviceKeySigner + topshotAddr := tb.topshotAdminAddr + accountKeys := tb.accountKeys + topshotSigner := tb.topshotAdminSigner + env := tb.env + + // Create a new user account + joshAccountKey, joshSigner := accountKeys.NewWithSigner() + joshAddress, _ := b.CreateAccount([]*flow.AccountKey{joshAccountKey}, nil) + tb.userAddress = joshAddress + // Create moment collection + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateSetupAccountScript(env), joshAddress) + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, joshAddress}, []crypto.Signer{serviceKeySigner, joshSigner}, + false, + ) + + firstName := CadenceString("FullName") + lebron := CadenceString("Lebron") + hayward := CadenceString("Hayward") + antetokounmpo := CadenceString("Antetokounmpo") + + // Create plays + lebronPlayID := uint32(1) + haywardPlayID := uint32(2) + antetokounmpoPlayID := uint32(3) + + for _, metadata := range [][]cadence.KeyValuePair{ + {{Key: firstName, Value: lebron}}, + {{Key: firstName, Value: hayward}}, + {{Key: firstName, Value: antetokounmpo}}, + } { + tb.CreatePlay(t, metadata) + } + + // Create Set + genesisSetID := uint32(1) + tb.CreateSet(t, "Genesis") + + // Add plays to Set + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateAddPlaysToSetScript(env), topshotAddr) + + _ = tx.AddArgument(cadence.NewUInt32(genesisSetID)) + + plays := []cadence.Value{cadence.NewUInt32(lebronPlayID), cadence.NewUInt32(haywardPlayID), cadence.NewUInt32(antetokounmpoPlayID)} + _ = tx.AddArgument(cadence.NewArray(plays)) + + signAndSubmit( + t, b, tx, + []flow.Address{b.ServiceKey().Address, topshotAddr}, []crypto.Signer{serviceKeySigner, topshotSigner}, + false, + ) + + // Mint two moments to joshAddress + tb.MintMoment(t, genesisSetID, lebronPlayID, joshAddress) + tb.MintMoment(t, genesisSetID, haywardPlayID, joshAddress) + + //check that moments with ids 1 and 2 exist in josh's collection + 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) + result = executeScriptAndCheck(t, b, templates.GenerateIsIDInCollectionScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(joshAddress)), jsoncdc.MustEncode(cadence.UInt64(2))}) + assert.Equal(t, cadence.NewBool(true), result) +} diff --git a/lib/go/test/topshot_test.go b/lib/go/test/topshot_test.go index e1142d3e..578aacda 100644 --- a/lib/go/test/topshot_test.go +++ b/lib/go/test/topshot_test.go @@ -44,6 +44,8 @@ type topshotTestBlockchain struct { serviceKeySigner crypto.Signer topshotAdminSigner crypto.Signer accountKeys *test.AccountKeys + + userAddress flow.Address } func NewTopShotTestBlockchain(t *testing.T) topshotTestBlockchain { @@ -141,7 +143,13 @@ func NewTopShotTestBlockchain(t *testing.T) topshotTestBlockchain { env.ShardedAddress = shardedAddr.String() - return topshotTestBlockchain{b, env, topshotAddr, serviceKeySigner, topshotSigner, accountKeys} + return topshotTestBlockchain{ + Blockchain: b, + env: env, + topshotAdminAddr: topshotAddr, + serviceKeySigner: serviceKeySigner, + topshotAdminSigner: topshotSigner, + accountKeys: accountKeys} } // This test is for testing the deployment the topshot smart contracts @@ -762,7 +770,14 @@ func TestTransferAdmin(t *testing.T) { ) }) - tb := topshotTestBlockchain{b, env, adminAddr, serviceKeySigner, adminSigner, accountKeys} + tb := topshotTestBlockchain{ + Blockchain: b, + env: env, + topshotAdminAddr: adminAddr, + serviceKeySigner: serviceKeySigner, + topshotAdminSigner: adminSigner, + accountKeys: accountKeys, + } // can create a new play with the new admin t.Run("Should be able to create a new Play with the new Admin account", func(t *testing.T) { tb.CreatePlay(t, []cadence.KeyValuePair{{Key: firstName, Value: lebron}}) diff --git a/transactions/scripts/collections/borrow_nft_safe.cdc b/transactions/scripts/collections/borrow_nft_safe.cdc new file mode 100644 index 00000000..c76417b3 --- /dev/null +++ b/transactions/scripts/collections/borrow_nft_safe.cdc @@ -0,0 +1,32 @@ +import TopShot from 0xTOPSHOTADDRESS +import NonFungibleToken from 0xNFTADDRESS + +// This is a script to get a boolean value safely to see if a moment exists in a collection +// We expect this will not panic if the NFT is not in the collection +// Change the `account` to whatever account you want +// and as long as they have a published Collection receiver, you can +// get reference to the NFTs they own. + +// Parameters: +// +// account: The Flow Address of the account whose moment data needs to be read +// nftID: The ID of the NFT to return + +// Returns: Boolean value indicating if the NFT is in the collection + +pub fun main(account: Address, nftID: UInt64 ): Bool { + + let acct = getAccount(account) + + let collectionRef = acct.getCapability(/public/MomentCollection) + .borrow<&{NonFungibleToken.CollectionPublic}>()! + + let optionalNFT = collectionRef.borrowNFTSafe(id: nftID) + + // optional binding + if let nft = optionalNFT { + return true + } else { + return false + } +} \ No newline at end of file