ERC-721
Overview
Max Total Supply
6,969 FISH
Holders
3,714
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FISHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x09B09E77...6E0EDE254 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
JustAFish
Compiler Version
v0.8.13+commit.abaa5c0e
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 "../lib/ERC721F/ERC721F.sol";import "../lib/openzeppelin-contracts/contracts/utils/Strings.sol";/*** @title JustAFish contract* @dev Extends ERC721F Non-Fungible Token Standard basic implementation.* Optimized to no longer use ERC721Enumarable , but still provide a totalSupply() implementation.* @author @simonbuidl.eth**/contract JustAFish is ERC721F {using Strings for uint256;uint256 public tokenPrice = 0.0033 ether;uint256 public constant MAX_TOKENS= 6969;uint public constant MAX_PRESALE_PURCHASE = 2; // set 1 to high to avoid some gasuint public MAX_PUBLIC_PURCHASE = 4; // set 1 to high to avoid some gasuint public constant MAX_RESERVE = 26; // set 1 to high to avoid some gasbool public saleIsActive;bool public preSaleIsActive;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.9 <0.9.0;import "../openzeppelin-contracts/contracts/token/ERC721/ERC721.sol";import "../openzeppelin-contracts/contracts/access/Ownable.sol";import "../openzeppelin-contracts/contracts/utils/Counters.sol";/*** @title ERC721F* @dev Extends ERC721 Non-Fungible Token Standard basic implementation.* Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation.* @author @FrankNFT.eth**/contract ERC721F is Ownable, ERC721 {using Counters for Counters.Counter;Counters.Counter private _tokenSupply;// Base URI for Meta datastring private _baseTokenURI;constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) {}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)pragma solidity ^0.8.0;/*** @title Counters* @author Matt Condon (@shrugs)* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number* of elements in a mapping, issuing ERC721 ids, or counting request ids.** Include with `using Counters for Counters.Counter;`*/library Counters {struct Counter {// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0}function current(Counter storage counter) internal view returns (uint256) {return counter._value;}function increment(Counter storage counter) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
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/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) {
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{"remappings": ["ERC721F/=lib/ERC721F/","ds-test/=lib/solmate/lib/ds-test/src/","forge-std/=lib/forge-std/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","solmate/=lib/solmate/src/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"bytecodeHash": "ipfs"},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"priceChange","type":"event"},{"inputs":[],"name":"MAX_PRESALE_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleIsActive","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052660bb9551fc240006009556004600a553480156200002157600080fd5b5060405180604001604052806009815260200168094eae6e8828cd2e6d60bb1b8152506040518060400160405280600481526020016308c92a6960e31b81525081816200007d620000776200012360201b60201c565b62000127565b815162000092906001906020850190620005d8565b508051620000a8906002906020840190620005d8565b5050505050620000d160405180606001604052806036815260200162002db66036913962000177565b620000fc7fd7407a85a778580cd724f52f9a44b92937a4eb7116d344402abbdacce6861ed16200019a565b6200011d73d37b441828af470746b06e5500a6fbd6b92ffeab6000620001a9565b62000768565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b62000181620001cb565b805162000196906008906020840190620005d8565b5050565b620001a4620001cb565b600c55565b620001968282604051806020016040528060008152506200022d60201b60201c565b6000546001600160a01b031633146200022b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b620002398383620002a5565b620002486000848484620002d3565b620002a05760405162461bcd60e51b8152602060048201526032602482015260008051602062002d9683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000222565b505050565b620002bc82826200042f60201b620014321760201c565b620001966007620005c060201b620015bd1760201c565b6000620002f4846001600160a01b0316620005c960201b620015c61760201c565b156200042357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200032e9033908990889088906004016200067e565b6020604051808303816000875af19250505080156200036c575060408051601f3d908101601f191682019092526200036991810190620006f9565b60015b62000408573d8080156200039d576040519150601f19603f3d011682016040523d82523d6000602084013e620003a2565b606091505b508051600003620004005760405162461bcd60e51b8152602060048201526032602482015260008051602062002d9683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000222565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000427565b5060015b949350505050565b6001600160a01b038216620004875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000222565b6000818152600360205260409020546001600160a01b031615620004ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000222565b6000818152600360205260409020546001600160a01b031615620005555760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000222565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b6001600160a01b03163b151590565b828054620005e6906200072c565b90600052602060002090601f0160209004810192826200060a576000855562000655565b82601f106200062557805160ff191683800117855562000655565b8280016001018555821562000655579182015b828111156200065557825182559160200191906001019062000638565b506200066392915062000667565b5090565b5b8082111562000663576000815560010162000668565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006cd5785810182015185820160a001528101620006af565b82811115620006e057600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200070c57600080fd5b81516001600160e01b0319811681146200072557600080fd5b9392505050565b600181811c908216806200074157607f821691505b6020821081036200076257634e487b7160e01b600052602260045260246000fd5b50919050565b61261e80620007786000396000f3fe60806040526004361061021e5760003560e01c806370a0823111610123578063a2b40d19116100ab578063eb8d24441161006f578063eb8d244414610632578063eff31e9e1461064c578063f032554914610661578063f2fde38b14610676578063f47c84c51461069657600080fd5b8063a2b40d1914610569578063b88d4fde14610589578063c87b56dd146105a9578063e58306f9146105c9578063e985e9c5146105e957600080fd5b80638da5cb5b116100f25780638da5cb5b146104e357806395d89b4114610501578063a0712d6814610516578063a144becc14610529578063a22cb4651461054957600080fd5b806370a0823114610468578063715018a6146104885780637ff9b5961461049d5780638cc08025146104b357600080fd5b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e146103c8578063438b6300146103e85780634783f0ef146104155780635a546223146104355780636352211e1461044857600080fd5b80632eb4a7ab1461036857806330176e131461037e57806334918dfd1461039e5780633ccfd60b146103b357600080fd5b806318160ddd116101ed57806318160ddd146102db5780631f0234d8146102fe57806323b872dd1461031d578063243a3f8d1461033d5780632a2c6c081461035357600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611ea7565b6106ac565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fe565b6040516102569190611f1c565b34801561028d57600080fd5b506102a161029c366004611f2f565b610790565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611f64565b6107b7565b005b3480156102e757600080fd5b506102f06108d1565b604051908152602001610256565b34801561030a57600080fd5b50600b5461024a90610100900460ff1681565b34801561032957600080fd5b506102d9610338366004611f8e565b6108e1565b34801561034957600080fd5b506102f0600a5481565b34801561035f57600080fd5b506102f0600281565b34801561037457600080fd5b506102f0600c5481565b34801561038a57600080fd5b506102d9610399366004612069565b610912565b3480156103aa57600080fd5b506102d9610931565b3480156103bf57600080fd5b506102d9610962565b3480156103d457600080fd5b506102d96103e3366004611f8e565b610a2f565b3480156103f457600080fd5b506104086104033660046120b2565b610a4a565b60405161025691906120cd565b34801561042157600080fd5b506102d9610430366004611f2f565b610b11565b6102d9610443366004612111565b610b1e565b34801561045457600080fd5b506102a1610463366004611f2f565b610e33565b34801561047457600080fd5b506102f06104833660046120b2565b610e93565b34801561049457600080fd5b506102d9610f19565b3480156104a957600080fd5b506102f060095481565b3480156104bf57600080fd5b5061024a6104ce3660046120b2565b600d6020526000908152604090205460ff1681565b3480156104ef57600080fd5b506000546001600160a01b03166102a1565b34801561050d57600080fd5b50610274610f2b565b6102d9610524366004611f2f565b610f3a565b34801561053557600080fd5b506102d9610544366004611f2f565b611191565b34801561055557600080fd5b506102d96105643660046121c3565b61119e565b34801561057557600080fd5b506102d9610584366004611f2f565b6111a9565b34801561059557600080fd5b506102d96105a43660046121ff565b6111f2565b3480156105b557600080fd5b506102746105c4366004611f2f565b61122a565b3480156105d557600080fd5b506102d96105e4366004611f64565b611291565b3480156105f557600080fd5b5061024a61060436600461227b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063e57600080fd5b50600b5461024a9060ff1681565b34801561065857600080fd5b506102f0601a81565b34801561066d57600080fd5b506102d9611397565b34801561068257600080fd5b506102d96106913660046120b2565b6113bc565b3480156106a257600080fd5b506102f0611b3981565b60006001600160e01b031982166380ac58cd60e01b14806106dd57506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461070d906122ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906122ae565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b826115d5565b506000908152600560205260409020546001600160a01b031690565b60006107c282610e33565b9050806001600160a01b0316836001600160a01b0316036108345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061085057506108508133610604565b6108c25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161082b565b6108cc8383611634565b505050565b60006108dc60075490565b905090565b6108eb33826116a2565b6109075760405162461bcd60e51b815260040161082b906122e8565b6108cc838383611721565b61091a611885565b805161092d906008906020840190611df8565b5050565b610939611885565b600b805460ff19811660ff91821615908117909255161561096057600b805461ff00191690555b565b61096a611885565b47806109ae5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161082b565b6109e273d37b441828af470746b06e5500a6fbd6b92ffeab60646109d384601961234b565b6109dd9190612380565b6118df565b610a07735409cfdf149d8ba163a58b25901c050d4df8a12260646109d384602861234b565b610a2c73012e944b7181f4c4e8b18a60cee33c47b3eaf37c60646109d384602361234b565b50565b6108cc838383604051806020016040528060008152506111f2565b60606000610a5783610e93565b905060008167ffffffffffffffff811115610a7457610a74611fca565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5090506000805b8381108015610ab4575060075482105b15610b0757856001600160a01b0316610acc83610e33565b6001600160a01b031603610afc5781838281518110610aed57610aed612394565b60209081029190910101526001015b600190910190610aa4565b5090949350505050565b610b19611885565b600c55565b600b54610100900460ff16610b6d5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082b565b6000610b776108d1565b90506000600133604051602001610baa92919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b604051602081830303815290604052805190602001209050610bcf83600c5483611982565b610c1b5760405162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f74206f6e207468652077686974656c6973740000604482015260640161082b565b60008411610c3b5760405162461bcd60e51b815260040161082b906123aa565b6002841115610c9a5760405162461bcd60e51b815260206004820152602560248201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f7420657863604482015264656564203360d81b606482015260840161082b565b336000908152600e6020526040902054600290610cb89086906123eb565b1115610d115760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e74203220647572696e672070726573616044820152616c6560f01b606482015260840161082b565b611b39610d1e85846123eb565b1115610d3c5760405162461bcd60e51b815260040161082b90612403565b336000908152600d602052604090205460ff1615610d86573484600954610d63919061234b565b1115610d815760405162461bcd60e51b815260040161082b9061244d565b610dbd565b34610d92600186612484565b600954610d9f919061234b565b1115610dbd5760405162461bcd60e51b815260040161082b9061244d565b336000908152600e602052604081208054869290610ddc9084906123eb565b90915550600090505b84811015610e1257610e0033610dfb83866123eb565b611a31565b80610e0a8161249b565b915050610de5565b5050336000908152600d60205260409020805460ff19166001179055505050565b6000818152600360205260408120546001600160a01b0316806106f85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161082b565b60006001600160a01b038216610efd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161082b565b506001600160a01b031660009081526004602052604090205490565b610f21611885565b6109606000611a4b565b60606002805461070d906122ae565b600b5460ff16610f825760405162461bcd60e51b815260206004820152601360248201527214d85b19481393d5081858dd1a5d99481e595d606a1b604482015260640161082b565b6000610f8c6108d1565b905060008211610fae5760405162461bcd60e51b815260040161082b906123aa565b600482111561100d5760405162461bcd60e51b815260206004820152602560248201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f7420657863604482015264195959080d60da1b606482015260840161082b565b600a54336000908152600e602052604090205461102b9084906123eb565b11156110795760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206f6e6c79206d696e74203420696e20746f74616c00000000604482015260640161082b565b611b3961108683836123eb565b11156110a45760405162461bcd60e51b815260040161082b90612403565b336000908152600e6020526040902054156110eb5734826009546110c8919061234b565b11156110e65760405162461bcd60e51b815260040161082b9061244d565b611122565b346110f7600184612484565b600954611104919061234b565b11156111225760405162461bcd60e51b815260040161082b9061244d565b336000908152600e6020526040812080548492906111419084906123eb565b90915550600090505b828110156111725761116033610dfb83856123eb565b8061116a8161249b565b91505061114a565b5050336000908152600d60205260409020805460ff1916600117905550565b611199611885565b600a55565b61092d338383611a9b565b6111b1611885565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6111fc33836116a2565b6112185760405162461bcd60e51b815260040161082b906122e8565b61122484848484611b69565b50505050565b6060611235826115d5565b600061123f611b9c565b9050600081511161125f576040518060200160405280600081525061128a565b8061126984611bab565b60405160200161127a9291906124b4565b6040516020818303038152906040525b9392505050565b611299611885565b60006112a36108d1565b9050611b396112b283836123eb565b11156113125760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c79206044820152686f6620546f6b656e7360b81b606482015260840161082b565b601a821061136c5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b606482015260840161082b565b60005b828110156112245761138584610dfb83856123eb565b8061138f8161249b565b91505061136f565b61139f611885565b600b805461ff001981166101009182900460ff1615909102179055565b6113c4611885565b6001600160a01b0381166114295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082b565b610a2c81611a4b565b6001600160a01b0382166114885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082b565b6000818152600360205260409020546001600160a01b0316156114ed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082b565b6000818152600360205260409020546001600160a01b0316156115525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082b565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b6001600160a01b03163b151590565b6000818152600360205260409020546001600160a01b0316610a2c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161082b565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166982610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116ae83610e33565b9050806001600160a01b0316846001600160a01b031614806116f557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806117195750836001600160a01b031661170e84610790565b6001600160a01b0316145b949350505050565b826001600160a01b031661173482610e33565b6001600160a01b03161461175a5760405162461bcd60e51b815260040161082b906124e3565b6001600160a01b0382166117bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082b565b826001600160a01b03166117cf82610e33565b6001600160a01b0316146117f55760405162461bcd60e51b815260040161082b906124e3565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146109605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461192c576040519150601f19603f3d011682016040523d82523d6000602084013e611931565b606091505b50509050806108cc5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082b565b600081815b8551811015611a265760008682815181106119a4576119a4612394565b602002602001015190508083116119e6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a13565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a1e8161249b565b915050611987565b509092149392505050565b61092d828260405180602001604052806000815250611cac565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031603611afc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082b565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b74848484611721565b611b8084848484611cdf565b6112245760405162461bcd60e51b815260040161082b90612528565b60606008805461070d906122ae565b606081600003611bd25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bfc5780611be68161249b565b9150611bf59050600a83612380565b9150611bd6565b60008167ffffffffffffffff811115611c1757611c17611fca565b6040519080825280601f01601f191660200182016040528015611c41576020820181803683370190505b5090505b841561171957611c56600183612484565b9150611c63600a8661257a565b611c6e9060306123eb565b60f81b818381518110611c8357611c83612394565b60200101906001600160f81b031916908160001a905350611ca5600a86612380565b9450611c45565b611cb68383611de0565b611cc36000848484611cdf565b6108cc5760405162461bcd60e51b815260040161082b90612528565b60006001600160a01b0384163b15611dd557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2390339089908890889060040161258e565b6020604051808303816000875af1925050508015611d5e575060408051601f3d908101601f19168201909252611d5b918101906125cb565b60015b611dbb573d808015611d8c576040519150601f19603f3d011682016040523d82523d6000602084013e611d91565b606091505b508051600003611db35760405162461bcd60e51b815260040161082b90612528565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611719565b506001949350505050565b611dea8282611432565b61092d600780546001019055565b828054611e04906122ae565b90600052602060002090601f016020900481019282611e265760008555611e6c565b82601f10611e3f57805160ff1916838001178555611e6c565b82800160010185558215611e6c579182015b82811115611e6c578251825591602001919060010190611e51565b50611e78929150611e7c565b5090565b5b80821115611e785760008155600101611e7d565b6001600160e01b031981168114610a2c57600080fd5b600060208284031215611eb957600080fd5b813561128a81611e91565b60005b83811015611edf578181015183820152602001611ec7565b838111156112245750506000910152565b60008151808452611f08816020860160208601611ec4565b601f01601f19169290920160200192915050565b60208152600061128a6020830184611ef0565b600060208284031215611f4157600080fd5b5035919050565b80356001600160a01b0381168114611f5f57600080fd5b919050565b60008060408385031215611f7757600080fd5b611f8083611f48565b946020939093013593505050565b600080600060608486031215611fa357600080fd5b611fac84611f48565b9250611fba60208501611f48565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561200957612009611fca565b604052919050565b600067ffffffffffffffff83111561202b5761202b611fca565b61203e601f8401601f1916602001611fe0565b905082815283838301111561205257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561207b57600080fd5b813567ffffffffffffffff81111561209257600080fd5b8201601f810184136120a357600080fd5b61171984823560208401612011565b6000602082840312156120c457600080fd5b61128a82611f48565b6020808252825182820181905260009190848201906040850190845b81811015612105578351835292840192918401916001016120e9565b50909695505050505050565b6000806040838503121561212457600080fd5b8235915060208084013567ffffffffffffffff8082111561214457600080fd5b818601915086601f83011261215857600080fd5b81358181111561216a5761216a611fca565b8060051b915061217b848301611fe0565b818152918301840191848101908984111561219557600080fd5b938501935b838510156121b35784358252938501939085019061219a565b8096505050505050509250929050565b600080604083850312156121d657600080fd5b6121df83611f48565b9150602083013580151581146121f457600080fd5b809150509250929050565b6000806000806080858703121561221557600080fd5b61221e85611f48565b935061222c60208601611f48565b925060408501359150606085013567ffffffffffffffff81111561224f57600080fd5b8501601f8101871361226057600080fd5b61226f87823560208401612011565b91505092959194509250565b6000806040838503121561228e57600080fd5b61229783611f48565b91506122a560208401611f48565b90509250929050565b600181811c908216806122c257607f821691505b6020821081036122e257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561236557612365612335565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261238f5761238f61236a565b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f74206265206040820152600360fc1b606082015260800190565b600082198211156123fe576123fe612335565b500190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620546f6b656e7360b01b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60008282101561249657612496612335565b500390565b6000600182016124ad576124ad612335565b5060010190565b600083516124c6818460208801611ec4565b8351908301906124da818360208801611ec4565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826125895761258961236a565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c190830184611ef0565b9695505050505050565b6000602082840312156125dd57600080fd5b815161128a81611e9156fea26469706673582212202f9f9181962ddd745aeb77a5e1532576c1b71656a02f980e0bedd96b4f779a2a64736f6c634300080d00334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d57565034335153646d534d5534773831714e636d38527544733838424739646339566a5a545831596b5843742f
Deployed Bytecode
0x60806040526004361061021e5760003560e01c806370a0823111610123578063a2b40d19116100ab578063eb8d24441161006f578063eb8d244414610632578063eff31e9e1461064c578063f032554914610661578063f2fde38b14610676578063f47c84c51461069657600080fd5b8063a2b40d1914610569578063b88d4fde14610589578063c87b56dd146105a9578063e58306f9146105c9578063e985e9c5146105e957600080fd5b80638da5cb5b116100f25780638da5cb5b146104e357806395d89b4114610501578063a0712d6814610516578063a144becc14610529578063a22cb4651461054957600080fd5b806370a0823114610468578063715018a6146104885780637ff9b5961461049d5780638cc08025146104b357600080fd5b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e146103c8578063438b6300146103e85780634783f0ef146104155780635a546223146104355780636352211e1461044857600080fd5b80632eb4a7ab1461036857806330176e131461037e57806334918dfd1461039e5780633ccfd60b146103b357600080fd5b806318160ddd116101ed57806318160ddd146102db5780631f0234d8146102fe57806323b872dd1461031d578063243a3f8d1461033d5780632a2c6c081461035357600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611ea7565b6106ac565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fe565b6040516102569190611f1c565b34801561028d57600080fd5b506102a161029c366004611f2f565b610790565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611f64565b6107b7565b005b3480156102e757600080fd5b506102f06108d1565b604051908152602001610256565b34801561030a57600080fd5b50600b5461024a90610100900460ff1681565b34801561032957600080fd5b506102d9610338366004611f8e565b6108e1565b34801561034957600080fd5b506102f0600a5481565b34801561035f57600080fd5b506102f0600281565b34801561037457600080fd5b506102f0600c5481565b34801561038a57600080fd5b506102d9610399366004612069565b610912565b3480156103aa57600080fd5b506102d9610931565b3480156103bf57600080fd5b506102d9610962565b3480156103d457600080fd5b506102d96103e3366004611f8e565b610a2f565b3480156103f457600080fd5b506104086104033660046120b2565b610a4a565b60405161025691906120cd565b34801561042157600080fd5b506102d9610430366004611f2f565b610b11565b6102d9610443366004612111565b610b1e565b34801561045457600080fd5b506102a1610463366004611f2f565b610e33565b34801561047457600080fd5b506102f06104833660046120b2565b610e93565b34801561049457600080fd5b506102d9610f19565b3480156104a957600080fd5b506102f060095481565b3480156104bf57600080fd5b5061024a6104ce3660046120b2565b600d6020526000908152604090205460ff1681565b3480156104ef57600080fd5b506000546001600160a01b03166102a1565b34801561050d57600080fd5b50610274610f2b565b6102d9610524366004611f2f565b610f3a565b34801561053557600080fd5b506102d9610544366004611f2f565b611191565b34801561055557600080fd5b506102d96105643660046121c3565b61119e565b34801561057557600080fd5b506102d9610584366004611f2f565b6111a9565b34801561059557600080fd5b506102d96105a43660046121ff565b6111f2565b3480156105b557600080fd5b506102746105c4366004611f2f565b61122a565b3480156105d557600080fd5b506102d96105e4366004611f64565b611291565b3480156105f557600080fd5b5061024a61060436600461227b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063e57600080fd5b50600b5461024a9060ff1681565b34801561065857600080fd5b506102f0601a81565b34801561066d57600080fd5b506102d9611397565b34801561068257600080fd5b506102d96106913660046120b2565b6113bc565b3480156106a257600080fd5b506102f0611b3981565b60006001600160e01b031982166380ac58cd60e01b14806106dd57506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461070d906122ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906122ae565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b826115d5565b506000908152600560205260409020546001600160a01b031690565b60006107c282610e33565b9050806001600160a01b0316836001600160a01b0316036108345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061085057506108508133610604565b6108c25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161082b565b6108cc8383611634565b505050565b60006108dc60075490565b905090565b6108eb33826116a2565b6109075760405162461bcd60e51b815260040161082b906122e8565b6108cc838383611721565b61091a611885565b805161092d906008906020840190611df8565b5050565b610939611885565b600b805460ff19811660ff91821615908117909255161561096057600b805461ff00191690555b565b61096a611885565b47806109ae5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161082b565b6109e273d37b441828af470746b06e5500a6fbd6b92ffeab60646109d384601961234b565b6109dd9190612380565b6118df565b610a07735409cfdf149d8ba163a58b25901c050d4df8a12260646109d384602861234b565b610a2c73012e944b7181f4c4e8b18a60cee33c47b3eaf37c60646109d384602361234b565b50565b6108cc838383604051806020016040528060008152506111f2565b60606000610a5783610e93565b905060008167ffffffffffffffff811115610a7457610a74611fca565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5090506000805b8381108015610ab4575060075482105b15610b0757856001600160a01b0316610acc83610e33565b6001600160a01b031603610afc5781838281518110610aed57610aed612394565b60209081029190910101526001015b600190910190610aa4565b5090949350505050565b610b19611885565b600c55565b600b54610100900460ff16610b6d5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082b565b6000610b776108d1565b90506000600133604051602001610baa92919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b604051602081830303815290604052805190602001209050610bcf83600c5483611982565b610c1b5760405162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f74206f6e207468652077686974656c6973740000604482015260640161082b565b60008411610c3b5760405162461bcd60e51b815260040161082b906123aa565b6002841115610c9a5760405162461bcd60e51b815260206004820152602560248201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f7420657863604482015264656564203360d81b606482015260840161082b565b336000908152600e6020526040902054600290610cb89086906123eb565b1115610d115760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e74203220647572696e672070726573616044820152616c6560f01b606482015260840161082b565b611b39610d1e85846123eb565b1115610d3c5760405162461bcd60e51b815260040161082b90612403565b336000908152600d602052604090205460ff1615610d86573484600954610d63919061234b565b1115610d815760405162461bcd60e51b815260040161082b9061244d565b610dbd565b34610d92600186612484565b600954610d9f919061234b565b1115610dbd5760405162461bcd60e51b815260040161082b9061244d565b336000908152600e602052604081208054869290610ddc9084906123eb565b90915550600090505b84811015610e1257610e0033610dfb83866123eb565b611a31565b80610e0a8161249b565b915050610de5565b5050336000908152600d60205260409020805460ff19166001179055505050565b6000818152600360205260408120546001600160a01b0316806106f85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161082b565b60006001600160a01b038216610efd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161082b565b506001600160a01b031660009081526004602052604090205490565b610f21611885565b6109606000611a4b565b60606002805461070d906122ae565b600b5460ff16610f825760405162461bcd60e51b815260206004820152601360248201527214d85b19481393d5081858dd1a5d99481e595d606a1b604482015260640161082b565b6000610f8c6108d1565b905060008211610fae5760405162461bcd60e51b815260040161082b906123aa565b600482111561100d5760405162461bcd60e51b815260206004820152602560248201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f7420657863604482015264195959080d60da1b606482015260840161082b565b600a54336000908152600e602052604090205461102b9084906123eb565b11156110795760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206f6e6c79206d696e74203420696e20746f74616c00000000604482015260640161082b565b611b3961108683836123eb565b11156110a45760405162461bcd60e51b815260040161082b90612403565b336000908152600e6020526040902054156110eb5734826009546110c8919061234b565b11156110e65760405162461bcd60e51b815260040161082b9061244d565b611122565b346110f7600184612484565b600954611104919061234b565b11156111225760405162461bcd60e51b815260040161082b9061244d565b336000908152600e6020526040812080548492906111419084906123eb565b90915550600090505b828110156111725761116033610dfb83856123eb565b8061116a8161249b565b91505061114a565b5050336000908152600d60205260409020805460ff1916600117905550565b611199611885565b600a55565b61092d338383611a9b565b6111b1611885565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6111fc33836116a2565b6112185760405162461bcd60e51b815260040161082b906122e8565b61122484848484611b69565b50505050565b6060611235826115d5565b600061123f611b9c565b9050600081511161125f576040518060200160405280600081525061128a565b8061126984611bab565b60405160200161127a9291906124b4565b6040516020818303038152906040525b9392505050565b611299611885565b60006112a36108d1565b9050611b396112b283836123eb565b11156113125760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c79206044820152686f6620546f6b656e7360b81b606482015260840161082b565b601a821061136c5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b606482015260840161082b565b60005b828110156112245761138584610dfb83856123eb565b8061138f8161249b565b91505061136f565b61139f611885565b600b805461ff001981166101009182900460ff1615909102179055565b6113c4611885565b6001600160a01b0381166114295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082b565b610a2c81611a4b565b6001600160a01b0382166114885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082b565b6000818152600360205260409020546001600160a01b0316156114ed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082b565b6000818152600360205260409020546001600160a01b0316156115525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082b565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b6001600160a01b03163b151590565b6000818152600360205260409020546001600160a01b0316610a2c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161082b565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166982610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116ae83610e33565b9050806001600160a01b0316846001600160a01b031614806116f557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806117195750836001600160a01b031661170e84610790565b6001600160a01b0316145b949350505050565b826001600160a01b031661173482610e33565b6001600160a01b03161461175a5760405162461bcd60e51b815260040161082b906124e3565b6001600160a01b0382166117bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082b565b826001600160a01b03166117cf82610e33565b6001600160a01b0316146117f55760405162461bcd60e51b815260040161082b906124e3565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146109605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461192c576040519150601f19603f3d011682016040523d82523d6000602084013e611931565b606091505b50509050806108cc5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082b565b600081815b8551811015611a265760008682815181106119a4576119a4612394565b602002602001015190508083116119e6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a13565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a1e8161249b565b915050611987565b509092149392505050565b61092d828260405180602001604052806000815250611cac565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031603611afc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082b565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b74848484611721565b611b8084848484611cdf565b6112245760405162461bcd60e51b815260040161082b90612528565b60606008805461070d906122ae565b606081600003611bd25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bfc5780611be68161249b565b9150611bf59050600a83612380565b9150611bd6565b60008167ffffffffffffffff811115611c1757611c17611fca565b6040519080825280601f01601f191660200182016040528015611c41576020820181803683370190505b5090505b841561171957611c56600183612484565b9150611c63600a8661257a565b611c6e9060306123eb565b60f81b818381518110611c8357611c83612394565b60200101906001600160f81b031916908160001a905350611ca5600a86612380565b9450611c45565b611cb68383611de0565b611cc36000848484611cdf565b6108cc5760405162461bcd60e51b815260040161082b90612528565b60006001600160a01b0384163b15611dd557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2390339089908890889060040161258e565b6020604051808303816000875af1925050508015611d5e575060408051601f3d908101601f19168201909252611d5b918101906125cb565b60015b611dbb573d808015611d8c576040519150601f19603f3d011682016040523d82523d6000602084013e611d91565b606091505b508051600003611db35760405162461bcd60e51b815260040161082b90612528565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611719565b506001949350505050565b611dea8282611432565b61092d600780546001019055565b828054611e04906122ae565b90600052602060002090601f016020900481019282611e265760008555611e6c565b82601f10611e3f57805160ff1916838001178555611e6c565b82800160010185558215611e6c579182015b82811115611e6c578251825591602001919060010190611e51565b50611e78929150611e7c565b5090565b5b80821115611e785760008155600101611e7d565b6001600160e01b031981168114610a2c57600080fd5b600060208284031215611eb957600080fd5b813561128a81611e91565b60005b83811015611edf578181015183820152602001611ec7565b838111156112245750506000910152565b60008151808452611f08816020860160208601611ec4565b601f01601f19169290920160200192915050565b60208152600061128a6020830184611ef0565b600060208284031215611f4157600080fd5b5035919050565b80356001600160a01b0381168114611f5f57600080fd5b919050565b60008060408385031215611f7757600080fd5b611f8083611f48565b946020939093013593505050565b600080600060608486031215611fa357600080fd5b611fac84611f48565b9250611fba60208501611f48565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561200957612009611fca565b604052919050565b600067ffffffffffffffff83111561202b5761202b611fca565b61203e601f8401601f1916602001611fe0565b905082815283838301111561205257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561207b57600080fd5b813567ffffffffffffffff81111561209257600080fd5b8201601f810184136120a357600080fd5b61171984823560208401612011565b6000602082840312156120c457600080fd5b61128a82611f48565b6020808252825182820181905260009190848201906040850190845b81811015612105578351835292840192918401916001016120e9565b50909695505050505050565b6000806040838503121561212457600080fd5b8235915060208084013567ffffffffffffffff8082111561214457600080fd5b818601915086601f83011261215857600080fd5b81358181111561216a5761216a611fca565b8060051b915061217b848301611fe0565b818152918301840191848101908984111561219557600080fd5b938501935b838510156121b35784358252938501939085019061219a565b8096505050505050509250929050565b600080604083850312156121d657600080fd5b6121df83611f48565b9150602083013580151581146121f457600080fd5b809150509250929050565b6000806000806080858703121561221557600080fd5b61221e85611f48565b935061222c60208601611f48565b925060408501359150606085013567ffffffffffffffff81111561224f57600080fd5b8501601f8101871361226057600080fd5b61226f87823560208401612011565b91505092959194509250565b6000806040838503121561228e57600080fd5b61229783611f48565b91506122a560208401611f48565b90509250929050565b600181811c908216806122c257607f821691505b6020821081036122e257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561236557612365612335565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261238f5761238f61236a565b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f546f74616c206e756d626572206f66206d696e74732063616e6e6f74206265206040820152600360fc1b606082015260800190565b600082198211156123fe576123fe612335565b500190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620546f6b656e7360b01b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60008282101561249657612496612335565b500390565b6000600182016124ad576124ad612335565b5060010190565b600083516124c6818460208801611ec4565b8351908301906124da818360208801611ec4565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826125895761258961236a565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c190830184611ef0565b9695505050505050565b6000602082840312156125dd57600080fd5b815161128a81611e9156fea26469706673582212202f9f9181962ddd745aeb77a5e1532576c1b71656a02f980e0bedd96b4f779a2a64736f6c634300080d0033
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.