Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,438 FORGOTTENHEROES
Holders
926
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FORGOTTENHEROESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ForgottenHeroes
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.8.9 <0.9.0;import 'erc721a/contracts/extensions/ERC721AQueryable.sol';import '@openzeppelin/contracts/access/Ownable.sol';import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';import '@openzeppelin/contracts/security/ReentrancyGuard.sol';contract ForgottenHeroes is ERC721AQueryable, Ownable, ReentrancyGuard {using Strings for uint256;mapping(address => uint256) public freeClaimed;string public uriPrefix = 'ipfs://QmdvN51XWmknf9gxZGjkakJT5Xq5zZMdRBaaFo3twXJfD4/';string public uriSuffix = '.json';uint256 public cost;uint256 public maxSupply;uint256 public freeSupply = 2000;uint256 public freePerWallet = 1;uint256 public maxMintAmountPerTx;address public theOwner = 0x27F1310104f1051c6Fa3c105517380e9Eda8ed46;bool public paused = false;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v3.3.0// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721AQueryable.sol';import '../ERC721A.sol';/*** @title ERC721A Queryable* @dev ERC721A subclass with convenience query functions.*/abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:* - `addr` = `address(0)`* - `startTimestamp` = `0`* - `burned` = `false`** If the `tokenId` is burned:* - `addr` = `<Address of owner before token was burned>`* - `startTimestamp` = `<Timestamp when token was burned>`* - `burned = `true`
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Trees proofs.** The proofs can be generated using the JavaScript library* https://github.com/miguelmota/merkletreejs[merkletreejs].* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.** See `test/utils/cryptography/MerkleProof.test.js` for some examples.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/function verify(bytes32[] memory proof,bytes32 root,bytes32 leaf) internal pure returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v3.3.0// Creator: Chiru Labspragma solidity ^0.8.4;import '../IERC721A.sol';/*** @dev Interface of an ERC721AQueryable compliant contract.*/interface IERC721AQueryable is IERC721A {/*** Invalid query range (`start` >= `stop`).*/error InvalidQueryRange();/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:* - `addr` = `address(0)`* - `startTimestamp` = `0`* - `burned` = `false`** If the `tokenId` is burned:
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v3.3.0// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';import '@openzeppelin/contracts/utils/Address.sol';import '@openzeppelin/contracts/utils/Context.sol';import '@openzeppelin/contracts/utils/Strings.sol';import '@openzeppelin/contracts/utils/introspection/ERC165.sol';/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension. Built to optimize for lower gas during batch mints.** Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).** Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.** Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).*/contract ERC721A is Context, ERC165, IERC721A {using Address for address;using Strings for uint256;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v3.3.0// Creator: Chiru Labspragma solidity ^0.8.4;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';/*** @dev Interface of an ERC721A compliant contract.*/interface IERC721A is IERC721, IERC721Metadata {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** The caller cannot approve to their own address.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"theOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062002c0a60a03980516200002991600b916020909101906200021d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600c916200021d565b506107d0600f556001601055601280546001600160a81b0319167327f1310104f1051c6fa3c105517380e9eda8ed461790553480156200009757600080fd5b5060405162002c4038038062002c40833981016040819052620000ba9162000390565b845185908590620000d39060029060208501906200021d565b508051620000e99060039060208401906200021d565b5050600160005550620000fc3362000127565b60016009556200010c8362000179565b600e8290556200011c81620001cd565b505050505062000452565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c85760405162461bcd60e51b8152602060048201819052602482015260008051602062002bea83398151915260448201526064015b60405180910390fd5b600d55565b6008546001600160a01b03163314620002185760405162461bcd60e51b8152602060048201819052602482015260008051602062002bea8339815191526044820152606401620001bf565b601155565b8280546200022b9062000415565b90600052602060002090601f0160209004810192826200024f57600085556200029a565b82601f106200026a57805160ff19168380011785556200029a565b828001600101855582156200029a579182015b828111156200029a5782518255916020019190600101906200027d565b50620002a8929150620002ac565b5090565b5b80821115620002a85760008155600101620002ad565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002eb57600080fd5b81516001600160401b0380821115620003085762000308620002c3565b604051601f8301601f19908116603f01168101908282118183101715620003335762000333620002c3565b816040528381526020925086838588010111156200035057600080fd5b600091505b8382101562000374578582018301518183018401529082019062000355565b83821115620003865760008385830101525b9695505050505050565b600080600080600060a08688031215620003a957600080fd5b85516001600160401b0380821115620003c157600080fd5b620003cf89838a01620002d9565b96506020880151915080821115620003e657600080fd5b50620003f588828901620002d9565b60408801516060890151608090990151979a919950979695509350505050565b600181811c908216806200042a57607f821691505b602082108114156200044c57634e487b7160e01b600052602260045260246000fd5b50919050565b61278880620004626000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063a0712d68116100b6578063c23dc68f1161007a578063c23dc68f146106a1578063c87b56dd146106ce578063d5abeb01146106ee578063e985e9c514610704578063efdc778814610724578063f2fde38b1461074457600080fd5b8063a0712d681461060e578063a22cb46514610621578063b071401b14610641578063b635d70a14610661578063b88d4fde1461068157600080fd5b80638462151c116100fd5780638462151c146105785780638da5cb5b146105a557806394354fd0146105c357806395d89b41146105d957806399a2557a146105ee57600080fd5b80636352211e146104e35780637040d73f1461050357806370a0823114610523578063715018a6146105435780637ec4a6591461055857600080fd5b80633ccfd60b116101c75780635b74efcf1161018b5780635b74efcf1461043d5780635bbb2177146104535780635c975abb1461048057806361c0b6a0146104a157806362b99ad4146104ce57600080fd5b80633ccfd60b146103b357806342842e0e146103c857806344a0d68a146103e857806353630745146104085780635503a0e81461042857600080fd5b806316ba10e01161020e57806316ba10e01461032057806316c38b3c1461034057806318160ddd1461036057806323b872dd1461037d57806324a6ab0c1461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806313faede6146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461201c565b610764565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b6565b6040516102779190612091565b3480156102ae57600080fd5b506102c26102bd3660046120a4565b610848565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f53660046120d9565b61088c565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b506102fa61033b3660046121a0565b610913565b34801561034c57600080fd5b506102fa61035b3660046121f8565b61095d565b34801561036c57600080fd5b506001546000540360001901610312565b34801561038957600080fd5b506102fa610398366004612213565b6109a5565b3480156103a957600080fd5b50610312600f5481565b3480156103bf57600080fd5b506102fa6109b0565b3480156103d457600080fd5b506102fa6103e3366004612213565b610aab565b3480156103f457600080fd5b506102fa6104033660046120a4565b610ac6565b34801561041457600080fd5b506102fa6104233660046120a4565b610af5565b34801561043457600080fd5b50610295610b24565b34801561044957600080fd5b5061031260105481565b34801561045f57600080fd5b5061047361046e36600461224f565b610bb2565b60405161027791906122f4565b34801561048c57600080fd5b5060125461026b90600160a01b900460ff1681565b3480156104ad57600080fd5b506103126104bc36600461235e565b600a6020526000908152604090205481565b3480156104da57600080fd5b50610295610c78565b3480156104ef57600080fd5b506102c26104fe3660046120a4565b610c85565b34801561050f57600080fd5b506102fa61051e3660046120a4565b610c97565b34801561052f57600080fd5b5061031261053e36600461235e565b610cc6565b34801561054f57600080fd5b506102fa610d14565b34801561056457600080fd5b506102fa6105733660046121a0565b610d4a565b34801561058457600080fd5b5061059861059336600461235e565b610d87565b6040516102779190612379565b3480156105b157600080fd5b506008546001600160a01b03166102c2565b3480156105cf57600080fd5b5061031260115481565b3480156105e557600080fd5b50610295610ed4565b3480156105fa57600080fd5b506105986106093660046123b1565b610ee3565b6102fa61061c3660046120a4565b6110a9565b34801561062d57600080fd5b506102fa61063c3660046123e4565b611360565b34801561064d57600080fd5b506102fa61065c3660046120a4565b6113f6565b34801561066d57600080fd5b506012546102c2906001600160a01b031681565b34801561068d57600080fd5b506102fa61069c366004612417565b611425565b3480156106ad57600080fd5b506106c16106bc3660046120a4565b61146f565b6040516102779190612492565b3480156106da57600080fd5b506102956106e93660046120a4565b611529565b3480156106fa57600080fd5b50610312600e5481565b34801561071057600080fd5b5061026b61071f3660046124c7565b6115f6565b34801561073057600080fd5b506102fa61073f3660046120a4565b611624565b34801561075057600080fd5b506102fa61075f36600461235e565b6116fd565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c5906124f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f1906124f1565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611795565b610870576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089782610c85565b9050806001600160a01b0316836001600160a01b031614156108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610903576108e681336115f6565b610903576040516367d9dca160e11b815260040160405180910390fd5b61090e8383836117ce565b505050565b6008546001600160a01b031633146109465760405162461bcd60e51b815260040161093d9061252c565b60405180910390fd5b805161095990600c906020840190611f6d565b5050565b6008546001600160a01b031633146109875760405162461bcd60e51b815260040161093d9061252c565b60128054911515600160a01b0260ff60a01b19909216919091179055565b61090e83838361182a565b6008546001600160a01b031633146109da5760405162461bcd60e51b815260040161093d9061252c565b60026009541415610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093d565b60026009556000610a466008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610aa357600080fd5b506001600955565b61090e83838360405180602001604052806000815250611425565b6008546001600160a01b03163314610af05760405162461bcd60e51b815260040161093d9061252c565b600d55565b6008546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161093d9061252c565b601055565b600c8054610b31906124f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d906124f1565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b80516060906000816001600160401b03811115610bd157610bd1612103565b604051908082528060200260200182016040528015610c1c57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610bef5790505b50905060005b828114610c7057610c4b858281518110610c3e57610c3e612561565b602002602001015161146f565b828281518110610c5d57610c5d612561565b6020908102919091010152600101610c22565b509392505050565b600b8054610b31906124f1565b6000610c9082611a17565b5192915050565b6008546001600160a01b03163314610cc15760405162461bcd60e51b815260040161093d9061252c565b600f55565b60006001600160a01b038216610cef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d3e5760405162461bcd60e51b815260040161093d9061252c565b610d486000611b39565b565b6008546001600160a01b03163314610d745760405162461bcd60e51b815260040161093d9061252c565b805161095990600b906020840190611f6d565b60606000806000610d9785610cc6565b90506000816001600160401b03811115610db357610db3612103565b604051908082528060200260200182016040528015610ddc578160200160208202803683370190505b509050610e02604080516060810182526000808252602082018190529181019190915290565b60015b838614610ec857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610e6b57610ec0565b81516001600160a01b031615610e8057815194505b876001600160a01b0316856001600160a01b03161415610ec05780838780600101985081518110610eb357610eb3612561565b6020026020010181815250505b600101610e05565b50909695505050505050565b6060600380546107c5906124f1565b6060818310610f0557604051631960ccad60e11b815260040160405180910390fd5b600080546001851015610f1757600194505b80841115610f23578093505b6000610f2e87610cc6565b905084861015610f4d5785850381811015610f47578091505b50610f51565b5060005b6000816001600160401b03811115610f6b57610f6b612103565b604051908082528060200260200182016040528015610f94578160200160208202803683370190505b50905081610fa75793506110a292505050565b6000610fb28861146f565b905060008160400151610fc3575080515b885b888114158015610fd55750848714155b1561109657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506110395761108e565b82516001600160a01b03161561104e57825191505b8a6001600160a01b0316826001600160a01b0316141561108e578084888060010199508151811061108157611081612561565b6020026020010181815250505b600101610fc5565b50505092835250909150505b9392505050565b601254600160a01b900460ff16156111035760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093d565b600e5461111190600161258d565b6001546000548391900360001901611129919061258d565b1061116e5760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206c65667420746f206d696e742160581b604482015260640161093d565b600081600f5461117e91906125a5565b10156111e15780600d5461119291906125bc565b3410156111dc5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161093d565b611353565b601054816111ee33610cc6565b6111f8919061258d565b11156112cf576012546001600160a01b03163314611268573481600d5461121f91906125bc565b11156112685760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161093d565b60115461127690600161258d565b81106111dc5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b606482015260840161093d565b6010546112dd90600161258d565b811061133b5760405162461bcd60e51b815260206004820152602760248201527f4d61782066726565206d696e747320706572207472616e73616374696f6e20656044820152661e18d95959195960ca1b606482015260840161093d565b80600f600082825461134d91906125a5565b90915550505b61135d3382611b8b565b50565b6001600160a01b03821633141561138a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114205760405162461bcd60e51b815260040161093d9061252c565b601155565b61143084848461182a565b6001600160a01b0383163b156114695761144c84848484611ba5565b611469576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806114b557506000548310155b156114c05792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906115205792915050565b6110a283611a17565b606061153482611795565b6115985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093d565b60006115a2611c9d565b905060008151116115c257604051806020016040528060008152506110a2565b806115cc84611cac565b600c6040516020016115e0939291906125db565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461164e5760405162461bcd60e51b815260040161093d9061252c565b600081116116945760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161093d565b600e5460015460005483919003600019016116af919061258d565b11156113535760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604482015260640161093d565b6008546001600160a01b031633146117275760405162461bcd60e51b815260040161093d9061252c565b6001600160a01b03811661178c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b61135d81611b39565b6000816001111580156117a9575060005482105b80156107b0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183582611a17565b9050836001600160a01b031681600001516001600160a01b03161461186c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061188a575061188a85336115f6565b806118a557503361189a84610848565b6001600160a01b0316145b9050806118c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118ec57604051633a954ecd60e21b815260040160405180910390fd5b6118f8600084876117ce565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119cc5760005482146119cc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611b2057600054811015611b2057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b1e5780516001600160a01b031615611ab5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b19579392505050565b611ab5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610959828260405180602001604052806000815250611da9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bda90339089908890889060040161269f565b602060405180830381600087803b158015611bf457600080fd5b505af1925050508015611c24575060408051601f3d908101601f19168201909252611c21918101906126dc565b60015b611c7f573d808015611c52576040519150601f19603f3d011682016040523d82523d6000602084013e611c57565b606091505b508051611c77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107c5906124f1565b606081611cd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cfa5780611ce4816126f9565b9150611cf39050600a8361272a565b9150611cd4565b6000816001600160401b03811115611d1457611d14612103565b6040519080825280601f01601f191660200182016040528015611d3e576020820181803683370190505b5090505b8415611c9557611d536001836125a5565b9150611d60600a8661273e565b611d6b90603061258d565b60f81b818381518110611d8057611d80612561565b60200101906001600160f81b031916908160001a905350611da2600a8661272a565b9450611d42565b6000546001600160a01b038416611dd257604051622e076360e81b815260040160405180910390fd5b82611df05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611f18575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000878480600101955087611ba5565b611efe576040516368d2bf6b60e11b815260040160405180910390fd5b808210611e96578260005414611f1357600080fd5b611f5d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611f19575b5060009081556114699085838684565b828054611f79906124f1565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b6001600160e01b03198116811461135d57600080fd5b60006020828403121561202e57600080fd5b81356110a281612006565b60005b8381101561205457818101518382015260200161203c565b838111156114695750506000910152565b6000815180845261207d816020860160208601612039565b601f01601f19169290920160200192915050565b6020815260006110a26020830184612065565b6000602082840312156120b657600080fd5b5035919050565b80356001600160a01b03811681146120d457600080fd5b919050565b600080604083850312156120ec57600080fd5b6120f5836120bd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561214157612141612103565b604052919050565b60006001600160401b0383111561216257612162612103565b612175601f8401601f1916602001612119565b905082815283838301111561218957600080fd5b828260208301376000602084830101529392505050565b6000602082840312156121b257600080fd5b81356001600160401b038111156121c857600080fd5b8201601f810184136121d957600080fd5b611c9584823560208401612149565b803580151581146120d457600080fd5b60006020828403121561220a57600080fd5b6110a2826121e8565b60008060006060848603121561222857600080fd5b612231846120bd565b925061223f602085016120bd565b9150604084013590509250925092565b6000602080838503121561226257600080fd5b82356001600160401b038082111561227957600080fd5b818501915085601f83011261228d57600080fd5b81358181111561229f5761229f612103565b8060051b91506122b0848301612119565b81815291830184019184810190888411156122ca57600080fd5b938501935b838510156122e8578435825293850193908501906122cf565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ec85761234b83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612310565b60006020828403121561237057600080fd5b6110a2826120bd565b6020808252825182820181905260009190848201906040850190845b81811015610ec857835183529284019291840191600101612395565b6000806000606084860312156123c657600080fd5b6123cf846120bd565b95602085013595506040909401359392505050565b600080604083850312156123f757600080fd5b612400836120bd565b915061240e602084016121e8565b90509250929050565b6000806000806080858703121561242d57600080fd5b612436856120bd565b9350612444602086016120bd565b92506040850135915060608501356001600160401b0381111561246657600080fd5b8501601f8101871361247757600080fd5b61248687823560208401612149565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107b0565b600080604083850312156124da57600080fd5b6124e3836120bd565b915061240e602084016120bd565b600181811c9082168061250557607f821691505b6020821081141561252657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156125a0576125a0612577565b500190565b6000828210156125b7576125b7612577565b500390565b60008160001904831182151516156125d6576125d6612577565b500290565b6000845160206125ee8285838a01612039565b8551918401916126018184848a01612039565b8554920191600090600181811c908083168061261e57607f831692505b85831081141561263c57634e487b7160e01b85526022600452602485fd5b80801561265057600181146126615761268e565b60ff1985168852838801955061268e565b60008b81526020902060005b858110156126865781548a82015290840190880161266d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126d290830184612065565b9695505050505050565b6000602082840312156126ee57600080fd5b81516110a281612006565b600060001982141561270d5761270d612577565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261273957612739612714565b500490565b60008261274d5761274d612714565b50069056fea26469706673582212200572fdc8f11a6b06328eca58b1003defbf7909500c7d54f4a80a5ae1b5d9e94064736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d64764e353158576d6b6e663967785a476a6b616b4a54355871357a5a4d6452426161466f337477584a6644342f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000f466f72676f7474656e4865726f65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f464f52474f5454454e4845524f45530000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c80636352211e11610139578063a0712d68116100b6578063c23dc68f1161007a578063c23dc68f146106a1578063c87b56dd146106ce578063d5abeb01146106ee578063e985e9c514610704578063efdc778814610724578063f2fde38b1461074457600080fd5b8063a0712d681461060e578063a22cb46514610621578063b071401b14610641578063b635d70a14610661578063b88d4fde1461068157600080fd5b80638462151c116100fd5780638462151c146105785780638da5cb5b146105a557806394354fd0146105c357806395d89b41146105d957806399a2557a146105ee57600080fd5b80636352211e146104e35780637040d73f1461050357806370a0823114610523578063715018a6146105435780637ec4a6591461055857600080fd5b80633ccfd60b116101c75780635b74efcf1161018b5780635b74efcf1461043d5780635bbb2177146104535780635c975abb1461048057806361c0b6a0146104a157806362b99ad4146104ce57600080fd5b80633ccfd60b146103b357806342842e0e146103c857806344a0d68a146103e857806353630745146104085780635503a0e81461042857600080fd5b806316ba10e01161020e57806316ba10e01461032057806316c38b3c1461034057806318160ddd1461036057806323b872dd1461037d57806324a6ab0c1461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806313faede6146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461201c565b610764565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b6565b6040516102779190612091565b3480156102ae57600080fd5b506102c26102bd3660046120a4565b610848565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f53660046120d9565b61088c565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b506102fa61033b3660046121a0565b610913565b34801561034c57600080fd5b506102fa61035b3660046121f8565b61095d565b34801561036c57600080fd5b506001546000540360001901610312565b34801561038957600080fd5b506102fa610398366004612213565b6109a5565b3480156103a957600080fd5b50610312600f5481565b3480156103bf57600080fd5b506102fa6109b0565b3480156103d457600080fd5b506102fa6103e3366004612213565b610aab565b3480156103f457600080fd5b506102fa6104033660046120a4565b610ac6565b34801561041457600080fd5b506102fa6104233660046120a4565b610af5565b34801561043457600080fd5b50610295610b24565b34801561044957600080fd5b5061031260105481565b34801561045f57600080fd5b5061047361046e36600461224f565b610bb2565b60405161027791906122f4565b34801561048c57600080fd5b5060125461026b90600160a01b900460ff1681565b3480156104ad57600080fd5b506103126104bc36600461235e565b600a6020526000908152604090205481565b3480156104da57600080fd5b50610295610c78565b3480156104ef57600080fd5b506102c26104fe3660046120a4565b610c85565b34801561050f57600080fd5b506102fa61051e3660046120a4565b610c97565b34801561052f57600080fd5b5061031261053e36600461235e565b610cc6565b34801561054f57600080fd5b506102fa610d14565b34801561056457600080fd5b506102fa6105733660046121a0565b610d4a565b34801561058457600080fd5b5061059861059336600461235e565b610d87565b6040516102779190612379565b3480156105b157600080fd5b506008546001600160a01b03166102c2565b3480156105cf57600080fd5b5061031260115481565b3480156105e557600080fd5b50610295610ed4565b3480156105fa57600080fd5b506105986106093660046123b1565b610ee3565b6102fa61061c3660046120a4565b6110a9565b34801561062d57600080fd5b506102fa61063c3660046123e4565b611360565b34801561064d57600080fd5b506102fa61065c3660046120a4565b6113f6565b34801561066d57600080fd5b506012546102c2906001600160a01b031681565b34801561068d57600080fd5b506102fa61069c366004612417565b611425565b3480156106ad57600080fd5b506106c16106bc3660046120a4565b61146f565b6040516102779190612492565b3480156106da57600080fd5b506102956106e93660046120a4565b611529565b3480156106fa57600080fd5b50610312600e5481565b34801561071057600080fd5b5061026b61071f3660046124c7565b6115f6565b34801561073057600080fd5b506102fa61073f3660046120a4565b611624565b34801561075057600080fd5b506102fa61075f36600461235e565b6116fd565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c5906124f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f1906124f1565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611795565b610870576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089782610c85565b9050806001600160a01b0316836001600160a01b031614156108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610903576108e681336115f6565b610903576040516367d9dca160e11b815260040160405180910390fd5b61090e8383836117ce565b505050565b6008546001600160a01b031633146109465760405162461bcd60e51b815260040161093d9061252c565b60405180910390fd5b805161095990600c906020840190611f6d565b5050565b6008546001600160a01b031633146109875760405162461bcd60e51b815260040161093d9061252c565b60128054911515600160a01b0260ff60a01b19909216919091179055565b61090e83838361182a565b6008546001600160a01b031633146109da5760405162461bcd60e51b815260040161093d9061252c565b60026009541415610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093d565b60026009556000610a466008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610aa357600080fd5b506001600955565b61090e83838360405180602001604052806000815250611425565b6008546001600160a01b03163314610af05760405162461bcd60e51b815260040161093d9061252c565b600d55565b6008546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161093d9061252c565b601055565b600c8054610b31906124f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d906124f1565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b80516060906000816001600160401b03811115610bd157610bd1612103565b604051908082528060200260200182016040528015610c1c57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610bef5790505b50905060005b828114610c7057610c4b858281518110610c3e57610c3e612561565b602002602001015161146f565b828281518110610c5d57610c5d612561565b6020908102919091010152600101610c22565b509392505050565b600b8054610b31906124f1565b6000610c9082611a17565b5192915050565b6008546001600160a01b03163314610cc15760405162461bcd60e51b815260040161093d9061252c565b600f55565b60006001600160a01b038216610cef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d3e5760405162461bcd60e51b815260040161093d9061252c565b610d486000611b39565b565b6008546001600160a01b03163314610d745760405162461bcd60e51b815260040161093d9061252c565b805161095990600b906020840190611f6d565b60606000806000610d9785610cc6565b90506000816001600160401b03811115610db357610db3612103565b604051908082528060200260200182016040528015610ddc578160200160208202803683370190505b509050610e02604080516060810182526000808252602082018190529181019190915290565b60015b838614610ec857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610e6b57610ec0565b81516001600160a01b031615610e8057815194505b876001600160a01b0316856001600160a01b03161415610ec05780838780600101985081518110610eb357610eb3612561565b6020026020010181815250505b600101610e05565b50909695505050505050565b6060600380546107c5906124f1565b6060818310610f0557604051631960ccad60e11b815260040160405180910390fd5b600080546001851015610f1757600194505b80841115610f23578093505b6000610f2e87610cc6565b905084861015610f4d5785850381811015610f47578091505b50610f51565b5060005b6000816001600160401b03811115610f6b57610f6b612103565b604051908082528060200260200182016040528015610f94578160200160208202803683370190505b50905081610fa75793506110a292505050565b6000610fb28861146f565b905060008160400151610fc3575080515b885b888114158015610fd55750848714155b1561109657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506110395761108e565b82516001600160a01b03161561104e57825191505b8a6001600160a01b0316826001600160a01b0316141561108e578084888060010199508151811061108157611081612561565b6020026020010181815250505b600101610fc5565b50505092835250909150505b9392505050565b601254600160a01b900460ff16156111035760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093d565b600e5461111190600161258d565b6001546000548391900360001901611129919061258d565b1061116e5760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206c65667420746f206d696e742160581b604482015260640161093d565b600081600f5461117e91906125a5565b10156111e15780600d5461119291906125bc565b3410156111dc5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161093d565b611353565b601054816111ee33610cc6565b6111f8919061258d565b11156112cf576012546001600160a01b03163314611268573481600d5461121f91906125bc565b11156112685760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161093d565b60115461127690600161258d565b81106111dc5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b606482015260840161093d565b6010546112dd90600161258d565b811061133b5760405162461bcd60e51b815260206004820152602760248201527f4d61782066726565206d696e747320706572207472616e73616374696f6e20656044820152661e18d95959195960ca1b606482015260840161093d565b80600f600082825461134d91906125a5565b90915550505b61135d3382611b8b565b50565b6001600160a01b03821633141561138a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114205760405162461bcd60e51b815260040161093d9061252c565b601155565b61143084848461182a565b6001600160a01b0383163b156114695761144c84848484611ba5565b611469576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806114b557506000548310155b156114c05792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906115205792915050565b6110a283611a17565b606061153482611795565b6115985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093d565b60006115a2611c9d565b905060008151116115c257604051806020016040528060008152506110a2565b806115cc84611cac565b600c6040516020016115e0939291906125db565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461164e5760405162461bcd60e51b815260040161093d9061252c565b600081116116945760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161093d565b600e5460015460005483919003600019016116af919061258d565b11156113535760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604482015260640161093d565b6008546001600160a01b031633146117275760405162461bcd60e51b815260040161093d9061252c565b6001600160a01b03811661178c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b61135d81611b39565b6000816001111580156117a9575060005482105b80156107b0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061183582611a17565b9050836001600160a01b031681600001516001600160a01b03161461186c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061188a575061188a85336115f6565b806118a557503361189a84610848565b6001600160a01b0316145b9050806118c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118ec57604051633a954ecd60e21b815260040160405180910390fd5b6118f8600084876117ce565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119cc5760005482146119cc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611b2057600054811015611b2057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b1e5780516001600160a01b031615611ab5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b19579392505050565b611ab5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610959828260405180602001604052806000815250611da9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bda90339089908890889060040161269f565b602060405180830381600087803b158015611bf457600080fd5b505af1925050508015611c24575060408051601f3d908101601f19168201909252611c21918101906126dc565b60015b611c7f573d808015611c52576040519150601f19603f3d011682016040523d82523d6000602084013e611c57565b606091505b508051611c77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107c5906124f1565b606081611cd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cfa5780611ce4816126f9565b9150611cf39050600a8361272a565b9150611cd4565b6000816001600160401b03811115611d1457611d14612103565b6040519080825280601f01601f191660200182016040528015611d3e576020820181803683370190505b5090505b8415611c9557611d536001836125a5565b9150611d60600a8661273e565b611d6b90603061258d565b60f81b818381518110611d8057611d80612561565b60200101906001600160f81b031916908160001a905350611da2600a8661272a565b9450611d42565b6000546001600160a01b038416611dd257604051622e076360e81b815260040160405180910390fd5b82611df05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611f18575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000878480600101955087611ba5565b611efe576040516368d2bf6b60e11b815260040160405180910390fd5b808210611e96578260005414611f1357600080fd5b611f5d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611f19575b5060009081556114699085838684565b828054611f79906124f1565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b6001600160e01b03198116811461135d57600080fd5b60006020828403121561202e57600080fd5b81356110a281612006565b60005b8381101561205457818101518382015260200161203c565b838111156114695750506000910152565b6000815180845261207d816020860160208601612039565b601f01601f19169290920160200192915050565b6020815260006110a26020830184612065565b6000602082840312156120b657600080fd5b5035919050565b80356001600160a01b03811681146120d457600080fd5b919050565b600080604083850312156120ec57600080fd5b6120f5836120bd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561214157612141612103565b604052919050565b60006001600160401b0383111561216257612162612103565b612175601f8401601f1916602001612119565b905082815283838301111561218957600080fd5b828260208301376000602084830101529392505050565b6000602082840312156121b257600080fd5b81356001600160401b038111156121c857600080fd5b8201601f810184136121d957600080fd5b611c9584823560208401612149565b803580151581146120d457600080fd5b60006020828403121561220a57600080fd5b6110a2826121e8565b60008060006060848603121561222857600080fd5b612231846120bd565b925061223f602085016120bd565b9150604084013590509250925092565b6000602080838503121561226257600080fd5b82356001600160401b038082111561227957600080fd5b818501915085601f83011261228d57600080fd5b81358181111561229f5761229f612103565b8060051b91506122b0848301612119565b81815291830184019184810190888411156122ca57600080fd5b938501935b838510156122e8578435825293850193908501906122cf565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ec85761234b83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612310565b60006020828403121561237057600080fd5b6110a2826120bd565b6020808252825182820181905260009190848201906040850190845b81811015610ec857835183529284019291840191600101612395565b6000806000606084860312156123c657600080fd5b6123cf846120bd565b95602085013595506040909401359392505050565b600080604083850312156123f757600080fd5b612400836120bd565b915061240e602084016121e8565b90509250929050565b6000806000806080858703121561242d57600080fd5b612436856120bd565b9350612444602086016120bd565b92506040850135915060608501356001600160401b0381111561246657600080fd5b8501601f8101871361247757600080fd5b61248687823560208401612149565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107b0565b600080604083850312156124da57600080fd5b6124e3836120bd565b915061240e602084016120bd565b600181811c9082168061250557607f821691505b6020821081141561252657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156125a0576125a0612577565b500190565b6000828210156125b7576125b7612577565b500390565b60008160001904831182151516156125d6576125d6612577565b500290565b6000845160206125ee8285838a01612039565b8551918401916126018184848a01612039565b8554920191600090600181811c908083168061261e57607f831692505b85831081141561263c57634e487b7160e01b85526022600452602485fd5b80801561265057600181146126615761268e565b60ff1985168852838801955061268e565b60008b81526020902060005b858110156126865781548a82015290840190880161266d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126d290830184612065565b9695505050505050565b6000602082840312156126ee57600080fd5b81516110a281612006565b600060001982141561270d5761270d612577565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261273957612739612714565b500490565b60008261274d5761274d612714565b50069056fea26469706673582212200572fdc8f11a6b06328eca58b1003defbf7909500c7d54f4a80a5ae1b5d9e94064736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000f466f72676f7474656e4865726f65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f464f52474f5454454e4845524f45530000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): ForgottenHeroes
Arg [1] : _tokenSymbol (string): FORGOTTENHEROES
Arg [2] : _cost (uint256): 1000000000000000
Arg [3] : _maxSupply (uint256): 4444
Arg [4] : _maxMintAmountPerTx (uint256): 10
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 466f72676f7474656e4865726f65730000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 464f52474f5454454e4845524f45530000000000000000000000000000000000
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.