ERC-721
Overview
Max Total Supply
3,155 MBD
Holders
264
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MBDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonbirdDicks
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // 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.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/MoonbirdDicks.sol pragma solidity ^0.8.4; contract MoonbirdDicks is ERC721A, Ownable { uint256 private MAX_SUPPLY = 3333; uint256 private MAX_MINT_PER_TRANSACTION = 20; uint256 private MINT_COST_FOR_PUBLIC = 0.005 ether; uint256 private FREE_MINT_SUPPLY = 666; bool public isFreeSaleActive = true; string public constant baseExtension = ".json"; bool public _isRevealed = false; mapping(address => uint256) private _freeList; string _baseTokenURI; string _unrevealedURI; constructor(string memory unrevealedURI) ERC721A("MoonbirdDicks", "MBD") { _unrevealedURI = unrevealedURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setUnrevealedURI(string memory unrevealedURI) public onlyOwner{ _unrevealedURI = unrevealedURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function reveal(string memory realBaseURI) external onlyOwner{ require(!_isRevealed, "ALREADY REVEALED"); _isRevealed = true; _baseTokenURI = realBaseURI; } function mintForPublic(uint256 numberToMint) external payable { require(msg.sender == tx.origin, "Cannot mint from smart contracts"); require(!isFreeSaleActive, "Free sale is still active"); require(numberToMint <= MAX_MINT_PER_TRANSACTION, "Cannot mint more than 10 NFTs in a single transaction"); require(totalSupply() + numberToMint < MAX_SUPPLY, "Cannot mint more NFTs"); require(msg.value >= MINT_COST_FOR_PUBLIC * numberToMint, "Not enough rose sent for the transaction"); _safeMint(msg.sender, numberToMint); } function mintForFree(uint256 numberToMint) external payable{ require(msg.sender == tx.origin, "Cannot mint from smart contracts"); require(isFreeSaleActive, "Free sale is not active anymore"); require(numberToMint <= MAX_MINT_PER_TRANSACTION, "Cannot mint more than 10 NFTs in a single transaction"); require(totalSupply() + numberToMint < MAX_SUPPLY, "Cannot mint more NFTs"); require(_freeList[msg.sender] + numberToMint <=20, "Max free NFTs minted already"); _safeMint(msg.sender, numberToMint); _freeList[msg.sender] += numberToMint; if(totalSupply()>=666){ isFreeSaleActive = false; } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(!_isRevealed) return _unrevealedURI; string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)) : ""; } function totalDicks() public view returns (uint256) { return MAX_SUPPLY; } function mintCostForPublic() public view returns (uint256){ return MINT_COST_FOR_PUBLIC; } function updateMintCostForPublic(uint256 newCost) public onlyOwner{ MINT_COST_FOR_PUBLIC = newCost; } function withdrawBalance() public onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"unrevealedURI","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCostForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToMint","type":"uint256"}],"name":"mintForFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToMint","type":"uint256"}],"name":"mintForPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"realBaseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"}],"name":"setUnrevealedURI","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":"totalDicks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"updateMintCostForPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610d056009556014600a556611c37937e08000600b5561029a600c55600d805461ffff191660011790553480156200003b57600080fd5b5060405162002180380380620021808339810160408190526200005e9162000201565b604080518082018252600d81526c4d6f6f6e626972644469636b7360981b60208083019182528351808501909452600384526213509160ea1b908401528151919291620000ae9160029162000145565b508051620000c490600390602084019062000145565b50506000805550620000d633620000f3565b8051620000eb90601090602084019062000145565b505062000319565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015390620002dd565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200021557600080fd5b82516001600160401b03808211156200022d57600080fd5b818501915085601f8301126200024257600080fd5b815181811115620002575762000257620001eb565b604051601f8201601f19908116603f01168101908382118183101715620002825762000282620001eb565b8160405282815288868487010111156200029b57600080fd5b600093505b82841015620002bf5784840186015181850187015292850192620002a0565b82841115620002d15760008684830101525b98975050505050505050565b600181811c90821680620002f257607f821691505b6020821081036200031357634e487b7160e01b600052602260045260246000fd5b50919050565b611e5780620003296000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063c668286211610095578063eec3199511610064578063eec3199514610508578063f2fde38b14610528578063f31b5b3314610548578063fe2c7fee1461055b57600080fd5b8063c66828621461044f578063c87b56dd14610480578063ca2bbb6f146104a0578063e985e9c5146104bf57600080fd5b80638da5cb5b116100d15780638da5cb5b146103dc57806395d89b41146103fa578063a22cb4651461040f578063b88d4fde1461042f57600080fd5b80636352211e1461038757806370a08231146103a7578063715018a6146103c757600080fd5b806323b872dd116101645780634c2612471161013e5780634c2612471461031857806355f804b3146103385780635fd8c7101461035857806362f096401461036d57600080fd5b806323b872dd146102c357806342842e0e146102e35780634b812b521461030357600080fd5b8063081812fc116101a0578063081812fc1461023d578063095ea7b3146102755780630c93610a1461029757806318160ddd146102aa57600080fd5b806301ffc9a7146101c7578063058488bc146101fc57806306fdde031461021b575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118f1565b61057b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50600b545b6040519081526020016101f3565b34801561022757600080fd5b506102306105cd565b6040516101f39190611966565b34801561024957600080fd5b5061025d610258366004611979565b61065f565b6040516001600160a01b0390911681526020016101f3565b34801561028157600080fd5b506102956102903660046119ae565b6106a3565b005b6102956102a5366004611979565b610730565b3480156102b657600080fd5b506001546000540361020d565b3480156102cf57600080fd5b506102956102de3660046119d8565b610916565b3480156102ef57600080fd5b506102956102fe3660046119d8565b610921565b34801561030f57600080fd5b5060095461020d565b34801561032457600080fd5b50610295610333366004611aa0565b61093c565b34801561034457600080fd5b50610295610353366004611aa0565b6109d7565b34801561036457600080fd5b50610295610a14565b34801561037957600080fd5b50600d546101e79060ff1681565b34801561039357600080fd5b5061025d6103a2366004611979565b610ab6565b3480156103b357600080fd5b5061020d6103c2366004611ae9565b610ac8565b3480156103d357600080fd5b50610295610b17565b3480156103e857600080fd5b506008546001600160a01b031661025d565b34801561040657600080fd5b50610230610b4d565b34801561041b57600080fd5b5061029561042a366004611b04565b610b5c565b34801561043b57600080fd5b5061029561044a366004611b40565b610bf1565b34801561045b57600080fd5b5061023060405180604001604052806005815260200164173539b7b760d91b81525081565b34801561048c57600080fd5b5061023061049b366004611979565b610c42565b3480156104ac57600080fd5b50600d546101e790610100900460ff1681565b3480156104cb57600080fd5b506101e76104da366004611bbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051457600080fd5b50610295610523366004611979565b610dcd565b34801561053457600080fd5b50610295610543366004611ae9565b610dfc565b610295610556366004611979565b610e94565b34801561056757600080fd5b50610295610576366004611aa0565b611030565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105dc90611bef565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611bef565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061066a8261106d565b610687576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ae82610ab6565b9050806001600160a01b0316836001600160a01b0316036106e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610702575061070081336104da565b155b15610720576040516367d9dca160e11b815260040160405180910390fd5b61072b838383611098565b505050565b3332146107845760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206d696e742066726f6d20736d61727420636f6e74726163747360448201526064015b60405180910390fd5b600d5460ff166107d65760405162461bcd60e51b815260206004820152601f60248201527f467265652073616c65206973206e6f742061637469766520616e796d6f726500604482015260640161077b565b600a548111156107f85760405162461bcd60e51b815260040161077b90611c29565b600954816108096001546000540390565b6108139190611c94565b106108585760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e74206d6f7265204e46547360581b604482015260640161077b565b336000908152600e6020526040902054601490610876908390611c94565b11156108c45760405162461bcd60e51b815260206004820152601c60248201527f4d61782066726565204e465473206d696e74656420616c726561647900000000604482015260640161077b565b6108ce33826110f4565b336000908152600e6020526040812080548392906108ed908490611c94565b9091555061029a90506109036001546000540390565b1061091357600d805460ff191690555b50565b61072b83838361110e565b61072b83838360405180602001604052806000815250610bf1565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161077b90611cac565b600d54610100900460ff16156109b15760405162461bcd60e51b815260206004820152601060248201526f1053149150511648149155915053115160821b604482015260640161077b565b600d805461ff00191661010017905580516109d390600f906020840190611842565b5050565b6008546001600160a01b03163314610a015760405162461bcd60e51b815260040161077b90611cac565b80516109d390600f906020840190611842565b6008546001600160a01b03163314610a3e5760405162461bcd60e51b815260040161077b90611cac565b60004711610a7d5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b604482015260640161077b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610913573d6000803e3d6000fd5b6000610ac1826112fe565b5192915050565b60006001600160a01b038216610af1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b415760405162461bcd60e51b815260040161077b90611cac565b610b4b600061141a565b565b6060600380546105dc90611bef565b336001600160a01b03831603610b855760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bfc84848461110e565b6001600160a01b0383163b15158015610c1e5750610c1c8484848461146c565b155b15610c3c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c4d8261106d565b610cb15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077b565b600d54610100900460ff16610d525760108054610ccd90611bef565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf990611bef565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b50505050509050919050565b6000610d5c611558565b90506000815111610d7c5760405180602001604052806000815250610dc6565b80610d8684611567565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610db693929190611ce1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610df75760405162461bcd60e51b815260040161077b90611cac565b600b55565b6008546001600160a01b03163314610e265760405162461bcd60e51b815260040161077b90611cac565b6001600160a01b038116610e8b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077b565b6109138161141a565b333214610ee35760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206d696e742066726f6d20736d61727420636f6e747261637473604482015260640161077b565b600d5460ff1615610f365760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206973207374696c6c2061637469766500000000000000604482015260640161077b565b600a54811115610f585760405162461bcd60e51b815260040161077b90611c29565b60095481610f696001546000540390565b610f739190611c94565b10610fb85760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e74206d6f7265204e46547360581b604482015260640161077b565b80600b54610fc69190611d24565b3410156110265760405162461bcd60e51b815260206004820152602860248201527f4e6f7420656e6f75676820726f73652073656e7420666f7220746865207472616044820152673739b0b1ba34b7b760c11b606482015260840161077b565b61091333826110f4565b6008546001600160a01b0316331461105a5760405162461bcd60e51b815260040161077b90611cac565b80516109d3906010906020840190611842565b60008054821080156105c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109d3828260405180602001604052806000815250611668565b6000611119826112fe565b9050836001600160a01b031681600001516001600160a01b0316146111505760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116e575061116e85336104da565b8061118957503361117e8461065f565b6001600160a01b0316145b9050806111a957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111d057604051633a954ecd60e21b815260040160405180910390fd5b6111dc60008487611098565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112b25760005482146112b2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561140157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113ff5780516001600160a01b031615611395579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113fa579392505050565b611395565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a1903390899088908890600401611d43565b6020604051808303816000875af19250505080156114dc575060408051601f3d908101601f191682019092526114d991810190611d80565b60015b61153a573d80801561150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b508051600003611532576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546105dc90611bef565b60608160000361158e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115b857806115a281611d9d565b91506115b19050600a83611dcc565b9150611592565b60008167ffffffffffffffff8111156115d3576115d3611a14565b6040519080825280601f01601f1916602001820160405280156115fd576020820181803683370190505b5090505b841561155057611612600183611de0565b915061161f600a86611df7565b61162a906030611c94565b60f81b81838151811061163f5761163f611e0b565b60200101906001600160f81b031916908160001a905350611661600a86611dcc565b9450611601565b61072b83838360016000546001600160a01b03851661169957604051622e076360e81b815260040160405180910390fd5b836000036116ba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561176c57506001600160a01b0387163b15155b156117f4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117bd600088848060010195508861146c565b6117da576040516368d2bf6b60e11b815260040160405180910390fd5b8082036117725782600054146117ef57600080fd5b611839565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117f5575b506000556112f7565b82805461184e90611bef565b90600052602060002090601f01602090048101928261187057600085556118b6565b82601f1061188957805160ff19168380011785556118b6565b828001600101855582156118b6579182015b828111156118b657825182559160200191906001019061189b565b506118c29291506118c6565b5090565b5b808211156118c257600081556001016118c7565b6001600160e01b03198116811461091357600080fd5b60006020828403121561190357600080fd5b8135610dc6816118db565b60005b83811015611929578181015183820152602001611911565b83811115610c3c5750506000910152565b6000815180845261195281602086016020860161190e565b601f01601f19169290920160200192915050565b602081526000610dc6602083018461193a565b60006020828403121561198b57600080fd5b5035919050565b80356001600160a01b03811681146119a957600080fd5b919050565b600080604083850312156119c157600080fd5b6119ca83611992565b946020939093013593505050565b6000806000606084860312156119ed57600080fd5b6119f684611992565b9250611a0460208501611992565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a4557611a45611a14565b604051601f8501601f19908116603f01168101908282118183101715611a6d57611a6d611a14565b81604052809350858152868686011115611a8657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ab257600080fd5b813567ffffffffffffffff811115611ac957600080fd5b8201601f81018413611ada57600080fd5b61155084823560208401611a2a565b600060208284031215611afb57600080fd5b610dc682611992565b60008060408385031215611b1757600080fd5b611b2083611992565b915060208301358015158114611b3557600080fd5b809150509250929050565b60008060008060808587031215611b5657600080fd5b611b5f85611992565b9350611b6d60208601611992565b925060408501359150606085013567ffffffffffffffff811115611b9057600080fd5b8501601f81018713611ba157600080fd5b611bb087823560208401611a2a565b91505092959194509250565b60008060408385031215611bcf57600080fd5b611bd883611992565b9150611be660208401611992565b90509250929050565b600181811c90821680611c0357607f821691505b602082108103611c2357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526035908201527f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320696e60408201527410309039b4b733b632903a3930b739b0b1ba34b7b760591b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca757611ca7611c7e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008451611cf381846020890161190e565b845190830190611d0781836020890161190e565b8451910190611d1a81836020880161190e565b0195945050505050565b6000816000190483118215151615611d3e57611d3e611c7e565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d769083018461193a565b9695505050505050565b600060208284031215611d9257600080fd5b8151610dc6816118db565b600060018201611daf57611daf611c7e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ddb57611ddb611db6565b500490565b600082821015611df257611df2611c7e565b500390565b600082611e0657611e06611db6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220aace56f4c765213f005da59f2f743a59cfd932c940c201d2f4d9f93d42b38db364736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d536f3564666531726e5076387a6a4e396b35655155343745394a313666455753396861676e555533527356570000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636352211e116100f7578063c668286211610095578063eec3199511610064578063eec3199514610508578063f2fde38b14610528578063f31b5b3314610548578063fe2c7fee1461055b57600080fd5b8063c66828621461044f578063c87b56dd14610480578063ca2bbb6f146104a0578063e985e9c5146104bf57600080fd5b80638da5cb5b116100d15780638da5cb5b146103dc57806395d89b41146103fa578063a22cb4651461040f578063b88d4fde1461042f57600080fd5b80636352211e1461038757806370a08231146103a7578063715018a6146103c757600080fd5b806323b872dd116101645780634c2612471161013e5780634c2612471461031857806355f804b3146103385780635fd8c7101461035857806362f096401461036d57600080fd5b806323b872dd146102c357806342842e0e146102e35780634b812b521461030357600080fd5b8063081812fc116101a0578063081812fc1461023d578063095ea7b3146102755780630c93610a1461029757806318160ddd146102aa57600080fd5b806301ffc9a7146101c7578063058488bc146101fc57806306fdde031461021b575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118f1565b61057b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50600b545b6040519081526020016101f3565b34801561022757600080fd5b506102306105cd565b6040516101f39190611966565b34801561024957600080fd5b5061025d610258366004611979565b61065f565b6040516001600160a01b0390911681526020016101f3565b34801561028157600080fd5b506102956102903660046119ae565b6106a3565b005b6102956102a5366004611979565b610730565b3480156102b657600080fd5b506001546000540361020d565b3480156102cf57600080fd5b506102956102de3660046119d8565b610916565b3480156102ef57600080fd5b506102956102fe3660046119d8565b610921565b34801561030f57600080fd5b5060095461020d565b34801561032457600080fd5b50610295610333366004611aa0565b61093c565b34801561034457600080fd5b50610295610353366004611aa0565b6109d7565b34801561036457600080fd5b50610295610a14565b34801561037957600080fd5b50600d546101e79060ff1681565b34801561039357600080fd5b5061025d6103a2366004611979565b610ab6565b3480156103b357600080fd5b5061020d6103c2366004611ae9565b610ac8565b3480156103d357600080fd5b50610295610b17565b3480156103e857600080fd5b506008546001600160a01b031661025d565b34801561040657600080fd5b50610230610b4d565b34801561041b57600080fd5b5061029561042a366004611b04565b610b5c565b34801561043b57600080fd5b5061029561044a366004611b40565b610bf1565b34801561045b57600080fd5b5061023060405180604001604052806005815260200164173539b7b760d91b81525081565b34801561048c57600080fd5b5061023061049b366004611979565b610c42565b3480156104ac57600080fd5b50600d546101e790610100900460ff1681565b3480156104cb57600080fd5b506101e76104da366004611bbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051457600080fd5b50610295610523366004611979565b610dcd565b34801561053457600080fd5b50610295610543366004611ae9565b610dfc565b610295610556366004611979565b610e94565b34801561056757600080fd5b50610295610576366004611aa0565b611030565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105dc90611bef565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611bef565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061066a8261106d565b610687576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ae82610ab6565b9050806001600160a01b0316836001600160a01b0316036106e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610702575061070081336104da565b155b15610720576040516367d9dca160e11b815260040160405180910390fd5b61072b838383611098565b505050565b3332146107845760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206d696e742066726f6d20736d61727420636f6e74726163747360448201526064015b60405180910390fd5b600d5460ff166107d65760405162461bcd60e51b815260206004820152601f60248201527f467265652073616c65206973206e6f742061637469766520616e796d6f726500604482015260640161077b565b600a548111156107f85760405162461bcd60e51b815260040161077b90611c29565b600954816108096001546000540390565b6108139190611c94565b106108585760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e74206d6f7265204e46547360581b604482015260640161077b565b336000908152600e6020526040902054601490610876908390611c94565b11156108c45760405162461bcd60e51b815260206004820152601c60248201527f4d61782066726565204e465473206d696e74656420616c726561647900000000604482015260640161077b565b6108ce33826110f4565b336000908152600e6020526040812080548392906108ed908490611c94565b9091555061029a90506109036001546000540390565b1061091357600d805460ff191690555b50565b61072b83838361110e565b61072b83838360405180602001604052806000815250610bf1565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161077b90611cac565b600d54610100900460ff16156109b15760405162461bcd60e51b815260206004820152601060248201526f1053149150511648149155915053115160821b604482015260640161077b565b600d805461ff00191661010017905580516109d390600f906020840190611842565b5050565b6008546001600160a01b03163314610a015760405162461bcd60e51b815260040161077b90611cac565b80516109d390600f906020840190611842565b6008546001600160a01b03163314610a3e5760405162461bcd60e51b815260040161077b90611cac565b60004711610a7d5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b604482015260640161077b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610913573d6000803e3d6000fd5b6000610ac1826112fe565b5192915050565b60006001600160a01b038216610af1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b415760405162461bcd60e51b815260040161077b90611cac565b610b4b600061141a565b565b6060600380546105dc90611bef565b336001600160a01b03831603610b855760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bfc84848461110e565b6001600160a01b0383163b15158015610c1e5750610c1c8484848461146c565b155b15610c3c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c4d8261106d565b610cb15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077b565b600d54610100900460ff16610d525760108054610ccd90611bef565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf990611bef565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b50505050509050919050565b6000610d5c611558565b90506000815111610d7c5760405180602001604052806000815250610dc6565b80610d8684611567565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610db693929190611ce1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610df75760405162461bcd60e51b815260040161077b90611cac565b600b55565b6008546001600160a01b03163314610e265760405162461bcd60e51b815260040161077b90611cac565b6001600160a01b038116610e8b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077b565b6109138161141a565b333214610ee35760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206d696e742066726f6d20736d61727420636f6e747261637473604482015260640161077b565b600d5460ff1615610f365760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206973207374696c6c2061637469766500000000000000604482015260640161077b565b600a54811115610f585760405162461bcd60e51b815260040161077b90611c29565b60095481610f696001546000540390565b610f739190611c94565b10610fb85760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e74206d6f7265204e46547360581b604482015260640161077b565b80600b54610fc69190611d24565b3410156110265760405162461bcd60e51b815260206004820152602860248201527f4e6f7420656e6f75676820726f73652073656e7420666f7220746865207472616044820152673739b0b1ba34b7b760c11b606482015260840161077b565b61091333826110f4565b6008546001600160a01b0316331461105a5760405162461bcd60e51b815260040161077b90611cac565b80516109d3906010906020840190611842565b60008054821080156105c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109d3828260405180602001604052806000815250611668565b6000611119826112fe565b9050836001600160a01b031681600001516001600160a01b0316146111505760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116e575061116e85336104da565b8061118957503361117e8461065f565b6001600160a01b0316145b9050806111a957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111d057604051633a954ecd60e21b815260040160405180910390fd5b6111dc60008487611098565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112b25760005482146112b2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561140157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113ff5780516001600160a01b031615611395579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113fa579392505050565b611395565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a1903390899088908890600401611d43565b6020604051808303816000875af19250505080156114dc575060408051601f3d908101601f191682019092526114d991810190611d80565b60015b61153a573d80801561150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b508051600003611532576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546105dc90611bef565b60608160000361158e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115b857806115a281611d9d565b91506115b19050600a83611dcc565b9150611592565b60008167ffffffffffffffff8111156115d3576115d3611a14565b6040519080825280601f01601f1916602001820160405280156115fd576020820181803683370190505b5090505b841561155057611612600183611de0565b915061161f600a86611df7565b61162a906030611c94565b60f81b81838151811061163f5761163f611e0b565b60200101906001600160f81b031916908160001a905350611661600a86611dcc565b9450611601565b61072b83838360016000546001600160a01b03851661169957604051622e076360e81b815260040160405180910390fd5b836000036116ba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561176c57506001600160a01b0387163b15155b156117f4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117bd600088848060010195508861146c565b6117da576040516368d2bf6b60e11b815260040160405180910390fd5b8082036117725782600054146117ef57600080fd5b611839565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117f5575b506000556112f7565b82805461184e90611bef565b90600052602060002090601f01602090048101928261187057600085556118b6565b82601f1061188957805160ff19168380011785556118b6565b828001600101855582156118b6579182015b828111156118b657825182559160200191906001019061189b565b506118c29291506118c6565b5090565b5b808211156118c257600081556001016118c7565b6001600160e01b03198116811461091357600080fd5b60006020828403121561190357600080fd5b8135610dc6816118db565b60005b83811015611929578181015183820152602001611911565b83811115610c3c5750506000910152565b6000815180845261195281602086016020860161190e565b601f01601f19169290920160200192915050565b602081526000610dc6602083018461193a565b60006020828403121561198b57600080fd5b5035919050565b80356001600160a01b03811681146119a957600080fd5b919050565b600080604083850312156119c157600080fd5b6119ca83611992565b946020939093013593505050565b6000806000606084860312156119ed57600080fd5b6119f684611992565b9250611a0460208501611992565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a4557611a45611a14565b604051601f8501601f19908116603f01168101908282118183101715611a6d57611a6d611a14565b81604052809350858152868686011115611a8657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ab257600080fd5b813567ffffffffffffffff811115611ac957600080fd5b8201601f81018413611ada57600080fd5b61155084823560208401611a2a565b600060208284031215611afb57600080fd5b610dc682611992565b60008060408385031215611b1757600080fd5b611b2083611992565b915060208301358015158114611b3557600080fd5b809150509250929050565b60008060008060808587031215611b5657600080fd5b611b5f85611992565b9350611b6d60208601611992565b925060408501359150606085013567ffffffffffffffff811115611b9057600080fd5b8501601f81018713611ba157600080fd5b611bb087823560208401611a2a565b91505092959194509250565b60008060408385031215611bcf57600080fd5b611bd883611992565b9150611be660208401611992565b90509250929050565b600181811c90821680611c0357607f821691505b602082108103611c2357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526035908201527f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320696e60408201527410309039b4b733b632903a3930b739b0b1ba34b7b760591b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca757611ca7611c7e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008451611cf381846020890161190e565b845190830190611d0781836020890161190e565b8451910190611d1a81836020880161190e565b0195945050505050565b6000816000190483118215151615611d3e57611d3e611c7e565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d769083018461193a565b9695505050505050565b600060208284031215611d9257600080fd5b8151610dc6816118db565b600060018201611daf57611daf611c7e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ddb57611ddb611db6565b500490565b600082821015611df257611df2611c7e565b500390565b600082611e0657611e06611db6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220aace56f4c765213f005da59f2f743a59cfd932c940c201d2f4d9f93d42b38db364736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d536f3564666531726e5076387a6a4e396b35655155343745394a313666455753396861676e555533527356570000000000000000000000
-----Decoded View---------------
Arg [0] : unrevealedURI (string): ipfs://QmSo5dfe1rnPv8zjN9k5eQU47E9J16fEWS9hagnUU3RsVW
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d536f3564666531726e5076387a6a4e396b356551553437
Arg [3] : 45394a313666455753396861676e555533527356570000000000000000000000
Deployed Bytecode Sourcemap
44823:3485:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27005:305;;;;;;;;;;-1:-1:-1;27005:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27005:305:0;;;;;;;;47893:104;;;;;;;;;;-1:-1:-1;47969:20:0;;47893:104;;;738:25:1;;;726:2;711:18;47893:104:0;592:177:1;30118:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31621:204::-;;;;;;;;;;-1:-1:-1;31621:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;31621:204:0;1710:203:1;31184:371:0;;;;;;;;;;-1:-1:-1;31184:371:0;;;;;:::i;:::-;;:::i;:::-;;46591:704;;;;;;:::i;:::-;;:::i;26254:303::-;;;;;;;;;;-1:-1:-1;26508:12:0;;26298:7;26492:13;:28;26254:303;;32486:170;;;;;;;;;;-1:-1:-1;32486:170:0;;;;;:::i;:::-;;:::i;32727:185::-;;;;;;;;;;-1:-1:-1;32727:185:0;;;;;:::i;:::-;;:::i;47797:88::-;;;;;;;;;;-1:-1:-1;47867:10:0;;47797:88;;45809:188;;;;;;;;;;-1:-1:-1;45809:188:0;;;;;:::i;:::-;;:::i;45449:102::-;;;;;;;;;;-1:-1:-1;45449:102:0;;;;;:::i;:::-;;:::i;48128:177::-;;;;;;;;;;;;;:::i;45071:35::-;;;;;;;;;;-1:-1:-1;45071:35:0;;;;;;;;29926:125;;;;;;;;;;-1:-1:-1;29926:125:0;;;;;:::i;:::-;;:::i;27374:206::-;;;;;;;;;;-1:-1:-1;27374:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;30287:104;;;;;;;;;;;;;:::i;31897:287::-;;;;;;;;;;-1:-1:-1;31897:287:0;;;;;:::i;:::-;;:::i;32983:369::-;;;;;;;;;;-1:-1:-1;32983:369:0;;;;;:::i;:::-;;:::i;45113:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45113:46:0;;;;;47303:486;;;;;;;;;;-1:-1:-1;47303:486:0;;;;;:::i;:::-;;:::i;45168:31::-;;;;;;;;;;-1:-1:-1;45168:31:0;;;;;;;;;;;32255:164;;;;;;;;;;-1:-1:-1;32255:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32376:25:0;;;32352:4;32376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32255:164;48005:115;;;;;;;;;;-1:-1:-1;48005:115:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;46005:578::-;;;;;;:::i;:::-;;:::i;45559:120::-;;;;;;;;;;-1:-1:-1;45559:120:0;;;;;:::i;:::-;;:::i;27005:305::-;27107:4;-1:-1:-1;;;;;;27144:40:0;;-1:-1:-1;;;27144:40:0;;:105;;-1:-1:-1;;;;;;;27201:48:0;;-1:-1:-1;;;27201:48:0;27144:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27266:36;27124:178;27005:305;-1:-1:-1;;27005:305:0:o;30118:100::-;30172:13;30205:5;30198:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30118:100;:::o;31621:204::-;31689:7;31714:16;31722:7;31714;:16::i;:::-;31709:64;;31739:34;;-1:-1:-1;;;31739:34:0;;;;;;;;;;;31709:64;-1:-1:-1;31793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31793:24:0;;31621:204::o;31184:371::-;31257:13;31273:24;31289:7;31273:15;:24::i;:::-;31257:40;;31318:5;-1:-1:-1;;;;;31312:11:0;:2;-1:-1:-1;;;;;31312:11:0;;31308:48;;31332:24;;-1:-1:-1;;;31332:24:0;;;;;;;;;;;31308:48;2916:10;-1:-1:-1;;;;;31373:21:0;;;;;;:63;;-1:-1:-1;31399:37:0;31416:5;2916:10;32255:164;:::i;31399:37::-;31398:38;31373:63;31369:138;;;31460:35;;-1:-1:-1;;;31460:35:0;;;;;;;;;;;31369:138;31519:28;31528:2;31532:7;31541:5;31519:8;:28::i;:::-;31246:309;31184:371;;:::o;46591:704::-;46669:10;46683:9;46669:23;46661:68;;;;-1:-1:-1;;;46661:68:0;;5980:2:1;46661:68:0;;;5962:21:1;;;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;6110:18;;46661:68:0;;;;;;;;;46748:16;;;;46740:60;;;;-1:-1:-1;;;46740:60:0;;6341:2:1;46740:60:0;;;6323:21:1;6380:2;6360:18;;;6353:30;6419:33;6399:18;;;6392:61;6470:18;;46740:60:0;6139:355:1;46740:60:0;46835:24;;46819:12;:40;;46811:106;;;;-1:-1:-1;;;46811:106:0;;;;;;;:::i;:::-;46967:10;;46952:12;46936:13;26508:12;;26298:7;26492:13;:28;;26254:303;46936:13;:28;;;;:::i;:::-;:41;46928:75;;;;-1:-1:-1;;;46928:75:0;;7388:2:1;46928:75:0;;;7370:21:1;7427:2;7407:18;;;7400:30;-1:-1:-1;;;7446:18:1;;;7439:51;7507:18;;46928:75:0;7186:345:1;46928:75:0;47032:10;47022:21;;;;:9;:21;;;;;;47061:2;;47022:36;;47046:12;;47022:36;:::i;:::-;:41;;47014:82;;;;-1:-1:-1;;;47014:82:0;;7738:2:1;47014:82:0;;;7720:21:1;7777:2;7757:18;;;7750:30;7816;7796:18;;;7789:58;7864:18;;47014:82:0;7536:352:1;47014:82:0;47109:35;47119:10;47131:12;47109:9;:35::i;:::-;47175:10;47165:21;;;;:9;:21;;;;;:37;;47190:12;;47165:21;:37;;47190:12;;47165:37;:::i;:::-;;;;-1:-1:-1;47233:3:0;;-1:-1:-1;47218:13:0;26508:12;;26298:7;26492:13;:28;;26254:303;47218:13;:18;47215:73;;47252:16;:24;;-1:-1:-1;;47252:24:0;;;47215:73;46591:704;:::o;32486:170::-;32620:28;32630:4;32636:2;32640:7;32620:9;:28::i;32727:185::-;32865:39;32882:4;32888:2;32892:7;32865:39;;;;;;;;;;;;:16;:39::i;45809:188::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;45890:11:::1;::::0;::::1;::::0;::::1;;;45889:12;45881:41;;;::::0;-1:-1:-1;;;45881:41:0;;8456:2:1;45881:41:0::1;::::0;::::1;8438:21:1::0;8495:2;8475:18;;;8468:30;-1:-1:-1;;;8514:18:1;;;8507:46;8570:18;;45881:41:0::1;8254:340:1::0;45881:41:0::1;45933:11;:18:::0;;-1:-1:-1;;45933:18:0::1;;;::::0;;45962:27;;::::1;::::0;:13:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45809:188:::0;:::o;45449:102::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;45520:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48128:177::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48220:1:::1;48196:21;:25;48188:50;;;::::0;-1:-1:-1;;;48188:50:0;;8801:2:1;48188:50:0::1;::::0;::::1;8783:21:1::0;8840:2;8820:18;;;8813:30;-1:-1:-1;;;8859:18:1;;;8852:42;8911:18;;48188:50:0::1;8599:336:1::0;48188:50:0::1;4185:6:::0;;48249:48:::1;::::0;-1:-1:-1;;;;;4185:6:0;;;;48275:21:::1;48249:48:::0;::::1;;;::::0;::::1;::::0;;;48275:21;4185:6;48249:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;29926:125:::0;29990:7;30017:21;30030:7;30017:12;:21::i;:::-;:26;;29926:125;-1:-1:-1;;29926:125:0:o;27374:206::-;27438:7;-1:-1:-1;;;;;27462:19:0;;27458:60;;27490:28;;-1:-1:-1;;;27490:28:0;;;;;;;;;;;27458:60;-1:-1:-1;;;;;;27544:19:0;;;;;:12;:19;;;;;:27;;;;27374:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;30287:104::-;30343:13;30376:7;30369:14;;;;;:::i;31897:287::-;2916:10;-1:-1:-1;;;;;31996:24:0;;;31992:54;;32029:17;;-1:-1:-1;;;32029:17:0;;;;;;;;;;;31992:54;2916:10;32059:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32059:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32059:53:0;;;;;;;;;;32128:48;;540:41:1;;;32059:42:0;;2916:10;32128:48;;513:18:1;32128:48:0;;;;;;;31897:287;;:::o;32983:369::-;33150:28;33160:4;33166:2;33170:7;33150:9;:28::i;:::-;-1:-1:-1;;;;;33193:13:0;;7108:19;:23;;33193:76;;;;;33213:56;33244:4;33250:2;33254:7;33263:5;33213:30;:56::i;:::-;33212:57;33193:76;33189:156;;;33293:40;;-1:-1:-1;;;33293:40:0;;;;;;;;;;;33189:156;32983:369;;;;:::o;47303:486::-;47376:13;47425:16;47433:7;47425;:16::i;:::-;47407:105;;;;-1:-1:-1;;;47407:105:0;;9142:2:1;47407:105:0;;;9124:21:1;9181:2;9161:18;;;9154:30;9220:34;9200:18;;;9193:62;-1:-1:-1;;;9271:18:1;;;9264:45;9326:19;;47407:105:0;8940:411:1;47407:105:0;47529:11;;;;;;;47525:38;;47549:14;47542:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47303:486;;;:::o;47525:38::-;47574:28;47605:10;:8;:10::i;:::-;47574:41;;47664:1;47639:14;47633:28;:32;:148;;;;;;;;;;;;;;;;;47705:14;47721:25;47738:7;47721:16;:25::i;:::-;47748:13;;;;;;;;;;;;;-1:-1:-1;;;47748:13:0;;;47688:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47633:148;47626:155;47303:486;-1:-1:-1;;;47303:486:0:o;48005:115::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48082:20:::1;:30:::0;48005:115::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;10227:2:1;5102:73:0::1;::::0;::::1;10209:21:1::0;10266:2;10246:18;;;10239:30;10305:34;10285:18;;;10278:62;-1:-1:-1;;;10356:18:1;;;10349:36;10402:19;;5102:73:0::1;10025:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;46005:578::-:0;46086:10;46100:9;46086:23;46078:68;;;;-1:-1:-1;;;46078:68:0;;5980:2:1;46078:68:0;;;5962:21:1;;;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;6110:18;;46078:68:0;5778:356:1;46078:68:0;46166:16;;;;46165:17;46157:55;;;;-1:-1:-1;;;46157:55:0;;10634:2:1;46157:55:0;;;10616:21:1;10673:2;10653:18;;;10646:30;10712:27;10692:18;;;10685:55;10757:18;;46157:55:0;10432:349:1;46157:55:0;46247:24;;46231:12;:40;;46223:106;;;;-1:-1:-1;;;46223:106:0;;;;;;;:::i;:::-;46379:10;;46364:12;46348:13;26508:12;;26298:7;26492:13;:28;;26254:303;46348:13;:28;;;;:::i;:::-;:41;46340:75;;;;-1:-1:-1;;;46340:75:0;;7388:2:1;46340:75:0;;;7370:21:1;7427:2;7407:18;;;7400:30;-1:-1:-1;;;7446:18:1;;;7439:51;7507:18;;46340:75:0;7186:345:1;46340:75:0;46470:12;46447:20;;:35;;;;:::i;:::-;46434:9;:48;;46426:101;;;;-1:-1:-1;;;46426:101:0;;11161:2:1;46426:101:0;;;11143:21:1;11200:2;11180:18;;;11173:30;11239:34;11219:18;;;11212:62;-1:-1:-1;;;11290:18:1;;;11283:38;11338:19;;46426:101:0;10959:404:1;46426:101:0;46540:35;46550:10;46562:12;46540:9;:35::i;45559:120::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;45641:30;;::::1;::::0;:14:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;33607:174::-:0;33664:4;33728:13;;33718:7;:23;33688:85;;;;-1:-1:-1;;33746:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33746:27:0;;;;33745:28;;33607:174::o;41764:196::-;41879:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41879:29:0;-1:-1:-1;;;;;41879:29:0;;;;;;;;;41924:28;;41879:24;;41924:28;;;;;;;41764:196;;;:::o;33789:104::-;33858:27;33868:2;33872:8;33858:27;;;;;;;;;;;;:9;:27::i;36707:2130::-;36822:35;36860:21;36873:7;36860:12;:21::i;:::-;36822:59;;36920:4;-1:-1:-1;;;;;36898:26:0;:13;:18;;;-1:-1:-1;;;;;36898:26:0;;36894:67;;36933:28;;-1:-1:-1;;;36933:28:0;;;;;;;;;;;36894:67;36974:22;2916:10;-1:-1:-1;;;;;37000:20:0;;;;:73;;-1:-1:-1;37037:36:0;37054:4;2916:10;32255:164;:::i;37037:36::-;37000:126;;;-1:-1:-1;2916:10:0;37090:20;37102:7;37090:11;:20::i;:::-;-1:-1:-1;;;;;37090:36:0;;37000:126;36974:153;;37145:17;37140:66;;37171:35;;-1:-1:-1;;;37171:35:0;;;;;;;;;;;37140:66;-1:-1:-1;;;;;37221:16:0;;37217:52;;37246:23;;-1:-1:-1;;;37246:23:0;;;;;;;;;;;37217:52;37390:35;37407:1;37411:7;37420:4;37390:8;:35::i;:::-;-1:-1:-1;;;;;37721:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37721:31:0;;;;;;;-1:-1:-1;;37721:31:0;;;;;;;37767:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37767:29:0;;;;;;;;;;;37847:20;;;:11;:20;;;;;;37882:18;;-1:-1:-1;;;;;;37915:49:0;;;;-1:-1:-1;;;37948:15:0;37915:49;;;;;;;;;;38238:11;;38298:24;;;;;38341:13;;37847:20;;38298:24;;38341:13;38337:384;;38551:13;;38536:11;:28;38532:174;;38589:20;;38658:28;;;;38632:54;;-1:-1:-1;;;38632:54:0;-1:-1:-1;;;;;;38632:54:0;;;-1:-1:-1;;;;;38589:20:0;;38632:54;;;;38532:174;37696:1036;;;38768:7;38764:2;-1:-1:-1;;;;;38749:27:0;38758:4;-1:-1:-1;;;;;38749:27:0;;;;;;;;;;;38787:42;36811:2026;;36707:2130;;;:::o;28755:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28866:7:0;28949:13;;28942:4;:20;28911:886;;;28983:31;29017:17;;;:11;:17;;;;;;;;;28983:51;;;;;;;;;-1:-1:-1;;;;;28983:51:0;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;;;;29053:729;;29103:14;;-1:-1:-1;;;;;29103:28:0;;29099:101;;29167:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29099:101::-;-1:-1:-1;;;29542:6:0;29587:17;;;;:11;:17;;;;;;;;;29575:29;;;;;;;;;-1:-1:-1;;;;;29575:29:0;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;;;29635:28;29631:109;;29703:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29631:109::-;29502:261;;;28964:833;28911:886;29825:31;;-1:-1:-1;;;29825:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;42452:667::-;42636:72;;-1:-1:-1;;;42636:72:0;;42615:4;;-1:-1:-1;;;;;42636:36:0;;;;;:72;;2916:10;;42687:4;;42693:7;;42702:5;;42636:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42636:72:0;;;;;;;;-1:-1:-1;;42636:72:0;;;;;;;;;;;;:::i;:::-;;;42632:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42870:6;:13;42887:1;42870:18;42866:235;;42916:40;;-1:-1:-1;;;42916:40:0;;;;;;;;;;;42866:235;43059:6;43053:13;43044:6;43040:2;43036:15;43029:38;42632:480;-1:-1:-1;;;;;;42755:55:0;-1:-1:-1;;;42755:55:0;;-1:-1:-1;42632:480:0;42452:667;;;;;;:::o;45687:114::-;45747:13;45780;45773:20;;;;;:::i;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34256:163;34379:32;34385:2;34389:8;34399:5;34406:4;34817:20;34840:13;-1:-1:-1;;;;;34868:16:0;;34864:48;;34893:19;;-1:-1:-1;;;34893:19:0;;;;;;;;;;;34864:48;34927:8;34939:1;34927:13;34923:44;;34949:18;;-1:-1:-1;;;34949:18:0;;;;;;;;;;;34923:44;-1:-1:-1;;;;;35318:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35377:49:0;;35318:44;;;;;;;;35377:49;;;;-1:-1:-1;;35318:44:0;;;;;;35377:49;;;;;;;;;;;;;;;;35443:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35493:66:0;;;;-1:-1:-1;;;35543:15:0;35493:66;;;;;;;;;;35443:25;35640:23;;;35684:4;:23;;;;-1:-1:-1;;;;;;35692:13:0;;7108:19;:23;;35692:15;35680:641;;;35728:314;35759:38;;35784:12;;-1:-1:-1;;;;;35759:38:0;;;35776:1;;35759:38;;35776:1;;35759:38;35825:69;35864:1;35868:2;35872:14;;;;;;35888:5;35825:30;:69::i;:::-;35820:174;;35930:40;;-1:-1:-1;;;35930:40:0;;;;;;;;;;;35820:174;36037:3;36021:12;:19;35728:314;;36123:12;36106:13;;:29;36102:43;;36137:8;;;36102:43;35680:641;;;36186:120;36217:40;;36242:14;;;;;-1:-1:-1;;;;;36217:40:0;;;36234:1;;36217:40;;36234:1;;36217:40;36301:3;36285:12;:19;36186:120;;35680:641;-1:-1:-1;36335:13:0;:28;36385:60;32983:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6499:417::-;6701:2;6683:21;;;6740:2;6720:18;;;6713:30;6779:34;6774:2;6759:18;;6752:62;-1:-1:-1;;;6845:2:1;6830:18;;6823:51;6906:3;6891:19;;6499:417::o;6921:127::-;6982:10;6977:3;6973:20;6970:1;6963:31;7013:4;7010:1;7003:15;7037:4;7034:1;7027:15;7053:128;7093:3;7124:1;7120:6;7117:1;7114:13;7111:39;;;7130:18;;:::i;:::-;-1:-1:-1;7166:9:1;;7053:128::o;7893:356::-;8095:2;8077:21;;;8114:18;;;8107:30;8173:34;8168:2;8153:18;;8146:62;8240:2;8225:18;;7893:356::o;9356:664::-;9583:3;9621:6;9615:13;9637:53;9683:6;9678:3;9671:4;9663:6;9659:17;9637:53;:::i;:::-;9753:13;;9712:16;;;;9775:57;9753:13;9712:16;9809:4;9797:17;;9775:57;:::i;:::-;9899:13;;9854:20;;;9921:57;9899:13;9854:20;9955:4;9943:17;;9921:57;:::i;:::-;9994:20;;9356:664;-1:-1:-1;;;;;9356:664:1:o;10786:168::-;10826:7;10892:1;10888;10884:6;10880:14;10877:1;10874:21;10869:1;10862:9;10855:17;10851:45;10848:71;;;10899:18;;:::i;:::-;-1:-1:-1;10939:9:1;;10786:168::o;11368:489::-;-1:-1:-1;;;;;11637:15:1;;;11619:34;;11689:15;;11684:2;11669:18;;11662:43;11736:2;11721:18;;11714:34;;;11784:3;11779:2;11764:18;;11757:31;;;11562:4;;11805:46;;11831:19;;11823:6;11805:46;:::i;:::-;11797:54;11368:489;-1:-1:-1;;;;;;11368:489:1:o;11862:249::-;11931:6;11984:2;11972:9;11963:7;11959:23;11955:32;11952:52;;;12000:1;11997;11990:12;11952:52;12032:9;12026:16;12051:30;12075:5;12051:30;:::i;12116:135::-;12155:3;12176:17;;;12173:43;;12196:18;;:::i;:::-;-1:-1:-1;12243:1:1;12232:13;;12116:135::o;12256:127::-;12317:10;12312:3;12308:20;12305:1;12298:31;12348:4;12345:1;12338:15;12372:4;12369:1;12362:15;12388:120;12428:1;12454;12444:35;;12459:18;;:::i;:::-;-1:-1:-1;12493:9:1;;12388:120::o;12513:125::-;12553:4;12581:1;12578;12575:8;12572:34;;;12586:18;;:::i;:::-;-1:-1:-1;12623:9:1;;12513:125::o;12643:112::-;12675:1;12701;12691:35;;12706:18;;:::i;:::-;-1:-1:-1;12740:9:1;;12643:112::o;12760:127::-;12821:10;12816:3;12812:20;12809:1;12802:31;12852:4;12849:1;12842:15;12876:4;12873:1;12866:15
Swarm Source
ipfs://aace56f4c765213f005da59f2f743a59cfd932c940c201d2f4d9f93d42b38db3
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.