Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 orc
Holders
1,092
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 orcLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OrcVillage
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 1000 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/ERC721A.sol';import '@openzeppelin/contracts/access/Ownable.sol';import '@openzeppelin/contracts/security/ReentrancyGuard.sol';// ██████ ██████ ██████ ██ ██ ██ ██ ██ █████ ██████ ███████// ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██// ██ ██ ██████ ██ ██ ██ ██ ██ ██ ███████ ██ ███ █████// ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██// ██████ ██ ██ ██████ ████ ██ ███████ ███████ ██ ██ ██████ ███████contract OrcVillage is ERC721A, Ownable, ReentrancyGuard {using Strings for uint256;mapping(address => uint256) public mintedTokens;string public uriPrefix = '';string public uriSuffix = '.json';string public hiddenMetadataUri;
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// 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 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 '@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 (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 (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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.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 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);}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 1000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","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":[{"internalType":"address","name":"","type":"address"}],"name":"mintedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"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"}]
Contract Creation Code
60a06040819052600060808190526200001b91600b91620001b9565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600c91620001b9565b50611388600e556005600f556010805461ffff191660011790553480156200007157600080fd5b50604051620026c1380380620026c183398101604081905262000094916200032c565b825183908390620000ad906002906020850190620001b9565b508051620000c3906003906020840190620001b9565b5050600160005550620000d633620000ef565b6001600955620000e68162000141565b505050620003fa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b590600d906020840190620001b9565b5050565b828054620001c790620003bd565b90600052602060002090601f016020900481019282620001eb576000855562000236565b82601f106200020657805160ff191683800117855562000236565b8280016001018555821562000236579182015b828111156200023657825182559160200191906001019062000219565b506200024492915062000248565b5090565b5b8082111562000244576000815560010162000249565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028757600080fd5b81516001600160401b0380821115620002a457620002a46200025f565b604051601f8301601f19908116603f01168101908282118183101715620002cf57620002cf6200025f565b81604052838152602092508683858801011115620002ec57600080fd5b600091505b83821015620003105785820183015181830184015290820190620002f1565b83821115620003225760008385830101525b9695505050505050565b6000806000606084860312156200034257600080fd5b83516001600160401b03808211156200035a57600080fd5b620003688783880162000275565b945060208601519150808211156200037f57600080fd5b6200038d8783880162000275565b93506040860151915080821115620003a457600080fd5b50620003b38682870162000275565b9150509250925092565b600181811c90821680620003d257607f821691505b60208210811415620003f457634e487b7160e01b600052602260045260246000fd5b50919050565b6122b7806200040a6000396000f3fe6080604052600436106101fe5760003560e01c80636352211e1161011d578063a22cb465116100b0578063c87b56dd1161007f578063e0a8085311610064578063e0a80853146105a9578063e985e9c5146105c9578063f2fde38b1461061257600080fd5b8063c87b56dd14610573578063d5abeb011461059357600080fd5b8063a22cb46514610508578063a45ba8e714610528578063b88d4fde1461053d578063bc951b911461055d57600080fd5b80637ec4a659116100ec5780637ec4a659146104a25780638da5cb5b146104c257806395d89b41146104e0578063a0712d68146104f557600080fd5b80636352211e1461042057806370a0823114610440578063715018a6146104605780637241dfa01461047557600080fd5b80633ccfd60b11610195578063518302271161016457806351830227146103bd5780635503a0e8146103dc5780635c975abb146103f157806362b99ad41461040b57600080fd5b80633ccfd60b1461033b57806342842e0e14610350578063438b6300146103705780634fdd43cb1461039d57600080fd5b806316ba10e0116101d157806316ba10e0146102b457806316c38b3c146102d457806318160ddd146102f457806323b872dd1461031b57600080fd5b806301ffc9a71461020357806306fdde0314610238578063081812fc1461025a578063095ea7b314610292575b600080fd5b34801561020f57600080fd5b5061022361021e366004611d1a565b610632565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d6106cf565b60405161022f9190611d8f565b34801561026657600080fd5b5061027a610275366004611da2565b610761565b6040516001600160a01b03909116815260200161022f565b34801561029e57600080fd5b506102b26102ad366004611dd7565b6107be565b005b3480156102c057600080fd5b506102b26102cf366004611e8d565b610877565b3480156102e057600080fd5b506102b26102ef366004611ee6565b6108ed565b34801561030057600080fd5b5060015460005403600019015b60405190815260200161022f565b34801561032757600080fd5b506102b2610336366004611f01565b61095a565b34801561034757600080fd5b506102b2610965565b34801561035c57600080fd5b506102b261036b366004611f01565b610a90565b34801561037c57600080fd5b5061039061038b366004611f3d565b610aab565b60405161022f9190611f58565b3480156103a957600080fd5b506102b26103b8366004611e8d565b610bf4565b3480156103c957600080fd5b5060105461022390610100900460ff1681565b3480156103e857600080fd5b5061024d610c61565b3480156103fd57600080fd5b506010546102239060ff1681565b34801561041757600080fd5b5061024d610cef565b34801561042c57600080fd5b5061027a61043b366004611da2565b610cfc565b34801561044c57600080fd5b5061030d61045b366004611f3d565b610d0e565b34801561046c57600080fd5b506102b2610d76565b34801561048157600080fd5b5061030d610490366004611f3d565b600a6020526000908152604090205481565b3480156104ae57600080fd5b506102b26104bd366004611e8d565b610ddc565b3480156104ce57600080fd5b506008546001600160a01b031661027a565b3480156104ec57600080fd5b5061024d610e49565b6102b2610503366004611da2565b610e58565b34801561051457600080fd5b506102b2610523366004611f9c565b610fbf565b34801561053457600080fd5b5061024d61106e565b34801561054957600080fd5b506102b2610558366004611fcf565b61107b565b34801561056957600080fd5b5061030d600f5481565b34801561057f57600080fd5b5061024d61058e366004611da2565b6110c5565b34801561059f57600080fd5b5061030d600e5481565b3480156105b557600080fd5b506102b26105c4366004611ee6565b611242565b3480156105d557600080fd5b506102236105e436600461204b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102b261062d366004611f3d565b6112b6565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061069557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106c957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546106de90612075565b80601f016020809104026020016040519081016040528092919081815260200182805461070a90612075565b80156107575780601f1061072c57610100808354040283529160200191610757565b820191906000526020600020905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b600061076c82611398565b6107a2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c982610cfc565b9050806001600160a01b0316836001600160a01b03161415610817576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108675761083181336105e4565b610867576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108728383836113d1565b505050565b6008546001600160a01b031633146108d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516108e990600c906020840190611c6b565b5050565b6008546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b6010805460ff1916911515919091179055565b61087283838361143a565b6008546001600160a01b031633146109bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b60026009541415610a125760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108cd565b60026009556000610a2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a75576040519150601f19603f3d011682016040523d82523d6000602084013e610a7a565b606091505b5050905080610a8857600080fd5b506001600955565b6108728383836040518060200160405280600081525061107b565b60606000610ab883610d0e565b905060008167ffffffffffffffff811115610ad557610ad5611e01565b604051908082528060200260200182016040528015610afe578160200160208202803683370190505b50905060016000805b8482108015610b185750600e548311155b15610be957600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282018390529091610b86575080516001600160a01b031615155b15610b9057805191505b876001600160a01b0316826001600160a01b03161415610bd65783858481518110610bbd57610bbd6120b0565b602090810291909101015282610bd2816120dc565b9350505b83610be0816120dc565b94505050610b07565b509195945050505050565b6008546001600160a01b03163314610c4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b80516108e990600d906020840190611c6b565b600c8054610c6e90612075565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90612075565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b505050505081565b600b8054610c6e90612075565b6000610d0782611675565b5192915050565b60006001600160a01b038216610d50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b610dda60006117b2565b565b6008546001600160a01b03163314610e365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b80516108e990600b906020840190611c6b565b6060600380546106de90612075565b80600081118015610e855750600f54336000908152600a6020526040902054610e829083906120f7565b11155b610ed15760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016108cd565b600e546001546000548391900360001901610eec91906120f7565b1115610f3a5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108cd565b60105460ff1615610f8d5760405162461bcd60e51b815260206004820152601360248201527f546865206d696e7420697320706175736564210000000000000000000000000060448201526064016108cd565b610f973383611811565b336000908152600a602052604081208054849290610fb69084906120f7565b90915550505050565b6001600160a01b038216331415611002576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610c6e90612075565b61108684848461143a565b6001600160a01b0383163b156110bf576110a28484848461182b565b6110bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110d082611398565b6111425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108cd565b601054610100900460ff166111e357600d805461115e90612075565b80601f016020809104026020016040519081016040528092919081815260200182805461118a90612075565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b50505050509050919050565b60006111ed611923565b9050600081511161120d576040518060200160405280600081525061123b565b8061121784611932565b600c60405160200161122b9392919061210f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461129c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b6001600160a01b03811661138c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108cd565b611395816117b2565b50565b6000816001111580156113ac575060005482105b80156106c9575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144582611675565b9050836001600160a01b031681600001516001600160a01b031614611496576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806114b457506114b485336105e4565b806114cf5750336114c484610761565b6001600160a01b0316145b905080611508576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611548576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611554600084876113d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661162a57600054821461162a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116117805760005481101561178057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061177e5780516001600160a01b031615611714579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611779579392505050565b611714565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108e9828260405180602001604052806000815250611a64565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118609033908990889088906004016121d3565b602060405180830381600087803b15801561187a57600080fd5b505af19250505080156118aa575060408051601f3d908101601f191682019092526118a79181019061220f565b60015b611905573d8080156118d8576040519150601f19603f3d011682016040523d82523d6000602084013e6118dd565b606091505b5080516118fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106de90612075565b60608161197257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561199c5780611986816120dc565b91506119959050600a83612242565b9150611976565b60008167ffffffffffffffff8111156119b7576119b7611e01565b6040519080825280601f01601f1916602001820160405280156119e1576020820181803683370190505b5090505b841561191b576119f6600183612256565b9150611a03600a8661226d565b611a0e9060306120f7565b60f81b818381518110611a2357611a236120b0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a5d600a86612242565b94506119e5565b6000546001600160a01b038416611aa7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611ade576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611c16575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bdf600087848060010195508761182b565b611bfc576040516368d2bf6b60e11b815260040160405180910390fd5b808210611b94578260005414611c1157600080fd5b611c5b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c17575b5060009081556110bf9085838684565b828054611c7790612075565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50611ceb929150611cef565b5090565b5b80821115611ceb5760008155600101611cf0565b6001600160e01b03198116811461139557600080fd5b600060208284031215611d2c57600080fd5b813561123b81611d04565b60005b83811015611d52578181015183820152602001611d3a565b838111156110bf5750506000910152565b60008151808452611d7b816020860160208601611d37565b601f01601f19169290920160200192915050565b60208152600061123b6020830184611d63565b600060208284031215611db457600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b919050565b60008060408385031215611dea57600080fd5b611df383611dbb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3257611e32611e01565b604051601f8501601f19908116603f01168101908282118183101715611e5a57611e5a611e01565b81604052809350858152868686011115611e7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e9f57600080fd5b813567ffffffffffffffff811115611eb657600080fd5b8201601f81018413611ec757600080fd5b61191b84823560208401611e17565b80358015158114611dd257600080fd5b600060208284031215611ef857600080fd5b61123b82611ed6565b600080600060608486031215611f1657600080fd5b611f1f84611dbb565b9250611f2d60208501611dbb565b9150604084013590509250925092565b600060208284031215611f4f57600080fd5b61123b82611dbb565b6020808252825182820181905260009190848201906040850190845b81811015611f9057835183529284019291840191600101611f74565b50909695505050505050565b60008060408385031215611faf57600080fd5b611fb883611dbb565b9150611fc660208401611ed6565b90509250929050565b60008060008060808587031215611fe557600080fd5b611fee85611dbb565b9350611ffc60208601611dbb565b925060408501359150606085013567ffffffffffffffff81111561201f57600080fd5b8501601f8101871361203057600080fd5b61203f87823560208401611e17565b91505092959194509250565b6000806040838503121561205e57600080fd5b61206783611dbb565b9150611fc660208401611dbb565b600181811c9082168061208957607f821691505b602082108114156120aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120f0576120f06120c6565b5060010190565b6000821982111561210a5761210a6120c6565b500190565b6000845160206121228285838a01611d37565b8551918401916121358184848a01611d37565b8554920191600090600181811c908083168061215257607f831692505b85831081141561217057634e487b7160e01b85526022600452602485fd5b8080156121845760018114612195576121c2565b60ff198516885283880195506121c2565b60008b81526020902060005b858110156121ba5781548a8201529084019088016121a1565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122056080830184611d63565b9695505050505050565b60006020828403121561222157600080fd5b815161123b81611d04565b634e487b7160e01b600052601260045260246000fd5b6000826122515761225161222c565b500490565b600082821015612268576122686120c6565b500390565b60008261227c5761227c61222c565b50069056fea2646970667358221220ba9a9147fd8b2f004063ba57df043a85713c798a29f03f944aeccd80b28edba464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4f726356696c6c6167650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036f72630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f697066732e696f2f697066732f516d523942766d376758756a387a5a375132796664524b35474c4d47386166415839527373735a725231634371532f68696464656e2e6a736f6e0000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101fe5760003560e01c80636352211e1161011d578063a22cb465116100b0578063c87b56dd1161007f578063e0a8085311610064578063e0a80853146105a9578063e985e9c5146105c9578063f2fde38b1461061257600080fd5b8063c87b56dd14610573578063d5abeb011461059357600080fd5b8063a22cb46514610508578063a45ba8e714610528578063b88d4fde1461053d578063bc951b911461055d57600080fd5b80637ec4a659116100ec5780637ec4a659146104a25780638da5cb5b146104c257806395d89b41146104e0578063a0712d68146104f557600080fd5b80636352211e1461042057806370a0823114610440578063715018a6146104605780637241dfa01461047557600080fd5b80633ccfd60b11610195578063518302271161016457806351830227146103bd5780635503a0e8146103dc5780635c975abb146103f157806362b99ad41461040b57600080fd5b80633ccfd60b1461033b57806342842e0e14610350578063438b6300146103705780634fdd43cb1461039d57600080fd5b806316ba10e0116101d157806316ba10e0146102b457806316c38b3c146102d457806318160ddd146102f457806323b872dd1461031b57600080fd5b806301ffc9a71461020357806306fdde0314610238578063081812fc1461025a578063095ea7b314610292575b600080fd5b34801561020f57600080fd5b5061022361021e366004611d1a565b610632565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d6106cf565b60405161022f9190611d8f565b34801561026657600080fd5b5061027a610275366004611da2565b610761565b6040516001600160a01b03909116815260200161022f565b34801561029e57600080fd5b506102b26102ad366004611dd7565b6107be565b005b3480156102c057600080fd5b506102b26102cf366004611e8d565b610877565b3480156102e057600080fd5b506102b26102ef366004611ee6565b6108ed565b34801561030057600080fd5b5060015460005403600019015b60405190815260200161022f565b34801561032757600080fd5b506102b2610336366004611f01565b61095a565b34801561034757600080fd5b506102b2610965565b34801561035c57600080fd5b506102b261036b366004611f01565b610a90565b34801561037c57600080fd5b5061039061038b366004611f3d565b610aab565b60405161022f9190611f58565b3480156103a957600080fd5b506102b26103b8366004611e8d565b610bf4565b3480156103c957600080fd5b5060105461022390610100900460ff1681565b3480156103e857600080fd5b5061024d610c61565b3480156103fd57600080fd5b506010546102239060ff1681565b34801561041757600080fd5b5061024d610cef565b34801561042c57600080fd5b5061027a61043b366004611da2565b610cfc565b34801561044c57600080fd5b5061030d61045b366004611f3d565b610d0e565b34801561046c57600080fd5b506102b2610d76565b34801561048157600080fd5b5061030d610490366004611f3d565b600a6020526000908152604090205481565b3480156104ae57600080fd5b506102b26104bd366004611e8d565b610ddc565b3480156104ce57600080fd5b506008546001600160a01b031661027a565b3480156104ec57600080fd5b5061024d610e49565b6102b2610503366004611da2565b610e58565b34801561051457600080fd5b506102b2610523366004611f9c565b610fbf565b34801561053457600080fd5b5061024d61106e565b34801561054957600080fd5b506102b2610558366004611fcf565b61107b565b34801561056957600080fd5b5061030d600f5481565b34801561057f57600080fd5b5061024d61058e366004611da2565b6110c5565b34801561059f57600080fd5b5061030d600e5481565b3480156105b557600080fd5b506102b26105c4366004611ee6565b611242565b3480156105d557600080fd5b506102236105e436600461204b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102b261062d366004611f3d565b6112b6565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061069557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106c957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546106de90612075565b80601f016020809104026020016040519081016040528092919081815260200182805461070a90612075565b80156107575780601f1061072c57610100808354040283529160200191610757565b820191906000526020600020905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b600061076c82611398565b6107a2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c982610cfc565b9050806001600160a01b0316836001600160a01b03161415610817576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108675761083181336105e4565b610867576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108728383836113d1565b505050565b6008546001600160a01b031633146108d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516108e990600c906020840190611c6b565b5050565b6008546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b6010805460ff1916911515919091179055565b61087283838361143a565b6008546001600160a01b031633146109bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b60026009541415610a125760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108cd565b60026009556000610a2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a75576040519150601f19603f3d011682016040523d82523d6000602084013e610a7a565b606091505b5050905080610a8857600080fd5b506001600955565b6108728383836040518060200160405280600081525061107b565b60606000610ab883610d0e565b905060008167ffffffffffffffff811115610ad557610ad5611e01565b604051908082528060200260200182016040528015610afe578160200160208202803683370190505b50905060016000805b8482108015610b185750600e548311155b15610be957600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282018390529091610b86575080516001600160a01b031615155b15610b9057805191505b876001600160a01b0316826001600160a01b03161415610bd65783858481518110610bbd57610bbd6120b0565b602090810291909101015282610bd2816120dc565b9350505b83610be0816120dc565b94505050610b07565b509195945050505050565b6008546001600160a01b03163314610c4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b80516108e990600d906020840190611c6b565b600c8054610c6e90612075565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90612075565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b505050505081565b600b8054610c6e90612075565b6000610d0782611675565b5192915050565b60006001600160a01b038216610d50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b610dda60006117b2565b565b6008546001600160a01b03163314610e365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b80516108e990600b906020840190611c6b565b6060600380546106de90612075565b80600081118015610e855750600f54336000908152600a6020526040902054610e829083906120f7565b11155b610ed15760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016108cd565b600e546001546000548391900360001901610eec91906120f7565b1115610f3a5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108cd565b60105460ff1615610f8d5760405162461bcd60e51b815260206004820152601360248201527f546865206d696e7420697320706175736564210000000000000000000000000060448201526064016108cd565b610f973383611811565b336000908152600a602052604081208054849290610fb69084906120f7565b90915550505050565b6001600160a01b038216331415611002576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610c6e90612075565b61108684848461143a565b6001600160a01b0383163b156110bf576110a28484848461182b565b6110bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110d082611398565b6111425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108cd565b601054610100900460ff166111e357600d805461115e90612075565b80601f016020809104026020016040519081016040528092919081815260200182805461118a90612075565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b50505050509050919050565b60006111ed611923565b9050600081511161120d576040518060200160405280600081525061123b565b8061121784611932565b600c60405160200161122b9392919061210f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461129c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108cd565b6001600160a01b03811661138c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108cd565b611395816117b2565b50565b6000816001111580156113ac575060005482105b80156106c9575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144582611675565b9050836001600160a01b031681600001516001600160a01b031614611496576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806114b457506114b485336105e4565b806114cf5750336114c484610761565b6001600160a01b0316145b905080611508576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611548576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611554600084876113d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661162a57600054821461162a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116117805760005481101561178057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061177e5780516001600160a01b031615611714579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611779579392505050565b611714565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108e9828260405180602001604052806000815250611a64565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118609033908990889088906004016121d3565b602060405180830381600087803b15801561187a57600080fd5b505af19250505080156118aa575060408051601f3d908101601f191682019092526118a79181019061220f565b60015b611905573d8080156118d8576040519150601f19603f3d011682016040523d82523d6000602084013e6118dd565b606091505b5080516118fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106de90612075565b60608161197257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561199c5780611986816120dc565b91506119959050600a83612242565b9150611976565b60008167ffffffffffffffff8111156119b7576119b7611e01565b6040519080825280601f01601f1916602001820160405280156119e1576020820181803683370190505b5090505b841561191b576119f6600183612256565b9150611a03600a8661226d565b611a0e9060306120f7565b60f81b818381518110611a2357611a236120b0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a5d600a86612242565b94506119e5565b6000546001600160a01b038416611aa7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611ade576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611c16575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bdf600087848060010195508761182b565b611bfc576040516368d2bf6b60e11b815260040160405180910390fd5b808210611b94578260005414611c1157600080fd5b611c5b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c17575b5060009081556110bf9085838684565b828054611c7790612075565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50611ceb929150611cef565b5090565b5b80821115611ceb5760008155600101611cf0565b6001600160e01b03198116811461139557600080fd5b600060208284031215611d2c57600080fd5b813561123b81611d04565b60005b83811015611d52578181015183820152602001611d3a565b838111156110bf5750506000910152565b60008151808452611d7b816020860160208601611d37565b601f01601f19169290920160200192915050565b60208152600061123b6020830184611d63565b600060208284031215611db457600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b919050565b60008060408385031215611dea57600080fd5b611df383611dbb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3257611e32611e01565b604051601f8501601f19908116603f01168101908282118183101715611e5a57611e5a611e01565b81604052809350858152868686011115611e7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e9f57600080fd5b813567ffffffffffffffff811115611eb657600080fd5b8201601f81018413611ec757600080fd5b61191b84823560208401611e17565b80358015158114611dd257600080fd5b600060208284031215611ef857600080fd5b61123b82611ed6565b600080600060608486031215611f1657600080fd5b611f1f84611dbb565b9250611f2d60208501611dbb565b9150604084013590509250925092565b600060208284031215611f4f57600080fd5b61123b82611dbb565b6020808252825182820181905260009190848201906040850190845b81811015611f9057835183529284019291840191600101611f74565b50909695505050505050565b60008060408385031215611faf57600080fd5b611fb883611dbb565b9150611fc660208401611ed6565b90509250929050565b60008060008060808587031215611fe557600080fd5b611fee85611dbb565b9350611ffc60208601611dbb565b925060408501359150606085013567ffffffffffffffff81111561201f57600080fd5b8501601f8101871361203057600080fd5b61203f87823560208401611e17565b91505092959194509250565b6000806040838503121561205e57600080fd5b61206783611dbb565b9150611fc660208401611dbb565b600181811c9082168061208957607f821691505b602082108114156120aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120f0576120f06120c6565b5060010190565b6000821982111561210a5761210a6120c6565b500190565b6000845160206121228285838a01611d37565b8551918401916121358184848a01611d37565b8554920191600090600181811c908083168061215257607f831692505b85831081141561217057634e487b7160e01b85526022600452602485fd5b8080156121845760018114612195576121c2565b60ff198516885283880195506121c2565b60008b81526020902060005b858110156121ba5781548a8201529084019088016121a1565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122056080830184611d63565b9695505050505050565b60006020828403121561222157600080fd5b815161123b81611d04565b634e487b7160e01b600052601260045260246000fd5b6000826122515761225161222c565b500490565b600082821015612268576122686120c6565b500390565b60008261227c5761227c61222c565b50069056fea2646970667358221220ba9a9147fd8b2f004063ba57df043a85713c798a29f03f944aeccd80b28edba464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4f726356696c6c6167650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036f72630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f697066732e696f2f697066732f516d523942766d376758756a387a5a375132796664524b35474c4d47386166415839527373735a725231634371532f68696464656e2e6a736f6e0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): OrcVillage
Arg [1] : _tokenSymbol (string): orc
Arg [2] : _hiddenMetadataUri (string): https://ipfs.io/ipfs/QmR9Bvm7gXuj8zZ7Q2yfdRK5GLMG8afAX9RsssZrR1cCqS/hidden.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4f726356696c6c61676500000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 6f72630000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000004f
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d523942766d37675875
Arg [9] : 6a387a5a375132796664524b35474c4d47386166415839527373735a72523163
Arg [10] : 4371532f68696464656e2e6a736f6e0000000000000000000000000000000000
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.