Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,922 HSD
Holders
518
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 HSDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hallowskulldao
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Ownable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 1; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity >=0.8.0 <0.9.0; contract Hallowskulldao is ERC721A { using Strings for uint256; // ----------------- VARAIBLES ----------------- bytes32 public merkleRootWl; mapping(address => bool) public whitelistClaimed; enum SaleState { PAUSE, // 0 WHITELIST_SALE, // 1 PUBLIC_SALE // 2 } string private uriPrefix = ''; string private uriSuffix = '.json'; string private hiddenMetadataUri; uint256 public SALE_PRICE = 0.0029 ether; uint256 public WL_PRICE = 0.0019 ether; uint256 public MAX_PER_TX = 10; uint256 public MAX_PER_FREE = 1; uint256 public MAX_TX = 10; uint256 public MAX_WL_TX = 5; uint256 public MAX_WL_SUPPLY = 300; uint256 public MAX_SUPPLY = 2222; uint256 public WL_MINT_COUNT = 0; bool public revealed = false; SaleState public saleState = SaleState.PAUSE; constructor() ERC721A('Hallowskulldao', 'HSD') { setHiddenMetadataUri('ipfs://__CID__/hidden.json'); } /** * @notice Public Mint */ function publicMint(uint256 _quantity) external payable { require(saleState == SaleState.PUBLIC_SALE, 'Wait for public mint'); require(totalSupply() + _quantity <= MAX_SUPPLY - MAX_WL_SUPPLY, 'Sold out!'); require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!'); if (msg.sender != owner()) { require(balanceOf(msg.sender) + _quantity <= MAX_TX, 'No more!'); require(msg.value >= _quantity * SALE_PRICE, 'Please send the exact amount.'); } _safeMint(msg.sender, _quantity); } /** * @notice Whitelist Mint */ function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable { require(saleState == SaleState.WHITELIST_SALE, 'Wait for whitelist mint'); require(WL_MINT_COUNT + _quantity <= MAX_WL_SUPPLY, 'No more!'); require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out!'); require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!'); require(isWhitelist(_merkleProof), 'Address is not whitelisted!'); if (msg.sender != owner()) { require(balanceOf(msg.sender) + _quantity <= MAX_WL_TX, 'No more!'); if (!whitelistClaimed[msg.sender]) { require( msg.value >= (_quantity - MAX_PER_FREE) * WL_PRICE, 'Please send the exact amount.' ); whitelistClaimed[_msgSender()] = true; } else { require(msg.value >= _quantity * WL_PRICE, 'Please send the exact amount.'); } } WL_MINT_COUNT = WL_MINT_COUNT + _quantity; _safeMint(msg.sender, _quantity); } /** * @notice Team Mint */ function teamMint(uint256 _quantity) external onlyOwner { require(saleState != SaleState.PAUSE, 'The contract is paused!'); require(_quantity > 0, 'Minimum 1 NFT has to be minted per transaction'); require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out'); _safeMint(msg.sender, _quantity); } /** * @notice airdrop */ function airdrop(address _to, uint256 _quantity) external onlyOwner { require(saleState != SaleState.PAUSE, 'The contract is paused!'); require(_quantity + totalSupply() <= MAX_SUPPLY, 'Sold out'); _safeMint(_to, _quantity); } /** * @notice Check if the address is in the white list or not */ function isWhitelist(bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); if (MerkleProof.verify(_merkleProof, merkleRootWl, leaf)) { return true; } return false; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setState(SaleState _state) external onlyOwner { saleState = _state; } function setWhitelist(bytes32 _merkleRoot) external onlyOwner { merkleRootWl = _merkleRoot; } function setSalePrice(uint256 _newPrice) external onlyOwner { SALE_PRICE = _newPrice; } function setWlPrice(uint256 _newPrice) external onlyOwner { WL_PRICE = _newPrice; } function setMaxPerTx(uint256 _maxPerTx) public onlyOwner { MAX_PER_TX = _maxPerTx; } function setMaxPerFree(uint256 _maxPerFree) public onlyOwner { MAX_PER_FREE = _maxPerFree; } function setMaxTx(uint256 _maxTx) public onlyOwner { MAX_TX = _maxTx; } function setMaxWlTx(uint256 _maxWLTx) public onlyOwner { MAX_WL_TX = _maxWLTx; } function setMaxWlSupply(uint256 _maxWLSupply) public onlyOwner { MAX_WL_SUPPLY = _maxWLSupply; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { MAX_SUPPLY = _maxSupply; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(''); require(success, 'Transfer failed.'); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","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":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum Hallowskulldao.SaleState","name":"","type":"uint8"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLSupply","type":"uint256"}],"name":"setMaxWlSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLTx","type":"uint256"}],"name":"setMaxWlTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Hallowskulldao.SaleState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWlPrice","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":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001805560405180602001604052806000815250600a90805190602001906200002f929190620003ce565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007d929190620003ce565b50660a4d88ddd94000600d556606c00a3912c000600e55600a600f556001601055600a601155600560125561012c6013556108ae60145560006015556000601660006101000a81548160ff0219169083151502179055506000601660016101000a81548160ff02191690836002811115620000fd57620000fc6200050e565b5b02179055503480156200010f57600080fd5b506040518060400160405280600e81526020017f48616c6c6f77736b756c6c64616f0000000000000000000000000000000000008152506040518060400160405280600381526020017f48534400000000000000000000000000000000000000000000000000000000008152506200019c620001906200021c60201b60201c565b6200022460201b60201c565b8160029080519060200190620001b4929190620003ce565b508060039080519060200190620001cd929190620003ce565b505050620002166040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002e860201b60201c565b62000595565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f86200031460201b60201c565b80600c908051906020019062000310929190620003ce565b5050565b620003246200021c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034a620003a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039a90620004a5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003dc90620004d8565b90600052602060002090601f0160209004810192826200040057600085556200044c565b82601f106200041b57805160ff19168380011785556200044c565b828001600101855582156200044c579182015b828111156200044b5782518255916020019190600101906200042e565b5b5090506200045b91906200045f565b5090565b5b808211156200047a57600081600090555060010162000460565b5090565b60006200048d602083620004c7565b91506200049a826200056c565b602082019050919050565b60006020820190508181036000830152620004c0816200047e565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004f157607f821691505b602082108114156200050857620005076200053d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6155ae80620005a56000396000f3fe60806040526004361061031a5760003560e01c806370a08231116101ab578063c56acc8f116100f7578063e945971c11610095578063ef8319cd1161006f578063ef8319cd14610bb0578063f2fde38b14610bdb578063f3b2db3f14610c04578063f43a22dc14610c2f5761031a565b8063e945971c14610b0d578063e985e9c514610b36578063ed475f6314610b735761031a565b8063cd94e4d3116100d1578063cd94e4d314610a60578063d2cab05614610a8b578063db4bec4414610aa7578063e0a8085314610ae45761031a565b8063c56acc8f146109cf578063c6f6f216146109fa578063c87b56dd14610a235761031a565b80638ba4cc3c1161016457806395d89b411161013e57806395d89b4114610929578063a22cb46514610954578063b88d4fde1461097d578063bc337182146109a65761031a565b80638ba4cc3c146108ac5780638da5cb5b146108d55780638dd07d0f146109005761031a565b806370a08231146107b0578063715018a6146107ed5780637ec4a659146108045780637f205a741461082d57806381511e2314610858578063878c7cfd146108835761031a565b806332cb6b0c1161026a5780634fdd43cb11610223578063603f4d52116101fd578063603f4d52146106f65780636352211e1461072157806366f05dda1461075e5780636f8b44b0146107875761031a565b80634fdd43cb1461067957806351830227146106a257806356de96db146106cd5761031a565b806332cb6b0c1461056b5780633ccfd60b1461059657806342842e0e146105ad578063438b6300146105d6578063440bc7f3146106135780634f6ccce71461063c5761031a565b806319119bc9116102d75780632db11544116102b15780632db11544146104be5780632f745c59146104da5780632fbba1151461051757806331c3c7a0146105405761031a565b806319119bc9146104415780631919fed71461046c57806323b872dd146104955761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063095ea7b3146103c457806316ba10e0146103ed57806318160ddd14610416575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613b15565b610c5a565b60405161035391906143a2565b60405180910390f35b34801561036857600080fd5b50610371610da4565b60405161037e91906143f3565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613be5565b610e36565b6040516103bb9190614319565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613a2e565b610ebb565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613b9c565b610fd4565b005b34801561042257600080fd5b5061042b610ff6565b60405161043891906147d5565b60405180910390f35b34801561044d57600080fd5b50610456611000565b60405161046391906147d5565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613be5565b611006565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613918565b611018565b005b6104d860048036038101906104d39190613be5565b611028565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613a2e565b611242565b60405161050e91906147d5565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613be5565b611434565b005b34801561054c57600080fd5b5061055561155a565b60405161056291906147d5565b60405180910390f35b34801561057757600080fd5b50610580611560565b60405161058d91906147d5565b60405180910390f35b3480156105a257600080fd5b506105ab611566565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613918565b61161d565b005b3480156105e257600080fd5b506105fd60048036038101906105f891906138ab565b61163d565b60405161060a9190614380565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613ae8565b611748565b005b34801561064857600080fd5b50610663600480360381019061065e9190613be5565b61175a565b60405161067091906147d5565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613b9c565b6117ad565b005b3480156106ae57600080fd5b506106b76117cf565b6040516106c491906143a2565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613b6f565b6117e2565b005b34801561070257600080fd5b5061070b611817565b60405161071891906143d8565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613be5565b61182a565b6040516107559190614319565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613be5565b611840565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613be5565b611852565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906138ab565b611864565b6040516107e491906147d5565b60405180910390f35b3480156107f957600080fd5b5061080261194d565b005b34801561081057600080fd5b5061082b60048036038101906108269190613b9c565b611961565b005b34801561083957600080fd5b50610842611983565b60405161084f91906147d5565b60405180910390f35b34801561086457600080fd5b5061086d611989565b60405161087a91906147d5565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613be5565b61198f565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613a2e565b6119a1565b005b3480156108e157600080fd5b506108ea611a85565b6040516108f79190614319565b60405180910390f35b34801561090c57600080fd5b5061092760048036038101906109229190613be5565b611aae565b005b34801561093557600080fd5b5061093e611ac0565b60405161094b91906143f3565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139ee565b611b52565b005b34801561098957600080fd5b506109a4600480360381019061099f919061396b565b611cd3565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613be5565b611d2f565b005b3480156109db57600080fd5b506109e4611d41565b6040516109f191906147d5565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613be5565b611d47565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613be5565b611d59565b604051610a5791906143f3565b60405180910390f35b348015610a6c57600080fd5b50610a75611eb2565b604051610a8291906147d5565b60405180910390f35b610aa56004803603810190610aa09190613c12565b611eb8565b005b348015610ab357600080fd5b50610ace6004803603810190610ac991906138ab565b61228a565b604051610adb91906143a2565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613abb565b6122aa565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613be5565b6122cf565b005b348015610b4257600080fd5b50610b5d6004803603810190610b5891906138d8565b6122e1565b604051610b6a91906143a2565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b959190613a6e565b612375565b604051610ba791906143a2565b60405180910390f35b348015610bbc57600080fd5b50610bc561240a565b604051610bd291906143bd565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd91906138ab565b612410565b005b348015610c1057600080fd5b50610c19612494565b604051610c2691906147d5565b60405180910390f35b348015610c3b57600080fd5b50610c4461249a565b604051610c5191906147d5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d8d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9d5750610d9c826124a0565b5b9050919050565b606060028054610db390614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddf90614b0d565b8015610e2c5780601f10610e0157610100808354040283529160200191610e2c565b820191906000526020600020905b815481529060010190602001808311610e0f57829003601f168201915b5050505050905090565b6000610e418261250a565b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614795565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec68261182a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90614655565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f56612518565b73ffffffffffffffffffffffffffffffffffffffff161480610f855750610f8481610f7f612518565b6122e1565b5b610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90614515565b60405180910390fd5b610fcf838383612520565b505050565b610fdc6125d2565b80600b9080519060200190610ff2929190613605565b5050565b6000600154905090565b60125481565b61100e6125d2565b80600d8190555050565b611023838383612650565b505050565b60028081111561103b5761103a614c6c565b5b601660019054906101000a900460ff16600281111561105d5761105c614c6c565b5b1461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614735565b60405180910390fd5b6013546014546110ad91906149f4565b816110b6610ff6565b6110c09190614913565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906147b5565b60405180910390fd5b6000811180156111135750600f548111155b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614495565b60405180910390fd5b61115a611a85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611235576011548161119933611864565b6111a39190614913565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906144f5565b60405180910390fd5b600d54816111f2919061499a565b341015611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614635565b60405180910390fd5b5b61123f3382612b90565b50565b600061124d83611864565b821061128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614415565b60405180910390fd5b6000611298610ff6565b905060008060005b838110156113f2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461139257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113e457868414156113db57819550505050505061142e565b83806001019450505b5080806001019150506112a0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614755565b60405180910390fd5b92915050565b61143c6125d2565b600060028111156114505761144f614c6c565b5b601660019054906101000a900460ff16600281111561147257611471614c6c565b5b14156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906145b5565b60405180910390fd5b600081116114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90614435565b60405180910390fd5b60145481611502610ff6565b61150c9190614913565b111561154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490614695565b60405180910390fd5b6115573382612b90565b50565b600e5481565b60145481565b61156e6125d2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161159490614304565b60006040518083038185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614675565b60405180910390fd5b50565b61163883838360405180602001604052806000815250611cd3565b505050565b6060600061164a83611864565b905060008167ffffffffffffffff81111561166857611667614cf9565b5b6040519080825280602002602001820160405280156116965781602001602082028036833780820191505090505b50905060006001905060005b83811080156116b357506014548211155b1561173c5760006116c38361182a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611728578284838151811061170d5761170c614cca565b5b602002602001018181525050818061172490614b70565b9250505b828061173390614b70565b935050506116a2565b82945050505050919050565b6117506125d2565b8060088190555050565b6000611764610ff6565b82106117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906144b5565b60405180910390fd5b819050919050565b6117b56125d2565b80600c90805190602001906117cb929190613605565b5050565b601660009054906101000a900460ff1681565b6117ea6125d2565b80601660016101000a81548160ff0219169083600281111561180f5761180e614c6c565b5b021790555050565b601660019054906101000a900460ff1681565b600061183582612bae565b600001519050919050565b6118486125d2565b8060128190555050565b61185a6125d2565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614535565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119556125d2565b61195f6000612d48565b565b6119696125d2565b80600a908051906020019061197f929190613605565b5050565b600d5481565b60105481565b6119976125d2565b8060138190555050565b6119a96125d2565b600060028111156119bd576119bc614c6c565b5b601660019054906101000a900460ff1660028111156119df576119de614c6c565b5b1415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906145b5565b60405180910390fd5b601454611a2b610ff6565b82611a369190614913565b1115611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614695565b60405180910390fd5b611a818282612b90565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ab66125d2565b80600e8190555050565b606060038054611acf90614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90614b0d565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b5050505050905090565b611b5a612518565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906145f5565b60405180910390fd5b8060076000611bd5612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c82612518565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc791906143a2565b60405180910390a35050565b611cde848484612650565b611cea84848484612e0c565b611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906146b5565b60405180910390fd5b50505050565b611d376125d2565b8060118190555050565b60135481565b611d4f6125d2565b80600f8190555050565b6060611d648261250a565b611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a906145d5565b60405180910390fd5b60001515601660009054906101000a900460ff1615151415611e5157600c8054611dcc90614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611df890614b0d565b8015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b50505050509050611ead565b6000611e5b612fa3565b90506000815111611e7b5760405180602001604052806000815250611ea9565b80611e8584613035565b600b604051602001611e99939291906142d3565b6040516020818303038152906040525b9150505b919050565b60155481565b60016002811115611ecc57611ecb614c6c565b5b601660019054906101000a900460ff166002811115611eee57611eed614c6c565b5b14611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906146f5565b60405180910390fd5b60135483601554611f3f9190614913565b1115611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f77906144f5565b60405180910390fd5b60145483611f8c610ff6565b611f969190614913565b1115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906147b5565b60405180910390fd5b600083118015611fe95750600f548311155b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90614495565b60405180910390fd5b6120328282612375565b612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614555565b60405180910390fd5b612079611a85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461226757601254836120b833611864565b6120c29190614913565b1115612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa906144f5565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661221557600e546010548461216591906149f4565b61216f919061499a565b3410156121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890614635565b60405180910390fd5b6001600960006121bf612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612266565b600e5483612223919061499a565b341015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614635565b60405180910390fd5b5b5b826015546122759190614913565b6015819055506122853384612b90565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6122b26125d2565b80601660006101000a81548160ff02191690831515021790555050565b6122d76125d2565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161238991906142b8565b6040516020818303038152906040528051906020012090506123ef848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483613196565b156123fe576001915050612404565b60009150505b92915050565b60085481565b6124186125d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614455565b60405180910390fd5b61249181612d48565b50565b60115481565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6125da612518565b73ffffffffffffffffffffffffffffffffffffffff166125f8611a85565b73ffffffffffffffffffffffffffffffffffffffff161461264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614595565b60405180910390fd5b565b600061265b82612bae565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612682612518565b73ffffffffffffffffffffffffffffffffffffffff1614806126de57506126a7612518565b73ffffffffffffffffffffffffffffffffffffffff166126c684610e36565b73ffffffffffffffffffffffffffffffffffffffff16145b806126fa57506126f982600001516126f4612518565b6122e1565b5b90508061273c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273390614615565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561281e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612815906144d5565b60405180910390fd5b61282b85858560016131ad565b61283b6000848460000151612520565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b2057612a7f8161250a565b15612b1f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8985858560016131b3565b5050505050565b612baa8282604051806020016040528060008152506131b9565b5050565b612bb661368b565b612bbf8261250a565b612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf590614475565b60405180910390fd5b60008290505b60008110612d07576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d43565b50808060019003915050612c04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a90614775565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612e2d8473ffffffffffffffffffffffffffffffffffffffff166131cb565b15612f96578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e56612518565b8786866040518563ffffffff1660e01b8152600401612e789493929190614334565b602060405180830381600087803b158015612e9257600080fd5b505af1925050508015612ec357506040513d601f19601f82011682018060405250810190612ec09190613b42565b60015b612f46573d8060008114612ef3576040519150601f19603f3d011682016040523d82523d6000602084013e612ef8565b606091505b50600081511415612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f35906146b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f9b565b600190505b949350505050565b6060600a8054612fb290614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612fde90614b0d565b801561302b5780601f106130005761010080835404028352916020019161302b565b820191906000526020600020905b81548152906001019060200180831161300e57829003601f168201915b5050505050905090565b6060600082141561307d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613191565b600082905060005b600082146130af57808061309890614b70565b915050600a826130a89190614969565b9150613085565b60008167ffffffffffffffff8111156130cb576130ca614cf9565b5b6040519080825280601f01601f1916602001820160405280156130fd5781602001600182028036833780820191505090505b5090505b6000851461318a5760018261311691906149f4565b9150600a856131259190614bdd565b60306131319190614913565b60f81b81838151811061314757613146614cca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131839190614969565b9450613101565b8093505050505b919050565b6000826131a385846131ee565b1490509392505050565b50505050565b50505050565b6131c68383836001613244565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613239576132248286838151811061321757613216614cca565b5b60200260200101516135c3565b9150808061323190614b70565b9150506131f7565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b2906146d5565b60405180910390fd5b60008414156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614715565b60405180910390fd5b61330c60008683876131ad565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156135a657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613591576135516000888488612e0c565b613590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613587906146b5565b60405180910390fd5b5b818060010192505080806001019150506134da565b5080600181905550506135bc60008683876131b3565b5050505050565b60008183106135db576135d682846135ee565b6135e6565b6135e583836135ee565b5b905092915050565b600082600052816020526040600020905092915050565b82805461361190614b0d565b90600052602060002090601f016020900481019282613633576000855561367a565b82601f1061364c57805160ff191683800117855561367a565b8280016001018555821561367a579182015b8281111561367957825182559160200191906001019061365e565b5b50905061368791906136c5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136de5760008160009055506001016136c6565b5090565b60006136f56136f084614815565b6147f0565b90508281526020810184848401111561371157613710614d37565b5b61371c848285614acb565b509392505050565b600061373761373284614846565b6147f0565b90508281526020810184848401111561375357613752614d37565b5b61375e848285614acb565b509392505050565b600081359050613775816154f5565b92915050565b60008083601f84011261379157613790614d2d565b5b8235905067ffffffffffffffff8111156137ae576137ad614d28565b5b6020830191508360208202830111156137ca576137c9614d32565b5b9250929050565b6000813590506137e08161550c565b92915050565b6000813590506137f581615523565b92915050565b60008135905061380a8161553a565b92915050565b60008151905061381f8161553a565b92915050565b600082601f83011261383a57613839614d2d565b5b813561384a8482602086016136e2565b91505092915050565b60008135905061386281615551565b92915050565b600082601f83011261387d5761387c614d2d565b5b813561388d848260208601613724565b91505092915050565b6000813590506138a581615561565b92915050565b6000602082840312156138c1576138c0614d41565b5b60006138cf84828501613766565b91505092915050565b600080604083850312156138ef576138ee614d41565b5b60006138fd85828601613766565b925050602061390e85828601613766565b9150509250929050565b60008060006060848603121561393157613930614d41565b5b600061393f86828701613766565b935050602061395086828701613766565b925050604061396186828701613896565b9150509250925092565b6000806000806080858703121561398557613984614d41565b5b600061399387828801613766565b94505060206139a487828801613766565b93505060406139b587828801613896565b925050606085013567ffffffffffffffff8111156139d6576139d5614d3c565b5b6139e287828801613825565b91505092959194509250565b60008060408385031215613a0557613a04614d41565b5b6000613a1385828601613766565b9250506020613a24858286016137d1565b9150509250929050565b60008060408385031215613a4557613a44614d41565b5b6000613a5385828601613766565b9250506020613a6485828601613896565b9150509250929050565b60008060208385031215613a8557613a84614d41565b5b600083013567ffffffffffffffff811115613aa357613aa2614d3c565b5b613aaf8582860161377b565b92509250509250929050565b600060208284031215613ad157613ad0614d41565b5b6000613adf848285016137d1565b91505092915050565b600060208284031215613afe57613afd614d41565b5b6000613b0c848285016137e6565b91505092915050565b600060208284031215613b2b57613b2a614d41565b5b6000613b39848285016137fb565b91505092915050565b600060208284031215613b5857613b57614d41565b5b6000613b6684828501613810565b91505092915050565b600060208284031215613b8557613b84614d41565b5b6000613b9384828501613853565b91505092915050565b600060208284031215613bb257613bb1614d41565b5b600082013567ffffffffffffffff811115613bd057613bcf614d3c565b5b613bdc84828501613868565b91505092915050565b600060208284031215613bfb57613bfa614d41565b5b6000613c0984828501613896565b91505092915050565b600080600060408486031215613c2b57613c2a614d41565b5b6000613c3986828701613896565b935050602084013567ffffffffffffffff811115613c5a57613c59614d3c565b5b613c668682870161377b565b92509250509250925092565b6000613c7e838361429a565b60208301905092915050565b613c9381614a28565b82525050565b613caa613ca582614a28565b614bb9565b82525050565b6000613cbb8261489c565b613cc581856148ca565b9350613cd083614877565b8060005b83811015613d01578151613ce88882613c72565b9750613cf3836148bd565b925050600181019050613cd4565b5085935050505092915050565b613d1781614a3a565b82525050565b613d2681614a46565b82525050565b6000613d37826148a7565b613d4181856148db565b9350613d51818560208601614ada565b613d5a81614d46565b840191505092915050565b613d6e81614ab9565b82525050565b6000613d7f826148b2565b613d8981856148f7565b9350613d99818560208601614ada565b613da281614d46565b840191505092915050565b6000613db8826148b2565b613dc28185614908565b9350613dd2818560208601614ada565b80840191505092915050565b60008154613deb81614b0d565b613df58186614908565b94506001821660008114613e105760018114613e2157613e54565b60ff19831686528186019350613e54565b613e2a85614887565b60005b83811015613e4c57815481890152600182019150602081019050613e2d565b838801955050505b50505092915050565b6000613e6a6022836148f7565b9150613e7582614d64565b604082019050919050565b6000613e8d602e836148f7565b9150613e9882614db3565b604082019050919050565b6000613eb06026836148f7565b9150613ebb82614e02565b604082019050919050565b6000613ed3602a836148f7565b9150613ede82614e51565b604082019050919050565b6000613ef66014836148f7565b9150613f0182614ea0565b602082019050919050565b6000613f196023836148f7565b9150613f2482614ec9565b604082019050919050565b6000613f3c6025836148f7565b9150613f4782614f18565b604082019050919050565b6000613f5f6008836148f7565b9150613f6a82614f67565b602082019050919050565b6000613f826039836148f7565b9150613f8d82614f90565b604082019050919050565b6000613fa5602b836148f7565b9150613fb082614fdf565b604082019050919050565b6000613fc8601b836148f7565b9150613fd38261502e565b602082019050919050565b6000613feb6026836148f7565b9150613ff682615057565b604082019050919050565b600061400e6020836148f7565b9150614019826150a6565b602082019050919050565b60006140316017836148f7565b915061403c826150cf565b602082019050919050565b6000614054602f836148f7565b915061405f826150f8565b604082019050919050565b6000614077601a836148f7565b915061408282615147565b602082019050919050565b600061409a6032836148f7565b91506140a582615170565b604082019050919050565b60006140bd601d836148f7565b91506140c8826151bf565b602082019050919050565b60006140e06022836148f7565b91506140eb826151e8565b604082019050919050565b60006141036000836148ec565b915061410e82615237565b600082019050919050565b60006141266010836148f7565b91506141318261523a565b602082019050919050565b60006141496008836148f7565b915061415482615263565b602082019050919050565b600061416c6033836148f7565b91506141778261528c565b604082019050919050565b600061418f6021836148f7565b915061419a826152db565b604082019050919050565b60006141b26017836148f7565b91506141bd8261532a565b602082019050919050565b60006141d56028836148f7565b91506141e082615353565b604082019050919050565b60006141f86014836148f7565b9150614203826153a2565b602082019050919050565b600061421b602e836148f7565b9150614226826153cb565b604082019050919050565b600061423e602f836148f7565b91506142498261541a565b604082019050919050565b6000614261602d836148f7565b915061426c82615469565b604082019050919050565b60006142846009836148f7565b915061428f826154b8565b602082019050919050565b6142a381614aaf565b82525050565b6142b281614aaf565b82525050565b60006142c48284613c99565b60148201915081905092915050565b60006142df8286613dad565b91506142eb8285613dad565b91506142f78284613dde565b9150819050949350505050565b600061430f826140f6565b9150819050919050565b600060208201905061432e6000830184613c8a565b92915050565b60006080820190506143496000830187613c8a565b6143566020830186613c8a565b61436360408301856142a9565b81810360608301526143758184613d2c565b905095945050505050565b6000602082019050818103600083015261439a8184613cb0565b905092915050565b60006020820190506143b76000830184613d0e565b92915050565b60006020820190506143d26000830184613d1d565b92915050565b60006020820190506143ed6000830184613d65565b92915050565b6000602082019050818103600083015261440d8184613d74565b905092915050565b6000602082019050818103600083015261442e81613e5d565b9050919050565b6000602082019050818103600083015261444e81613e80565b9050919050565b6000602082019050818103600083015261446e81613ea3565b9050919050565b6000602082019050818103600083015261448e81613ec6565b9050919050565b600060208201905081810360008301526144ae81613ee9565b9050919050565b600060208201905081810360008301526144ce81613f0c565b9050919050565b600060208201905081810360008301526144ee81613f2f565b9050919050565b6000602082019050818103600083015261450e81613f52565b9050919050565b6000602082019050818103600083015261452e81613f75565b9050919050565b6000602082019050818103600083015261454e81613f98565b9050919050565b6000602082019050818103600083015261456e81613fbb565b9050919050565b6000602082019050818103600083015261458e81613fde565b9050919050565b600060208201905081810360008301526145ae81614001565b9050919050565b600060208201905081810360008301526145ce81614024565b9050919050565b600060208201905081810360008301526145ee81614047565b9050919050565b6000602082019050818103600083015261460e8161406a565b9050919050565b6000602082019050818103600083015261462e8161408d565b9050919050565b6000602082019050818103600083015261464e816140b0565b9050919050565b6000602082019050818103600083015261466e816140d3565b9050919050565b6000602082019050818103600083015261468e81614119565b9050919050565b600060208201905081810360008301526146ae8161413c565b9050919050565b600060208201905081810360008301526146ce8161415f565b9050919050565b600060208201905081810360008301526146ee81614182565b9050919050565b6000602082019050818103600083015261470e816141a5565b9050919050565b6000602082019050818103600083015261472e816141c8565b9050919050565b6000602082019050818103600083015261474e816141eb565b9050919050565b6000602082019050818103600083015261476e8161420e565b9050919050565b6000602082019050818103600083015261478e81614231565b9050919050565b600060208201905081810360008301526147ae81614254565b9050919050565b600060208201905081810360008301526147ce81614277565b9050919050565b60006020820190506147ea60008301846142a9565b92915050565b60006147fa61480b565b90506148068282614b3f565b919050565b6000604051905090565b600067ffffffffffffffff8211156148305761482f614cf9565b5b61483982614d46565b9050602081019050919050565b600067ffffffffffffffff82111561486157614860614cf9565b5b61486a82614d46565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061491e82614aaf565b915061492983614aaf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495e5761495d614c0e565b5b828201905092915050565b600061497482614aaf565b915061497f83614aaf565b92508261498f5761498e614c3d565b5b828204905092915050565b60006149a582614aaf565b91506149b083614aaf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149e9576149e8614c0e565b5b828202905092915050565b60006149ff82614aaf565b9150614a0a83614aaf565b925082821015614a1d57614a1c614c0e565b5b828203905092915050565b6000614a3382614a8f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614a8a826154e1565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614ac482614a7c565b9050919050565b82818337600083830152505050565b60005b83811015614af8578082015181840152602081019050614add565b83811115614b07576000848401525b50505050565b60006002820490506001821680614b2557607f821691505b60208210811415614b3957614b38614c9b565b5b50919050565b614b4882614d46565b810181811067ffffffffffffffff82111715614b6757614b66614cf9565b5b80604052505050565b6000614b7b82614aaf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bae57614bad614c0e565b5b600182019050919050565b6000614bc482614bcb565b9050919050565b6000614bd682614d57565b9050919050565b6000614be882614aaf565b9150614bf383614aaf565b925082614c0357614c02614c3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b600381106154f2576154f1614c6c565b5b50565b6154fe81614a28565b811461550957600080fd5b50565b61551581614a3a565b811461552057600080fd5b50565b61552c81614a46565b811461553757600080fd5b50565b61554381614a50565b811461554e57600080fd5b50565b6003811061555e57600080fd5b50565b61556a81614aaf565b811461557557600080fd5b5056fea2646970667358221220b7cdcdc574bafb0c4924f531c8b77e5712bcdfac33bb5a615a028819ff3284ef64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061031a5760003560e01c806370a08231116101ab578063c56acc8f116100f7578063e945971c11610095578063ef8319cd1161006f578063ef8319cd14610bb0578063f2fde38b14610bdb578063f3b2db3f14610c04578063f43a22dc14610c2f5761031a565b8063e945971c14610b0d578063e985e9c514610b36578063ed475f6314610b735761031a565b8063cd94e4d3116100d1578063cd94e4d314610a60578063d2cab05614610a8b578063db4bec4414610aa7578063e0a8085314610ae45761031a565b8063c56acc8f146109cf578063c6f6f216146109fa578063c87b56dd14610a235761031a565b80638ba4cc3c1161016457806395d89b411161013e57806395d89b4114610929578063a22cb46514610954578063b88d4fde1461097d578063bc337182146109a65761031a565b80638ba4cc3c146108ac5780638da5cb5b146108d55780638dd07d0f146109005761031a565b806370a08231146107b0578063715018a6146107ed5780637ec4a659146108045780637f205a741461082d57806381511e2314610858578063878c7cfd146108835761031a565b806332cb6b0c1161026a5780634fdd43cb11610223578063603f4d52116101fd578063603f4d52146106f65780636352211e1461072157806366f05dda1461075e5780636f8b44b0146107875761031a565b80634fdd43cb1461067957806351830227146106a257806356de96db146106cd5761031a565b806332cb6b0c1461056b5780633ccfd60b1461059657806342842e0e146105ad578063438b6300146105d6578063440bc7f3146106135780634f6ccce71461063c5761031a565b806319119bc9116102d75780632db11544116102b15780632db11544146104be5780632f745c59146104da5780632fbba1151461051757806331c3c7a0146105405761031a565b806319119bc9146104415780631919fed71461046c57806323b872dd146104955761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063095ea7b3146103c457806316ba10e0146103ed57806318160ddd14610416575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613b15565b610c5a565b60405161035391906143a2565b60405180910390f35b34801561036857600080fd5b50610371610da4565b60405161037e91906143f3565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613be5565b610e36565b6040516103bb9190614319565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613a2e565b610ebb565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613b9c565b610fd4565b005b34801561042257600080fd5b5061042b610ff6565b60405161043891906147d5565b60405180910390f35b34801561044d57600080fd5b50610456611000565b60405161046391906147d5565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613be5565b611006565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613918565b611018565b005b6104d860048036038101906104d39190613be5565b611028565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613a2e565b611242565b60405161050e91906147d5565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613be5565b611434565b005b34801561054c57600080fd5b5061055561155a565b60405161056291906147d5565b60405180910390f35b34801561057757600080fd5b50610580611560565b60405161058d91906147d5565b60405180910390f35b3480156105a257600080fd5b506105ab611566565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613918565b61161d565b005b3480156105e257600080fd5b506105fd60048036038101906105f891906138ab565b61163d565b60405161060a9190614380565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613ae8565b611748565b005b34801561064857600080fd5b50610663600480360381019061065e9190613be5565b61175a565b60405161067091906147d5565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613b9c565b6117ad565b005b3480156106ae57600080fd5b506106b76117cf565b6040516106c491906143a2565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613b6f565b6117e2565b005b34801561070257600080fd5b5061070b611817565b60405161071891906143d8565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613be5565b61182a565b6040516107559190614319565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613be5565b611840565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613be5565b611852565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906138ab565b611864565b6040516107e491906147d5565b60405180910390f35b3480156107f957600080fd5b5061080261194d565b005b34801561081057600080fd5b5061082b60048036038101906108269190613b9c565b611961565b005b34801561083957600080fd5b50610842611983565b60405161084f91906147d5565b60405180910390f35b34801561086457600080fd5b5061086d611989565b60405161087a91906147d5565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613be5565b61198f565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613a2e565b6119a1565b005b3480156108e157600080fd5b506108ea611a85565b6040516108f79190614319565b60405180910390f35b34801561090c57600080fd5b5061092760048036038101906109229190613be5565b611aae565b005b34801561093557600080fd5b5061093e611ac0565b60405161094b91906143f3565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139ee565b611b52565b005b34801561098957600080fd5b506109a4600480360381019061099f919061396b565b611cd3565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613be5565b611d2f565b005b3480156109db57600080fd5b506109e4611d41565b6040516109f191906147d5565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613be5565b611d47565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613be5565b611d59565b604051610a5791906143f3565b60405180910390f35b348015610a6c57600080fd5b50610a75611eb2565b604051610a8291906147d5565b60405180910390f35b610aa56004803603810190610aa09190613c12565b611eb8565b005b348015610ab357600080fd5b50610ace6004803603810190610ac991906138ab565b61228a565b604051610adb91906143a2565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613abb565b6122aa565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613be5565b6122cf565b005b348015610b4257600080fd5b50610b5d6004803603810190610b5891906138d8565b6122e1565b604051610b6a91906143a2565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b959190613a6e565b612375565b604051610ba791906143a2565b60405180910390f35b348015610bbc57600080fd5b50610bc561240a565b604051610bd291906143bd565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd91906138ab565b612410565b005b348015610c1057600080fd5b50610c19612494565b604051610c2691906147d5565b60405180910390f35b348015610c3b57600080fd5b50610c4461249a565b604051610c5191906147d5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d8d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9d5750610d9c826124a0565b5b9050919050565b606060028054610db390614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddf90614b0d565b8015610e2c5780601f10610e0157610100808354040283529160200191610e2c565b820191906000526020600020905b815481529060010190602001808311610e0f57829003601f168201915b5050505050905090565b6000610e418261250a565b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614795565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec68261182a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90614655565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f56612518565b73ffffffffffffffffffffffffffffffffffffffff161480610f855750610f8481610f7f612518565b6122e1565b5b610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90614515565b60405180910390fd5b610fcf838383612520565b505050565b610fdc6125d2565b80600b9080519060200190610ff2929190613605565b5050565b6000600154905090565b60125481565b61100e6125d2565b80600d8190555050565b611023838383612650565b505050565b60028081111561103b5761103a614c6c565b5b601660019054906101000a900460ff16600281111561105d5761105c614c6c565b5b1461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614735565b60405180910390fd5b6013546014546110ad91906149f4565b816110b6610ff6565b6110c09190614913565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906147b5565b60405180910390fd5b6000811180156111135750600f548111155b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614495565b60405180910390fd5b61115a611a85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611235576011548161119933611864565b6111a39190614913565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906144f5565b60405180910390fd5b600d54816111f2919061499a565b341015611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614635565b60405180910390fd5b5b61123f3382612b90565b50565b600061124d83611864565b821061128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614415565b60405180910390fd5b6000611298610ff6565b905060008060005b838110156113f2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461139257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113e457868414156113db57819550505050505061142e565b83806001019450505b5080806001019150506112a0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614755565b60405180910390fd5b92915050565b61143c6125d2565b600060028111156114505761144f614c6c565b5b601660019054906101000a900460ff16600281111561147257611471614c6c565b5b14156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906145b5565b60405180910390fd5b600081116114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90614435565b60405180910390fd5b60145481611502610ff6565b61150c9190614913565b111561154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490614695565b60405180910390fd5b6115573382612b90565b50565b600e5481565b60145481565b61156e6125d2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161159490614304565b60006040518083038185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614675565b60405180910390fd5b50565b61163883838360405180602001604052806000815250611cd3565b505050565b6060600061164a83611864565b905060008167ffffffffffffffff81111561166857611667614cf9565b5b6040519080825280602002602001820160405280156116965781602001602082028036833780820191505090505b50905060006001905060005b83811080156116b357506014548211155b1561173c5760006116c38361182a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611728578284838151811061170d5761170c614cca565b5b602002602001018181525050818061172490614b70565b9250505b828061173390614b70565b935050506116a2565b82945050505050919050565b6117506125d2565b8060088190555050565b6000611764610ff6565b82106117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906144b5565b60405180910390fd5b819050919050565b6117b56125d2565b80600c90805190602001906117cb929190613605565b5050565b601660009054906101000a900460ff1681565b6117ea6125d2565b80601660016101000a81548160ff0219169083600281111561180f5761180e614c6c565b5b021790555050565b601660019054906101000a900460ff1681565b600061183582612bae565b600001519050919050565b6118486125d2565b8060128190555050565b61185a6125d2565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90614535565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119556125d2565b61195f6000612d48565b565b6119696125d2565b80600a908051906020019061197f929190613605565b5050565b600d5481565b60105481565b6119976125d2565b8060138190555050565b6119a96125d2565b600060028111156119bd576119bc614c6c565b5b601660019054906101000a900460ff1660028111156119df576119de614c6c565b5b1415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906145b5565b60405180910390fd5b601454611a2b610ff6565b82611a369190614913565b1115611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614695565b60405180910390fd5b611a818282612b90565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ab66125d2565b80600e8190555050565b606060038054611acf90614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90614b0d565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b5050505050905090565b611b5a612518565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906145f5565b60405180910390fd5b8060076000611bd5612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c82612518565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc791906143a2565b60405180910390a35050565b611cde848484612650565b611cea84848484612e0c565b611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906146b5565b60405180910390fd5b50505050565b611d376125d2565b8060118190555050565b60135481565b611d4f6125d2565b80600f8190555050565b6060611d648261250a565b611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a906145d5565b60405180910390fd5b60001515601660009054906101000a900460ff1615151415611e5157600c8054611dcc90614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611df890614b0d565b8015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b50505050509050611ead565b6000611e5b612fa3565b90506000815111611e7b5760405180602001604052806000815250611ea9565b80611e8584613035565b600b604051602001611e99939291906142d3565b6040516020818303038152906040525b9150505b919050565b60155481565b60016002811115611ecc57611ecb614c6c565b5b601660019054906101000a900460ff166002811115611eee57611eed614c6c565b5b14611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906146f5565b60405180910390fd5b60135483601554611f3f9190614913565b1115611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f77906144f5565b60405180910390fd5b60145483611f8c610ff6565b611f969190614913565b1115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906147b5565b60405180910390fd5b600083118015611fe95750600f548311155b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90614495565b60405180910390fd5b6120328282612375565b612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614555565b60405180910390fd5b612079611a85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461226757601254836120b833611864565b6120c29190614913565b1115612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa906144f5565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661221557600e546010548461216591906149f4565b61216f919061499a565b3410156121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890614635565b60405180910390fd5b6001600960006121bf612518565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612266565b600e5483612223919061499a565b341015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614635565b60405180910390fd5b5b5b826015546122759190614913565b6015819055506122853384612b90565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6122b26125d2565b80601660006101000a81548160ff02191690831515021790555050565b6122d76125d2565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161238991906142b8565b6040516020818303038152906040528051906020012090506123ef848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483613196565b156123fe576001915050612404565b60009150505b92915050565b60085481565b6124186125d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614455565b60405180910390fd5b61249181612d48565b50565b60115481565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6125da612518565b73ffffffffffffffffffffffffffffffffffffffff166125f8611a85565b73ffffffffffffffffffffffffffffffffffffffff161461264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614595565b60405180910390fd5b565b600061265b82612bae565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612682612518565b73ffffffffffffffffffffffffffffffffffffffff1614806126de57506126a7612518565b73ffffffffffffffffffffffffffffffffffffffff166126c684610e36565b73ffffffffffffffffffffffffffffffffffffffff16145b806126fa57506126f982600001516126f4612518565b6122e1565b5b90508061273c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273390614615565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561281e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612815906144d5565b60405180910390fd5b61282b85858560016131ad565b61283b6000848460000151612520565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b2057612a7f8161250a565b15612b1f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8985858560016131b3565b5050505050565b612baa8282604051806020016040528060008152506131b9565b5050565b612bb661368b565b612bbf8261250a565b612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf590614475565b60405180910390fd5b60008290505b60008110612d07576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d43565b50808060019003915050612c04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a90614775565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612e2d8473ffffffffffffffffffffffffffffffffffffffff166131cb565b15612f96578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e56612518565b8786866040518563ffffffff1660e01b8152600401612e789493929190614334565b602060405180830381600087803b158015612e9257600080fd5b505af1925050508015612ec357506040513d601f19601f82011682018060405250810190612ec09190613b42565b60015b612f46573d8060008114612ef3576040519150601f19603f3d011682016040523d82523d6000602084013e612ef8565b606091505b50600081511415612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f35906146b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f9b565b600190505b949350505050565b6060600a8054612fb290614b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612fde90614b0d565b801561302b5780601f106130005761010080835404028352916020019161302b565b820191906000526020600020905b81548152906001019060200180831161300e57829003601f168201915b5050505050905090565b6060600082141561307d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613191565b600082905060005b600082146130af57808061309890614b70565b915050600a826130a89190614969565b9150613085565b60008167ffffffffffffffff8111156130cb576130ca614cf9565b5b6040519080825280601f01601f1916602001820160405280156130fd5781602001600182028036833780820191505090505b5090505b6000851461318a5760018261311691906149f4565b9150600a856131259190614bdd565b60306131319190614913565b60f81b81838151811061314757613146614cca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131839190614969565b9450613101565b8093505050505b919050565b6000826131a385846131ee565b1490509392505050565b50505050565b50505050565b6131c68383836001613244565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613239576132248286838151811061321757613216614cca565b5b60200260200101516135c3565b9150808061323190614b70565b9150506131f7565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b2906146d5565b60405180910390fd5b60008414156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614715565b60405180910390fd5b61330c60008683876131ad565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156135a657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613591576135516000888488612e0c565b613590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613587906146b5565b60405180910390fd5b5b818060010192505080806001019150506134da565b5080600181905550506135bc60008683876131b3565b5050505050565b60008183106135db576135d682846135ee565b6135e6565b6135e583836135ee565b5b905092915050565b600082600052816020526040600020905092915050565b82805461361190614b0d565b90600052602060002090601f016020900481019282613633576000855561367a565b82601f1061364c57805160ff191683800117855561367a565b8280016001018555821561367a579182015b8281111561367957825182559160200191906001019061365e565b5b50905061368791906136c5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136de5760008160009055506001016136c6565b5090565b60006136f56136f084614815565b6147f0565b90508281526020810184848401111561371157613710614d37565b5b61371c848285614acb565b509392505050565b600061373761373284614846565b6147f0565b90508281526020810184848401111561375357613752614d37565b5b61375e848285614acb565b509392505050565b600081359050613775816154f5565b92915050565b60008083601f84011261379157613790614d2d565b5b8235905067ffffffffffffffff8111156137ae576137ad614d28565b5b6020830191508360208202830111156137ca576137c9614d32565b5b9250929050565b6000813590506137e08161550c565b92915050565b6000813590506137f581615523565b92915050565b60008135905061380a8161553a565b92915050565b60008151905061381f8161553a565b92915050565b600082601f83011261383a57613839614d2d565b5b813561384a8482602086016136e2565b91505092915050565b60008135905061386281615551565b92915050565b600082601f83011261387d5761387c614d2d565b5b813561388d848260208601613724565b91505092915050565b6000813590506138a581615561565b92915050565b6000602082840312156138c1576138c0614d41565b5b60006138cf84828501613766565b91505092915050565b600080604083850312156138ef576138ee614d41565b5b60006138fd85828601613766565b925050602061390e85828601613766565b9150509250929050565b60008060006060848603121561393157613930614d41565b5b600061393f86828701613766565b935050602061395086828701613766565b925050604061396186828701613896565b9150509250925092565b6000806000806080858703121561398557613984614d41565b5b600061399387828801613766565b94505060206139a487828801613766565b93505060406139b587828801613896565b925050606085013567ffffffffffffffff8111156139d6576139d5614d3c565b5b6139e287828801613825565b91505092959194509250565b60008060408385031215613a0557613a04614d41565b5b6000613a1385828601613766565b9250506020613a24858286016137d1565b9150509250929050565b60008060408385031215613a4557613a44614d41565b5b6000613a5385828601613766565b9250506020613a6485828601613896565b9150509250929050565b60008060208385031215613a8557613a84614d41565b5b600083013567ffffffffffffffff811115613aa357613aa2614d3c565b5b613aaf8582860161377b565b92509250509250929050565b600060208284031215613ad157613ad0614d41565b5b6000613adf848285016137d1565b91505092915050565b600060208284031215613afe57613afd614d41565b5b6000613b0c848285016137e6565b91505092915050565b600060208284031215613b2b57613b2a614d41565b5b6000613b39848285016137fb565b91505092915050565b600060208284031215613b5857613b57614d41565b5b6000613b6684828501613810565b91505092915050565b600060208284031215613b8557613b84614d41565b5b6000613b9384828501613853565b91505092915050565b600060208284031215613bb257613bb1614d41565b5b600082013567ffffffffffffffff811115613bd057613bcf614d3c565b5b613bdc84828501613868565b91505092915050565b600060208284031215613bfb57613bfa614d41565b5b6000613c0984828501613896565b91505092915050565b600080600060408486031215613c2b57613c2a614d41565b5b6000613c3986828701613896565b935050602084013567ffffffffffffffff811115613c5a57613c59614d3c565b5b613c668682870161377b565b92509250509250925092565b6000613c7e838361429a565b60208301905092915050565b613c9381614a28565b82525050565b613caa613ca582614a28565b614bb9565b82525050565b6000613cbb8261489c565b613cc581856148ca565b9350613cd083614877565b8060005b83811015613d01578151613ce88882613c72565b9750613cf3836148bd565b925050600181019050613cd4565b5085935050505092915050565b613d1781614a3a565b82525050565b613d2681614a46565b82525050565b6000613d37826148a7565b613d4181856148db565b9350613d51818560208601614ada565b613d5a81614d46565b840191505092915050565b613d6e81614ab9565b82525050565b6000613d7f826148b2565b613d8981856148f7565b9350613d99818560208601614ada565b613da281614d46565b840191505092915050565b6000613db8826148b2565b613dc28185614908565b9350613dd2818560208601614ada565b80840191505092915050565b60008154613deb81614b0d565b613df58186614908565b94506001821660008114613e105760018114613e2157613e54565b60ff19831686528186019350613e54565b613e2a85614887565b60005b83811015613e4c57815481890152600182019150602081019050613e2d565b838801955050505b50505092915050565b6000613e6a6022836148f7565b9150613e7582614d64565b604082019050919050565b6000613e8d602e836148f7565b9150613e9882614db3565b604082019050919050565b6000613eb06026836148f7565b9150613ebb82614e02565b604082019050919050565b6000613ed3602a836148f7565b9150613ede82614e51565b604082019050919050565b6000613ef66014836148f7565b9150613f0182614ea0565b602082019050919050565b6000613f196023836148f7565b9150613f2482614ec9565b604082019050919050565b6000613f3c6025836148f7565b9150613f4782614f18565b604082019050919050565b6000613f5f6008836148f7565b9150613f6a82614f67565b602082019050919050565b6000613f826039836148f7565b9150613f8d82614f90565b604082019050919050565b6000613fa5602b836148f7565b9150613fb082614fdf565b604082019050919050565b6000613fc8601b836148f7565b9150613fd38261502e565b602082019050919050565b6000613feb6026836148f7565b9150613ff682615057565b604082019050919050565b600061400e6020836148f7565b9150614019826150a6565b602082019050919050565b60006140316017836148f7565b915061403c826150cf565b602082019050919050565b6000614054602f836148f7565b915061405f826150f8565b604082019050919050565b6000614077601a836148f7565b915061408282615147565b602082019050919050565b600061409a6032836148f7565b91506140a582615170565b604082019050919050565b60006140bd601d836148f7565b91506140c8826151bf565b602082019050919050565b60006140e06022836148f7565b91506140eb826151e8565b604082019050919050565b60006141036000836148ec565b915061410e82615237565b600082019050919050565b60006141266010836148f7565b91506141318261523a565b602082019050919050565b60006141496008836148f7565b915061415482615263565b602082019050919050565b600061416c6033836148f7565b91506141778261528c565b604082019050919050565b600061418f6021836148f7565b915061419a826152db565b604082019050919050565b60006141b26017836148f7565b91506141bd8261532a565b602082019050919050565b60006141d56028836148f7565b91506141e082615353565b604082019050919050565b60006141f86014836148f7565b9150614203826153a2565b602082019050919050565b600061421b602e836148f7565b9150614226826153cb565b604082019050919050565b600061423e602f836148f7565b91506142498261541a565b604082019050919050565b6000614261602d836148f7565b915061426c82615469565b604082019050919050565b60006142846009836148f7565b915061428f826154b8565b602082019050919050565b6142a381614aaf565b82525050565b6142b281614aaf565b82525050565b60006142c48284613c99565b60148201915081905092915050565b60006142df8286613dad565b91506142eb8285613dad565b91506142f78284613dde565b9150819050949350505050565b600061430f826140f6565b9150819050919050565b600060208201905061432e6000830184613c8a565b92915050565b60006080820190506143496000830187613c8a565b6143566020830186613c8a565b61436360408301856142a9565b81810360608301526143758184613d2c565b905095945050505050565b6000602082019050818103600083015261439a8184613cb0565b905092915050565b60006020820190506143b76000830184613d0e565b92915050565b60006020820190506143d26000830184613d1d565b92915050565b60006020820190506143ed6000830184613d65565b92915050565b6000602082019050818103600083015261440d8184613d74565b905092915050565b6000602082019050818103600083015261442e81613e5d565b9050919050565b6000602082019050818103600083015261444e81613e80565b9050919050565b6000602082019050818103600083015261446e81613ea3565b9050919050565b6000602082019050818103600083015261448e81613ec6565b9050919050565b600060208201905081810360008301526144ae81613ee9565b9050919050565b600060208201905081810360008301526144ce81613f0c565b9050919050565b600060208201905081810360008301526144ee81613f2f565b9050919050565b6000602082019050818103600083015261450e81613f52565b9050919050565b6000602082019050818103600083015261452e81613f75565b9050919050565b6000602082019050818103600083015261454e81613f98565b9050919050565b6000602082019050818103600083015261456e81613fbb565b9050919050565b6000602082019050818103600083015261458e81613fde565b9050919050565b600060208201905081810360008301526145ae81614001565b9050919050565b600060208201905081810360008301526145ce81614024565b9050919050565b600060208201905081810360008301526145ee81614047565b9050919050565b6000602082019050818103600083015261460e8161406a565b9050919050565b6000602082019050818103600083015261462e8161408d565b9050919050565b6000602082019050818103600083015261464e816140b0565b9050919050565b6000602082019050818103600083015261466e816140d3565b9050919050565b6000602082019050818103600083015261468e81614119565b9050919050565b600060208201905081810360008301526146ae8161413c565b9050919050565b600060208201905081810360008301526146ce8161415f565b9050919050565b600060208201905081810360008301526146ee81614182565b9050919050565b6000602082019050818103600083015261470e816141a5565b9050919050565b6000602082019050818103600083015261472e816141c8565b9050919050565b6000602082019050818103600083015261474e816141eb565b9050919050565b6000602082019050818103600083015261476e8161420e565b9050919050565b6000602082019050818103600083015261478e81614231565b9050919050565b600060208201905081810360008301526147ae81614254565b9050919050565b600060208201905081810360008301526147ce81614277565b9050919050565b60006020820190506147ea60008301846142a9565b92915050565b60006147fa61480b565b90506148068282614b3f565b919050565b6000604051905090565b600067ffffffffffffffff8211156148305761482f614cf9565b5b61483982614d46565b9050602081019050919050565b600067ffffffffffffffff82111561486157614860614cf9565b5b61486a82614d46565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061491e82614aaf565b915061492983614aaf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495e5761495d614c0e565b5b828201905092915050565b600061497482614aaf565b915061497f83614aaf565b92508261498f5761498e614c3d565b5b828204905092915050565b60006149a582614aaf565b91506149b083614aaf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149e9576149e8614c0e565b5b828202905092915050565b60006149ff82614aaf565b9150614a0a83614aaf565b925082821015614a1d57614a1c614c0e565b5b828203905092915050565b6000614a3382614a8f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614a8a826154e1565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614ac482614a7c565b9050919050565b82818337600083830152505050565b60005b83811015614af8578082015181840152602081019050614add565b83811115614b07576000848401525b50505050565b60006002820490506001821680614b2557607f821691505b60208210811415614b3957614b38614c9b565b5b50919050565b614b4882614d46565b810181811067ffffffffffffffff82111715614b6757614b66614cf9565b5b80604052505050565b6000614b7b82614aaf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bae57614bad614c0e565b5b600182019050919050565b6000614bc482614bcb565b9050919050565b6000614bd682614d57565b9050919050565b6000614be882614aaf565b9150614bf383614aaf565b925082614c0357614c02614c3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b600381106154f2576154f1614c6c565b5b50565b6154fe81614a28565b811461550957600080fd5b50565b61551581614a3a565b811461552057600080fd5b50565b61552c81614a46565b811461553757600080fd5b50565b61554381614a50565b811461554e57600080fd5b50565b6003811061555e57600080fd5b50565b61556a81614aaf565b811461557557600080fd5b5056fea2646970667358221220b7cdcdc574bafb0c4924f531c8b77e5712bcdfac33bb5a615a028819ff3284ef64736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ 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.