Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
916 LAUHUPAO
Holders
472
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 LAUHUPAOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LauHuPao
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-29 */ // __ __ __ __ _ // / //_/_ ______ ____ _ / / / /__ (_) // / ,< / / / / __ \/ __ `/ / /_/ / _ \/ / // / /| / /_/ / / / / /_/ / / __ / __/ / // /_/ |_\__,_/_/ /_/\__, / /_/ /_/\___/_/ // /____/ // ______ __ ________ // / ____/___ _/ /_ / ____/ /_ ____ __ __ // / /_ / __ `/ __/ / / / __ \/ __ \/ / / / // / __/ / /_/ / /_ / /___/ / / / /_/ / /_/ / // /_/ \__,_/\__/ \____/_/ /_/\____/\__, / // /____/ // // ___......----:'"":--....(\ // .-':'"": : : : : : :.(1\.`-. // .'`. `. : : : : : : : : : : .'; // :-`. : . : : `. : : :. : :`.`. a; // : ;-. `-.-._. : : : ::. .' `. `., = ; // :-:.` .-. _-., : : : ::,.'.-' ;-. ,'''" // .'.' ;`. .-' `-.: : : : :;.-'.-.' `-' // :. .'.'.-' .'`-.' -._;..:---'''"~;._.-; // :`--'.' : :' ;`-.; :.`.-'`. // `'"` : : ;`.; :=; `.-'`. // : '. : ; :-: `._-`. // `'"' `. `. `--' `._; // `'"' // | // _____ | _____ \ / /______ | | / /_ / | | // ()____)+()____) ----- / | | -+-. /_.|_|/_. | | // ()____)+()____) \ / /___ __|__ | | | | / | | / | | // ()____)+()____) ----- | | | | |_| _|_|_ /_\`-'/_\ | | // ()____)+()____) __|__ | | __|_|____ | | ___|___ | | // ()____)+()____) /|\ | | | | / \ _/|\_ * * // / | \ // __ __ ____ __ __ __ _ // \ \/ /__ ____ ______ ____ / __/ / /_/ /_ ___ / /_(_)___ ____ _____ // \ / _ \/ __ `/ ___/ / __ \/ /_ / __/ __ \/ _ \ / __/ / __ `/ _ \/ ___/ // / / __/ /_/ / / / /_/ / __/ / /_/ / / / __/ / /_/ / /_/ / __/ / // /_/\___/\__,_/_/ \____/_/ \__/_/ /_/\___/ \__/_/\__, /\___/_/ // /____/ // // Author: bayu (github.com/pyk) // Verified using https://dapp.tools // hevm: flattened sources of src/LauHuPao.sol // SPDX-License-Identifier: MIT AND GPL-3.0-or-later pragma solidity =0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // 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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // 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); } } ////// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol // 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol // 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; } ////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.sol // 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.sol // 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); } ////// lib/openzeppelin-contracts/contracts/utils/Address.sol // 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); } } } } ////// lib/openzeppelin-contracts/contracts/utils/Strings.sol // 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); } } ////// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol // 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; } } ////// lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol // 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 {} } ////// src/LauHuPao.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ /* import { ERC721 } from "lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol"; */ /* import { Ownable } from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import { Strings } from "lib/openzeppelin-contracts/contracts/utils/Strings.sol"; */ /// @title Lau Hu Pao /// @author bayu (github.com/pyk) /// @dev Token ID start from 1 to 3333 contract LauHuPao is ERC721, Ownable { /// @notice Mint price in ether units (e.g. 0.05 ETH is 40000000000000000 wei) uint256 public MINT_PRICE = 0.05 ether; /// @notice Max supply of the Lau Hu Pao uint256 public MAX_SUPPLY = 3333; uint256 public totalSupply = 0; /// @notice The base URI; Please remove slash suffix string public BASE_URI = "https://gateway.pinata.cloud/ipfs/QmPND6T88JrzjyYbmtih3KbJkg39fFq5HcQKbjnpRrgaN5"; /// @notice Fee recipient; Multisig address address payable public FEE_RECIPIENT_90 = payable(0xfD63134C6CC6f4F0B84Da802f8c586C5Fe4A6Be0); address payable public FEE_RECIPIENT_10 = payable(0xB70E93561322e2189799F87D18a0216C5A706cC6); constructor() ERC721("Lau Hu Pao", "LAUHUPAO") {} /// @notice Set the base URI. This allows us to do endpoint upgrade /// @dev Only owner can call this function function setBaseURI(string memory uri) external onlyOwner { BASE_URI = uri; } /// @notice Get the base URI function getBaseURI() external view returns (string memory) { return BASE_URI; } /// @notice Mint new NFT /// @dev Anyone can call this function function mint(uint256 amount) external payable { require(totalSupply + amount <= MAX_SUPPLY, "!OOS"); // Out of stock if (totalSupply + amount <= 800) { require(amount == 1, "!IA"); // Invalid amount } else { require(amount > 0 && amount <= 20, "!IA"); require(msg.value >= MINT_PRICE * amount, "!NEETH"); // Not enough ETH } for (uint256 i = 0; i < amount; i++) { // Mint user the NFT token uint256 tokenID = totalSupply + 1; _mint(msg.sender, tokenID); // Update total supply totalSupply = tokenID; } } /// @notice Mint new NFT to given address /// @notice This is free mint /// @dev only owner can call this function function mintTo(address recipient, uint256 amount) external onlyOwner { require(totalSupply >= 801, "!SNV"); // Supply not valid require(totalSupply + amount <= MAX_SUPPLY, "!OOS"); // Out of stock for (uint256 i = 0; i < amount; i++) { // Mint user the NFT token uint256 tokenID = totalSupply + 1; _mint(recipient, tokenID); totalSupply = tokenID; } } /// @notice Fee splitter function splitFee(uint256 amount) internal pure returns (uint256 ten, uint256 ninety) { ten = (amount * 0.1 ether) / 1 ether; ninety = amount - ten; } /// @notice Send ETH inside the contract to multisig address function withdraw() external { // Split amount (uint256 ten, uint256 ninety) = splitFee(address(this).balance); (bool success, ) = address(FEE_RECIPIENT_90).call{ value: ninety }(""); require(success, "!FWF"); (success, ) = address(FEE_RECIPIENT_10).call{ value: ten }(""); require(success, "!SWF"); } /// @notice Send ETH inside the contract to multisig address function withdraw(uint256 amount) external { // Split amount (uint256 ten, uint256 ninety) = splitFee(amount); (bool success, ) = address(FEE_RECIPIENT_90).call{ value: ninety }(""); require(success, "!FWF"); (success, ) = address(FEE_RECIPIENT_10).call{ value: ten }(""); require(success, "!SWF"); } /// @notice Implement interface for ERC721URIStorage function tokenURI(uint256 tokenID) public view virtual override returns (string memory) { return string(abi.encodePacked(BASE_URI, "/", Strings.toString(tokenID), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_RECIPIENT_10","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_RECIPIENT_90","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66b1a2bc2ec50000600755610d056008556000600955610100604052605060808181529062002ccb60a03980516200004091600a9160209091019062000178565b50600b80546001600160a01b031990811673fd63134c6cc6f4f0b84da802f8c586c5fe4a6be017909155600c805490911673b70e93561322e2189799f87d18a0216c5a706cc61790553480156200009657600080fd5b50604080518082018252600a8152694c61752048752050616f60b01b6020808301918252835180850190945260088452674c4155485550414f60c01b908401528151919291620000e99160009162000178565b508051620000ff90600190602084019062000178565b5050506200011c620001166200012260201b60201c565b62000126565b6200025b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000186906200021e565b90600052602060002090601f016020900481019282620001aa5760008555620001f5565b82601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b5b8082111562000203576000815560010162000208565b600181811c908216806200023357607f821691505b602082108114156200025557634e487b7160e01b600052602260045260246000fd5b50919050565b612a60806200026b6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063dbddb26a11610064578063dbddb26a146104c9578063e985e9c5146104de578063ec67567c14610534578063f2fde38b1461056157600080fd5b8063b88d4fde14610473578063c002d23d14610493578063c87b56dd146104a957600080fd5b80638da5cb5b116100c65780638da5cb5b1461040057806395d89b411461042b578063a0712d6814610440578063a22cb4651461045357600080fd5b806370a08231146103b6578063714c5398146103d6578063715018a6146103eb57600080fd5b80632e1a7d4d1161015957806342842e0e1161013357806342842e0e14610336578063449a52f81461035657806355f804b3146103765780636352211e1461039657600080fd5b80632e1a7d4d146102eb57806332cb6b0c1461030b5780633ccfd60b1461032157600080fd5b8063095ea7b311610195578063095ea7b31461025857806318160ddd1461027a5780632223e7871461029e57806323b872dd146102cb57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461235d565b610581565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610666565b6040516101e891906123f7565b34801561021f57600080fd5b5061023361022e36600461240a565b6106f8565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101e8565b34801561026457600080fd5b5061027861027336600461244c565b6107d7565b005b34801561028657600080fd5b5061029060095481565b6040519081526020016101e8565b3480156102aa57600080fd5b50600c546102339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102d757600080fd5b506102786102e6366004612476565b610964565b3480156102f757600080fd5b5061027861030636600461240a565b610a05565b34801561031757600080fd5b5061029060085481565b34801561032d57600080fd5b50610278610bb9565b34801561034257600080fd5b50610278610351366004612476565b610d67565b34801561036257600080fd5b5061027861037136600461244c565b610d82565b34801561038257600080fd5b50610278610391366004612575565b610f2b565b3480156103a257600080fd5b506102336103b136600461240a565b610fc3565b3480156103c257600080fd5b506102906103d13660046125be565b611075565b3480156103e257600080fd5b50610206611143565b3480156103f757600080fd5b50610278611152565b34801561040c57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff16610233565b34801561043757600080fd5b506102066111df565b61027861044e36600461240a565b6111ee565b34801561045f57600080fd5b5061027861046e3660046125d9565b611419565b34801561047f57600080fd5b5061027861048e366004612615565b611424565b34801561049f57600080fd5b5061029060075481565b3480156104b557600080fd5b506102066104c436600461240a565b6114c6565b3480156104d557600080fd5b506102066114fa565b3480156104ea57600080fd5b506101dc6104f9366004612691565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054057600080fd5b50600b546102339073ffffffffffffffffffffffffffffffffffffffff1681565b34801561056d57600080fd5b5061027861057c3660046125be565b611588565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061066057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610675906126c4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a1906126c4565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166107ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006107e282610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107a5565b3373ffffffffffffffffffffffffffffffffffffffff821614806108c957506108c981336104f9565b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a5565b61095f83836116b8565b505050565b61096e3382611758565b6109fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107a5565b61095f8383836118c8565b600080610a1183611b2f565b600b5460405192945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169083908381818185875af1925050503d8060008114610a73576040519150601f19603f3d011682016040523d82523d6000602084013e610a78565b606091505b5050905080610ae5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2146574600000000000000000000000000000000000000000000000000000000604082015260600190565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908490600081818185875af1925050503d8060008114610b3f576040519150601f19603f3d011682016040523d82523d6000602084013e610b44565b606091505b50508091505080610bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2153574600000000000000000000000000000000000000000000000000000000604082015260600190565b50505050565b600080610bc547611b2f565b600b5460405192945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169083908381818185875af1925050503d8060008114610c27576040519150601f19603f3d011682016040523d82523d6000602084013e610c2c565b606091505b5050905080610c99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2146574600000000000000000000000000000000000000000000000000000000604082015260600190565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908490600081818185875af1925050503d8060008114610cf3576040519150601f19603f3d011682016040523d82523d6000602084013e610cf8565b606091505b5050809150508061095f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2153574600000000000000000000000000000000000000000000000000000000604082015260600190565b61095f83838360405180602001604052806000815250611424565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b6103216009541015610e73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f21534e5600000000000000000000000000000000000000000000000000000000604082015260600190565b60085481600954610e849190612747565b1115610eee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f214f4f5300000000000000000000000000000000000000000000000000000000604082015260600190565b60005b8181101561095f5760006009546001610f0a9190612747565b9050610f168482611b6a565b60095580610f238161275f565b915050610ef1565b60065473ffffffffffffffffffffffffffffffffffffffff163314610fac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b8051610fbf90600a906020840190612296565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107a5565b600073ffffffffffffffffffffffffffffffffffffffff821661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107a5565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6060600a8054610675906126c4565b60065473ffffffffffffffffffffffffffffffffffffffff1633146111d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b6111dd6000611d2c565b565b606060018054610675906126c4565b600854816009546111ff9190612747565b1115611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f214f4f5300000000000000000000000000000000000000000000000000000000604082015260600190565b6103208160095461127a9190612747565b116112ee57806001146112e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f214941000000000000000000000000000000000000000000000000000000000060448201526064016107a5565b6113dc565b6000811180156112ff575060148111155b611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f214941000000000000000000000000000000000000000000000000000000000060448201526064016107a5565b806007546113739190612798565b3410156113dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214e45455448000000000000000000000000000000000000000000000000000060448201526064016107a5565b60005b81811015610fbf57600060095460016113f89190612747565b90506114043382611b6a565b600955806114118161275f565b9150506113df565b610fbf338383611da3565b61142e3383611758565b6114ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107a5565b610bb384848484611ed1565b6060600a6114d383611f74565b6040516020016114e49291906127f1565b6040516020818303038152906040529050919050565b600a8054611507906126c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611533906126c4565b80156115805780601f1061155557610100808354040283529160200191611580565b820191906000526020600020905b81548152906001019060200180831161156357829003601f168201915b505050505081565b60065473ffffffffffffffffffffffffffffffffffffffff163314611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff81166116ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107a5565b6116b581611d2c565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061171282610fc3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107a5565b600061181483610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188357508373ffffffffffffffffffffffffffffffffffffffff1661186b846106f8565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166118e882610fc3565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107a5565b73ffffffffffffffffffffffffffffffffffffffff8216611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a5565b611a386000826116b8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611a6e908490612927565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611aa9908490612747565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080670de0b6b3a7640000611b4d8467016345785d8a0000612798565b611b57919061296d565b9150611b638284612927565b9050915091565b73ffffffffffffffffffffffffffffffffffffffff8216611be7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a5565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611ca9908490612747565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611edc8484846118c8565b611ee8848484846120a6565b610bb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a5565b606081611fb457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fde5780611fc88161275f565b9150611fd79050600a8361296d565b9150611fb8565b60008167ffffffffffffffff811115611ff957611ff96124b2565b6040519080825280601f01601f191660200182016040528015612023576020820181803683370190505b5090505b84156118c057612038600183612927565b9150612045600a86612981565b612050906030612747565b60f81b81838151811061206557612065612995565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061209f600a8661296d565b9450612027565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561228b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061211d9033908990889088906004016129c4565b6020604051808303816000875af1925050508015612176575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261217391810190612a0d565b60015b612240573d8080156121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b508051612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118c0565b506001949350505050565b8280546122a2906126c4565b90600052602060002090601f0160209004810192826122c4576000855561230a565b82601f106122dd57805160ff191683800117855561230a565b8280016001018555821561230a579182015b8281111561230a5782518255916020019190600101906122ef565b5061231692915061231a565b5090565b5b80821115612316576000815560010161231b565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116b557600080fd5b60006020828403121561236f57600080fd5b813561237a8161232f565b9392505050565b60005b8381101561239c578181015183820152602001612384565b83811115610bb35750506000910152565b600081518084526123c5816020860160208601612381565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061237a60208301846123ad565b60006020828403121561241c57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461244757600080fd5b919050565b6000806040838503121561245f57600080fd5b61246883612423565b946020939093013593505050565b60008060006060848603121561248b57600080fd5b61249484612423565b92506124a260208501612423565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124fc576124fc6124b2565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612542576125426124b2565b8160405280935085815286868601111561255b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258757600080fd5b813567ffffffffffffffff81111561259e57600080fd5b8201601f810184136125af57600080fd5b6118c0848235602084016124e1565b6000602082840312156125d057600080fd5b61237a82612423565b600080604083850312156125ec57600080fd5b6125f583612423565b91506020830135801515811461260a57600080fd5b809150509250929050565b6000806000806080858703121561262b57600080fd5b61263485612423565b935061264260208601612423565b925060408501359150606085013567ffffffffffffffff81111561266557600080fd5b8501601f8101871361267657600080fd5b612685878235602084016124e1565b91505092959194509250565b600080604083850312156126a457600080fd5b6126ad83612423565b91506126bb60208401612423565b90509250929050565b600181811c908216806126d857607f821691505b60208210811415612712577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561275a5761275a612718565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561279157612791612718565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d0576127d0612718565b500290565b600081516127e7818560208601612381565b9290920192915050565b600080845481600182811c91508083168061280d57607f831692505b6020808410821415612846577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561285a5760018114612889576128b6565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506128b6565b60008b81526020902060005b868110156128ae5781548b820152908501908301612895565b505084890196505b50505050505061291e6128f56128ef837f2f00000000000000000000000000000000000000000000000000000000000000815260010190565b866127d5565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60008282101561293957612939612718565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261297c5761297c61293e565b500490565b6000826129905761299061293e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612a0360808301846123ad565b9695505050505050565b600060208284031215612a1f57600080fd5b815161237a8161232f56fea26469706673582212200548ef65d938a25012fa7a39f56e02c442f231167e32ad12b5fcb2d5a9d4797764736f6c634300080a003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d504e44365438384a727a6a7959626d746968334b624a6b673339664671354863514b626a6e70527267614e35
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063dbddb26a11610064578063dbddb26a146104c9578063e985e9c5146104de578063ec67567c14610534578063f2fde38b1461056157600080fd5b8063b88d4fde14610473578063c002d23d14610493578063c87b56dd146104a957600080fd5b80638da5cb5b116100c65780638da5cb5b1461040057806395d89b411461042b578063a0712d6814610440578063a22cb4651461045357600080fd5b806370a08231146103b6578063714c5398146103d6578063715018a6146103eb57600080fd5b80632e1a7d4d1161015957806342842e0e1161013357806342842e0e14610336578063449a52f81461035657806355f804b3146103765780636352211e1461039657600080fd5b80632e1a7d4d146102eb57806332cb6b0c1461030b5780633ccfd60b1461032157600080fd5b8063095ea7b311610195578063095ea7b31461025857806318160ddd1461027a5780632223e7871461029e57806323b872dd146102cb57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461235d565b610581565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610666565b6040516101e891906123f7565b34801561021f57600080fd5b5061023361022e36600461240a565b6106f8565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101e8565b34801561026457600080fd5b5061027861027336600461244c565b6107d7565b005b34801561028657600080fd5b5061029060095481565b6040519081526020016101e8565b3480156102aa57600080fd5b50600c546102339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102d757600080fd5b506102786102e6366004612476565b610964565b3480156102f757600080fd5b5061027861030636600461240a565b610a05565b34801561031757600080fd5b5061029060085481565b34801561032d57600080fd5b50610278610bb9565b34801561034257600080fd5b50610278610351366004612476565b610d67565b34801561036257600080fd5b5061027861037136600461244c565b610d82565b34801561038257600080fd5b50610278610391366004612575565b610f2b565b3480156103a257600080fd5b506102336103b136600461240a565b610fc3565b3480156103c257600080fd5b506102906103d13660046125be565b611075565b3480156103e257600080fd5b50610206611143565b3480156103f757600080fd5b50610278611152565b34801561040c57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff16610233565b34801561043757600080fd5b506102066111df565b61027861044e36600461240a565b6111ee565b34801561045f57600080fd5b5061027861046e3660046125d9565b611419565b34801561047f57600080fd5b5061027861048e366004612615565b611424565b34801561049f57600080fd5b5061029060075481565b3480156104b557600080fd5b506102066104c436600461240a565b6114c6565b3480156104d557600080fd5b506102066114fa565b3480156104ea57600080fd5b506101dc6104f9366004612691565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054057600080fd5b50600b546102339073ffffffffffffffffffffffffffffffffffffffff1681565b34801561056d57600080fd5b5061027861057c3660046125be565b611588565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061066057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610675906126c4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a1906126c4565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166107ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006107e282610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107a5565b3373ffffffffffffffffffffffffffffffffffffffff821614806108c957506108c981336104f9565b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a5565b61095f83836116b8565b505050565b61096e3382611758565b6109fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107a5565b61095f8383836118c8565b600080610a1183611b2f565b600b5460405192945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169083908381818185875af1925050503d8060008114610a73576040519150601f19603f3d011682016040523d82523d6000602084013e610a78565b606091505b5050905080610ae5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2146574600000000000000000000000000000000000000000000000000000000604082015260600190565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908490600081818185875af1925050503d8060008114610b3f576040519150601f19603f3d011682016040523d82523d6000602084013e610b44565b606091505b50508091505080610bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2153574600000000000000000000000000000000000000000000000000000000604082015260600190565b50505050565b600080610bc547611b2f565b600b5460405192945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169083908381818185875af1925050503d8060008114610c27576040519150601f19603f3d011682016040523d82523d6000602084013e610c2c565b606091505b5050905080610c99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2146574600000000000000000000000000000000000000000000000000000000604082015260600190565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908490600081818185875af1925050503d8060008114610cf3576040519150601f19603f3d011682016040523d82523d6000602084013e610cf8565b606091505b5050809150508061095f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f2153574600000000000000000000000000000000000000000000000000000000604082015260600190565b61095f83838360405180602001604052806000815250611424565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b6103216009541015610e73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f21534e5600000000000000000000000000000000000000000000000000000000604082015260600190565b60085481600954610e849190612747565b1115610eee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f214f4f5300000000000000000000000000000000000000000000000000000000604082015260600190565b60005b8181101561095f5760006009546001610f0a9190612747565b9050610f168482611b6a565b60095580610f238161275f565b915050610ef1565b60065473ffffffffffffffffffffffffffffffffffffffff163314610fac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b8051610fbf90600a906020840190612296565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107a5565b600073ffffffffffffffffffffffffffffffffffffffff821661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107a5565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6060600a8054610675906126c4565b60065473ffffffffffffffffffffffffffffffffffffffff1633146111d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b6111dd6000611d2c565b565b606060018054610675906126c4565b600854816009546111ff9190612747565b1115611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a59060208082526004908201527f214f4f5300000000000000000000000000000000000000000000000000000000604082015260600190565b6103208160095461127a9190612747565b116112ee57806001146112e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f214941000000000000000000000000000000000000000000000000000000000060448201526064016107a5565b6113dc565b6000811180156112ff575060148111155b611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f214941000000000000000000000000000000000000000000000000000000000060448201526064016107a5565b806007546113739190612798565b3410156113dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214e45455448000000000000000000000000000000000000000000000000000060448201526064016107a5565b60005b81811015610fbf57600060095460016113f89190612747565b90506114043382611b6a565b600955806114118161275f565b9150506113df565b610fbf338383611da3565b61142e3383611758565b6114ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107a5565b610bb384848484611ed1565b6060600a6114d383611f74565b6040516020016114e49291906127f1565b6040516020818303038152906040529050919050565b600a8054611507906126c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611533906126c4565b80156115805780601f1061155557610100808354040283529160200191611580565b820191906000526020600020905b81548152906001019060200180831161156357829003601f168201915b505050505081565b60065473ffffffffffffffffffffffffffffffffffffffff163314611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff81166116ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107a5565b6116b581611d2c565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061171282610fc3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107a5565b600061181483610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188357508373ffffffffffffffffffffffffffffffffffffffff1661186b846106f8565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166118e882610fc3565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107a5565b73ffffffffffffffffffffffffffffffffffffffff8216611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a5565b611a386000826116b8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611a6e908490612927565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611aa9908490612747565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080670de0b6b3a7640000611b4d8467016345785d8a0000612798565b611b57919061296d565b9150611b638284612927565b9050915091565b73ffffffffffffffffffffffffffffffffffffffff8216611be7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a5565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611ca9908490612747565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611edc8484846118c8565b611ee8848484846120a6565b610bb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a5565b606081611fb457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fde5780611fc88161275f565b9150611fd79050600a8361296d565b9150611fb8565b60008167ffffffffffffffff811115611ff957611ff96124b2565b6040519080825280601f01601f191660200182016040528015612023576020820181803683370190505b5090505b84156118c057612038600183612927565b9150612045600a86612981565b612050906030612747565b60f81b81838151811061206557612065612995565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061209f600a8661296d565b9450612027565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561228b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061211d9033908990889088906004016129c4565b6020604051808303816000875af1925050508015612176575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261217391810190612a0d565b60015b612240573d8080156121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b508051612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118c0565b506001949350505050565b8280546122a2906126c4565b90600052602060002090601f0160209004810192826122c4576000855561230a565b82601f106122dd57805160ff191683800117855561230a565b8280016001018555821561230a579182015b8281111561230a5782518255916020019190600101906122ef565b5061231692915061231a565b5090565b5b80821115612316576000815560010161231b565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116b557600080fd5b60006020828403121561236f57600080fd5b813561237a8161232f565b9392505050565b60005b8381101561239c578181015183820152602001612384565b83811115610bb35750506000910152565b600081518084526123c5816020860160208601612381565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061237a60208301846123ad565b60006020828403121561241c57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461244757600080fd5b919050565b6000806040838503121561245f57600080fd5b61246883612423565b946020939093013593505050565b60008060006060848603121561248b57600080fd5b61249484612423565b92506124a260208501612423565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124fc576124fc6124b2565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612542576125426124b2565b8160405280935085815286868601111561255b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258757600080fd5b813567ffffffffffffffff81111561259e57600080fd5b8201601f810184136125af57600080fd5b6118c0848235602084016124e1565b6000602082840312156125d057600080fd5b61237a82612423565b600080604083850312156125ec57600080fd5b6125f583612423565b91506020830135801515811461260a57600080fd5b809150509250929050565b6000806000806080858703121561262b57600080fd5b61263485612423565b935061264260208601612423565b925060408501359150606085013567ffffffffffffffff81111561266557600080fd5b8501601f8101871361267657600080fd5b612685878235602084016124e1565b91505092959194509250565b600080604083850312156126a457600080fd5b6126ad83612423565b91506126bb60208401612423565b90509250929050565b600181811c908216806126d857607f821691505b60208210811415612712577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561275a5761275a612718565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561279157612791612718565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d0576127d0612718565b500290565b600081516127e7818560208601612381565b9290920192915050565b600080845481600182811c91508083168061280d57607f831692505b6020808410821415612846577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561285a5760018114612889576128b6565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506128b6565b60008b81526020902060005b868110156128ae5781548b820152908501908301612895565b505084890196505b50505050505061291e6128f56128ef837f2f00000000000000000000000000000000000000000000000000000000000000815260010190565b866127d5565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60008282101561293957612939612718565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261297c5761297c61293e565b500490565b6000826129905761299061293e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612a0360808301846123ad565b9695505050505050565b600060208284031215612a1f57600080fd5b815161237a8161232f56fea26469706673582212200548ef65d938a25012fa7a39f56e02c442f231167e32ad12b5fcb2d5a9d4797764736f6c634300080a0033
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.