ERC-721
Overview
Max Total Supply
3,006 Abstract_Penguins
Holders
1,538
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 Abstract_PenguinsLoading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Abstract_Penguins
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.9;// _// ('v')// //-=-\\// (\_=_/)// ^^ ^^// _// ('v')// //-=-\\// (\_=_/)// ^^ ^^// _// ('v')// //-=-\\// (\_=_/)// ^^ ^^// _// ('v')// //-=-\\// (\_=_/)// ^^ ^^// _// ('v')
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.9;import 'contracts/IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.9;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Trees proofs.** The proofs can be generated using the JavaScript library* https://github.com/miguelmota/merkletreejs[merkletreejs].* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.** See `test/utils/cryptography/MerkleProof.test.js` for some examples.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
12345678910111213141516171819202122{"evmVersion": "paris","optimizer": {"enabled": true,"mode": "3"},"outputSelection": {"*": {"*": ["abi","metadata"],"": ["ast"]}},"detectMissingLibraries": false,"forceEVMLA": false,"enableEraVMExtensions": true,"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_FREE_SUPPLY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PAID_SUPPLY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWlMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMintedPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicPaidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003d72352f6ff7aa8c541bbd765ddc0c01b38dc027a2a940b4e8649f8820c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000060f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b88300000000000000000000000013090e34b80be53e592f148fab7b7382db6bee190000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966726b6761327375796c63747336366265766a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a32342f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000600000000000200000060031002700000033f03300197000200000031035500010000000103550000008004000039000000400040043f0000000100200190000000300000c13d000000040030008c000008840000413d000000000201043b000000e0022002700000035d0020009c000000c10000a13d0000035e0020009c000000e00000213d0000036c0020009c000001000000213d000003730020009c000001720000a13d000003740020009c000002660000613d000003750020009c000002750000613d000003760020009c000008840000c13d000000240030008c000008840000413d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f00000004010000390000000101100367000000000101043b0000000e02000039000000000012041b000000000100001900000cf90001042e0000000002000416000000000002004b000008840000c13d0000001f0230003900000340022001970000008002200039000000400020043f0000001f0530018f00000341063001980000008002600039000000400000613d000000000701034f000000007807043c0000000004840436000000000024004b0000003c0000c13d000000000005004b0000004d0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000008840000413d000000800200043d000003420020009c000008840000213d0000001f01200039000000000031004b000000000400001900000343040080410000034301100197000000000001004b00000000050000190000034305004041000003430010009c000000000504c019000000000005004b000008840000c13d00000080012000390000000001010433000003420010009c000006240000213d0000001f04100039000003c7044001970000003f04400039000003c704400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000003420040009c000006240000213d0000000100500190000006240000c13d0000008003300039000000400040043f000600000006001d0000000004160436000400000004001d000000a0022000390000000004210019000000000034004b000008840000213d000000000001004b0000000406000029000000830000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000007c0000413d000000060110002900000020011000390000000000010435000000c00100043d000300000001001d000003440010009c000008840000213d000000400400043d000003450040009c000006240000213d000000a00b00043d0000004001400039000000400010043f0000001102000039000000000624043600000346030000410000000000360435000000400100043d000003450010009c000006240000213d0000004005100039000000400050043f000000000221043600000000003204350000000005040433000003420050009c000006240000213d0000000203000039000000000703041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000003640000c13d000000200070008c000000b90000413d000000000030043f0000001f085000390000000508800270000003470880009a000000200050008c00000348080040410000001f077000390000000507700270000003470770009a000000000078004b000000b90000813d000000000008041b0000000108800039000000000078004b000000b50000413d0000001f0050008c000005be0000a13d000000000030043f000003c708500198000006080000c13d00000020070000390000034806000041000006140000013d000003790020009c000000f10000a13d0000037a0020009c0000011b0000213d000003810020009c000001860000a13d000003820020009c0000028e0000613d000003830020009c000003070000613d000003840020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f0000000c01000039000000000201041a000003c803200197000000ff0020019000000001033061bf000000000031041b000000000100001900000cf90001042e0000035f0020009c000001280000213d000003660020009c000001910000a13d000003670020009c000003130000613d000003680020009c0000031a0000613d000003690020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000039d01000041000000800010043f000003940100004100000cf90001042e000003870020009c0000014d0000a13d000003880020009c000001d80000a13d000003890020009c0000033b0000613d0000038a0020009c000003460000613d0000038b0020009c000008840000c13d00000000010300190cf808eb0000040f0cf809620000040f000000000100001900000cf90001042e0000036d0020009c000001e10000a13d0000036e0020009c0000034d0000613d0000036f0020009c000003560000613d000003700020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f0000000c01000039000000000201041a000003c9032001970000ff000020019000000100033061bf000000000031041b000000000100001900000cf90001042e0000037b0020009c000001f30000a13d0000037c0020009c0000036a0000613d0000037d0020009c0000037a0000613d0000037e0020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000c01000039000003e20000013d000003600020009c000001fe0000a13d000003610020009c0000039f0000613d000003620020009c000003ba0000613d000003630020009c000008840000c13d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000601043b000003440060009c000008840000213d0000000801000039000000000201041a00000344032001970000000005000411000000000053004b000004e40000c13d000000000006004b000005840000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000035a01000041000000c40010043f0000035901000041000000e40010043f000003930100004100000cfa000104300000038e0020009c000002090000213d000003910020009c000003bf0000613d000003920020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000003640000c13d000000800010043f000000000004004b000005220000613d000000000030043f000000000001004b0000000002000019000005270000613d00000348030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000016a0000413d000005270000013d000003770020009c000003d30000613d000003780020009c000008840000c13d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b0cf80c4c0000040f0000034401100197000000400200043d00000000001204350000033f0020009c0000033f02008041000000400120021000000395011001c700000cf90001042e000003850020009c000003e90000613d000003860020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000115c01000039000000800010043f000003940100004100000cf90001042e0000036a0020009c000003f10000613d0000036b0020009c000008840000c13d000000440030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000202043b000600000002001d000003440020009c000008840000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000008840000c13d0000000001000411000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c8022001970000000503000029000000000232019f000000000021041b000000400100043d00000000003104350000033f0010009c0000033f01008041000000400110021000000000020004140000033f0020009c0000033f02008041000000c002200210000000000112019f0000039e011001c70000800d0200003900000003030000390000039f0400004100000000050004110000000606000029000002890000013d0000038c0020009c000004570000613d0000038d0020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000901000039000003ed0000013d000003710020009c0000045e0000613d000003720020009c000008840000c13d0000000c01000039000000000101041a0000ff0000100190000004da0000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001a01000039000000a40010043f000003a501000041000000c40010043f000003a60100004100000cfa000104300000037f0020009c000004700000613d000003800020009c000008840000c13d0000000001000416000000000001004b000008840000c13d00000bb801000039000000800010043f000003940100004100000cf90001042e000003640020009c000004780000613d000003650020009c000008840000c13d0000000001000416000000000001004b000008840000c13d000002bc01000039000000800010043f000003940100004100000cf90001042e0000038f0020009c000004b30000613d000003900020009c000008840000c13d000000440030008c000008840000413d0000000402100370000000000202043b000500000002001d000003440020009c000008840000213d00000080020000390000002401100370000000000301043b000000000003004b000005380000613d000000000100041a000000000031004b000005380000a13d000400000003001d000000000030043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a0000039600100198000005c90000c13d000000000001004b000002430000c13d000600040000002d0000000601000029000000010110008a000600000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000000001004b000002300000613d000603440010019b0000000002000411000000060020006c000006780000c13d0000000401000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d00000005020000290000034406200197000000000101043b000000000201041a0000034d02200197000000000262019f000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003bf0400004100000006050000290000000407000029000002890000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000001004b0000053a0000c13d000003b201000041000000800010043f000003ac0100004100000cfa000104300000000001000416000000000001004b000008840000c13d0000000801000039000000000201041a00000344032001970000000005000411000000000053004b000004e40000c13d0000034d02200197000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f0400004100000000060000190cf80cee0000040f0000000100200190000008840000613d000000000100001900000cf90001042e000000240030008c000008840000413d0000000402100370000000000202043b000003420020009c000008840000213d0000002304200039000000000034004b000008840000813d000400040020003d0000000401100360000000000101043b000600000001001d000003420010009c000008840000213d000000240120003900000006020000290000000502200210000300000001001d000500000002001d000200000012001d000000020030006b000008840000213d00000000010004110000006001100210000000a00010043f0000001401000039000000800010043f000000c001000039000000400010043f00000000010004140000033f0010009c0000033f01008041000000c001100210000003b6011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000e02000039000000000402041a000000000101043b00000005020000290000003f02200039000003b702200197000000400300043d0000000002230019000500000003001d000000000032004b00000000030000390000000103004039000003420020009c000006240000213d0000000100300190000006240000c13d000100000004001d000000400020043f000000050200002900000006040000290000000003420436000000000004004b000002fa0000613d000000040200002900000020022000390000000102200367000400000003001d00000003050000290000000206000029000000002402043c00000000034304360000002005500039000000000065004b000002d20000413d00000005020000290000000002020433000000000002004b000002fa0000613d00000000040000190000000403000029000600000004001d000000050240021000000000023200190000000002020433000000000021004b000002e70000a13d000000000020043f000000200010043f0000000001000414000002ea0000013d000000000010043f000000200020043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b0000000604000029000000010440003900000005020000290000000002020433000000000024004b0000000403000029000002dd0000413d000000010010006c000006710000c13d0000000c01000039000000000101041a000000ff00100190000007490000c13d000000400100043d0000004402100039000003bd03000041000000000032043500000024021000390000001103000039000008040000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000010043f0000000f01000039000003de0000013d0000000001000416000000000001004b000008840000c13d000001bc01000039000000800010043f000003940100004100000cf90001042e000000840030008c000008840000413d0000000402100370000000000202043b000600000002001d000003440020009c000008840000213d0000002402100370000000000202043b000500000002001d000003440020009c000008840000213d0000006402100370000000000402043b000003420040009c000008840000213d0000002302400039000000000032004b000008840000813d0000000402400039000000000121034f000000000201043b00000024014000390cf8092a0000040f00000044020000390000000102200367000000000302043b0000000004010019000000060100002900000005020000290cf80a780000040f000000000100001900000cf90001042e0000000001000416000000000001004b000008840000c13d0000000101000039000000000101041a000003ca01100167000000000200041a0000000001120019000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000c01000039000000000101041a0000ff0000100190000003e40000013d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a0000034401100197000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000004f40000613d000003bb01000041000000000010043f0000002201000039000000040010043f000003bc0100004100000cfa0001043000000000010300190cf808eb0000040f000600000001001d000500000002001d000400000003001d000000400100043d000300000001001d0cf8090d0000040f000000030400002900000000000404350000000601000029000000050200002900000004030000290cf80a780000040f000000000100001900000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000600000001001d000003440010009c000008840000213d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000004e40000c13d000003b30100004100000000001004430000000001000410000000040010044300000000010004140000033f0010009c0000033f01008041000000c001100210000003b4011001c70000800a020000390cf80cf30000040f0000000100200190000008860000613d000000000301043b00000000010004140000000604000029000000040040008c0000059c0000c13d00000001020000390000000001000031000005d40000013d000000440030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000202043b000003440020009c000008840000213d0000002401100370000000000101043b000600000001001d000003440010009c000008840000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000190cf80cd90000040f00000006020000290cf808fd0000040f000000000101041a000000ff001001900000000001000039000000010100c0390000017f0000013d0000000001000416000000000001004b000008840000c13d0000000a01000039000003ed0000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000201043b000003c200200198000008840000c13d0000000101000039000003c302200197000003c40020009c000004750000613d000003c50020009c000004750000613d000003c60020009c000000000100c019000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000010043f0000001001000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000e01000039000000000101041a000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000502043b000003420050009c000008840000213d0000002302500039000000000032004b000008840000813d0000000406500039000000000261034f000000000202043b000003420020009c000006240000213d0000001f07200039000003c7077001970000003f07700039000003c707700197000003a00070009c000006240000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000008840000213d0000002003600039000000000331034f000003c7052001980000001f0620018f000000a0015000390000041b0000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000004170000c13d000000000006004b000004280000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000801000039000000000101041a00000344011001970000000002000411000000000021004b000008b10000c13d000000800200043d000003420020009c000006240000213d0000000d01000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000003640000c13d000000200030008c0000044f0000413d000000000010043f0000001f052000390000000505500270000003500550009a000000200020008c00000351050040410000001f033000390000000503300270000003500330009a000000000035004b0000044f0000813d000000000005041b0000000105500039000000000035004b0000044b0000413d0000001f0020008c000007ac0000a13d000000000010043f000003c704200198000007b60000c13d000000a0050000390000035103000041000007c40000013d0000000001000416000000000001004b000008840000c13d0000000301000039000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000401100370000000000601043b0000000c01000039000000000101041a0000ff0000100190000005050000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001a01000039000000a40010043f000003b101000041000000c40010043f000003a60100004100000cfa000104300000000001000416000000000001004b000008840000c13d0000000b01000039000000000101041a000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d00000080030000390000000401100370000000000201043b000000000002004b000004ed0000613d000000000100041a000000000021004b000004ed0000a13d000600000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000400300043d000000000101043b000000000101041a0000039600100198000004ed0000c13d0000000d05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000003640000c13d0000000001230436000000000006004b0000064f0000613d000000000050043f000000000002004b0000000004000019000006540000613d000003510500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000004ab0000413d000006540000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d00000080020000390000000401100370000000000301043b000000000003004b000005a40000613d000000000100041a000000000031004b000005a40000a13d000600000003001d000000000030043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a0000039600100198000005a30000c13d0000000601000029000000000010043f0000000601000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a0000017e0000013d0000000a01000039000000000101041a000003ca0010009c000005140000c13d000003bb01000041000000000010043f0000001101000039000000040010043f000003bc0100004100000cfa000104300000035b01000041000000800010043f0000002001000039000000840010043f000000a40010043f000003a101000041000000c40010043f000003a60100004100000cfa000104300000039b0100004100000000001304350000033f0030009c0000033f0300804100000040013002100000039c011001c700000cfa00010430000000800010043f000000000004004b000005220000613d000000000030043f000000000001004b0000000002000019000005270000613d0000034b030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000004fd0000413d000005270000013d0000000b01000039000000000201041a000000000062001a000004de0000413d000000000262001900000bb90020008c000005450000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f000003b0010000410000051d0000013d000002bc0010008c000005560000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f000003a301000041000000c40010043f000003a401000041000000e40010043f000003930100004100000cfa00010430000003c802200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390cf809180000040f000000400100043d000600000001001d00000080020000390cf808d60000040f000000060200002900000000012100490000033f0010009c0000033f0100804100000060011002100000033f0020009c0000033f020080410000004002200210000000000121019f00000cf90001042e000003c001000041000005a50000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a0000034201100197000000800010043f000003940100004100000cf90001042e000000000500041a000000010350008a000000000063001a000004de0000413d00000000036300190000115d0030008c000005900000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f000003af01000041000000c40010043f000003a60100004100000cfa0001043000000000010004110000034401100197000600000001001d000000000010043f0000001001000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000007fe0000c13d0000000601000029000000000010043f0000001001000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c80220019700000001022001bf000000000021041b0000000a02000039000000000102041a000000010110003a000004de0000613d000000000012041b00000000010004110cf80c840000040f000000000100001900000cf90001042e0000034d02200197000000000262019f000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f04000041000002890000013d000000040060008c000005ab0000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f000003ae01000041000000c40010043f000003a60100004100000cfa000104300000033f0010009c0000033f01008041000000c001100210000000000003004b000005cc0000c13d0000000002040019000005cf0000013d000000400200043d000003c10100004100000000001204350000033f0020009c0000033f0200804100000040012002100000039c011001c700000cfa000104300000039d036000d1000003a7043001970000039d0440012a000000000046004b000004de0000c13d000600000005001d0000000004000416000000000043004b000006690000a13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001301000039000000a40010043f000003ad01000041000000c40010043f000003a60100004100000cfa00010430000000000005004b0000000004000019000006200000613d0000000304500210000003ca0440027f000003ca044001670000000006060433000000000446016f0000000105500210000000000454019f000006200000013d000000400200043d000003c001000041000005a50000013d0000034e011001c7000080090200003900000000050000190cf80cee0000040f000200000001035500000060011002700000033f0010019d0000033f01100197000000000001004b000005df0000c13d00000001002001900000028c0000c13d000000400100043d0000004402100039000003b503000041000000000032043500000024021000390000001003000039000008040000013d000003420010009c000006240000213d0000001f04100039000003c7044001970000003f04400039000003c705400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003420050009c000006240000213d0000000100600190000006240000c13d000000400050043f0000000006140436000003c7031001980000001f0410018f00000000013600190000000205000367000005fa0000613d000000000705034f000000007807043c0000000006860436000000000016004b000005f60000c13d000000000004004b000005d60000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000005d60000013d00000348060000410000002007000039000000010980008a0000000509900270000003490990009a000000000a470019000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b0000060d0000c13d000000000058004b0000061e0000813d0000000308500210000000f80880018f000003ca0880027f000003ca0880016700000000044700190000000004040433000000000484016f000000000046041b000000010450021000000001044001bf000000000043041b0000000004010433000003420040009c0000062a0000a13d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa000104300000000303000039000000000603041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000003640000c13d00020000000b001d000000200050008c000006470000413d000000000030043f0000001f0640003900000005066002700000034a0660009a000000200040008c0000034b060040410000001f0550003900000005055002700000034a0550009a000000000056004b000006470000813d000000000006041b0000000106600039000000000056004b000006430000413d000000200040008c0000069f0000413d000000000030043f000003c706400198000007530000c13d00000020050000390000034b020000410000075f0000013d000003c8044001970000000000410435000000000002004b000000200400003900000000040060390000003f02400039000003c7052001970000000002350019000000000052004b00000000050000390000000105004039000003420020009c000006240000213d0000000100500190000006240000c13d000000400020043f0000000005030433000000000005004b000006aa0000c13d0000039a0020009c000006240000213d0000002001200039000000400010043f0000000000020435000000400300043d000006ea0000013d000000000021041b000400000006001d000000000006004b000006ed0000c13d000003ab01000041000000800010043f000003ac0100004100000cfa00010430000000400100043d0000004402100039000003b803000041000000000032043500000024021000390000000c03000039000008040000013d0000000601000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b00000000020004110000034402200197000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000002470000c13d000000400100043d000003be0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000004004b00000000010000190000076b0000613d0000000301400210000003ca0110027f000003ca011001670000000002020433000000000112016f0000000102400210000000000121019f0000076b0000013d000000a005200039000000400050043f0000008005200039000000000005043500000006090000290000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a00000000080504330000039708800197000000000787019f00000398077001c70000000000750435000006af0000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000003030433000000000003004b000006cb0000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000038004b000006c40000413d000000000173001900000000000104350000000003060433000000000003004b000006d80000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000036004b000006d10000413d00000000011300190000039903000041000000000031043500000000012100490000001b0310008a00000000003204350000002401100039000003c7011001970000000004210019000000000014004b00000000010000390000000101004039000003420040009c000006240000213d0000000100100190000006240000c13d0000000003040019000000400040043f0000000001030019000600000003001d0000052d0000013d00000000010004110000034401100197000500000001001d000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000402000029000003a8022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f0000000100200190000008860000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000302000029000000a0022002100000000403000029000000010030008c0000000003000019000003a903006041000000000223019f0000000506000029000000000262019f000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000006070000290cf80cee0000040f0000000100200190000008840000613d0000000602000029000400040020002d00000006070000290000000107700039000000040070006c000008870000613d00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003570400004100000000050000190000000506000029000600000007001d0cf80cee0000040f0000000100200190000007360000c13d000008840000013d0000000901000039000000000101041a000003ca0010009c000004de0000613d000001bc0010008c000007d30000413d000000400100043d0000004402100039000003ba03000041000008b40000013d0000034b020000410000002005000039000000010760008a00000005077002700000034c0770009a00000000081500190000000008080433000000000082041b00000020055000390000000102200039000000000072004b000007580000c13d000000000046004b000007690000813d0000000306400210000000f80660018f000003ca0660027f000003ca0660016700000000011500190000000001010433000000000161016f000000000012041b000000010140021000000001011001bf000000000013041b0000000101000039000000000010041b000000000100041100000344061001970000000804000039000000000104041a0000034d02100197000000000262019f000000000024041b000000000200041400000344051001970000033f0020009c0000033f02008041000000c0012002100000034e011001c70000800d020000390000034f04000041000500000006001d0cf80cee0000040f0000000100200190000008840000613d0000000e010000390000000202000029000000000021041b00000006010000290000000002010433000003420020009c000006240000213d0000000d01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000003640000c13d000000200030008c000007a40000413d000000000010043f0000001f042000390000000504400270000003500440009a000000200020008c00000351040040410000001f033000390000000503300270000003500330009a000000000034004b000007a40000813d000000000004041b0000000104400039000000000034004b000007a00000413d000000200020008c0000080a0000413d000000000010043f000003c705200198000008160000c13d00000020040000390000035103000041000008230000013d000000000002004b0000000003000019000007b00000613d000000a00300043d0000000304200210000003ca0440027f000003ca04400167000000000443016f0000000103200210000007cf0000013d00000351030000410000002006000039000000010540008a0000000505500270000003520550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000007bb0000c13d000000a005700039000000000024004b000007cd0000813d0000000304200210000000f80440018f000003ca0440027f000003ca044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900000cf90001042e00000000010004110000034401100197000600000001001d000000000010043f0000000f01000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000007fe0000c13d0000000601000029000000000010043f0000000f01000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c80220019700000001022001bf000000000021041b0000000901000039000000000101041a000000010110003a000004de0000613d00000009020000390000057f0000013d000000400100043d0000004402100039000003b903000041000000000032043500000024021000390000001b0300003900000000003204350000035b02000041000000000021043500000004021000390000002003000039000008bb0000013d000000000002004b00000000030000190000082f0000613d0000000303200210000003ca0330027f000003ca0330016700000004040000290000000004040433000000000334016f0000000102200210000000000323019f0000082f0000013d00000351030000410000002004000039000000010650008a0000000506600270000003520660009a000000060800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b0000081c0000c13d000000000025004b0000082d0000813d0000000305200210000000f80550018f000003ca0550027f000003ca0550016700000006044000290000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b000000000100041a000600000001001d0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003540220009a000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f0000000100200190000008860000613d000000000101043b000400000001001d00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000402000029000000a0022002100000000506000029000000000262019f000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000006070000290cf80cee0000040f0000000100200190000008840000613d00000006010000290004012c0010003d00000006070000290000000107700039000000040070006c0000088d0000613d00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003570400004100000000050000190000000506000029000600000007001d0cf80cee0000040f0000000100200190000008720000c13d000000000100001900000cfa00010430000000000001042f000000050000006b0000088f0000613d0000000401000029000000000010041b000000000100001900000cf90001042e000000050000006b000008920000c13d000000400100043d000003aa02000041000006990000013d0000000401000029000000000010041b0000000801000039000000000101041a00000344021001970000000003000411000000000032004b000008b10000c13d00000003020000290000034406200198000008c10000c13d000000400100043d00000064021000390000035903000041000000000032043500000044021000390000035a0300004100000000003204350000002402100039000000260300003900000000003204350000035b0200004100000000002104350000000402100039000000200300003900000000003204350000033f0010009c0000033f0100804100000040011002100000035c011001c700000cfa00010430000000400100043d0000004402100039000003a10300004100000000003204350000035b020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000033f0010009c0000033f010080410000004001100210000003a2011001c700000cfa000104300000034d01100197000000000161019f0000000802000039000000000012041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f0400004100000000050004110cf80cee0000040f0000000100200190000008840000613d000000200100003900000100001004430000012000000443000003580100004100000cf90001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000008e50000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008de0000413d000000000312001900000000000304350000001f02200039000003c7022001970000000001120019000000000001042d000003cb0010009c000008fb0000213d000000630010008c000008fb0000a13d00000001030003670000000401300370000000000101043b000003440010009c000008fb0000213d0000002402300370000000000202043b000003440020009c000008fb0000213d0000004403300370000000000303043b000000000001042d000000000100001900000cfa000104300000034402200197000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f00000001002001900000090b0000613d000000000101043b000000000001042d000000000100001900000cfa00010430000003cc0010009c000009120000813d0000002001100039000000400010043f000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa000104300000001f02200039000003c7022001970000000001120019000000000021004b00000000020000390000000102004039000003420010009c000009240000213d0000000100200190000009240000c13d000000400010043f000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa00010430000003cd0020009c0000095a0000813d00000000040100190000001f01200039000003c7011001970000003f01100039000003c705100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000003420050009c0000095a0000213d00000001007001900000095a0000c13d000000400050043f00000000052104360000000007420019000000000037004b000009600000213d000003c7062001980000001f0720018f000000010440036700000000036500190000094a0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000009460000c13d000000000007004b000009570000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa00010430000000000100001900000cfa000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b00000a530000613d000000000100041a000000060010006c00000a530000a13d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000003960010019800000a530000c13d000000000001004b000009920000c13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000000001004b00000007020000290000097f0000613d00000005020000290000034402200197000400000001001d0000034401100197000700000002001d000000000021004b00000a560000c13d0000000601000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000201043b000000000302041a00000000010004110000034404100197000000070040006c000009d10000613d000000000034004b000009d10000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b0000000502000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000ff001001900000000202000029000000010300002900000a5d0000613d0000000301000029000503440010019c00000a590000613d000000000003004b000009d70000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000201041a0000000102200039000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000a5c0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d0000000302000029000000a00220021000000005022001af000003a9022001c7000000000101043b000000000021041b0000000401000029000003a90010019800000a420000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000000001004b00000a420000c13d000000000100041a000000030010006b00000a420000613d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b0000000402000029000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d02000039000000040300003900000357040000410000000705000029000000050600002900000006070000290cf80cee0000040f000000010020019000000a510000613d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000a5f0000013d000000400100043d000003ce0200004100000a5f0000013d000000400100043d000003d00200004100000a5f0000013d000000000001042f000000400100043d000003cf0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000001004b00000a680000613d000000000001042d000000400100043d0000004402100039000003a10300004100000000003204350000035b020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000033f0010009c0000033f010080410000004001100210000003a2011001c700000cfa00010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b00000bfa0000613d000000000100041a000000070010006c00000bfa0000a13d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000003960010019800000bfa0000c13d000000000001004b00000aa90000c13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000000001004b000000080200002900000a960000613d00000006020000290000034402200197000300000001001d0000034401100197000800000002001d000000000021004b00000bfe0000c13d0000000701000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000301043b000000000403041a00000000010004110000034402100197000400000002001d000000080020006c00000ae80000613d000000040040006b00000ae80000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900000c040000613d0000000501000029000003440110019800000c010000613d000600000001001d000000000004004b00000aef0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000201041a0000000102200039000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000bfd0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d0000000202000029000000a0022002100000000606000029000000000262019f000003a9022001c7000000000101043b000000000021041b0000000301000029000003a90010019800000b5d0000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000000001004b000000060600002900000b5d0000c13d000000000100041a000000020010006b00000b5d0000613d0000000201000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b0000000302000029000000000021041b000000060600002900000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000080500002900000007070000290cf80cee0000040f000000010020019000000bf80000613d000003d10100004100000000001004430000000501000029000000040010044300000000010004140000033f0010009c0000033f01008041000000c001100210000003b4011001c700008002020000390cf80cf30000040f000000010020019000000bfd0000613d000000000101043b000000000001004b00000bf70000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000003d20100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000b990000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000b920000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c00000ba70000c13d00000000050004150000000a0550008a00000005055002100000000003000031000000200030008c0000002004000039000000000403401900000bdf0000013d000700000008001d000500000007001d0000001f01100039000003c701100197000000a4011000390000033f0010009c0000033f0100804100000060011002100000033f00b0009c0000033f0300004100000000030b40190000004003300210000000000131019f0000033f0040009c0000033f04008041000000c003400210000000000113019f00080000000b001d0cf80cee0000040f000000080b00002900000060031002700000033f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000bca0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000bc60000c13d000000000006004b00000bd70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000090550008a0000000505500210000000010020019000000c070000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003420010009c00000c3d0000213d000000010020019000000c3d0000c13d000000400010043f000000200030008c00000bf80000413d00000000010b0433000003c20010019800000bf80000c13d0000000502500270000000000201001f000000000200041500000000022800490000000002000002000003c301100197000003d20010009c00000c350000c13d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000c370000013d000000000001042f000000400100043d000003ce0200004100000c370000013d000000400100043d000003d00200004100000c370000013d000000400100043d000003cf0200004100000c370000013d000000000003004b00000c0b0000c13d000000600200003900000c320000013d0000001f0230003900000340022001970000003f02200039000003d304200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003420040009c00000c3d0000213d000000010050019000000c3d0000c13d000000400040043f0000001f0430018f00000000063204360000034105300198000500000006001d000000000356001900000c250000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000c210000c13d000000000004004b00000c320000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000c430000c13d000000400100043d000003d40200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa0001043000000005020000290000033f0020009c0000033f0200804100000040022002100000033f0010009c0000033f010080410000006001100210000000000121019f00000cfa000104300001000000000002000000000001004b00000c7c0000613d000000000200041a000000000012004b00000c7c0000a13d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000c7a0000613d000000000101043b000000000101041a0000039600100198000000010200002900000c7c0000c13d000000000001004b00000c790000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000c7a0000613d000000000101043b000000000101041a000000000001004b000000010200002900000c660000613d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa0001043000030000000000020000034402100197000000000100041a000300000001001d000200000002001d000000000020043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000ccd0000613d000000000101043b000000000201041a000003d50220009a000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000ccf0000613d000000000101043b000100000001001d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000ccd0000613d0000000102000029000000a0022002100000000206000029000000000262019f000003a9022001c7000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000003070000290cf80cee0000040f000000010020019000000ccd0000613d000000020000006b00000cd00000613d00000003010000290000000101100039000000000010041b000000000001042d000000000100001900000cfa00010430000000000001042f000000400100043d000003aa0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000001042f0000033f0010009c0000033f0100804100000040011002100000033f0020009c0000033f020080410000006002200210000000000112019f00000000020004140000033f0020009c0000033f02008041000000c002200210000000000112019f0000034e011001c700008010020000390cf80cf30000040f000000010020019000000cec0000613d000000000101043b000000000001042d000000000100001900000cfa0001043000000cf1002104210000000102000039000000000001042d0000000002000019000000000001042d00000cf6002104230000000102000039000000000001042d0000000002000019000000000001042d00000cf80000043200000cf90001042e00000cfa00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf41627374726163745f50656e6775696e73000000000000000000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14a0200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffed3fffffffffffffed4796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000000612e931300000000000000000000000000000000000000000000000000000000a0bcfc7e00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed4b4ba100000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d99118a200000000000000000000000000000000000000000000000000000000afe2e1f900000000000000000000000000000000000000000000000000000000afe2e1fa00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bf8fbbd200000000000000000000000000000000000000000000000000000000a0bcfc7f00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000007f10acee000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000099c89e81000000000000000000000000000000000000000000000000000000007f10acef000000000000000000000000000000000000000000000000000000008673a24a0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007cb6475900000000000000000000000000000000000000000000000000000000612e9314000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000002eb4a7aa0000000000000000000000000000000000000000000000000000000039d08ad10000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000005bcb3d5d0000000000000000000000000000000000000000000000000000000039d08ad200000000000000000000000000000000000000000000000000000000418720cc00000000000000000000000000000000000000000000000000000000372f657b00000000000000000000000000000000000000000000000000000000372f657c0000000000000000000000000000000000000000000000000000000038e21cce0000000000000000000000000000000000000000000000000000000039a23619000000000000000000000000000000000000000000000000000000002eb4a7ab0000000000000000000000000000000000000000000000000000000032cb6b0c000000000000000000000000000000000000000000000000000000000f2cdd6b0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000022ab47a10000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000000f2cdd6c00000000000000000000000000000000000000000000000000000000130b347a00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000002aa1efb94e0000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000005075626c69632066726565206d696e7420706861736520616c726561647920736f6c64206f7574000000000000000000000000000000000000000000000000005075626c69632066726565206d696e7420697320636c6f7365640000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000fffffffffffe0000000000000000000000000000000000000000000000000001000000000000000100000002000000000000000000000000000000000000000000000000000000002e07630000000000000000000000000000000000000000000000000000000000b562e8dd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000004e6f7420656e6f75676820657468657265756d000000000000000000000000004c696d6974207065722077616c6c657400000000000000000000000000000000536f6c64206f75740000000000000000000000000000000000000000000000005075626c69632070616964206d696e7420706861736520616c726561647920735075626c69632070616964206d696e7420697320636c6f7365640000000000008f4eb604000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000000200000000000000000000000000000000000014000000a000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe04e6f7420656c696769626c650000000000000000000000000000000000000000596f752063616e206f6e6c79206d696e74206f6e6520746f6b656e000000000057686974656c69737420706861736520616c726561647920736f6c64206f75744e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000576c206d696e7420697320636c6f736564000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed600000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffeffffffffffffffff0ab0749d1f5ca6a363c5b740cb6ad13ac62863dfb82e8e99330a50fd9d639785
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b88300000000000000000000000013090e34b80be53e592f148fab7b7382db6bee190000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966726b6761327375796c63747336366265766a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a32342f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafybeifrkga2suylcts66bevjrnsftjygnq4rnnzjxra2tuwavrvuhhj24/
Arg [1] : _merkleRoot (bytes32): 0xf726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b883
Arg [2] : initialOwner (address): 0x13090E34b80BE53E592f148fAB7B7382db6bee19
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b883
Arg [2] : 00000000000000000000000013090e34b80be53e592f148fab7b7382db6bee19
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f6261667962656966726b6761327375796c6374733636626576
Arg [5] : 6a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a
Arg [6] : 32342f0000000000000000000000000000000000000000000000000000000000
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.