ERC-721
Overview
Max Total Supply
514 LZ
Holders
150
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
15 LZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Liferz
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; pragma solidity 0.8.10; contract Liferz is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; event CollectionRevealed(); event ContractToggled(bool indexed state); event TokenURISet(string indexed tokenUri); uint256 public constant MAX_LIFERZ_SUPPLY = 2500; uint256 public constant MAX_FREE_SUPPLY = 250; uint256 public constant PER_TX_LIMIT = 3; uint256 public constant PRICE = .025 ether; uint256 public constant REVEAL_TIMEOUT = 6 hours; address private constant TEAM_W1 = 0x85535060a815BFFd808aEEBfBd35Fe7Aa1fE68bf; address private constant TEAM_W2 = 0x5fa99e05497ab910E36d032710411D31D1DD39cA; bool public paused = true; bool public collectionRevealed; uint256 public saleActivated; uint256 public totalSupply; string private __baseURI = "https://api.theliferznft.com"; constructor() ERC721("Liferz", "LZ") {} function mint(uint256 qt) external payable { _notPaused(); require(qt > 0 && qt <= PER_TX_LIMIT, "INVALID_QUANTITY"); if (totalSupply == 0) { saleActivated = block.timestamp; } if (_freeMintsAvailable()) { _mintAtNoCost(qt); } else { _mintAtCost(qt); } } function freeMintsAvailable() external view returns (bool) { return _freeMintsAvailable(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory result) { require(_exists(tokenId), "UNKNOWN_TOKEN_ID"); if (collectionRevealed) { return string( abi.encodePacked( __baseURI, "/metadata/", tokenId.toString(), ".json" ) ); } else { return string( abi.encodePacked(__baseURI, "/metadata/placeholder.json") ); } } function reveal() external { if (!collectionRevealed) { _contemplateReveal(); } } // RESTRICTED function withdraw() external { uint256 w2Amount = (address(this).balance * 15) / 100; payable(TEAM_W2).transfer(w2Amount); payable(TEAM_W1).transfer(address(this).balance); } function setURI(string calldata newUri) external { _restrict(); __baseURI = newUri; emit TokenURISet(__baseURI); } function toggle() external { _restrict(); paused = !paused; emit ContractToggled(paused); } // INTERNALS function _mintAtNoCost(uint256 qt) internal { require(msg.value == 0, "INVALID_ETH_AMOUNT"); _mintN(msg.sender, qt); } function _mintAtCost(uint256 qt) internal { require( totalSupply + qt <= MAX_LIFERZ_SUPPLY, "MINTING_EXCEEDS_SUPPLY" ); require(qt * PRICE == msg.value, "INVALID_ETH_AMOUNT"); _mintN(msg.sender, qt); } function _mintN(address to, uint256 qt) internal nonReentrant { for (uint256 t = 0; t < qt; t++) { _safeMint(to, totalSupply + t); } totalSupply += qt; if (!collectionRevealed) { _contemplateReveal(); } } function _contemplateReveal() internal { if ( (saleActivated > 0 && (block.timestamp - saleActivated >= REVEAL_TIMEOUT)) ) { collectionRevealed = true; emit CollectionRevealed(); } } function _freeMintsAvailable() internal view returns (bool) { return (totalSupply < MAX_FREE_SUPPLY); } function _restrict() internal view { require( msg.sender == owner() || msg.sender == TEAM_W1 || msg.sender == TEAM_W2, "UNAUTHORIZED_ACCESS" ); } function _notPaused() internal view { require(!paused, "CONTRACT_PAUSED"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 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 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 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 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 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 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 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 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" ] } } }
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":[],"name":"CollectionRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"state","type":"bool"}],"name":"ContractToggled","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":"string","name":"tokenUri","type":"string"}],"name":"TokenURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LIFERZ_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMEOUT","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":[],"name":"collectionRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintsAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[],"name":"saleActivated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setURI","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":[],"name":"toggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"result","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
60806040526001600860006101000a81548160ff0219169083151502179055506040518060400160405280601c81526020017f68747470733a2f2f6170692e7468656c696665727a6e66742e636f6d00000000815250600b90805190602001906200006c92919062000217565b503480156200007a57600080fd5b506040518060400160405280600681526020017f4c696665727a00000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c5a0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff92919062000217565b5080600190805190602001906200011892919062000217565b5050506200013b6200012f6200014960201b60201c565b6200015160201b60201c565b60016007819055506200032c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022590620002f6565b90600052602060002090601f01602090048101928262000249576000855562000295565b82601f106200026457805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029457825182559160200191906001019062000277565b5b509050620002a49190620002a8565b5090565b5b80821115620002c3576000816000905550600101620002a9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030f57607f821691505b60208210811415620003265762000325620002c7565b5b50919050565b613ace806200033c6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063dbff0e5211610064578063dbff0e5214610655578063dc9b125d14610680578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063a22cb465146105af578063a475b5dd146105d8578063b88d4fde146105ef578063c87b56dd14610618576101d8565b80638da5cb5b116100d15780638da5cb5b1461051257806395d89b411461053d578063a0712d6814610568578063a1165f5d14610584576101d8565b806370a0823114610468578063715018a6146104a55780637c234fb5146104bc5780638d859f3e146104e7576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ac5780635c975abb146103d557806360cc9368146104005780636352211e1461042b576101d8565b806323b872dd1461032a5780633ccfd60b146103535780633d6ae3a71461036a57806340a3d24614610395576101d8565b806306fdde03116101b657806306fdde031461026e578063081812fc14610299578063095ea7b3146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302ddb65b1461021a57806302fe530514610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612423565b610711565b604051610211919061246b565b60405180910390f35b34801561022657600080fd5b5061022f6107f3565b60405161023c919061249f565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061251f565b6107f8565b005b34801561027a57600080fd5b50610283610859565b6040516102909190612605565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612653565b6108eb565b6040516102cd91906126c1565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612708565b610970565b005b34801561030b57600080fd5b50610314610a88565b604051610321919061249f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612748565b610a8e565b005b34801561035f57600080fd5b50610368610aee565b005b34801561037657600080fd5b5061037f610bc4565b60405161038c919061249f565b60405180910390f35b3480156103a157600080fd5b506103aa610bca565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612748565b610c3c565b005b3480156103e157600080fd5b506103ea610c5c565b6040516103f7919061246b565b60405180910390f35b34801561040c57600080fd5b50610415610c6f565b604051610422919061249f565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612653565b610c75565b60405161045f91906126c1565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061279b565b610d27565b60405161049c919061249f565b60405180910390f35b3480156104b157600080fd5b506104ba610ddf565b005b3480156104c857600080fd5b506104d1610e67565b6040516104de919061246b565b60405180910390f35b3480156104f357600080fd5b506104fc610e7a565b604051610509919061249f565b60405180910390f35b34801561051e57600080fd5b50610527610e85565b60405161053491906126c1565b60405180910390f35b34801561054957600080fd5b50610552610eaf565b60405161055f9190612605565b60405180910390f35b610582600480360381019061057d9190612653565b610f41565b005b34801561059057600080fd5b50610599610fd4565b6040516105a6919061246b565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906127f4565b610fe3565b005b3480156105e457600080fd5b506105ed611164565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612964565b611183565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612653565b6111e5565b60405161064c9190612605565b60405180910390f35b34801561066157600080fd5b5061066a61129f565b604051610677919061249f565b60405180910390f35b34801561068c57600080fd5b506106956112a4565b6040516106a2919061249f565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906129e7565b6112aa565b6040516106df919061246b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061279b565b61133e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57506107eb82611436565b5b9050919050565b60fa81565b6108006114a0565b8181600b9190610811929190612314565b50600b6040516108219190612b27565b60405180910390207f5bb111c9b2ad41c6cc1754cdbee2cc303b7becb89d29d2d5f91165fcc0b0a49d60405160405180910390a25050565b60606000805461086890612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461089490612a56565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f6826115ab565b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612bb0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610c75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612c42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0b611617565b73ffffffffffffffffffffffffffffffffffffffff161480610a3a5750610a3981610a34611617565b6112aa565b5b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612cd4565b60405180910390fd5b610a83838361161f565b505050565b600a5481565b610a9f610a99611617565b826116d8565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612d66565b60405180910390fd5b610ae98383836117b6565b505050565b60006064600f47610aff9190612db5565b610b099190612e3e565b9050735fa99e05497ab910e36d032710411d31d1dd39ca73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b65573d6000803e3d6000fd5b507385535060a815bffd808aeebfbd35fe7aa1fe68bf73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc0573d6000803e3d6000fd5b5050565b61546081565b610bd26114a0565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550600860009054906101000a900460ff1615157fd5b03c283ba3144bd495b77b4ff94904a91e70bdad8d31c168f75335032bb0e960405160405180910390a2565b610c5783838360405180602001604052806000815250611183565b505050565b600860009054906101000a900460ff1681565b6109c481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612ee1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90612f73565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de7611617565b73ffffffffffffffffffffffffffffffffffffffff16610e05610e85565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612fdf565b60405180910390fd5b610e656000611a12565b565b600860019054906101000a900460ff1681565b6658d15e1762800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ebe90612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610eea90612a56565b8015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b5050505050905090565b610f49611ad8565b600081118015610f5a575060038111155b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061304b565b60405180910390fd5b6000600a541415610fac57426009819055505b610fb4611b2a565b15610fc757610fc281611b37565b610fd1565b610fd081611b87565b5b50565b6000610fde611b2a565b905090565b610feb611617565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906130b7565b60405180910390fd5b8060056000611066611617565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611113611617565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611158919061246b565b60405180910390a35050565b600860019054906101000a900460ff1661118157611180611c3a565b5b565b61119461118e611617565b836116d8565b6111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90612d66565b60405180910390fd5b6111df84848484611caa565b50505050565b60606111f0826115ab565b61122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613123565b60405180910390fd5b600860019054906101000a900460ff161561127657600b61124f83611d06565b60405160200161126092919061320c565b604051602081830303815290604052905061129a565b600b6040516020016112889190613292565b60405160208183030381529060405290505b919050565b600381565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611346611617565b73ffffffffffffffffffffffffffffffffffffffff16611364610e85565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190612fdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613326565b60405180910390fd5b61143381611a12565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6114a8610e85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061152057507385535060a815bffd808aeebfbd35fe7aa1fe68bf73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061156a5750735fa99e05497ab910e36d032710411d31d1dd39ca73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613392565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661169283610c75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116e3826115ab565b611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613424565b60405180910390fd5b600061172d83610c75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179c57508373ffffffffffffffffffffffffffffffffffffffff16611784846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b806117ad57506117ac81856112aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117d682610c75565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611823906134b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613548565b60405180910390fd5b6118a7838383611e67565b6118b260008261161f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119029190613568565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611959919061359c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860009054906101000a900460ff1615611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f9061363e565b60405180910390fd5b565b600060fa600a5410905090565b60003414611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b71906136aa565b60405180910390fd5b611b843382611e6c565b50565b6109c481600a54611b98919061359c565b1115611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090613716565b60405180910390fd5b346658d15e1762800082611bed9190612db5565b14611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906136aa565b60405180910390fd5b611c373382611e6c565b50565b6000600954118015611c5b575061546060095442611c589190613568565b10155b15611ca8576001600860016101000a81548160ff0219169083151502179055507f4884a1e8d033385ee80fa3d769d1ba3c44e18291db0f726e436a01997d3df36a60405160405180910390a15b565b611cb58484846117b6565b611cc184848484611f32565b611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906137a8565b60405180910390fd5b50505050565b60606000821415611d4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e62565b600082905060005b60008214611d80578080611d69906137c8565b915050600a82611d799190612e3e565b9150611d56565b60008167ffffffffffffffff811115611d9c57611d9b612839565b5b6040519080825280601f01601f191660200182016040528015611dce5781602001600182028036833780820191505090505b5090505b60008514611e5b57600182611de79190613568565b9150600a85611df69190613811565b6030611e02919061359c565b60f81b818381518110611e1857611e17613842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e549190612e3e565b9450611dd2565b8093505050505b919050565b505050565b60026007541415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906138bd565b60405180910390fd5b600260078190555060005b81811015611eef57611edc8382600a54611ed7919061359c565b6120ba565b8080611ee7906137c8565b915050611ebd565b5080600a6000828254611f02919061359c565b92505081905550600860019054906101000a900460ff16611f2657611f25611c3a565b5b60016007819055505050565b6000611f538473ffffffffffffffffffffffffffffffffffffffff166120d8565b156120ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7c611617565b8786866040518563ffffffff1660e01b8152600401611f9e9493929190613932565b6020604051808303816000875af1925050508015611fda57506040513d601f19601f82011682018060405250810190611fd79190613993565b60015b61205d573d806000811461200a576040519150601f19603f3d011682016040523d82523d6000602084013e61200f565b606091505b50600081511415612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906137a8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b2565b600190505b949350505050565b6120d48282604051806020016040528060008152506120eb565b5050565b600080823b905060008111915050919050565b6120f58383612146565b6121026000848484611f32565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906137a8565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad90613a0c565b60405180910390fd5b6121bf816115ab565b156121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690613a78565b60405180910390fd5b61220b60008383611e67565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225b919061359c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461232090612a56565b90600052602060002090601f0160209004810192826123425760008555612389565b82601f1061235b57803560ff1916838001178555612389565b82800160010185558215612389579182015b8281111561238857823582559160200191906001019061236d565b5b509050612396919061239a565b5090565b5b808211156123b357600081600090555060010161239b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612400816123cb565b811461240b57600080fd5b50565b60008135905061241d816123f7565b92915050565b600060208284031215612439576124386123c1565b5b60006124478482850161240e565b91505092915050565b60008115159050919050565b61246581612450565b82525050565b6000602082019050612480600083018461245c565b92915050565b6000819050919050565b61249981612486565b82525050565b60006020820190506124b46000830184612490565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124df576124de6124ba565b5b8235905067ffffffffffffffff8111156124fc576124fb6124bf565b5b602083019150836001820283011115612518576125176124c4565b5b9250929050565b60008060208385031215612536576125356123c1565b5b600083013567ffffffffffffffff811115612554576125536123c6565b5b612560858286016124c9565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b838111156125b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006125d78261256c565b6125e18185612577565b93506125f1818560208601612588565b6125fa816125bb565b840191505092915050565b6000602082019050818103600083015261261f81846125cc565b905092915050565b61263081612486565b811461263b57600080fd5b50565b60008135905061264d81612627565b92915050565b600060208284031215612669576126686123c1565b5b60006126778482850161263e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ab82612680565b9050919050565b6126bb816126a0565b82525050565b60006020820190506126d660008301846126b2565b92915050565b6126e5816126a0565b81146126f057600080fd5b50565b600081359050612702816126dc565b92915050565b6000806040838503121561271f5761271e6123c1565b5b600061272d858286016126f3565b925050602061273e8582860161263e565b9150509250929050565b600080600060608486031215612761576127606123c1565b5b600061276f868287016126f3565b9350506020612780868287016126f3565b92505060406127918682870161263e565b9150509250925092565b6000602082840312156127b1576127b06123c1565b5b60006127bf848285016126f3565b91505092915050565b6127d181612450565b81146127dc57600080fd5b50565b6000813590506127ee816127c8565b92915050565b6000806040838503121561280b5761280a6123c1565b5b6000612819858286016126f3565b925050602061282a858286016127df565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612871826125bb565b810181811067ffffffffffffffff821117156128905761288f612839565b5b80604052505050565b60006128a36123b7565b90506128af8282612868565b919050565b600067ffffffffffffffff8211156128cf576128ce612839565b5b6128d8826125bb565b9050602081019050919050565b82818337600083830152505050565b6000612907612902846128b4565b612899565b90508281526020810184848401111561292357612922612834565b5b61292e8482856128e5565b509392505050565b600082601f83011261294b5761294a6124ba565b5b813561295b8482602086016128f4565b91505092915050565b6000806000806080858703121561297e5761297d6123c1565b5b600061298c878288016126f3565b945050602061299d878288016126f3565b93505060406129ae8782880161263e565b925050606085013567ffffffffffffffff8111156129cf576129ce6123c6565b5b6129db87828801612936565b91505092959194509250565b600080604083850312156129fe576129fd6123c1565b5b6000612a0c858286016126f3565b9250506020612a1d858286016126f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6e57607f821691505b60208210811415612a8257612a81612a27565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612ab581612a56565b612abf8186612a88565b94506001821660008114612ada5760018114612aeb57612b1e565b60ff19831686528186019350612b1e565b612af485612a93565b60005b83811015612b1657815481890152600182019150602081019050612af7565b838801955050505b50505092915050565b6000612b338284612aa8565b915081905092915050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b9a602c83612577565b9150612ba582612b3e565b604082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2c602183612577565b9150612c3782612bd0565b604082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cbe603883612577565b9150612cc982612c62565b604082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d50603183612577565b9150612d5b82612cf4565b604082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dc082612486565b9150612dcb83612486565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e0457612e03612d86565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e4982612486565b9150612e5483612486565b925082612e6457612e63612e0f565b5b828204905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612ecb602983612577565b9150612ed682612e6f565b604082019050919050565b60006020820190508181036000830152612efa81612ebe565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f5d602a83612577565b9150612f6882612f01565b604082019050919050565b60006020820190508181036000830152612f8c81612f50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc9602083612577565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b7f494e56414c49445f5155414e5449545900000000000000000000000000000000600082015250565b6000613035601083612577565b915061304082612fff565b602082019050919050565b6000602082019050818103600083015261306481613028565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130a1601983612577565b91506130ac8261306b565b602082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f554e4b4e4f574e5f544f4b454e5f494400000000000000000000000000000000600082015250565b600061310d601083612577565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b7f2f6d657461646174612f00000000000000000000000000000000000000000000600082015250565b6000613179600a83612a88565b915061318482613143565b600a82019050919050565b600061319a8261256c565b6131a48185612a88565b93506131b4818560208601612588565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131f6600583612a88565b9150613201826131c0565b600582019050919050565b60006132188285612aa8565b91506132238261316c565b915061322f828461318f565b915061323a826131e9565b91508190509392505050565b7f2f6d657461646174612f706c616365686f6c6465722e6a736f6e000000000000600082015250565b600061327c601a83612a88565b915061328782613246565b601a82019050919050565b600061329e8284612aa8565b91506132a98261326f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613310602683612577565b915061331b826132b4565b604082019050919050565b6000602082019050818103600083015261333f81613303565b9050919050565b7f554e415554484f52495a45445f41434345535300000000000000000000000000600082015250565b600061337c601383612577565b915061338782613346565b602082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061340e602c83612577565b9150613419826133b2565b604082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006134a0602983612577565b91506134ab82613444565b604082019050919050565b600060208201905081810360008301526134cf81613493565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613532602483612577565b915061353d826134d6565b604082019050919050565b6000602082019050818103600083015261356181613525565b9050919050565b600061357382612486565b915061357e83612486565b92508282101561359157613590612d86565b5b828203905092915050565b60006135a782612486565b91506135b283612486565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135e7576135e6612d86565b5b828201905092915050565b7f434f4e54524143545f5041555345440000000000000000000000000000000000600082015250565b6000613628600f83612577565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f494e56414c49445f4554485f414d4f554e540000000000000000000000000000600082015250565b6000613694601283612577565b915061369f8261365e565b602082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4d494e54494e475f455843454544535f535550504c5900000000000000000000600082015250565b6000613700601683612577565b915061370b826136ca565b602082019050919050565b6000602082019050818103600083015261372f816136f3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613792603283612577565b915061379d82613736565b604082019050919050565b600060208201905081810360008301526137c181613785565b9050919050565b60006137d382612486565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561380657613805612d86565b5b600182019050919050565b600061381c82612486565b915061382783612486565b92508261383757613836612e0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006138a7601f83612577565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613904826138dd565b61390e81856138e8565b935061391e818560208601612588565b613927816125bb565b840191505092915050565b600060808201905061394760008301876126b2565b61395460208301866126b2565b6139616040830185612490565b818103606083015261397381846138f9565b905095945050505050565b60008151905061398d816123f7565b92915050565b6000602082840312156139a9576139a86123c1565b5b60006139b78482850161397e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139f6602083612577565b9150613a01826139c0565b602082019050919050565b60006020820190508181036000830152613a25816139e9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613a62601c83612577565b9150613a6d82613a2c565b602082019050919050565b60006020820190508181036000830152613a9181613a55565b905091905056fea2646970667358221220a6a3bf9854db7757d17d428dcfeebd519b76c6fbe002da9d0ca83100f7fd512664736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063dbff0e5211610064578063dbff0e5214610655578063dc9b125d14610680578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063a22cb465146105af578063a475b5dd146105d8578063b88d4fde146105ef578063c87b56dd14610618576101d8565b80638da5cb5b116100d15780638da5cb5b1461051257806395d89b411461053d578063a0712d6814610568578063a1165f5d14610584576101d8565b806370a0823114610468578063715018a6146104a55780637c234fb5146104bc5780638d859f3e146104e7576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ac5780635c975abb146103d557806360cc9368146104005780636352211e1461042b576101d8565b806323b872dd1461032a5780633ccfd60b146103535780633d6ae3a71461036a57806340a3d24614610395576101d8565b806306fdde03116101b657806306fdde031461026e578063081812fc14610299578063095ea7b3146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302ddb65b1461021a57806302fe530514610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612423565b610711565b604051610211919061246b565b60405180910390f35b34801561022657600080fd5b5061022f6107f3565b60405161023c919061249f565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061251f565b6107f8565b005b34801561027a57600080fd5b50610283610859565b6040516102909190612605565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612653565b6108eb565b6040516102cd91906126c1565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612708565b610970565b005b34801561030b57600080fd5b50610314610a88565b604051610321919061249f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612748565b610a8e565b005b34801561035f57600080fd5b50610368610aee565b005b34801561037657600080fd5b5061037f610bc4565b60405161038c919061249f565b60405180910390f35b3480156103a157600080fd5b506103aa610bca565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612748565b610c3c565b005b3480156103e157600080fd5b506103ea610c5c565b6040516103f7919061246b565b60405180910390f35b34801561040c57600080fd5b50610415610c6f565b604051610422919061249f565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612653565b610c75565b60405161045f91906126c1565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061279b565b610d27565b60405161049c919061249f565b60405180910390f35b3480156104b157600080fd5b506104ba610ddf565b005b3480156104c857600080fd5b506104d1610e67565b6040516104de919061246b565b60405180910390f35b3480156104f357600080fd5b506104fc610e7a565b604051610509919061249f565b60405180910390f35b34801561051e57600080fd5b50610527610e85565b60405161053491906126c1565b60405180910390f35b34801561054957600080fd5b50610552610eaf565b60405161055f9190612605565b60405180910390f35b610582600480360381019061057d9190612653565b610f41565b005b34801561059057600080fd5b50610599610fd4565b6040516105a6919061246b565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906127f4565b610fe3565b005b3480156105e457600080fd5b506105ed611164565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612964565b611183565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612653565b6111e5565b60405161064c9190612605565b60405180910390f35b34801561066157600080fd5b5061066a61129f565b604051610677919061249f565b60405180910390f35b34801561068c57600080fd5b506106956112a4565b6040516106a2919061249f565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906129e7565b6112aa565b6040516106df919061246b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061279b565b61133e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57506107eb82611436565b5b9050919050565b60fa81565b6108006114a0565b8181600b9190610811929190612314565b50600b6040516108219190612b27565b60405180910390207f5bb111c9b2ad41c6cc1754cdbee2cc303b7becb89d29d2d5f91165fcc0b0a49d60405160405180910390a25050565b60606000805461086890612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461089490612a56565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f6826115ab565b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612bb0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610c75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612c42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0b611617565b73ffffffffffffffffffffffffffffffffffffffff161480610a3a5750610a3981610a34611617565b6112aa565b5b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090612cd4565b60405180910390fd5b610a83838361161f565b505050565b600a5481565b610a9f610a99611617565b826116d8565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612d66565b60405180910390fd5b610ae98383836117b6565b505050565b60006064600f47610aff9190612db5565b610b099190612e3e565b9050735fa99e05497ab910e36d032710411d31d1dd39ca73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b65573d6000803e3d6000fd5b507385535060a815bffd808aeebfbd35fe7aa1fe68bf73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc0573d6000803e3d6000fd5b5050565b61546081565b610bd26114a0565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550600860009054906101000a900460ff1615157fd5b03c283ba3144bd495b77b4ff94904a91e70bdad8d31c168f75335032bb0e960405160405180910390a2565b610c5783838360405180602001604052806000815250611183565b505050565b600860009054906101000a900460ff1681565b6109c481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612ee1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90612f73565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de7611617565b73ffffffffffffffffffffffffffffffffffffffff16610e05610e85565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612fdf565b60405180910390fd5b610e656000611a12565b565b600860019054906101000a900460ff1681565b6658d15e1762800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ebe90612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610eea90612a56565b8015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b5050505050905090565b610f49611ad8565b600081118015610f5a575060038111155b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061304b565b60405180910390fd5b6000600a541415610fac57426009819055505b610fb4611b2a565b15610fc757610fc281611b37565b610fd1565b610fd081611b87565b5b50565b6000610fde611b2a565b905090565b610feb611617565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906130b7565b60405180910390fd5b8060056000611066611617565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611113611617565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611158919061246b565b60405180910390a35050565b600860019054906101000a900460ff1661118157611180611c3a565b5b565b61119461118e611617565b836116d8565b6111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90612d66565b60405180910390fd5b6111df84848484611caa565b50505050565b60606111f0826115ab565b61122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613123565b60405180910390fd5b600860019054906101000a900460ff161561127657600b61124f83611d06565b60405160200161126092919061320c565b604051602081830303815290604052905061129a565b600b6040516020016112889190613292565b60405160208183030381529060405290505b919050565b600381565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611346611617565b73ffffffffffffffffffffffffffffffffffffffff16611364610e85565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190612fdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613326565b60405180910390fd5b61143381611a12565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6114a8610e85565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061152057507385535060a815bffd808aeebfbd35fe7aa1fe68bf73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061156a5750735fa99e05497ab910e36d032710411d31d1dd39ca73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613392565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661169283610c75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116e3826115ab565b611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613424565b60405180910390fd5b600061172d83610c75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179c57508373ffffffffffffffffffffffffffffffffffffffff16611784846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b806117ad57506117ac81856112aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117d682610c75565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611823906134b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613548565b60405180910390fd5b6118a7838383611e67565b6118b260008261161f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119029190613568565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611959919061359c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860009054906101000a900460ff1615611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f9061363e565b60405180910390fd5b565b600060fa600a5410905090565b60003414611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b71906136aa565b60405180910390fd5b611b843382611e6c565b50565b6109c481600a54611b98919061359c565b1115611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090613716565b60405180910390fd5b346658d15e1762800082611bed9190612db5565b14611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906136aa565b60405180910390fd5b611c373382611e6c565b50565b6000600954118015611c5b575061546060095442611c589190613568565b10155b15611ca8576001600860016101000a81548160ff0219169083151502179055507f4884a1e8d033385ee80fa3d769d1ba3c44e18291db0f726e436a01997d3df36a60405160405180910390a15b565b611cb58484846117b6565b611cc184848484611f32565b611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906137a8565b60405180910390fd5b50505050565b60606000821415611d4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e62565b600082905060005b60008214611d80578080611d69906137c8565b915050600a82611d799190612e3e565b9150611d56565b60008167ffffffffffffffff811115611d9c57611d9b612839565b5b6040519080825280601f01601f191660200182016040528015611dce5781602001600182028036833780820191505090505b5090505b60008514611e5b57600182611de79190613568565b9150600a85611df69190613811565b6030611e02919061359c565b60f81b818381518110611e1857611e17613842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e549190612e3e565b9450611dd2565b8093505050505b919050565b505050565b60026007541415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906138bd565b60405180910390fd5b600260078190555060005b81811015611eef57611edc8382600a54611ed7919061359c565b6120ba565b8080611ee7906137c8565b915050611ebd565b5080600a6000828254611f02919061359c565b92505081905550600860019054906101000a900460ff16611f2657611f25611c3a565b5b60016007819055505050565b6000611f538473ffffffffffffffffffffffffffffffffffffffff166120d8565b156120ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7c611617565b8786866040518563ffffffff1660e01b8152600401611f9e9493929190613932565b6020604051808303816000875af1925050508015611fda57506040513d601f19601f82011682018060405250810190611fd79190613993565b60015b61205d573d806000811461200a576040519150601f19603f3d011682016040523d82523d6000602084013e61200f565b606091505b50600081511415612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906137a8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b2565b600190505b949350505050565b6120d48282604051806020016040528060008152506120eb565b5050565b600080823b905060008111915050919050565b6120f58383612146565b6121026000848484611f32565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906137a8565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad90613a0c565b60405180910390fd5b6121bf816115ab565b156121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690613a78565b60405180910390fd5b61220b60008383611e67565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225b919061359c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461232090612a56565b90600052602060002090601f0160209004810192826123425760008555612389565b82601f1061235b57803560ff1916838001178555612389565b82800160010185558215612389579182015b8281111561238857823582559160200191906001019061236d565b5b509050612396919061239a565b5090565b5b808211156123b357600081600090555060010161239b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612400816123cb565b811461240b57600080fd5b50565b60008135905061241d816123f7565b92915050565b600060208284031215612439576124386123c1565b5b60006124478482850161240e565b91505092915050565b60008115159050919050565b61246581612450565b82525050565b6000602082019050612480600083018461245c565b92915050565b6000819050919050565b61249981612486565b82525050565b60006020820190506124b46000830184612490565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124df576124de6124ba565b5b8235905067ffffffffffffffff8111156124fc576124fb6124bf565b5b602083019150836001820283011115612518576125176124c4565b5b9250929050565b60008060208385031215612536576125356123c1565b5b600083013567ffffffffffffffff811115612554576125536123c6565b5b612560858286016124c9565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b838111156125b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006125d78261256c565b6125e18185612577565b93506125f1818560208601612588565b6125fa816125bb565b840191505092915050565b6000602082019050818103600083015261261f81846125cc565b905092915050565b61263081612486565b811461263b57600080fd5b50565b60008135905061264d81612627565b92915050565b600060208284031215612669576126686123c1565b5b60006126778482850161263e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ab82612680565b9050919050565b6126bb816126a0565b82525050565b60006020820190506126d660008301846126b2565b92915050565b6126e5816126a0565b81146126f057600080fd5b50565b600081359050612702816126dc565b92915050565b6000806040838503121561271f5761271e6123c1565b5b600061272d858286016126f3565b925050602061273e8582860161263e565b9150509250929050565b600080600060608486031215612761576127606123c1565b5b600061276f868287016126f3565b9350506020612780868287016126f3565b92505060406127918682870161263e565b9150509250925092565b6000602082840312156127b1576127b06123c1565b5b60006127bf848285016126f3565b91505092915050565b6127d181612450565b81146127dc57600080fd5b50565b6000813590506127ee816127c8565b92915050565b6000806040838503121561280b5761280a6123c1565b5b6000612819858286016126f3565b925050602061282a858286016127df565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612871826125bb565b810181811067ffffffffffffffff821117156128905761288f612839565b5b80604052505050565b60006128a36123b7565b90506128af8282612868565b919050565b600067ffffffffffffffff8211156128cf576128ce612839565b5b6128d8826125bb565b9050602081019050919050565b82818337600083830152505050565b6000612907612902846128b4565b612899565b90508281526020810184848401111561292357612922612834565b5b61292e8482856128e5565b509392505050565b600082601f83011261294b5761294a6124ba565b5b813561295b8482602086016128f4565b91505092915050565b6000806000806080858703121561297e5761297d6123c1565b5b600061298c878288016126f3565b945050602061299d878288016126f3565b93505060406129ae8782880161263e565b925050606085013567ffffffffffffffff8111156129cf576129ce6123c6565b5b6129db87828801612936565b91505092959194509250565b600080604083850312156129fe576129fd6123c1565b5b6000612a0c858286016126f3565b9250506020612a1d858286016126f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6e57607f821691505b60208210811415612a8257612a81612a27565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612ab581612a56565b612abf8186612a88565b94506001821660008114612ada5760018114612aeb57612b1e565b60ff19831686528186019350612b1e565b612af485612a93565b60005b83811015612b1657815481890152600182019150602081019050612af7565b838801955050505b50505092915050565b6000612b338284612aa8565b915081905092915050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b9a602c83612577565b9150612ba582612b3e565b604082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2c602183612577565b9150612c3782612bd0565b604082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cbe603883612577565b9150612cc982612c62565b604082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d50603183612577565b9150612d5b82612cf4565b604082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dc082612486565b9150612dcb83612486565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e0457612e03612d86565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e4982612486565b9150612e5483612486565b925082612e6457612e63612e0f565b5b828204905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612ecb602983612577565b9150612ed682612e6f565b604082019050919050565b60006020820190508181036000830152612efa81612ebe565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f5d602a83612577565b9150612f6882612f01565b604082019050919050565b60006020820190508181036000830152612f8c81612f50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc9602083612577565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b7f494e56414c49445f5155414e5449545900000000000000000000000000000000600082015250565b6000613035601083612577565b915061304082612fff565b602082019050919050565b6000602082019050818103600083015261306481613028565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130a1601983612577565b91506130ac8261306b565b602082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f554e4b4e4f574e5f544f4b454e5f494400000000000000000000000000000000600082015250565b600061310d601083612577565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b7f2f6d657461646174612f00000000000000000000000000000000000000000000600082015250565b6000613179600a83612a88565b915061318482613143565b600a82019050919050565b600061319a8261256c565b6131a48185612a88565b93506131b4818560208601612588565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131f6600583612a88565b9150613201826131c0565b600582019050919050565b60006132188285612aa8565b91506132238261316c565b915061322f828461318f565b915061323a826131e9565b91508190509392505050565b7f2f6d657461646174612f706c616365686f6c6465722e6a736f6e000000000000600082015250565b600061327c601a83612a88565b915061328782613246565b601a82019050919050565b600061329e8284612aa8565b91506132a98261326f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613310602683612577565b915061331b826132b4565b604082019050919050565b6000602082019050818103600083015261333f81613303565b9050919050565b7f554e415554484f52495a45445f41434345535300000000000000000000000000600082015250565b600061337c601383612577565b915061338782613346565b602082019050919050565b600060208201905081810360008301526133ab8161336f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061340e602c83612577565b9150613419826133b2565b604082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006134a0602983612577565b91506134ab82613444565b604082019050919050565b600060208201905081810360008301526134cf81613493565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613532602483612577565b915061353d826134d6565b604082019050919050565b6000602082019050818103600083015261356181613525565b9050919050565b600061357382612486565b915061357e83612486565b92508282101561359157613590612d86565b5b828203905092915050565b60006135a782612486565b91506135b283612486565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135e7576135e6612d86565b5b828201905092915050565b7f434f4e54524143545f5041555345440000000000000000000000000000000000600082015250565b6000613628600f83612577565b9150613633826135f2565b602082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b7f494e56414c49445f4554485f414d4f554e540000000000000000000000000000600082015250565b6000613694601283612577565b915061369f8261365e565b602082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4d494e54494e475f455843454544535f535550504c5900000000000000000000600082015250565b6000613700601683612577565b915061370b826136ca565b602082019050919050565b6000602082019050818103600083015261372f816136f3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613792603283612577565b915061379d82613736565b604082019050919050565b600060208201905081810360008301526137c181613785565b9050919050565b60006137d382612486565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561380657613805612d86565b5b600182019050919050565b600061381c82612486565b915061382783612486565b92508261383757613836612e0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006138a7601f83612577565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613904826138dd565b61390e81856138e8565b935061391e818560208601612588565b613927816125bb565b840191505092915050565b600060808201905061394760008301876126b2565b61395460208301866126b2565b6139616040830185612490565b818103606083015261397381846138f9565b905095945050505050565b60008151905061398d816123f7565b92915050565b6000602082840312156139a9576139a86123c1565b5b60006139b78482850161397e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139f6602083612577565b9150613a01826139c0565b602082019050919050565b60006020820190508181036000830152613a25816139e9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613a62601c83612577565b9150613a6d82613a2c565b602082019050919050565b60006020820190508181036000830152613a9181613a55565b905091905056fea2646970667358221220a6a3bf9854db7757d17d428dcfeebd519b76c6fbe002da9d0ca83100f7fd512664736f6c634300080a0033
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.