ERC-721
Overview
Max Total Supply
1,496 THF
Holders
446
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 THFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HuangFei
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 HuangFei 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.0069 ether; uint256 public WL_PRICE = 0.005 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 = 2000; uint256 public MAX_SUPPLY = 4444; uint256 public COMBO_MINT = 5; uint256 public FREE_MINT_COUNT = 0; bool public revealed = false; SaleState public saleState = SaleState.PAUSE; constructor() ERC721A('HuangFei', 'THF') { 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, '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!'); if(_quantity == COMBO_MINT || _quantity == COMBO_MINT * 2) { uint256 multiples = 1; if (_quantity == COMBO_MINT * 2) { multiples = 2; } require( msg.value >= (_quantity - MAX_PER_FREE * multiples) * SALE_PRICE, 'Please send the exact amount.' ); } else { 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(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] && FREE_MINT_COUNT + MAX_PER_FREE <= MAX_WL_SUPPLY) { require( msg.value >= (_quantity - MAX_PER_FREE) * WL_PRICE, 'Please send the exact amount.' ); whitelistClaimed[_msgSender()] = true; FREE_MINT_COUNT = FREE_MINT_COUNT + MAX_PER_FREE; } else { require(msg.value >= _quantity * WL_PRICE, 'Please send the exact amount.'); } } _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 setMaxWhitelistSuplly(uint256 _maxWLSupply) public onlyOwner { MAX_WL_SUPPLY = _maxWLSupply; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { MAX_SUPPLY = _maxSupply; } function setComboMint(uint256 _combo) public onlyOwner { COMBO_MINT = _combo; } 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":"COMBO_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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_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 HuangFei.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":"uint256","name":"_combo","type":"uint256"}],"name":"setComboMint","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":"setMaxWhitelistSuplly","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 HuangFei.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
60806040526001805560405180602001604052806000815250600a90805190602001906200002f929190620003d3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007d929190620003d3565b506618838370f34000600d556611c37937e08000600e55600a600f556001601055600a60115560056012556107d060135561115c601455600560155560006016556000601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff0219169083600281111562000102576200010162000513565b5b02179055503480156200011457600080fd5b506040518060400160405280600881526020017f4875616e674665690000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5448460000000000000000000000000000000000000000000000000000000000815250620001a1620001956200022160201b60201c565b6200022960201b60201c565b8160029080519060200190620001b9929190620003d3565b508060039080519060200190620001d2929190620003d3565b5050506200021b6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002ed60201b60201c565b6200059a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fd6200031960201b60201c565b80600c908051906020019062000315929190620003d3565b5050565b620003296200022160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034f620003aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039f90620004aa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e190620004dd565b90600052602060002090601f01602090048101928262000405576000855562000451565b82601f106200042057805160ff191683800117855562000451565b8280016001018555821562000451579182015b828111156200045057825182559160200191906001019062000433565b5b50905062000460919062000464565b5090565b5b808211156200047f57600081600090555060010162000465565b5090565b600062000492602083620004cc565b91506200049f8262000571565b602082019050919050565b60006020820190508181036000830152620004c58162000483565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004f657607f821691505b602082108114156200050d576200050c62000542565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6156c480620005aa6000396000f3fe6080604052600436106103505760003560e01c80636f8b44b0116101c6578063bc337182116100f7578063e945971c11610095578063ef8319cd1161006f578063ef8319cd14610c3a578063f2fde38b14610c65578063f3b2db3f14610c8e578063f43a22dc14610cb957610350565b8063e945971c14610b97578063e985e9c514610bc0578063ed475f6314610bfd57610350565b8063c87b56dd116100d1578063c87b56dd14610ad8578063d2cab05614610b15578063db4bec4414610b31578063e0a8085314610b6e57610350565b8063bc33718214610a5b578063c56acc8f14610a84578063c6f6f21614610aaf57610350565b80638ba4cc3c1161016457806395d89b411161013e57806395d89b41146109b3578063a22cb465146109de578063ae64c92e14610a07578063b88d4fde14610a3257610350565b80638ba4cc3c146109365780638da5cb5b1461095f5780638dd07d0f1461098a57610350565b80637ec4a659116101a05780637ec4a6591461088e5780637f205a74146108b757806381511e23146108e257806385f692a01461090d57610350565b80636f8b44b01461081157806370a082311461083a578063715018a61461087757610350565b80632fbba115116102a05780634f6ccce71161023e57806356de96db1161021857806356de96db14610757578063603f4d52146107805780636352211e146107ab57806366f05dda146107e857610350565b80634f6ccce7146106c65780634fdd43cb14610703578063518302271461072c57610350565b80633ccfd60b1161027a5780633ccfd60b1461062057806342842e0e14610637578063438b630014610660578063440bc7f31461069d57610350565b80632fbba115146105a157806331c3c7a0146105ca57806332cb6b0c146105f557610350565b806316ba10e01161030d5780631919fed7116102e75780631919fed7146104f657806323b872dd1461051f5780632db11544146105485780632f745c591461056457610350565b806316ba10e01461047757806318160ddd146104a057806319119bc9146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa57806312da6f8e146104235780631324575e1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613c2b565b610ce4565b60405161038991906144b8565b60405180910390f35b34801561039e57600080fd5b506103a7610e2e565b6040516103b49190614509565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613cfb565b610ec0565b6040516103f1919061442f565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613b44565b610f45565b005b34801561042f57600080fd5b5061044a60048036038101906104459190613cfb565b61105e565b005b34801561045857600080fd5b50610461611070565b60405161046e91906148eb565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613cb2565b611076565b005b3480156104ac57600080fd5b506104b5611098565b6040516104c291906148eb565b60405180910390f35b3480156104d757600080fd5b506104e06110a2565b6040516104ed91906148eb565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613cfb565b6110a8565b005b34801561052b57600080fd5b5061054660048036038101906105419190613a2e565b6110ba565b005b610562600480360381019061055d9190613cfb565b6110ca565b005b34801561057057600080fd5b5061058b60048036038101906105869190613b44565b611389565b60405161059891906148eb565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613cfb565b61157b565b005b3480156105d657600080fd5b506105df6116a1565b6040516105ec91906148eb565b60405180910390f35b34801561060157600080fd5b5061060a6116a7565b60405161061791906148eb565b60405180910390f35b34801561062c57600080fd5b506106356116ad565b005b34801561064357600080fd5b5061065e60048036038101906106599190613a2e565b611764565b005b34801561066c57600080fd5b50610687600480360381019061068291906139c1565b611784565b6040516106949190614496565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613bfe565b61188f565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613cfb565b6118a1565b6040516106fa91906148eb565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613cb2565b6118f4565b005b34801561073857600080fd5b50610741611916565b60405161074e91906144b8565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613c85565b611929565b005b34801561078c57600080fd5b5061079561195e565b6040516107a291906144ee565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613cfb565b611971565b6040516107df919061442f565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613cfb565b611987565b005b34801561081d57600080fd5b5061083860048036038101906108339190613cfb565b611999565b005b34801561084657600080fd5b50610861600480360381019061085c91906139c1565b6119ab565b60405161086e91906148eb565b60405180910390f35b34801561088357600080fd5b5061088c611a94565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613cb2565b611aa8565b005b3480156108c357600080fd5b506108cc611aca565b6040516108d991906148eb565b60405180910390f35b3480156108ee57600080fd5b506108f7611ad0565b60405161090491906148eb565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613cfb565b611ad6565b005b34801561094257600080fd5b5061095d60048036038101906109589190613b44565b611ae8565b005b34801561096b57600080fd5b50610974611bcc565b604051610981919061442f565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613cfb565b611bf5565b005b3480156109bf57600080fd5b506109c8611c07565b6040516109d59190614509565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613b04565b611c99565b005b348015610a1357600080fd5b50610a1c611e1a565b604051610a2991906148eb565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a549190613a81565b611e20565b005b348015610a6757600080fd5b50610a826004803603810190610a7d9190613cfb565b611e7c565b005b348015610a9057600080fd5b50610a99611e8e565b604051610aa691906148eb565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613cfb565b611e94565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613cfb565b611ea6565b604051610b0c9190614509565b60405180910390f35b610b2f6004803603810190610b2a9190613d28565b611fff565b005b348015610b3d57600080fd5b50610b586004803603810190610b5391906139c1565b6123a0565b604051610b6591906144b8565b60405180910390f35b348015610b7a57600080fd5b50610b956004803603810190610b909190613bd1565b6123c0565b005b348015610ba357600080fd5b50610bbe6004803603810190610bb99190613cfb565b6123e5565b005b348015610bcc57600080fd5b50610be76004803603810190610be291906139ee565b6123f7565b604051610bf491906144b8565b60405180910390f35b348015610c0957600080fd5b50610c246004803603810190610c1f9190613b84565b61248b565b604051610c3191906144b8565b60405180910390f35b348015610c4657600080fd5b50610c4f612520565b604051610c5c91906144d3565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c8791906139c1565b612526565b005b348015610c9a57600080fd5b50610ca36125aa565b604051610cb091906148eb565b60405180910390f35b348015610cc557600080fd5b50610cce6125b0565b604051610cdb91906148eb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610daf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e1757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e275750610e26826125b6565b5b9050919050565b606060028054610e3d90614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990614c23565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b6000610ecb82612620565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906148ab565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5082611971565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb89061476b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fe061262e565b73ffffffffffffffffffffffffffffffffffffffff16148061100f575061100e8161100961262e565b6123f7565b5b61104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110459061462b565b60405180910390fd5b611059838383612636565b505050565b6110666126e8565b8060158190555050565b60155481565b61107e6126e8565b80600b908051906020019061109492919061371b565b5050565b6000600154905090565b60125481565b6110b06126e8565b80600d8190555050565b6110c5838383612766565b505050565b6002808111156110dd576110dc614d82565b5b601760019054906101000a900460ff1660028111156110ff576110fe614d82565b5b1461113f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111369061484b565b60405180910390fd5b6014548161114b611098565b6111559190614a29565b1115611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906148cb565b60405180910390fd5b6000811180156111a85750600f548111155b6111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906145ab565b60405180910390fd5b6111ef611bcc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137c576011548161122e336119ab565b6112389190614a29565b1115611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061460b565b60405180910390fd5b601554811480611296575060026015546112939190614ab0565b81145b1561132a5760006001905060026015546112b09190614ab0565b8214156112bc57600290505b600d54816010546112cd9190614ab0565b836112d89190614b0a565b6112e29190614ab0565b341015611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b9061474b565b60405180910390fd5b5061137b565b600d54816113389190614ab0565b34101561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061474b565b60405180910390fd5b5b5b6113863382612ca6565b50565b6000611394836119ab565b82106113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061452b565b60405180910390fd5b60006113df611098565b905060008060005b83811015611539576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114d957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152b5786841415611522578195505050505050611575565b83806001019450505b5080806001019150506113e7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c9061486b565b60405180910390fd5b92915050565b6115836126e8565b6000600281111561159757611596614d82565b5b601760019054906101000a900460ff1660028111156115b9576115b8614d82565b5b14156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906146cb565b60405180910390fd5b6000811161163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116349061454b565b60405180910390fd5b60145481611649611098565b6116539190614a29565b1115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906147ab565b60405180910390fd5b61169e3382612ca6565b50565b600e5481565b60145481565b6116b56126e8565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116db9061441a565b60006040518083038185875af1925050503d8060008114611718576040519150601f19603f3d011682016040523d82523d6000602084013e61171d565b606091505b5050905080611761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117589061478b565b60405180910390fd5b50565b61177f83838360405180602001604052806000815250611e20565b505050565b60606000611791836119ab565b905060008167ffffffffffffffff8111156117af576117ae614e0f565b5b6040519080825280602002602001820160405280156117dd5781602001602082028036833780820191505090505b50905060006001905060005b83811080156117fa57506014548211155b1561188357600061180a83611971565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186f578284838151811061185457611853614de0565b5b602002602001018181525050818061186b90614c86565b9250505b828061187a90614c86565b935050506117e9565b82945050505050919050565b6118976126e8565b8060088190555050565b60006118ab611098565b82106118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e3906145cb565b60405180910390fd5b819050919050565b6118fc6126e8565b80600c908051906020019061191292919061371b565b5050565b601760009054906101000a900460ff1681565b6119316126e8565b80601760016101000a81548160ff0219169083600281111561195657611955614d82565b5b021790555050565b601760019054906101000a900460ff1681565b600061197c82612cc4565b600001519050919050565b61198f6126e8565b8060128190555050565b6119a16126e8565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a139061464b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a9c6126e8565b611aa66000612e5e565b565b611ab06126e8565b80600a9080519060200190611ac692919061371b565b5050565b600d5481565b60105481565b611ade6126e8565b8060138190555050565b611af06126e8565b60006002811115611b0457611b03614d82565b5b601760019054906101000a900460ff166002811115611b2657611b25614d82565b5b1415611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e906146cb565b60405180910390fd5b601454611b72611098565b82611b7d9190614a29565b1115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906147ab565b60405180910390fd5b611bc88282612ca6565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bfd6126e8565b80600e8190555050565b606060038054611c1690614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4290614c23565b8015611c8f5780601f10611c6457610100808354040283529160200191611c8f565b820191906000526020600020905b815481529060010190602001808311611c7257829003601f168201915b5050505050905090565b611ca161262e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061470b565b60405180910390fd5b8060076000611d1c61262e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc961262e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0e91906144b8565b60405180910390a35050565b60165481565b611e2b848484612766565b611e3784848484612f22565b611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d906147cb565b60405180910390fd5b50505050565b611e846126e8565b8060118190555050565b60135481565b611e9c6126e8565b80600f8190555050565b6060611eb182612620565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee7906146eb565b60405180910390fd5b60001515601760009054906101000a900460ff1615151415611f9e57600c8054611f1990614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4590614c23565b8015611f925780601f10611f6757610100808354040283529160200191611f92565b820191906000526020600020905b815481529060010190602001808311611f7557829003601f168201915b50505050509050611ffa565b6000611fa86130b9565b90506000815111611fc85760405180602001604052806000815250611ff6565b80611fd28461314b565b600b604051602001611fe6939291906143e9565b6040516020818303038152906040525b9150505b919050565b6001600281111561201357612012614d82565b5b601760019054906101000a900460ff16600281111561203557612034614d82565b5b14612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c9061480b565b60405180910390fd5b60145483612081611098565b61208b9190614a29565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906148cb565b60405180910390fd5b6000831180156120de5750600f548311155b61211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906145ab565b60405180910390fd5b612127828261248b565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d9061466b565b60405180910390fd5b61216e611bcc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461239157601254836121ad336119ab565b6121b79190614a29565b11156121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef9061460b565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561226357506013546010546016546122609190614a29565b11155b1561233f57600e54601054846122799190614b0a565b6122839190614ab0565b3410156122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc9061474b565b60405180910390fd5b6001600960006122d361262e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506010546016546123349190614a29565b601681905550612390565b600e548361234d9190614ab0565b34101561238f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123869061474b565b60405180910390fd5b5b5b61239b3384612ca6565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6123c86126e8565b80601760006101000a81548160ff02191690831515021790555050565b6123ed6126e8565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161249f91906143ce565b604051602081830303815290604052805190602001209050612505848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600854836132ac565b1561251457600191505061251a565b60009150505b92915050565b60085481565b61252e6126e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561259e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125959061456b565b60405180910390fd5b6125a781612e5e565b50565b60115481565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126f061262e565b73ffffffffffffffffffffffffffffffffffffffff1661270e611bcc565b73ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b906146ab565b60405180910390fd5b565b600061277182612cc4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661279861262e565b73ffffffffffffffffffffffffffffffffffffffff1614806127f457506127bd61262e565b73ffffffffffffffffffffffffffffffffffffffff166127dc84610ec0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612810575061280f826000015161280a61262e565b6123f7565b5b905080612852576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128499061472b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb9061468b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b906145eb565b60405180910390fd5b61294185858560016132c3565b6129516000848460000151612636565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c3657612b9581612620565b15612c355782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9f85858560016132c9565b5050505050565b612cc08282604051806020016040528060008152506132cf565b5050565b612ccc6137a1565b612cd582612620565b612d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0b9061458b565b60405180910390fd5b60008290505b60008110612e1d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0e578092505050612e59565b50808060019003915050612d1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e509061488b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f438473ffffffffffffffffffffffffffffffffffffffff166132e1565b156130ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6c61262e565b8786866040518563ffffffff1660e01b8152600401612f8e949392919061444a565b602060405180830381600087803b158015612fa857600080fd5b505af1925050508015612fd957506040513d601f19601f82011682018060405250810190612fd69190613c58565b60015b61305c573d8060008114613009576040519150601f19603f3d011682016040523d82523d6000602084013e61300e565b606091505b50600081511415613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b906147cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b1565b600190505b949350505050565b6060600a80546130c890614c23565b80601f01602080910402602001604051908101604052809291908181526020018280546130f490614c23565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614c86565b915050600a826131be9190614a7f565b915061319b565b60008167ffffffffffffffff8111156131e1576131e0614e0f565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c9190614b0a565b9150600a8561323b9190614cf3565b60306132479190614a29565b60f81b81838151811061325d5761325c614de0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132999190614a7f565b9450613217565b8093505050505b919050565b6000826132b98584613304565b1490509392505050565b50505050565b50505050565b6132dc838383600161335a565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561334f5761333a8286838151811061332d5761332c614de0565b5b60200260200101516136d9565b9150808061334790614c86565b91505061330d565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c8906147eb565b60405180910390fd5b6000841415613415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340c9061482b565b60405180910390fd5b61342260008683876132c3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156136bc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156136a7576136676000888488612f22565b6136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d906147cb565b60405180910390fd5b5b818060010192505080806001019150506135f0565b5080600181905550506136d260008683876132c9565b5050505050565b60008183106136f1576136ec8284613704565b6136fc565b6136fb8383613704565b5b905092915050565b600082600052816020526040600020905092915050565b82805461372790614c23565b90600052602060002090601f0160209004810192826137495760008555613790565b82601f1061376257805160ff1916838001178555613790565b82800160010185558215613790579182015b8281111561378f578251825591602001919060010190613774565b5b50905061379d91906137db565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137f45760008160009055506001016137dc565b5090565b600061380b6138068461492b565b614906565b90508281526020810184848401111561382757613826614e4d565b5b613832848285614be1565b509392505050565b600061384d6138488461495c565b614906565b90508281526020810184848401111561386957613868614e4d565b5b613874848285614be1565b509392505050565b60008135905061388b8161560b565b92915050565b60008083601f8401126138a7576138a6614e43565b5b8235905067ffffffffffffffff8111156138c4576138c3614e3e565b5b6020830191508360208202830111156138e0576138df614e48565b5b9250929050565b6000813590506138f681615622565b92915050565b60008135905061390b81615639565b92915050565b60008135905061392081615650565b92915050565b60008151905061393581615650565b92915050565b600082601f8301126139505761394f614e43565b5b81356139608482602086016137f8565b91505092915050565b60008135905061397881615667565b92915050565b600082601f83011261399357613992614e43565b5b81356139a384826020860161383a565b91505092915050565b6000813590506139bb81615677565b92915050565b6000602082840312156139d7576139d6614e57565b5b60006139e58482850161387c565b91505092915050565b60008060408385031215613a0557613a04614e57565b5b6000613a138582860161387c565b9250506020613a248582860161387c565b9150509250929050565b600080600060608486031215613a4757613a46614e57565b5b6000613a558682870161387c565b9350506020613a668682870161387c565b9250506040613a77868287016139ac565b9150509250925092565b60008060008060808587031215613a9b57613a9a614e57565b5b6000613aa98782880161387c565b9450506020613aba8782880161387c565b9350506040613acb878288016139ac565b925050606085013567ffffffffffffffff811115613aec57613aeb614e52565b5b613af88782880161393b565b91505092959194509250565b60008060408385031215613b1b57613b1a614e57565b5b6000613b298582860161387c565b9250506020613b3a858286016138e7565b9150509250929050565b60008060408385031215613b5b57613b5a614e57565b5b6000613b698582860161387c565b9250506020613b7a858286016139ac565b9150509250929050565b60008060208385031215613b9b57613b9a614e57565b5b600083013567ffffffffffffffff811115613bb957613bb8614e52565b5b613bc585828601613891565b92509250509250929050565b600060208284031215613be757613be6614e57565b5b6000613bf5848285016138e7565b91505092915050565b600060208284031215613c1457613c13614e57565b5b6000613c22848285016138fc565b91505092915050565b600060208284031215613c4157613c40614e57565b5b6000613c4f84828501613911565b91505092915050565b600060208284031215613c6e57613c6d614e57565b5b6000613c7c84828501613926565b91505092915050565b600060208284031215613c9b57613c9a614e57565b5b6000613ca984828501613969565b91505092915050565b600060208284031215613cc857613cc7614e57565b5b600082013567ffffffffffffffff811115613ce657613ce5614e52565b5b613cf28482850161397e565b91505092915050565b600060208284031215613d1157613d10614e57565b5b6000613d1f848285016139ac565b91505092915050565b600080600060408486031215613d4157613d40614e57565b5b6000613d4f868287016139ac565b935050602084013567ffffffffffffffff811115613d7057613d6f614e52565b5b613d7c86828701613891565b92509250509250925092565b6000613d9483836143b0565b60208301905092915050565b613da981614b3e565b82525050565b613dc0613dbb82614b3e565b614ccf565b82525050565b6000613dd1826149b2565b613ddb81856149e0565b9350613de68361498d565b8060005b83811015613e17578151613dfe8882613d88565b9750613e09836149d3565b925050600181019050613dea565b5085935050505092915050565b613e2d81614b50565b82525050565b613e3c81614b5c565b82525050565b6000613e4d826149bd565b613e5781856149f1565b9350613e67818560208601614bf0565b613e7081614e5c565b840191505092915050565b613e8481614bcf565b82525050565b6000613e95826149c8565b613e9f8185614a0d565b9350613eaf818560208601614bf0565b613eb881614e5c565b840191505092915050565b6000613ece826149c8565b613ed88185614a1e565b9350613ee8818560208601614bf0565b80840191505092915050565b60008154613f0181614c23565b613f0b8186614a1e565b94506001821660008114613f265760018114613f3757613f6a565b60ff19831686528186019350613f6a565b613f408561499d565b60005b83811015613f6257815481890152600182019150602081019050613f43565b838801955050505b50505092915050565b6000613f80602283614a0d565b9150613f8b82614e7a565b604082019050919050565b6000613fa3602e83614a0d565b9150613fae82614ec9565b604082019050919050565b6000613fc6602683614a0d565b9150613fd182614f18565b604082019050919050565b6000613fe9602a83614a0d565b9150613ff482614f67565b604082019050919050565b600061400c601483614a0d565b915061401782614fb6565b602082019050919050565b600061402f602383614a0d565b915061403a82614fdf565b604082019050919050565b6000614052602583614a0d565b915061405d8261502e565b604082019050919050565b6000614075600883614a0d565b91506140808261507d565b602082019050919050565b6000614098603983614a0d565b91506140a3826150a6565b604082019050919050565b60006140bb602b83614a0d565b91506140c6826150f5565b604082019050919050565b60006140de601b83614a0d565b91506140e982615144565b602082019050919050565b6000614101602683614a0d565b915061410c8261516d565b604082019050919050565b6000614124602083614a0d565b915061412f826151bc565b602082019050919050565b6000614147601783614a0d565b9150614152826151e5565b602082019050919050565b600061416a602f83614a0d565b91506141758261520e565b604082019050919050565b600061418d601a83614a0d565b91506141988261525d565b602082019050919050565b60006141b0603283614a0d565b91506141bb82615286565b604082019050919050565b60006141d3601d83614a0d565b91506141de826152d5565b602082019050919050565b60006141f6602283614a0d565b9150614201826152fe565b604082019050919050565b6000614219600083614a02565b91506142248261534d565b600082019050919050565b600061423c601083614a0d565b915061424782615350565b602082019050919050565b600061425f600883614a0d565b915061426a82615379565b602082019050919050565b6000614282603383614a0d565b915061428d826153a2565b604082019050919050565b60006142a5602183614a0d565b91506142b0826153f1565b604082019050919050565b60006142c8601783614a0d565b91506142d382615440565b602082019050919050565b60006142eb602883614a0d565b91506142f682615469565b604082019050919050565b600061430e601483614a0d565b9150614319826154b8565b602082019050919050565b6000614331602e83614a0d565b915061433c826154e1565b604082019050919050565b6000614354602f83614a0d565b915061435f82615530565b604082019050919050565b6000614377602d83614a0d565b91506143828261557f565b604082019050919050565b600061439a600983614a0d565b91506143a5826155ce565b602082019050919050565b6143b981614bc5565b82525050565b6143c881614bc5565b82525050565b60006143da8284613daf565b60148201915081905092915050565b60006143f58286613ec3565b91506144018285613ec3565b915061440d8284613ef4565b9150819050949350505050565b60006144258261420c565b9150819050919050565b60006020820190506144446000830184613da0565b92915050565b600060808201905061445f6000830187613da0565b61446c6020830186613da0565b61447960408301856143bf565b818103606083015261448b8184613e42565b905095945050505050565b600060208201905081810360008301526144b08184613dc6565b905092915050565b60006020820190506144cd6000830184613e24565b92915050565b60006020820190506144e86000830184613e33565b92915050565b60006020820190506145036000830184613e7b565b92915050565b600060208201905081810360008301526145238184613e8a565b905092915050565b6000602082019050818103600083015261454481613f73565b9050919050565b6000602082019050818103600083015261456481613f96565b9050919050565b6000602082019050818103600083015261458481613fb9565b9050919050565b600060208201905081810360008301526145a481613fdc565b9050919050565b600060208201905081810360008301526145c481613fff565b9050919050565b600060208201905081810360008301526145e481614022565b9050919050565b6000602082019050818103600083015261460481614045565b9050919050565b6000602082019050818103600083015261462481614068565b9050919050565b600060208201905081810360008301526146448161408b565b9050919050565b60006020820190508181036000830152614664816140ae565b9050919050565b60006020820190508181036000830152614684816140d1565b9050919050565b600060208201905081810360008301526146a4816140f4565b9050919050565b600060208201905081810360008301526146c481614117565b9050919050565b600060208201905081810360008301526146e48161413a565b9050919050565b600060208201905081810360008301526147048161415d565b9050919050565b6000602082019050818103600083015261472481614180565b9050919050565b60006020820190508181036000830152614744816141a3565b9050919050565b60006020820190508181036000830152614764816141c6565b9050919050565b60006020820190508181036000830152614784816141e9565b9050919050565b600060208201905081810360008301526147a48161422f565b9050919050565b600060208201905081810360008301526147c481614252565b9050919050565b600060208201905081810360008301526147e481614275565b9050919050565b6000602082019050818103600083015261480481614298565b9050919050565b60006020820190508181036000830152614824816142bb565b9050919050565b60006020820190508181036000830152614844816142de565b9050919050565b6000602082019050818103600083015261486481614301565b9050919050565b6000602082019050818103600083015261488481614324565b9050919050565b600060208201905081810360008301526148a481614347565b9050919050565b600060208201905081810360008301526148c48161436a565b9050919050565b600060208201905081810360008301526148e48161438d565b9050919050565b600060208201905061490060008301846143bf565b92915050565b6000614910614921565b905061491c8282614c55565b919050565b6000604051905090565b600067ffffffffffffffff82111561494657614945614e0f565b5b61494f82614e5c565b9050602081019050919050565b600067ffffffffffffffff82111561497757614976614e0f565b5b61498082614e5c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a3482614bc5565b9150614a3f83614bc5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7457614a73614d24565b5b828201905092915050565b6000614a8a82614bc5565b9150614a9583614bc5565b925082614aa557614aa4614d53565b5b828204905092915050565b6000614abb82614bc5565b9150614ac683614bc5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aff57614afe614d24565b5b828202905092915050565b6000614b1582614bc5565b9150614b2083614bc5565b925082821015614b3357614b32614d24565b5b828203905092915050565b6000614b4982614ba5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614ba0826155f7565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614bda82614b92565b9050919050565b82818337600083830152505050565b60005b83811015614c0e578082015181840152602081019050614bf3565b83811115614c1d576000848401525b50505050565b60006002820490506001821680614c3b57607f821691505b60208210811415614c4f57614c4e614db1565b5b50919050565b614c5e82614e5c565b810181811067ffffffffffffffff82111715614c7d57614c7c614e0f565b5b80604052505050565b6000614c9182614bc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cc457614cc3614d24565b5b600182019050919050565b6000614cda82614ce1565b9050919050565b6000614cec82614e6d565b9050919050565b6000614cfe82614bc5565b9150614d0983614bc5565b925082614d1957614d18614d53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6003811061560857615607614d82565b5b50565b61561481614b3e565b811461561f57600080fd5b50565b61562b81614b50565b811461563657600080fd5b50565b61564281614b5c565b811461564d57600080fd5b50565b61565981614b66565b811461566457600080fd5b50565b6003811061567457600080fd5b50565b61568081614bc5565b811461568b57600080fd5b5056fea26469706673582212203f33db8e9fb60badb012aab26a6ee09d135dd50d1451be00a2cd66a59416947864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106103505760003560e01c80636f8b44b0116101c6578063bc337182116100f7578063e945971c11610095578063ef8319cd1161006f578063ef8319cd14610c3a578063f2fde38b14610c65578063f3b2db3f14610c8e578063f43a22dc14610cb957610350565b8063e945971c14610b97578063e985e9c514610bc0578063ed475f6314610bfd57610350565b8063c87b56dd116100d1578063c87b56dd14610ad8578063d2cab05614610b15578063db4bec4414610b31578063e0a8085314610b6e57610350565b8063bc33718214610a5b578063c56acc8f14610a84578063c6f6f21614610aaf57610350565b80638ba4cc3c1161016457806395d89b411161013e57806395d89b41146109b3578063a22cb465146109de578063ae64c92e14610a07578063b88d4fde14610a3257610350565b80638ba4cc3c146109365780638da5cb5b1461095f5780638dd07d0f1461098a57610350565b80637ec4a659116101a05780637ec4a6591461088e5780637f205a74146108b757806381511e23146108e257806385f692a01461090d57610350565b80636f8b44b01461081157806370a082311461083a578063715018a61461087757610350565b80632fbba115116102a05780634f6ccce71161023e57806356de96db1161021857806356de96db14610757578063603f4d52146107805780636352211e146107ab57806366f05dda146107e857610350565b80634f6ccce7146106c65780634fdd43cb14610703578063518302271461072c57610350565b80633ccfd60b1161027a5780633ccfd60b1461062057806342842e0e14610637578063438b630014610660578063440bc7f31461069d57610350565b80632fbba115146105a157806331c3c7a0146105ca57806332cb6b0c146105f557610350565b806316ba10e01161030d5780631919fed7116102e75780631919fed7146104f657806323b872dd1461051f5780632db11544146105485780632f745c591461056457610350565b806316ba10e01461047757806318160ddd146104a057806319119bc9146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa57806312da6f8e146104235780631324575e1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613c2b565b610ce4565b60405161038991906144b8565b60405180910390f35b34801561039e57600080fd5b506103a7610e2e565b6040516103b49190614509565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613cfb565b610ec0565b6040516103f1919061442f565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613b44565b610f45565b005b34801561042f57600080fd5b5061044a60048036038101906104459190613cfb565b61105e565b005b34801561045857600080fd5b50610461611070565b60405161046e91906148eb565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613cb2565b611076565b005b3480156104ac57600080fd5b506104b5611098565b6040516104c291906148eb565b60405180910390f35b3480156104d757600080fd5b506104e06110a2565b6040516104ed91906148eb565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613cfb565b6110a8565b005b34801561052b57600080fd5b5061054660048036038101906105419190613a2e565b6110ba565b005b610562600480360381019061055d9190613cfb565b6110ca565b005b34801561057057600080fd5b5061058b60048036038101906105869190613b44565b611389565b60405161059891906148eb565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613cfb565b61157b565b005b3480156105d657600080fd5b506105df6116a1565b6040516105ec91906148eb565b60405180910390f35b34801561060157600080fd5b5061060a6116a7565b60405161061791906148eb565b60405180910390f35b34801561062c57600080fd5b506106356116ad565b005b34801561064357600080fd5b5061065e60048036038101906106599190613a2e565b611764565b005b34801561066c57600080fd5b50610687600480360381019061068291906139c1565b611784565b6040516106949190614496565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613bfe565b61188f565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613cfb565b6118a1565b6040516106fa91906148eb565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613cb2565b6118f4565b005b34801561073857600080fd5b50610741611916565b60405161074e91906144b8565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613c85565b611929565b005b34801561078c57600080fd5b5061079561195e565b6040516107a291906144ee565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613cfb565b611971565b6040516107df919061442f565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613cfb565b611987565b005b34801561081d57600080fd5b5061083860048036038101906108339190613cfb565b611999565b005b34801561084657600080fd5b50610861600480360381019061085c91906139c1565b6119ab565b60405161086e91906148eb565b60405180910390f35b34801561088357600080fd5b5061088c611a94565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613cb2565b611aa8565b005b3480156108c357600080fd5b506108cc611aca565b6040516108d991906148eb565b60405180910390f35b3480156108ee57600080fd5b506108f7611ad0565b60405161090491906148eb565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613cfb565b611ad6565b005b34801561094257600080fd5b5061095d60048036038101906109589190613b44565b611ae8565b005b34801561096b57600080fd5b50610974611bcc565b604051610981919061442f565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613cfb565b611bf5565b005b3480156109bf57600080fd5b506109c8611c07565b6040516109d59190614509565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613b04565b611c99565b005b348015610a1357600080fd5b50610a1c611e1a565b604051610a2991906148eb565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a549190613a81565b611e20565b005b348015610a6757600080fd5b50610a826004803603810190610a7d9190613cfb565b611e7c565b005b348015610a9057600080fd5b50610a99611e8e565b604051610aa691906148eb565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613cfb565b611e94565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613cfb565b611ea6565b604051610b0c9190614509565b60405180910390f35b610b2f6004803603810190610b2a9190613d28565b611fff565b005b348015610b3d57600080fd5b50610b586004803603810190610b5391906139c1565b6123a0565b604051610b6591906144b8565b60405180910390f35b348015610b7a57600080fd5b50610b956004803603810190610b909190613bd1565b6123c0565b005b348015610ba357600080fd5b50610bbe6004803603810190610bb99190613cfb565b6123e5565b005b348015610bcc57600080fd5b50610be76004803603810190610be291906139ee565b6123f7565b604051610bf491906144b8565b60405180910390f35b348015610c0957600080fd5b50610c246004803603810190610c1f9190613b84565b61248b565b604051610c3191906144b8565b60405180910390f35b348015610c4657600080fd5b50610c4f612520565b604051610c5c91906144d3565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c8791906139c1565b612526565b005b348015610c9a57600080fd5b50610ca36125aa565b604051610cb091906148eb565b60405180910390f35b348015610cc557600080fd5b50610cce6125b0565b604051610cdb91906148eb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610daf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e1757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e275750610e26826125b6565b5b9050919050565b606060028054610e3d90614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990614c23565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b6000610ecb82612620565b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906148ab565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5082611971565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb89061476b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fe061262e565b73ffffffffffffffffffffffffffffffffffffffff16148061100f575061100e8161100961262e565b6123f7565b5b61104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110459061462b565b60405180910390fd5b611059838383612636565b505050565b6110666126e8565b8060158190555050565b60155481565b61107e6126e8565b80600b908051906020019061109492919061371b565b5050565b6000600154905090565b60125481565b6110b06126e8565b80600d8190555050565b6110c5838383612766565b505050565b6002808111156110dd576110dc614d82565b5b601760019054906101000a900460ff1660028111156110ff576110fe614d82565b5b1461113f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111369061484b565b60405180910390fd5b6014548161114b611098565b6111559190614a29565b1115611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906148cb565b60405180910390fd5b6000811180156111a85750600f548111155b6111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906145ab565b60405180910390fd5b6111ef611bcc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137c576011548161122e336119ab565b6112389190614a29565b1115611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061460b565b60405180910390fd5b601554811480611296575060026015546112939190614ab0565b81145b1561132a5760006001905060026015546112b09190614ab0565b8214156112bc57600290505b600d54816010546112cd9190614ab0565b836112d89190614b0a565b6112e29190614ab0565b341015611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b9061474b565b60405180910390fd5b5061137b565b600d54816113389190614ab0565b34101561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061474b565b60405180910390fd5b5b5b6113863382612ca6565b50565b6000611394836119ab565b82106113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061452b565b60405180910390fd5b60006113df611098565b905060008060005b83811015611539576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114d957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152b5786841415611522578195505050505050611575565b83806001019450505b5080806001019150506113e7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c9061486b565b60405180910390fd5b92915050565b6115836126e8565b6000600281111561159757611596614d82565b5b601760019054906101000a900460ff1660028111156115b9576115b8614d82565b5b14156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906146cb565b60405180910390fd5b6000811161163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116349061454b565b60405180910390fd5b60145481611649611098565b6116539190614a29565b1115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906147ab565b60405180910390fd5b61169e3382612ca6565b50565b600e5481565b60145481565b6116b56126e8565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116db9061441a565b60006040518083038185875af1925050503d8060008114611718576040519150601f19603f3d011682016040523d82523d6000602084013e61171d565b606091505b5050905080611761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117589061478b565b60405180910390fd5b50565b61177f83838360405180602001604052806000815250611e20565b505050565b60606000611791836119ab565b905060008167ffffffffffffffff8111156117af576117ae614e0f565b5b6040519080825280602002602001820160405280156117dd5781602001602082028036833780820191505090505b50905060006001905060005b83811080156117fa57506014548211155b1561188357600061180a83611971565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186f578284838151811061185457611853614de0565b5b602002602001018181525050818061186b90614c86565b9250505b828061187a90614c86565b935050506117e9565b82945050505050919050565b6118976126e8565b8060088190555050565b60006118ab611098565b82106118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e3906145cb565b60405180910390fd5b819050919050565b6118fc6126e8565b80600c908051906020019061191292919061371b565b5050565b601760009054906101000a900460ff1681565b6119316126e8565b80601760016101000a81548160ff0219169083600281111561195657611955614d82565b5b021790555050565b601760019054906101000a900460ff1681565b600061197c82612cc4565b600001519050919050565b61198f6126e8565b8060128190555050565b6119a16126e8565b8060148190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a139061464b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a9c6126e8565b611aa66000612e5e565b565b611ab06126e8565b80600a9080519060200190611ac692919061371b565b5050565b600d5481565b60105481565b611ade6126e8565b8060138190555050565b611af06126e8565b60006002811115611b0457611b03614d82565b5b601760019054906101000a900460ff166002811115611b2657611b25614d82565b5b1415611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e906146cb565b60405180910390fd5b601454611b72611098565b82611b7d9190614a29565b1115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906147ab565b60405180910390fd5b611bc88282612ca6565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bfd6126e8565b80600e8190555050565b606060038054611c1690614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4290614c23565b8015611c8f5780601f10611c6457610100808354040283529160200191611c8f565b820191906000526020600020905b815481529060010190602001808311611c7257829003601f168201915b5050505050905090565b611ca161262e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061470b565b60405180910390fd5b8060076000611d1c61262e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc961262e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0e91906144b8565b60405180910390a35050565b60165481565b611e2b848484612766565b611e3784848484612f22565b611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d906147cb565b60405180910390fd5b50505050565b611e846126e8565b8060118190555050565b60135481565b611e9c6126e8565b80600f8190555050565b6060611eb182612620565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee7906146eb565b60405180910390fd5b60001515601760009054906101000a900460ff1615151415611f9e57600c8054611f1990614c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4590614c23565b8015611f925780601f10611f6757610100808354040283529160200191611f92565b820191906000526020600020905b815481529060010190602001808311611f7557829003601f168201915b50505050509050611ffa565b6000611fa86130b9565b90506000815111611fc85760405180602001604052806000815250611ff6565b80611fd28461314b565b600b604051602001611fe6939291906143e9565b6040516020818303038152906040525b9150505b919050565b6001600281111561201357612012614d82565b5b601760019054906101000a900460ff16600281111561203557612034614d82565b5b14612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c9061480b565b60405180910390fd5b60145483612081611098565b61208b9190614a29565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906148cb565b60405180910390fd5b6000831180156120de5750600f548311155b61211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906145ab565b60405180910390fd5b612127828261248b565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d9061466b565b60405180910390fd5b61216e611bcc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461239157601254836121ad336119ab565b6121b79190614a29565b11156121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef9061460b565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561226357506013546010546016546122609190614a29565b11155b1561233f57600e54601054846122799190614b0a565b6122839190614ab0565b3410156122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc9061474b565b60405180910390fd5b6001600960006122d361262e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506010546016546123349190614a29565b601681905550612390565b600e548361234d9190614ab0565b34101561238f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123869061474b565b60405180910390fd5b5b5b61239b3384612ca6565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6123c86126e8565b80601760006101000a81548160ff02191690831515021790555050565b6123ed6126e8565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161249f91906143ce565b604051602081830303815290604052805190602001209050612505848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600854836132ac565b1561251457600191505061251a565b60009150505b92915050565b60085481565b61252e6126e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561259e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125959061456b565b60405180910390fd5b6125a781612e5e565b50565b60115481565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126f061262e565b73ffffffffffffffffffffffffffffffffffffffff1661270e611bcc565b73ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b906146ab565b60405180910390fd5b565b600061277182612cc4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661279861262e565b73ffffffffffffffffffffffffffffffffffffffff1614806127f457506127bd61262e565b73ffffffffffffffffffffffffffffffffffffffff166127dc84610ec0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612810575061280f826000015161280a61262e565b6123f7565b5b905080612852576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128499061472b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb9061468b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b906145eb565b60405180910390fd5b61294185858560016132c3565b6129516000848460000151612636565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c3657612b9581612620565b15612c355782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9f85858560016132c9565b5050505050565b612cc08282604051806020016040528060008152506132cf565b5050565b612ccc6137a1565b612cd582612620565b612d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0b9061458b565b60405180910390fd5b60008290505b60008110612e1d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0e578092505050612e59565b50808060019003915050612d1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e509061488b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f438473ffffffffffffffffffffffffffffffffffffffff166132e1565b156130ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6c61262e565b8786866040518563ffffffff1660e01b8152600401612f8e949392919061444a565b602060405180830381600087803b158015612fa857600080fd5b505af1925050508015612fd957506040513d601f19601f82011682018060405250810190612fd69190613c58565b60015b61305c573d8060008114613009576040519150601f19603f3d011682016040523d82523d6000602084013e61300e565b606091505b50600081511415613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b906147cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b1565b600190505b949350505050565b6060600a80546130c890614c23565b80601f01602080910402602001604051908101604052809291908181526020018280546130f490614c23565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614c86565b915050600a826131be9190614a7f565b915061319b565b60008167ffffffffffffffff8111156131e1576131e0614e0f565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c9190614b0a565b9150600a8561323b9190614cf3565b60306132479190614a29565b60f81b81838151811061325d5761325c614de0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132999190614a7f565b9450613217565b8093505050505b919050565b6000826132b98584613304565b1490509392505050565b50505050565b50505050565b6132dc838383600161335a565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561334f5761333a8286838151811061332d5761332c614de0565b5b60200260200101516136d9565b9150808061334790614c86565b91505061330d565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c8906147eb565b60405180910390fd5b6000841415613415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340c9061482b565b60405180910390fd5b61342260008683876132c3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156136bc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156136a7576136676000888488612f22565b6136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d906147cb565b60405180910390fd5b5b818060010192505080806001019150506135f0565b5080600181905550506136d260008683876132c9565b5050505050565b60008183106136f1576136ec8284613704565b6136fc565b6136fb8383613704565b5b905092915050565b600082600052816020526040600020905092915050565b82805461372790614c23565b90600052602060002090601f0160209004810192826137495760008555613790565b82601f1061376257805160ff1916838001178555613790565b82800160010185558215613790579182015b8281111561378f578251825591602001919060010190613774565b5b50905061379d91906137db565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137f45760008160009055506001016137dc565b5090565b600061380b6138068461492b565b614906565b90508281526020810184848401111561382757613826614e4d565b5b613832848285614be1565b509392505050565b600061384d6138488461495c565b614906565b90508281526020810184848401111561386957613868614e4d565b5b613874848285614be1565b509392505050565b60008135905061388b8161560b565b92915050565b60008083601f8401126138a7576138a6614e43565b5b8235905067ffffffffffffffff8111156138c4576138c3614e3e565b5b6020830191508360208202830111156138e0576138df614e48565b5b9250929050565b6000813590506138f681615622565b92915050565b60008135905061390b81615639565b92915050565b60008135905061392081615650565b92915050565b60008151905061393581615650565b92915050565b600082601f8301126139505761394f614e43565b5b81356139608482602086016137f8565b91505092915050565b60008135905061397881615667565b92915050565b600082601f83011261399357613992614e43565b5b81356139a384826020860161383a565b91505092915050565b6000813590506139bb81615677565b92915050565b6000602082840312156139d7576139d6614e57565b5b60006139e58482850161387c565b91505092915050565b60008060408385031215613a0557613a04614e57565b5b6000613a138582860161387c565b9250506020613a248582860161387c565b9150509250929050565b600080600060608486031215613a4757613a46614e57565b5b6000613a558682870161387c565b9350506020613a668682870161387c565b9250506040613a77868287016139ac565b9150509250925092565b60008060008060808587031215613a9b57613a9a614e57565b5b6000613aa98782880161387c565b9450506020613aba8782880161387c565b9350506040613acb878288016139ac565b925050606085013567ffffffffffffffff811115613aec57613aeb614e52565b5b613af88782880161393b565b91505092959194509250565b60008060408385031215613b1b57613b1a614e57565b5b6000613b298582860161387c565b9250506020613b3a858286016138e7565b9150509250929050565b60008060408385031215613b5b57613b5a614e57565b5b6000613b698582860161387c565b9250506020613b7a858286016139ac565b9150509250929050565b60008060208385031215613b9b57613b9a614e57565b5b600083013567ffffffffffffffff811115613bb957613bb8614e52565b5b613bc585828601613891565b92509250509250929050565b600060208284031215613be757613be6614e57565b5b6000613bf5848285016138e7565b91505092915050565b600060208284031215613c1457613c13614e57565b5b6000613c22848285016138fc565b91505092915050565b600060208284031215613c4157613c40614e57565b5b6000613c4f84828501613911565b91505092915050565b600060208284031215613c6e57613c6d614e57565b5b6000613c7c84828501613926565b91505092915050565b600060208284031215613c9b57613c9a614e57565b5b6000613ca984828501613969565b91505092915050565b600060208284031215613cc857613cc7614e57565b5b600082013567ffffffffffffffff811115613ce657613ce5614e52565b5b613cf28482850161397e565b91505092915050565b600060208284031215613d1157613d10614e57565b5b6000613d1f848285016139ac565b91505092915050565b600080600060408486031215613d4157613d40614e57565b5b6000613d4f868287016139ac565b935050602084013567ffffffffffffffff811115613d7057613d6f614e52565b5b613d7c86828701613891565b92509250509250925092565b6000613d9483836143b0565b60208301905092915050565b613da981614b3e565b82525050565b613dc0613dbb82614b3e565b614ccf565b82525050565b6000613dd1826149b2565b613ddb81856149e0565b9350613de68361498d565b8060005b83811015613e17578151613dfe8882613d88565b9750613e09836149d3565b925050600181019050613dea565b5085935050505092915050565b613e2d81614b50565b82525050565b613e3c81614b5c565b82525050565b6000613e4d826149bd565b613e5781856149f1565b9350613e67818560208601614bf0565b613e7081614e5c565b840191505092915050565b613e8481614bcf565b82525050565b6000613e95826149c8565b613e9f8185614a0d565b9350613eaf818560208601614bf0565b613eb881614e5c565b840191505092915050565b6000613ece826149c8565b613ed88185614a1e565b9350613ee8818560208601614bf0565b80840191505092915050565b60008154613f0181614c23565b613f0b8186614a1e565b94506001821660008114613f265760018114613f3757613f6a565b60ff19831686528186019350613f6a565b613f408561499d565b60005b83811015613f6257815481890152600182019150602081019050613f43565b838801955050505b50505092915050565b6000613f80602283614a0d565b9150613f8b82614e7a565b604082019050919050565b6000613fa3602e83614a0d565b9150613fae82614ec9565b604082019050919050565b6000613fc6602683614a0d565b9150613fd182614f18565b604082019050919050565b6000613fe9602a83614a0d565b9150613ff482614f67565b604082019050919050565b600061400c601483614a0d565b915061401782614fb6565b602082019050919050565b600061402f602383614a0d565b915061403a82614fdf565b604082019050919050565b6000614052602583614a0d565b915061405d8261502e565b604082019050919050565b6000614075600883614a0d565b91506140808261507d565b602082019050919050565b6000614098603983614a0d565b91506140a3826150a6565b604082019050919050565b60006140bb602b83614a0d565b91506140c6826150f5565b604082019050919050565b60006140de601b83614a0d565b91506140e982615144565b602082019050919050565b6000614101602683614a0d565b915061410c8261516d565b604082019050919050565b6000614124602083614a0d565b915061412f826151bc565b602082019050919050565b6000614147601783614a0d565b9150614152826151e5565b602082019050919050565b600061416a602f83614a0d565b91506141758261520e565b604082019050919050565b600061418d601a83614a0d565b91506141988261525d565b602082019050919050565b60006141b0603283614a0d565b91506141bb82615286565b604082019050919050565b60006141d3601d83614a0d565b91506141de826152d5565b602082019050919050565b60006141f6602283614a0d565b9150614201826152fe565b604082019050919050565b6000614219600083614a02565b91506142248261534d565b600082019050919050565b600061423c601083614a0d565b915061424782615350565b602082019050919050565b600061425f600883614a0d565b915061426a82615379565b602082019050919050565b6000614282603383614a0d565b915061428d826153a2565b604082019050919050565b60006142a5602183614a0d565b91506142b0826153f1565b604082019050919050565b60006142c8601783614a0d565b91506142d382615440565b602082019050919050565b60006142eb602883614a0d565b91506142f682615469565b604082019050919050565b600061430e601483614a0d565b9150614319826154b8565b602082019050919050565b6000614331602e83614a0d565b915061433c826154e1565b604082019050919050565b6000614354602f83614a0d565b915061435f82615530565b604082019050919050565b6000614377602d83614a0d565b91506143828261557f565b604082019050919050565b600061439a600983614a0d565b91506143a5826155ce565b602082019050919050565b6143b981614bc5565b82525050565b6143c881614bc5565b82525050565b60006143da8284613daf565b60148201915081905092915050565b60006143f58286613ec3565b91506144018285613ec3565b915061440d8284613ef4565b9150819050949350505050565b60006144258261420c565b9150819050919050565b60006020820190506144446000830184613da0565b92915050565b600060808201905061445f6000830187613da0565b61446c6020830186613da0565b61447960408301856143bf565b818103606083015261448b8184613e42565b905095945050505050565b600060208201905081810360008301526144b08184613dc6565b905092915050565b60006020820190506144cd6000830184613e24565b92915050565b60006020820190506144e86000830184613e33565b92915050565b60006020820190506145036000830184613e7b565b92915050565b600060208201905081810360008301526145238184613e8a565b905092915050565b6000602082019050818103600083015261454481613f73565b9050919050565b6000602082019050818103600083015261456481613f96565b9050919050565b6000602082019050818103600083015261458481613fb9565b9050919050565b600060208201905081810360008301526145a481613fdc565b9050919050565b600060208201905081810360008301526145c481613fff565b9050919050565b600060208201905081810360008301526145e481614022565b9050919050565b6000602082019050818103600083015261460481614045565b9050919050565b6000602082019050818103600083015261462481614068565b9050919050565b600060208201905081810360008301526146448161408b565b9050919050565b60006020820190508181036000830152614664816140ae565b9050919050565b60006020820190508181036000830152614684816140d1565b9050919050565b600060208201905081810360008301526146a4816140f4565b9050919050565b600060208201905081810360008301526146c481614117565b9050919050565b600060208201905081810360008301526146e48161413a565b9050919050565b600060208201905081810360008301526147048161415d565b9050919050565b6000602082019050818103600083015261472481614180565b9050919050565b60006020820190508181036000830152614744816141a3565b9050919050565b60006020820190508181036000830152614764816141c6565b9050919050565b60006020820190508181036000830152614784816141e9565b9050919050565b600060208201905081810360008301526147a48161422f565b9050919050565b600060208201905081810360008301526147c481614252565b9050919050565b600060208201905081810360008301526147e481614275565b9050919050565b6000602082019050818103600083015261480481614298565b9050919050565b60006020820190508181036000830152614824816142bb565b9050919050565b60006020820190508181036000830152614844816142de565b9050919050565b6000602082019050818103600083015261486481614301565b9050919050565b6000602082019050818103600083015261488481614324565b9050919050565b600060208201905081810360008301526148a481614347565b9050919050565b600060208201905081810360008301526148c48161436a565b9050919050565b600060208201905081810360008301526148e48161438d565b9050919050565b600060208201905061490060008301846143bf565b92915050565b6000614910614921565b905061491c8282614c55565b919050565b6000604051905090565b600067ffffffffffffffff82111561494657614945614e0f565b5b61494f82614e5c565b9050602081019050919050565b600067ffffffffffffffff82111561497757614976614e0f565b5b61498082614e5c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a3482614bc5565b9150614a3f83614bc5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7457614a73614d24565b5b828201905092915050565b6000614a8a82614bc5565b9150614a9583614bc5565b925082614aa557614aa4614d53565b5b828204905092915050565b6000614abb82614bc5565b9150614ac683614bc5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aff57614afe614d24565b5b828202905092915050565b6000614b1582614bc5565b9150614b2083614bc5565b925082821015614b3357614b32614d24565b5b828203905092915050565b6000614b4982614ba5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614ba0826155f7565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614bda82614b92565b9050919050565b82818337600083830152505050565b60005b83811015614c0e578082015181840152602081019050614bf3565b83811115614c1d576000848401525b50505050565b60006002820490506001821680614c3b57607f821691505b60208210811415614c4f57614c4e614db1565b5b50919050565b614c5e82614e5c565b810181811067ffffffffffffffff82111715614c7d57614c7c614e0f565b5b80604052505050565b6000614c9182614bc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cc457614cc3614d24565b5b600182019050919050565b6000614cda82614ce1565b9050919050565b6000614cec82614e6d565b9050919050565b6000614cfe82614bc5565b9150614d0983614bc5565b925082614d1957614d18614d53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207075626c6963206d696e74000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6003811061560857615607614d82565b5b50565b61561481614b3e565b811461561f57600080fd5b50565b61562b81614b50565b811461563657600080fd5b50565b61564281614b5c565b811461564d57600080fd5b50565b61565981614b66565b811461566457600080fd5b50565b6003811061567457600080fd5b50565b61568081614bc5565b811461568b57600080fd5b5056fea26469706673582212203f33db8e9fb60badb012aab26a6ee09d135dd50d1451be00a2cd66a59416947864736f6c63430008070033
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.