Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,722 PHANT
Holders
1,299
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PHANTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Phantom
Compiler Version
v0.8.6+commit.11564f7e
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/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // ,----, // ,-.----. ,--, ,--. ,/ .`| ,----.. ____ // \ / \ ,--.'| ,---, ,--.'| ,` .' : / / \ ,' , `. // | : \ ,--, | : ' .' \ ,--,: : | ; ; // . : ,-+-,.' _ | // | | .\ :,---.'| : ' / ; '. ,`--.'`| ' :.'___,/ ,'. / ;. \ ,-+-. ; , || // . : |: || | : _' |: : \ | : : | || : |. ; / ` ; ,--.'|' | ;| // | | \ :: : |.' |: | /\ \ : | \ | :; |.'; ;; | ; \ ; || | ,', | ': // | : . /| ' ' ; :| : ' ;. : | : ' '; |`----' | || : | ; | '| | / | | || // ; | |`-' ' | .'. || | ;/ \ \' ' ;. ; ' : ;. | ' ' ' :' | : | : |, // | | ; | | : | '' : | \ \ ,'| | | \ | | | '' ; \; / |; . | ; |--' // : ' | ' : | : ;| | ' '--' ' : | ; .' ' : | \ \ ', / | : | | , // : : : | | ' ,/ | : : | | '`--' ; |.' ; : / | : ' |/ // | | : ; : ;--' | | ,' ' : | '---' \ \ .' ; | |`-' // `---'.| | ,/ `--'' ; |.' `---` | ;/ // `---` '---' '---' '---' // Developer Telegram -> WomboGoon contract Phantom is ERC721, Ownable { using Strings for uint256; uint256 public price = 0.09 ether; bool public revealed; string private _mysteryURI; uint256 public supply = 3333; bool public saleLive = false; uint256 public totalSupply; string private _contractURI; string private _tokenBaseURI; mapping(uint256 => bool) private usedNonce; constructor() ERC721("Phantom", "PHANT") {} // for presale function presaleMint(uint256 tokenQuantity) external payable { require(price * tokenQuantity <= msg.value, "x price"); require(totalSupply + tokenQuantity <= supply, "x supply"); require(saleLive, "closed"); require(tokenQuantity <= 4, "exceed"); for (uint256 i = 0; i < tokenQuantity; i++) { _safeMint(msg.sender, totalSupply + i + 1); } totalSupply += tokenQuantity; } // main sale function mint(uint256 tokenQuantity) external payable { require(saleLive, "closed"); require(tokenQuantity <= 4, "exceed"); require(price * tokenQuantity <= msg.value, "x price"); require(totalSupply + tokenQuantity <= supply, "x supply"); for (uint256 i = 0; i < tokenQuantity; i++) { _safeMint(msg.sender, totalSupply + i + 1); } totalSupply += tokenQuantity; } function gift(uint256 tokenQuantity, address wallet) external onlyOwner { for (uint256 i = 0; i < tokenQuantity; i++) { _safeMint(wallet, totalSupply + i + 1); } totalSupply += tokenQuantity; } // 200 + 200 + 350 + 1475 + 1450 + 1475 +1450 + 1450 + 1450 + 500 function withdraw() external { uint256 currentBalance = address(this).balance; payable(0xECe5Be2e951A8f9B6317bE94fAc75349E9146722).transfer( (currentBalance * 200) / 10000 ); payable(0x1E69347BfC401C35866f8C3587e900c7996EDC6e).transfer( (currentBalance * 200) / 10000 ); payable(0x9A9Cff3917fc031533867aF0BcC1c056b2c5Bf3c).transfer( (currentBalance * 350) / 10000 ); payable(0x0243891818d63bE4f012956b04289dc490A2F60B).transfer( (currentBalance * 1475) / 10000 ); payable(0x1485857eEE414282Ef2993370C5AC7Ee89ea7978).transfer( (currentBalance * 1450) / 10000 ); payable(0xb1b3FC86B89d5C3F92E2766bca1085071Eab37F7).transfer( (currentBalance * 1475) / 10000 ); payable(0x2b16EdeaCa67C831ba2786E793705Abf11308E3C).transfer( (currentBalance * 1450) / 10000 ); payable(0x53A697f465701D6043097aDfC7213E72F85C84F2).transfer( (currentBalance * 1450) / 10000 ); payable(0xbF7cF91d8590a81bEE26af41EBF545b1C7B6699c).transfer( (currentBalance * 1450) / 10000 ); payable(0x5bceDA8d37A97Cc45E8adB6d5CfEff86c3b30507).transfer( (currentBalance * 500) / 10000 ); } function boolSaleStatus() external onlyOwner { saleLive = !saleLive; } function newMysteryURI(string calldata URI) public onlyOwner { _mysteryURI = URI; } function newPriceOfNFT(uint256 priceNew) external onlyOwner { price = priceNew; } function boolMysteryURI() public onlyOwner { revealed = !revealed; } function newBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function contractURI() public view returns (string memory) { return _contractURI; } function newContractURI(string calldata URI) external onlyOwner { _contractURI = URI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); if (revealed == false) { return _mysteryURI; } return string( abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json") ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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())) : ""; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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`, 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 be 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":[{"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":[],"name":"boolMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"boolSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceNew","type":"uint256"}],"name":"newPriceOfNFT","outputs":[],"stateMutability":"nonpayable","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":"tokenQuantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267013fbe85edc90000600755610d05600a556000600b60006101000a81548160ff0219169083151502179055503480156200003e57600080fd5b506040518060400160405280600781526020017f5068616e746f6d000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5048414e540000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c3929190620001d3565b508060019080519060200190620000dc929190620001d3565b505050620000ff620000f36200010560201b60201c565b6200010d60201b60201c565b620002e8565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e19062000283565b90600052602060002090601f01602090048101928262000205576000855562000251565b82601f106200022057805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025057825182559160200191906001019062000233565b5b50905062000260919062000264565b5090565b5b808211156200027f57600081600090555060010162000265565b5090565b600060028204905060018216806200029c57607f821691505b60208210811415620002b357620002b2620002b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61408a80620002f86000396000f3fe6080604052600436106101e35760003560e01c806383a076be11610102578063c87b56dd11610095578063e7ff7e2511610064578063e7ff7e2514610688578063e8a3d4851461069f578063e985e9c5146106ca578063f2fde38b14610707576101e3565b8063c87b56dd146105db578063c9b298f114610618578063e081b78114610634578063e4e60e1c1461065f576101e3565b8063a035b1fe116100d1578063a035b1fe14610542578063a0712d681461056d578063a22cb46514610589578063b88d4fde146105b2576101e3565b806383a076be1461049a5780638b375e71146104c35780638da5cb5b146104ec57806395d89b4114610517576101e3565b806342842e0e1161017a5780636fd452de116101495780636fd452de146103f457806370a082311461041d578063715018a61461045a5780637bd26ec514610471576101e3565b806342842e0e1461034c57806351830227146103755780636352211e146103a05780636e295d91146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e157806323b872dd1461030c5780633ccfd60b14610335576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612dd9565b610730565b60405161021c91906133b1565b60405180910390f35b34801561023157600080fd5b5061023a610812565b604051610247919061366e565b60405180910390f35b34801561025c57600080fd5b50610265610818565b60405161027291906133cc565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612e80565b6108aa565b6040516102af919061334a565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612d99565b61092f565b005b3480156102ed57600080fd5b506102f6610a47565b604051610303919061366e565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612c83565b610a4d565b005b34801561034157600080fd5b5061034a610aad565b005b34801561035857600080fd5b50610373600480360381019061036e9190612c83565b610f45565b005b34801561038157600080fd5b5061038a610f65565b60405161039791906133b1565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612e80565b610f78565b6040516103d4919061334a565b60405180910390f35b3480156103e957600080fd5b506103f261102a565b005b34801561040057600080fd5b5061041b60048036038101906104169190612e33565b6110d2565b005b34801561042957600080fd5b50610444600480360381019061043f9190612c16565b611164565b604051610451919061366e565b60405180910390f35b34801561046657600080fd5b5061046f61121c565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e33565b6112a4565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612ead565b611336565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612e80565b611411565b005b3480156104f857600080fd5b50610501611497565b60405161050e919061334a565b60405180910390f35b34801561052357600080fd5b5061052c6114c1565b60405161053991906133cc565b60405180910390f35b34801561054e57600080fd5b50610557611553565b604051610564919061366e565b60405180910390f35b61058760048036038101906105829190612e80565b611559565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612d59565b6116ec565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612cd6565b611702565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612e80565b611764565b60405161060f91906133cc565b60405180910390f35b610632600480360381019061062d9190612e80565b61188f565b005b34801561064057600080fd5b50610649611a22565b60405161065691906133b1565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612e33565b611a35565b005b34801561069457600080fd5b5061069d611ac7565b005b3480156106ab57600080fd5b506106b4611b6f565b6040516106c191906133cc565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612c43565b611c01565b6040516106fe91906133b1565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612c16565b611c95565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080b575061080a82611d8d565b5b9050919050565b600a5481565b60606000805461082790613902565b80601f016020809104026020016040519081016040528092919081815260200182805461085390613902565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611df7565b6108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb9061356e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093a82610f78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061360e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ca611e63565b73ffffffffffffffffffffffffffffffffffffffff1614806109f957506109f8816109f3611e63565b611c01565b5b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906134ee565b60405180910390fd5b610a428383611e6b565b505050565b600c5481565b610a5e610a58611e63565b82611f24565b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061362e565b60405180910390fd5b610aa8838383612002565b505050565b600047905073ece5be2e951a8f9b6317be94fac75349e914672273ffffffffffffffffffffffffffffffffffffffff166108fc61271060c884610af091906137be565b610afa919061378d565b9081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b50731e69347bfc401c35866f8c3587e900c7996edc6e73ffffffffffffffffffffffffffffffffffffffff166108fc61271060c884610b6491906137be565b610b6e919061378d565b9081150290604051600060405180830381858888f19350505050158015610b99573d6000803e3d6000fd5b50739a9cff3917fc031533867af0bcc1c056b2c5bf3c73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e84610bd991906137be565b610be3919061378d565b9081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b50730243891818d63be4f012956b04289dc490a2f60b73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105c384610c4e91906137be565b610c58919061378d565b9081150290604051600060405180830381858888f19350505050158015610c83573d6000803e3d6000fd5b50731485857eee414282ef2993370c5ac7ee89ea797873ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610cc391906137be565b610ccd919061378d565b9081150290604051600060405180830381858888f19350505050158015610cf8573d6000803e3d6000fd5b5073b1b3fc86b89d5c3f92e2766bca1085071eab37f773ffffffffffffffffffffffffffffffffffffffff166108fc6127106105c384610d3891906137be565b610d42919061378d565b9081150290604051600060405180830381858888f19350505050158015610d6d573d6000803e3d6000fd5b50732b16edeaca67c831ba2786e793705abf11308e3c73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610dad91906137be565b610db7919061378d565b9081150290604051600060405180830381858888f19350505050158015610de2573d6000803e3d6000fd5b507353a697f465701d6043097adfc7213e72f85c84f273ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610e2291906137be565b610e2c919061378d565b9081150290604051600060405180830381858888f19350505050158015610e57573d6000803e3d6000fd5b5073bf7cf91d8590a81bee26af41ebf545b1c7b6699c73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610e9791906137be565b610ea1919061378d565b9081150290604051600060405180830381858888f19350505050158015610ecc573d6000803e3d6000fd5b50735bceda8d37a97cc45e8adb6d5cfeff86c3b3050773ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f484610f0c91906137be565b610f16919061378d565b9081150290604051600060405180830381858888f19350505050158015610f41573d6000803e3d6000fd5b5050565b610f6083838360405180602001604052806000815250611702565b505050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110189061352e565b60405180910390fd5b80915050919050565b611032611e63565b73ffffffffffffffffffffffffffffffffffffffff16611050611497565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061358e565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110da611e63565b73ffffffffffffffffffffffffffffffffffffffff166110f8611497565b73ffffffffffffffffffffffffffffffffffffffff161461114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061358e565b60405180910390fd5b8181600d919061115f929190612a44565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061350e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611224611e63565b73ffffffffffffffffffffffffffffffffffffffff16611242611497565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f9061358e565b60405180910390fd5b6112a2600061225e565b565b6112ac611e63565b73ffffffffffffffffffffffffffffffffffffffff166112ca611497565b73ffffffffffffffffffffffffffffffffffffffff1614611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061358e565b60405180910390fd5b818160099190611331929190612a44565b505050565b61133e611e63565b73ffffffffffffffffffffffffffffffffffffffff1661135c611497565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061358e565b60405180910390fd5b60005b828110156113f3576113e082600183600c546113d19190613737565b6113db9190613737565b612324565b80806113eb90613965565b9150506113b5565b5081600c60008282546114069190613737565b925050819055505050565b611419611e63565b73ffffffffffffffffffffffffffffffffffffffff16611437611497565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114849061358e565b60405180910390fd5b8060078190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114d090613902565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc90613902565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b5050505050905090565b60075481565b600b60009054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906134ce565b60405180910390fd5b60048111156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e39061364e565b60405180910390fd5b34816007546115fb91906137be565b111561163c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611633906135ee565b60405180910390fd5b600a5481600c5461164d9190613737565b111561168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906133ee565b60405180910390fd5b60005b818110156116cf576116bc33600183600c546116ad9190613737565b6116b79190613737565b612324565b80806116c790613965565b915050611691565b5080600c60008282546116e29190613737565b9250508190555050565b6116fe6116f7611e63565b8383612342565b5050565b61171361170d611e63565b83611f24565b611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061362e565b60405180910390fd5b61175e848484846124af565b50505050565b606061176f82611df7565b6117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a5906135ce565b60405180910390fd5b60001515600860009054906101000a900460ff161515141561185c57600980546117d790613902565b80601f016020809104026020016040519081016040528092919081815260200182805461180390613902565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b5050505050905061188a565b600e6118678361250b565b60405160200161187892919061331b565b60405160208183030381529060405290505b919050565b348160075461189e91906137be565b11156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906135ee565b60405180910390fd5b600a5481600c546118f09190613737565b1115611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906133ee565b60405180910390fd5b600b60009054906101000a900460ff16611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906134ce565b60405180910390fd5b60048111156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061364e565b60405180910390fd5b60005b81811015611a05576119f233600183600c546119e39190613737565b6119ed9190613737565b612324565b80806119fd90613965565b9150506119c7565b5080600c6000828254611a189190613737565b9250508190555050565b600b60009054906101000a900460ff1681565b611a3d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611a5b611497565b73ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa89061358e565b60405180910390fd5b8181600e9190611ac2929190612a44565b505050565b611acf611e63565b73ffffffffffffffffffffffffffffffffffffffff16611aed611497565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a9061358e565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6060600d8054611b7e90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90613902565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611cbb611497565b73ffffffffffffffffffffffffffffffffffffffff1614611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061358e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d789061342e565b60405180910390fd5b611d8a8161225e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ede83610f78565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2f82611df7565b611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f65906134ae565b60405180910390fd5b6000611f7983610f78565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fe857508373ffffffffffffffffffffffffffffffffffffffff16611fd0846108aa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ff95750611ff88185611c01565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661202282610f78565b73ffffffffffffffffffffffffffffffffffffffff1614612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f906135ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df9061346e565b60405180910390fd5b6120f383838361266c565b6120fe600082611e6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214e9190613818565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a59190613737565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61233e828260405180602001604052806000815250612671565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a89061348e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124a291906133b1565b60405180910390a3505050565b6124ba848484612002565b6124c6848484846126cc565b612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc9061340e565b60405180910390fd5b50505050565b60606000821415612553576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612667565b600082905060005b6000821461258557808061256e90613965565b915050600a8261257e919061378d565b915061255b565b60008167ffffffffffffffff8111156125a1576125a0613a9b565b5b6040519080825280601f01601f1916602001820160405280156125d35781602001600182028036833780820191505090505b5090505b60008514612660576001826125ec9190613818565b9150600a856125fb91906139ae565b60306126079190613737565b60f81b81838151811061261d5761261c613a6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612659919061378d565b94506125d7565b8093505050505b919050565b505050565b61267b8383612863565b61268860008484846126cc565b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061340e565b60405180910390fd5b505050565b60006126ed8473ffffffffffffffffffffffffffffffffffffffff16612a31565b15612856578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612716611e63565b8786866040518563ffffffff1660e01b81526004016127389493929190613365565b602060405180830381600087803b15801561275257600080fd5b505af192505050801561278357506040513d601f19601f820116820180604052508101906127809190612e06565b60015b612806573d80600081146127b3576040519150601f19603f3d011682016040523d82523d6000602084013e6127b8565b606091505b506000815114156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59061340e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061285b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca9061354e565b60405180910390fd5b6128dc81611df7565b1561291c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129139061344e565b60405180910390fd5b6129286000838361266c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129789190613737565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a5090613902565b90600052602060002090601f016020900481019282612a725760008555612ab9565b82601f10612a8b57803560ff1916838001178555612ab9565b82800160010185558215612ab9579182015b82811115612ab8578235825591602001919060010190612a9d565b5b509050612ac69190612aca565b5090565b5b80821115612ae3576000816000905550600101612acb565b5090565b6000612afa612af5846136ae565b613689565b905082815260208101848484011115612b1657612b15613ad9565b5b612b218482856138c0565b509392505050565b600081359050612b3881613ff8565b92915050565b600081359050612b4d8161400f565b92915050565b600081359050612b6281614026565b92915050565b600081519050612b7781614026565b92915050565b600082601f830112612b9257612b91613acf565b5b8135612ba2848260208601612ae7565b91505092915050565b60008083601f840112612bc157612bc0613acf565b5b8235905067ffffffffffffffff811115612bde57612bdd613aca565b5b602083019150836001820283011115612bfa57612bf9613ad4565b5b9250929050565b600081359050612c108161403d565b92915050565b600060208284031215612c2c57612c2b613ae3565b5b6000612c3a84828501612b29565b91505092915050565b60008060408385031215612c5a57612c59613ae3565b5b6000612c6885828601612b29565b9250506020612c7985828601612b29565b9150509250929050565b600080600060608486031215612c9c57612c9b613ae3565b5b6000612caa86828701612b29565b9350506020612cbb86828701612b29565b9250506040612ccc86828701612c01565b9150509250925092565b60008060008060808587031215612cf057612cef613ae3565b5b6000612cfe87828801612b29565b9450506020612d0f87828801612b29565b9350506040612d2087828801612c01565b925050606085013567ffffffffffffffff811115612d4157612d40613ade565b5b612d4d87828801612b7d565b91505092959194509250565b60008060408385031215612d7057612d6f613ae3565b5b6000612d7e85828601612b29565b9250506020612d8f85828601612b3e565b9150509250929050565b60008060408385031215612db057612daf613ae3565b5b6000612dbe85828601612b29565b9250506020612dcf85828601612c01565b9150509250929050565b600060208284031215612def57612dee613ae3565b5b6000612dfd84828501612b53565b91505092915050565b600060208284031215612e1c57612e1b613ae3565b5b6000612e2a84828501612b68565b91505092915050565b60008060208385031215612e4a57612e49613ae3565b5b600083013567ffffffffffffffff811115612e6857612e67613ade565b5b612e7485828601612bab565b92509250509250929050565b600060208284031215612e9657612e95613ae3565b5b6000612ea484828501612c01565b91505092915050565b60008060408385031215612ec457612ec3613ae3565b5b6000612ed285828601612c01565b9250506020612ee385828601612b29565b9150509250929050565b612ef68161384c565b82525050565b612f058161385e565b82525050565b6000612f16826136f4565b612f20818561370a565b9350612f308185602086016138cf565b612f3981613ae8565b840191505092915050565b6000612f4f826136ff565b612f59818561371b565b9350612f698185602086016138cf565b612f7281613ae8565b840191505092915050565b6000612f88826136ff565b612f92818561372c565b9350612fa28185602086016138cf565b80840191505092915050565b60008154612fbb81613902565b612fc5818661372c565b94506001821660008114612fe05760018114612ff157613024565b60ff19831686528186019350613024565b612ffa856136df565b60005b8381101561301c57815481890152600182019150602081019050612ffd565b838801955050505b50505092915050565b600061303a60088361371b565b915061304582613af9565b602082019050919050565b600061305d60328361371b565b915061306882613b22565b604082019050919050565b600061308060268361371b565b915061308b82613b71565b604082019050919050565b60006130a3601c8361371b565b91506130ae82613bc0565b602082019050919050565b60006130c660248361371b565b91506130d182613be9565b604082019050919050565b60006130e960198361371b565b91506130f482613c38565b602082019050919050565b600061310c602c8361371b565b915061311782613c61565b604082019050919050565b600061312f60068361371b565b915061313a82613cb0565b602082019050919050565b600061315260388361371b565b915061315d82613cd9565b604082019050919050565b6000613175602a8361371b565b915061318082613d28565b604082019050919050565b600061319860298361371b565b91506131a382613d77565b604082019050919050565b60006131bb60208361371b565b91506131c682613dc6565b602082019050919050565b60006131de602c8361371b565b91506131e982613def565b604082019050919050565b600061320160058361372c565b915061320c82613e3e565b600582019050919050565b600061322460208361371b565b915061322f82613e67565b602082019050919050565b600061324760298361371b565b915061325282613e90565b604082019050919050565b600061326a601f8361371b565b915061327582613edf565b602082019050919050565b600061328d60078361371b565b915061329882613f08565b602082019050919050565b60006132b060218361371b565b91506132bb82613f31565b604082019050919050565b60006132d360318361371b565b91506132de82613f80565b604082019050919050565b60006132f660068361371b565b915061330182613fcf565b602082019050919050565b613315816138b6565b82525050565b60006133278285612fae565b91506133338284612f7d565b915061333e826131f4565b91508190509392505050565b600060208201905061335f6000830184612eed565b92915050565b600060808201905061337a6000830187612eed565b6133876020830186612eed565b613394604083018561330c565b81810360608301526133a68184612f0b565b905095945050505050565b60006020820190506133c66000830184612efc565b92915050565b600060208201905081810360008301526133e68184612f44565b905092915050565b600060208201905081810360008301526134078161302d565b9050919050565b6000602082019050818103600083015261342781613050565b9050919050565b6000602082019050818103600083015261344781613073565b9050919050565b6000602082019050818103600083015261346781613096565b9050919050565b60006020820190508181036000830152613487816130b9565b9050919050565b600060208201905081810360008301526134a7816130dc565b9050919050565b600060208201905081810360008301526134c7816130ff565b9050919050565b600060208201905081810360008301526134e781613122565b9050919050565b6000602082019050818103600083015261350781613145565b9050919050565b6000602082019050818103600083015261352781613168565b9050919050565b600060208201905081810360008301526135478161318b565b9050919050565b60006020820190508181036000830152613567816131ae565b9050919050565b60006020820190508181036000830152613587816131d1565b9050919050565b600060208201905081810360008301526135a781613217565b9050919050565b600060208201905081810360008301526135c78161323a565b9050919050565b600060208201905081810360008301526135e78161325d565b9050919050565b6000602082019050818103600083015261360781613280565b9050919050565b60006020820190508181036000830152613627816132a3565b9050919050565b60006020820190508181036000830152613647816132c6565b9050919050565b60006020820190508181036000830152613667816132e9565b9050919050565b6000602082019050613683600083018461330c565b92915050565b60006136936136a4565b905061369f8282613934565b919050565b6000604051905090565b600067ffffffffffffffff8211156136c9576136c8613a9b565b5b6136d282613ae8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613742826138b6565b915061374d836138b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613782576137816139df565b5b828201905092915050565b6000613798826138b6565b91506137a3836138b6565b9250826137b3576137b2613a0e565b5b828204905092915050565b60006137c9826138b6565b91506137d4836138b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380d5761380c6139df565b5b828202905092915050565b6000613823826138b6565b915061382e836138b6565b925082821015613841576138406139df565b5b828203905092915050565b600061385782613896565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138ed5780820151818401526020810190506138d2565b838111156138fc576000848401525b50505050565b6000600282049050600182168061391a57607f821691505b6020821081141561392e5761392d613a3d565b5b50919050565b61393d82613ae8565b810181811067ffffffffffffffff8211171561395c5761395b613a9b565b5b80604052505050565b6000613970826138b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a3576139a26139df565b5b600182019050919050565b60006139b9826138b6565b91506139c4836138b6565b9250826139d4576139d3613a0e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7820737570706c79000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f7820707269636500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6578636565640000000000000000000000000000000000000000000000000000600082015250565b6140018161384c565b811461400c57600080fd5b50565b6140188161385e565b811461402357600080fd5b50565b61402f8161386a565b811461403a57600080fd5b50565b614046816138b6565b811461405157600080fd5b5056fea2646970667358221220f5a22abe99bc157cefb81cea2199f18aa753028884292017dc4e5e516706af2564736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806383a076be11610102578063c87b56dd11610095578063e7ff7e2511610064578063e7ff7e2514610688578063e8a3d4851461069f578063e985e9c5146106ca578063f2fde38b14610707576101e3565b8063c87b56dd146105db578063c9b298f114610618578063e081b78114610634578063e4e60e1c1461065f576101e3565b8063a035b1fe116100d1578063a035b1fe14610542578063a0712d681461056d578063a22cb46514610589578063b88d4fde146105b2576101e3565b806383a076be1461049a5780638b375e71146104c35780638da5cb5b146104ec57806395d89b4114610517576101e3565b806342842e0e1161017a5780636fd452de116101495780636fd452de146103f457806370a082311461041d578063715018a61461045a5780637bd26ec514610471576101e3565b806342842e0e1461034c57806351830227146103755780636352211e146103a05780636e295d91146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e157806323b872dd1461030c5780633ccfd60b14610335576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612dd9565b610730565b60405161021c91906133b1565b60405180910390f35b34801561023157600080fd5b5061023a610812565b604051610247919061366e565b60405180910390f35b34801561025c57600080fd5b50610265610818565b60405161027291906133cc565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612e80565b6108aa565b6040516102af919061334a565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612d99565b61092f565b005b3480156102ed57600080fd5b506102f6610a47565b604051610303919061366e565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612c83565b610a4d565b005b34801561034157600080fd5b5061034a610aad565b005b34801561035857600080fd5b50610373600480360381019061036e9190612c83565b610f45565b005b34801561038157600080fd5b5061038a610f65565b60405161039791906133b1565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612e80565b610f78565b6040516103d4919061334a565b60405180910390f35b3480156103e957600080fd5b506103f261102a565b005b34801561040057600080fd5b5061041b60048036038101906104169190612e33565b6110d2565b005b34801561042957600080fd5b50610444600480360381019061043f9190612c16565b611164565b604051610451919061366e565b60405180910390f35b34801561046657600080fd5b5061046f61121c565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e33565b6112a4565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612ead565b611336565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612e80565b611411565b005b3480156104f857600080fd5b50610501611497565b60405161050e919061334a565b60405180910390f35b34801561052357600080fd5b5061052c6114c1565b60405161053991906133cc565b60405180910390f35b34801561054e57600080fd5b50610557611553565b604051610564919061366e565b60405180910390f35b61058760048036038101906105829190612e80565b611559565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612d59565b6116ec565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612cd6565b611702565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612e80565b611764565b60405161060f91906133cc565b60405180910390f35b610632600480360381019061062d9190612e80565b61188f565b005b34801561064057600080fd5b50610649611a22565b60405161065691906133b1565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612e33565b611a35565b005b34801561069457600080fd5b5061069d611ac7565b005b3480156106ab57600080fd5b506106b4611b6f565b6040516106c191906133cc565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612c43565b611c01565b6040516106fe91906133b1565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612c16565b611c95565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080b575061080a82611d8d565b5b9050919050565b600a5481565b60606000805461082790613902565b80601f016020809104026020016040519081016040528092919081815260200182805461085390613902565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611df7565b6108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb9061356e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093a82610f78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061360e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ca611e63565b73ffffffffffffffffffffffffffffffffffffffff1614806109f957506109f8816109f3611e63565b611c01565b5b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906134ee565b60405180910390fd5b610a428383611e6b565b505050565b600c5481565b610a5e610a58611e63565b82611f24565b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061362e565b60405180910390fd5b610aa8838383612002565b505050565b600047905073ece5be2e951a8f9b6317be94fac75349e914672273ffffffffffffffffffffffffffffffffffffffff166108fc61271060c884610af091906137be565b610afa919061378d565b9081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b50731e69347bfc401c35866f8c3587e900c7996edc6e73ffffffffffffffffffffffffffffffffffffffff166108fc61271060c884610b6491906137be565b610b6e919061378d565b9081150290604051600060405180830381858888f19350505050158015610b99573d6000803e3d6000fd5b50739a9cff3917fc031533867af0bcc1c056b2c5bf3c73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e84610bd991906137be565b610be3919061378d565b9081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b50730243891818d63be4f012956b04289dc490a2f60b73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105c384610c4e91906137be565b610c58919061378d565b9081150290604051600060405180830381858888f19350505050158015610c83573d6000803e3d6000fd5b50731485857eee414282ef2993370c5ac7ee89ea797873ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610cc391906137be565b610ccd919061378d565b9081150290604051600060405180830381858888f19350505050158015610cf8573d6000803e3d6000fd5b5073b1b3fc86b89d5c3f92e2766bca1085071eab37f773ffffffffffffffffffffffffffffffffffffffff166108fc6127106105c384610d3891906137be565b610d42919061378d565b9081150290604051600060405180830381858888f19350505050158015610d6d573d6000803e3d6000fd5b50732b16edeaca67c831ba2786e793705abf11308e3c73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610dad91906137be565b610db7919061378d565b9081150290604051600060405180830381858888f19350505050158015610de2573d6000803e3d6000fd5b507353a697f465701d6043097adfc7213e72f85c84f273ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610e2291906137be565b610e2c919061378d565b9081150290604051600060405180830381858888f19350505050158015610e57573d6000803e3d6000fd5b5073bf7cf91d8590a81bee26af41ebf545b1c7b6699c73ffffffffffffffffffffffffffffffffffffffff166108fc6127106105aa84610e9791906137be565b610ea1919061378d565b9081150290604051600060405180830381858888f19350505050158015610ecc573d6000803e3d6000fd5b50735bceda8d37a97cc45e8adb6d5cfeff86c3b3050773ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f484610f0c91906137be565b610f16919061378d565b9081150290604051600060405180830381858888f19350505050158015610f41573d6000803e3d6000fd5b5050565b610f6083838360405180602001604052806000815250611702565b505050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110189061352e565b60405180910390fd5b80915050919050565b611032611e63565b73ffffffffffffffffffffffffffffffffffffffff16611050611497565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061358e565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110da611e63565b73ffffffffffffffffffffffffffffffffffffffff166110f8611497565b73ffffffffffffffffffffffffffffffffffffffff161461114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061358e565b60405180910390fd5b8181600d919061115f929190612a44565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061350e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611224611e63565b73ffffffffffffffffffffffffffffffffffffffff16611242611497565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f9061358e565b60405180910390fd5b6112a2600061225e565b565b6112ac611e63565b73ffffffffffffffffffffffffffffffffffffffff166112ca611497565b73ffffffffffffffffffffffffffffffffffffffff1614611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061358e565b60405180910390fd5b818160099190611331929190612a44565b505050565b61133e611e63565b73ffffffffffffffffffffffffffffffffffffffff1661135c611497565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061358e565b60405180910390fd5b60005b828110156113f3576113e082600183600c546113d19190613737565b6113db9190613737565b612324565b80806113eb90613965565b9150506113b5565b5081600c60008282546114069190613737565b925050819055505050565b611419611e63565b73ffffffffffffffffffffffffffffffffffffffff16611437611497565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114849061358e565b60405180910390fd5b8060078190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114d090613902565b80601f01602080910402602001604051908101604052809291908181526020018280546114fc90613902565b80156115495780601f1061151e57610100808354040283529160200191611549565b820191906000526020600020905b81548152906001019060200180831161152c57829003601f168201915b5050505050905090565b60075481565b600b60009054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906134ce565b60405180910390fd5b60048111156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e39061364e565b60405180910390fd5b34816007546115fb91906137be565b111561163c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611633906135ee565b60405180910390fd5b600a5481600c5461164d9190613737565b111561168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906133ee565b60405180910390fd5b60005b818110156116cf576116bc33600183600c546116ad9190613737565b6116b79190613737565b612324565b80806116c790613965565b915050611691565b5080600c60008282546116e29190613737565b9250508190555050565b6116fe6116f7611e63565b8383612342565b5050565b61171361170d611e63565b83611f24565b611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061362e565b60405180910390fd5b61175e848484846124af565b50505050565b606061176f82611df7565b6117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a5906135ce565b60405180910390fd5b60001515600860009054906101000a900460ff161515141561185c57600980546117d790613902565b80601f016020809104026020016040519081016040528092919081815260200182805461180390613902565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b5050505050905061188a565b600e6118678361250b565b60405160200161187892919061331b565b60405160208183030381529060405290505b919050565b348160075461189e91906137be565b11156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906135ee565b60405180910390fd5b600a5481600c546118f09190613737565b1115611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906133ee565b60405180910390fd5b600b60009054906101000a900460ff16611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906134ce565b60405180910390fd5b60048111156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061364e565b60405180910390fd5b60005b81811015611a05576119f233600183600c546119e39190613737565b6119ed9190613737565b612324565b80806119fd90613965565b9150506119c7565b5080600c6000828254611a189190613737565b9250508190555050565b600b60009054906101000a900460ff1681565b611a3d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611a5b611497565b73ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa89061358e565b60405180910390fd5b8181600e9190611ac2929190612a44565b505050565b611acf611e63565b73ffffffffffffffffffffffffffffffffffffffff16611aed611497565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a9061358e565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6060600d8054611b7e90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90613902565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611cbb611497565b73ffffffffffffffffffffffffffffffffffffffff1614611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061358e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d789061342e565b60405180910390fd5b611d8a8161225e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ede83610f78565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2f82611df7565b611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f65906134ae565b60405180910390fd5b6000611f7983610f78565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fe857508373ffffffffffffffffffffffffffffffffffffffff16611fd0846108aa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ff95750611ff88185611c01565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661202282610f78565b73ffffffffffffffffffffffffffffffffffffffff1614612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f906135ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df9061346e565b60405180910390fd5b6120f383838361266c565b6120fe600082611e6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214e9190613818565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a59190613737565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61233e828260405180602001604052806000815250612671565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a89061348e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124a291906133b1565b60405180910390a3505050565b6124ba848484612002565b6124c6848484846126cc565b612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc9061340e565b60405180910390fd5b50505050565b60606000821415612553576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612667565b600082905060005b6000821461258557808061256e90613965565b915050600a8261257e919061378d565b915061255b565b60008167ffffffffffffffff8111156125a1576125a0613a9b565b5b6040519080825280601f01601f1916602001820160405280156125d35781602001600182028036833780820191505090505b5090505b60008514612660576001826125ec9190613818565b9150600a856125fb91906139ae565b60306126079190613737565b60f81b81838151811061261d5761261c613a6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612659919061378d565b94506125d7565b8093505050505b919050565b505050565b61267b8383612863565b61268860008484846126cc565b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061340e565b60405180910390fd5b505050565b60006126ed8473ffffffffffffffffffffffffffffffffffffffff16612a31565b15612856578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612716611e63565b8786866040518563ffffffff1660e01b81526004016127389493929190613365565b602060405180830381600087803b15801561275257600080fd5b505af192505050801561278357506040513d601f19601f820116820180604052508101906127809190612e06565b60015b612806573d80600081146127b3576040519150601f19603f3d011682016040523d82523d6000602084013e6127b8565b606091505b506000815114156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59061340e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061285b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca9061354e565b60405180910390fd5b6128dc81611df7565b1561291c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129139061344e565b60405180910390fd5b6129286000838361266c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129789190613737565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a5090613902565b90600052602060002090601f016020900481019282612a725760008555612ab9565b82601f10612a8b57803560ff1916838001178555612ab9565b82800160010185558215612ab9579182015b82811115612ab8578235825591602001919060010190612a9d565b5b509050612ac69190612aca565b5090565b5b80821115612ae3576000816000905550600101612acb565b5090565b6000612afa612af5846136ae565b613689565b905082815260208101848484011115612b1657612b15613ad9565b5b612b218482856138c0565b509392505050565b600081359050612b3881613ff8565b92915050565b600081359050612b4d8161400f565b92915050565b600081359050612b6281614026565b92915050565b600081519050612b7781614026565b92915050565b600082601f830112612b9257612b91613acf565b5b8135612ba2848260208601612ae7565b91505092915050565b60008083601f840112612bc157612bc0613acf565b5b8235905067ffffffffffffffff811115612bde57612bdd613aca565b5b602083019150836001820283011115612bfa57612bf9613ad4565b5b9250929050565b600081359050612c108161403d565b92915050565b600060208284031215612c2c57612c2b613ae3565b5b6000612c3a84828501612b29565b91505092915050565b60008060408385031215612c5a57612c59613ae3565b5b6000612c6885828601612b29565b9250506020612c7985828601612b29565b9150509250929050565b600080600060608486031215612c9c57612c9b613ae3565b5b6000612caa86828701612b29565b9350506020612cbb86828701612b29565b9250506040612ccc86828701612c01565b9150509250925092565b60008060008060808587031215612cf057612cef613ae3565b5b6000612cfe87828801612b29565b9450506020612d0f87828801612b29565b9350506040612d2087828801612c01565b925050606085013567ffffffffffffffff811115612d4157612d40613ade565b5b612d4d87828801612b7d565b91505092959194509250565b60008060408385031215612d7057612d6f613ae3565b5b6000612d7e85828601612b29565b9250506020612d8f85828601612b3e565b9150509250929050565b60008060408385031215612db057612daf613ae3565b5b6000612dbe85828601612b29565b9250506020612dcf85828601612c01565b9150509250929050565b600060208284031215612def57612dee613ae3565b5b6000612dfd84828501612b53565b91505092915050565b600060208284031215612e1c57612e1b613ae3565b5b6000612e2a84828501612b68565b91505092915050565b60008060208385031215612e4a57612e49613ae3565b5b600083013567ffffffffffffffff811115612e6857612e67613ade565b5b612e7485828601612bab565b92509250509250929050565b600060208284031215612e9657612e95613ae3565b5b6000612ea484828501612c01565b91505092915050565b60008060408385031215612ec457612ec3613ae3565b5b6000612ed285828601612c01565b9250506020612ee385828601612b29565b9150509250929050565b612ef68161384c565b82525050565b612f058161385e565b82525050565b6000612f16826136f4565b612f20818561370a565b9350612f308185602086016138cf565b612f3981613ae8565b840191505092915050565b6000612f4f826136ff565b612f59818561371b565b9350612f698185602086016138cf565b612f7281613ae8565b840191505092915050565b6000612f88826136ff565b612f92818561372c565b9350612fa28185602086016138cf565b80840191505092915050565b60008154612fbb81613902565b612fc5818661372c565b94506001821660008114612fe05760018114612ff157613024565b60ff19831686528186019350613024565b612ffa856136df565b60005b8381101561301c57815481890152600182019150602081019050612ffd565b838801955050505b50505092915050565b600061303a60088361371b565b915061304582613af9565b602082019050919050565b600061305d60328361371b565b915061306882613b22565b604082019050919050565b600061308060268361371b565b915061308b82613b71565b604082019050919050565b60006130a3601c8361371b565b91506130ae82613bc0565b602082019050919050565b60006130c660248361371b565b91506130d182613be9565b604082019050919050565b60006130e960198361371b565b91506130f482613c38565b602082019050919050565b600061310c602c8361371b565b915061311782613c61565b604082019050919050565b600061312f60068361371b565b915061313a82613cb0565b602082019050919050565b600061315260388361371b565b915061315d82613cd9565b604082019050919050565b6000613175602a8361371b565b915061318082613d28565b604082019050919050565b600061319860298361371b565b91506131a382613d77565b604082019050919050565b60006131bb60208361371b565b91506131c682613dc6565b602082019050919050565b60006131de602c8361371b565b91506131e982613def565b604082019050919050565b600061320160058361372c565b915061320c82613e3e565b600582019050919050565b600061322460208361371b565b915061322f82613e67565b602082019050919050565b600061324760298361371b565b915061325282613e90565b604082019050919050565b600061326a601f8361371b565b915061327582613edf565b602082019050919050565b600061328d60078361371b565b915061329882613f08565b602082019050919050565b60006132b060218361371b565b91506132bb82613f31565b604082019050919050565b60006132d360318361371b565b91506132de82613f80565b604082019050919050565b60006132f660068361371b565b915061330182613fcf565b602082019050919050565b613315816138b6565b82525050565b60006133278285612fae565b91506133338284612f7d565b915061333e826131f4565b91508190509392505050565b600060208201905061335f6000830184612eed565b92915050565b600060808201905061337a6000830187612eed565b6133876020830186612eed565b613394604083018561330c565b81810360608301526133a68184612f0b565b905095945050505050565b60006020820190506133c66000830184612efc565b92915050565b600060208201905081810360008301526133e68184612f44565b905092915050565b600060208201905081810360008301526134078161302d565b9050919050565b6000602082019050818103600083015261342781613050565b9050919050565b6000602082019050818103600083015261344781613073565b9050919050565b6000602082019050818103600083015261346781613096565b9050919050565b60006020820190508181036000830152613487816130b9565b9050919050565b600060208201905081810360008301526134a7816130dc565b9050919050565b600060208201905081810360008301526134c7816130ff565b9050919050565b600060208201905081810360008301526134e781613122565b9050919050565b6000602082019050818103600083015261350781613145565b9050919050565b6000602082019050818103600083015261352781613168565b9050919050565b600060208201905081810360008301526135478161318b565b9050919050565b60006020820190508181036000830152613567816131ae565b9050919050565b60006020820190508181036000830152613587816131d1565b9050919050565b600060208201905081810360008301526135a781613217565b9050919050565b600060208201905081810360008301526135c78161323a565b9050919050565b600060208201905081810360008301526135e78161325d565b9050919050565b6000602082019050818103600083015261360781613280565b9050919050565b60006020820190508181036000830152613627816132a3565b9050919050565b60006020820190508181036000830152613647816132c6565b9050919050565b60006020820190508181036000830152613667816132e9565b9050919050565b6000602082019050613683600083018461330c565b92915050565b60006136936136a4565b905061369f8282613934565b919050565b6000604051905090565b600067ffffffffffffffff8211156136c9576136c8613a9b565b5b6136d282613ae8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613742826138b6565b915061374d836138b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613782576137816139df565b5b828201905092915050565b6000613798826138b6565b91506137a3836138b6565b9250826137b3576137b2613a0e565b5b828204905092915050565b60006137c9826138b6565b91506137d4836138b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380d5761380c6139df565b5b828202905092915050565b6000613823826138b6565b915061382e836138b6565b925082821015613841576138406139df565b5b828203905092915050565b600061385782613896565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138ed5780820151818401526020810190506138d2565b838111156138fc576000848401525b50505050565b6000600282049050600182168061391a57607f821691505b6020821081141561392e5761392d613a3d565b5b50919050565b61393d82613ae8565b810181811067ffffffffffffffff8211171561395c5761395b613a9b565b5b80604052505050565b6000613970826138b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a3576139a26139df565b5b600182019050919050565b60006139b9826138b6565b91506139c4836138b6565b9250826139d4576139d3613a0e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7820737570706c79000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f7820707269636500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6578636565640000000000000000000000000000000000000000000000000000600082015250565b6140018161384c565b811461400c57600080fd5b50565b6140188161385e565b811461402357600080fd5b50565b61402f8161386a565b811461403a57600080fd5b50565b614046816138b6565b811461405157600080fd5b5056fea2646970667358221220f5a22abe99bc157cefb81cea2199f18aa753028884292017dc4e5e516706af2564736f6c63430008060033
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.