ERC-721
Overview
Max Total Supply
317 NMFER
Holders
120
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 NMFERLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NerdMfers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-26 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; library Address { function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } 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"); } 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/utils/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/introspection/[email protected] 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/token/ERC721/[email protected] 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/[email protected] 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/token/ERC721/extensions/[email protected] 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 @openzeppelin/contracts/utils/[email protected] 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/utils/introspection/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; contract NerdMfers is ERC721A { using Strings for uint256; string public baseURI; uint256 public cost; uint256 public maxSupply; uint256 public maxMintAmount = 42; uint256 public maxMintPerTransaction = 42; address public owner; bool public preSaleLive; bool public mintLive; mapping(address => bool) private whiteList; mapping(address => uint256) private mintCount; modifier onlyOwner() { require(owner == msg.sender, "not owner"); _; } modifier preSaleIsLive() { require(preSaleLive, "preSale not live"); _; } modifier mintIsLive() { require(mintLive, "mint not live"); _; } constructor(string memory defaultBaseURI) ERC721A("Nerd Mfers", "NMFER", maxMintAmount) { owner = msg.sender; baseURI = defaultBaseURI; maxSupply = 8888; maxMintPerTransaction; cost = 15000000000000000; } function isWhiteListed(address _address) public view returns (bool){ return whiteList[_address]; } function mintedByAddressCount(address _address) public view returns (uint256){ return mintCount[_address]; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxSupply(uint256 _newSupply) public onlyOwner { maxSupply = _newSupply; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setmaxMintPerTransaction(uint256 _newmaxMintPerTransaction) public onlyOwner { maxMintPerTransaction = _newmaxMintPerTransaction; } // Minting functions function mint(uint256 _mintAmount) external payable mintIsLive { address _to = msg.sender; uint256 minted = mintCount[_to]; require(minted + _mintAmount <= maxMintAmount, "mint over max"); require(_mintAmount <= maxMintPerTransaction, "amount must < max"); require(totalSupply() + _mintAmount <= maxSupply, "mint over supply"); require(msg.value >= cost * _mintAmount, "insufficient funds"); mintCount[_to] = minted + _mintAmount; _safeMint(msg.sender, _mintAmount); } function preSaleMint(uint256 _mintAmount) external payable preSaleIsLive { address _to = msg.sender; uint256 minted = mintCount[_to]; require(whiteList[_to], "not whitelisted"); require(minted + _mintAmount <= maxMintAmount, "mint over max"); require(totalSupply() + _mintAmount <= maxSupply, "mint over supply"); require(msg.value >= cost * _mintAmount, "insufficient funds"); mintCount[_to] = minted + _mintAmount; _safeMint(msg.sender, _mintAmount); } // Only Owner executable functions function mintByOwner(address _to, uint256 _mintAmount) external onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "mint over supply"); if (_mintAmount <= maxBatchSize) { _safeMint(_to, _mintAmount); return; } uint256 leftToMint = _mintAmount; while (leftToMint > 0) { if (leftToMint <= maxBatchSize) { _safeMint(_to, leftToMint); return; } _safeMint(_to, maxBatchSize); leftToMint = leftToMint - maxBatchSize; } } function addToWhiteList(address[] calldata _addresses) external onlyOwner { for (uint256 i; i < _addresses.length; i++) { whiteList[_addresses[i]] = true; } } function togglePreSaleLive() external onlyOwner { if (preSaleLive) { preSaleLive = false; return; } preSaleLive = true; } function toggleMintLive() external onlyOwner { if (mintLive) { mintLive = false; return; } preSaleLive = false; mintLive = true; } function setBaseURI(string memory _newURI) external onlyOwner { baseURI = _newURI; } function withdraw() external payable onlyOwner { (bool hs, ) = payable(0xB61c7802302c64E0F52696268Cf8dC36C88bD4CB).call{value: address(this).balance * 15 / 100}(""); require(hs); (bool os, ) = payable(0xe7796e6Daca0aaE1afA6d064Bf20Af3Be630Ee03).call{value: address(this).balance * 15 / 100}(""); require(os); (bool st, ) = payable(0x4067F688AD8ff2D12E465C1af5d1B98F8509ae12).call{value: address(this).balance * 10 / 100}(""); require(st); (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } function setOwnersExplicit(uint256 quantity) external onlyOwner { _setOwnersExplicit(quantity); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); string memory baseTokenURI = _baseURI(); string memory json = ".json"; return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, _tokenId.toString(), json)) : ''; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } fallback() external payable { } receive() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"defaultBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintedByAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"preSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerTransaction","type":"uint256"}],"name":"setmaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405260016000556000600755602a600b55602a600c553480156200002557600080fd5b5060405162002e3e38038062002e3e833981016040819052620000489162000208565b6040518060400160405280600a8152602001694e657264204d6665727360b01b815250604051806040016040528060058152602001642726a322a960d91b815250600b5460008111620000f15760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200010690600190602086019062000162565b5081516200011c90600290602085019062000162565b506080525050600d80546001600160a01b0319163317905580516200014990600890602084019062000162565b50506122b8600a5566354a6ba7a1800060095562000337565b8280546200017090620002e4565b90600052602060002090601f016020900481019282620001945760008555620001df565b82601f10620001af57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df578251825591602001919060010190620001c2565b50620001ed929150620001f1565b5090565b5b80821115620001ed5760008155600101620001f2565b600060208083850312156200021c57600080fd5b82516001600160401b03808211156200023457600080fd5b818501915085601f8301126200024957600080fd5b8151818111156200025e576200025e62000321565b604051601f8201601f19908116603f0116810190838211818310171562000289576200028962000321565b816040528281528886848701011115620002a257600080fd5b600093505b82841015620002c65784840186015181850187015292850192620002a7565b82841115620002d85760008684830101525b98975050505050505050565b600181811c90821680620002f957607f821691505b602082108114156200031b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612ac16200037d60003960008181610c6701528181610ca401528181610cd901528181610d0201528181611dc301528181611ded01526121c20152612ac16000f3fe6080604052600436106102275760003560e01c80636352211e116101225780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd14610676578063d5abeb0114610696578063d7224ba0146106ac578063e8656fcc146106c2578063e985e9c5146106e357005b80638da5cb5b146105ee57806395d89b411461060e578063a0712d6814610623578063a22cb46514610636578063b88d4fde1461065657005b8063740d73f3116100e9578063740d73f3146105665780637835c6351461058657806378835f42146105995780637f00c7a6146105b957806389bdeec6146105d957005b80636352211e146104b85780636c0360eb146104d85780636f8b44b0146104ed5780636f9170f61461050d57806370a082311461054657005b80632d20fb60116101aa57806342842e0e1161017157806342842e0e1461041757806344a0d68a146104375780634f6ccce71461045757806355f804b3146104775780635bd90b761461049757005b80632d20fb60146103795780632f745c59146103995780633542aee2146103b957806337351b0f146103d95780633ccfd60b1461040f57005b8063105739b8116101ee578063105739b81461030357806313faede61461031857806318160ddd1461032e578063239c70ae1461034357806323b872dd1461035957005b806301f569971461023057806301ffc9a71461025957806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e357005b3661022e57005b005b34801561023c57600080fd5b50610246600c5481565b6040519081526020015b60405180910390f35b34801561026557600080fd5b506102796102743660046126ea565b61072c565b6040519015158152602001610250565b34801561029557600080fd5b5061029e610799565b6040516102509190612832565b3480156102b757600080fd5b506102cb6102c636600461276d565b61082b565b6040516001600160a01b039091168152602001610250565b3480156102ef57600080fd5b5061022e6102fe36600461264b565b6108bb565b34801561030f57600080fd5b5061022e6109d3565b34801561032457600080fd5b5061024660095481565b34801561033a57600080fd5b50600054610246565b34801561034f57600080fd5b50610246600b5481565b34801561036557600080fd5b5061022e610374366004612557565b610a34565b34801561038557600080fd5b5061022e61039436600461276d565b610a3f565b3480156103a557600080fd5b506102466103b436600461264b565b610a75565b3480156103c557600080fd5b5061022e6103d436600461264b565b610be3565b3480156103e557600080fd5b506102466103f4366004612502565b6001600160a01b03166000908152600f602052604090205490565b61022e610d2e565b34801561042357600080fd5b5061022e610432366004612557565b610f5f565b34801561044357600080fd5b5061022e61045236600461276d565b610f7a565b34801561046357600080fd5b5061024661047236600461276d565b610fa9565b34801561048357600080fd5b5061022e610492366004612724565b61100b565b3480156104a357600080fd5b50600d5461027990600160a01b900460ff1681565b3480156104c457600080fd5b506102cb6104d336600461276d565b611048565b3480156104e457600080fd5b5061029e61105a565b3480156104f957600080fd5b5061022e61050836600461276d565b6110e8565b34801561051957600080fd5b50610279610528366004612502565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561055257600080fd5b50610246610561366004612502565b611117565b34801561057257600080fd5b5061022e610581366004612675565b6111a8565b61022e61059436600461276d565b611244565b3480156105a557600080fd5b5061022e6105b436600461276d565b61140f565b3480156105c557600080fd5b5061022e6105d436600461276d565b61143e565b3480156105e557600080fd5b5061022e61146d565b3480156105fa57600080fd5b50600d546102cb906001600160a01b031681565b34801561061a57600080fd5b5061029e6114cd565b61022e61063136600461276d565b6114dc565b34801561064257600080fd5b5061022e61065136600461260f565b6115c6565b34801561066257600080fd5b5061022e610671366004612593565b61168b565b34801561068257600080fd5b5061029e61069136600461276d565b6116be565b3480156106a257600080fd5b50610246600a5481565b3480156106b857600080fd5b5061024660075481565b3480156106ce57600080fd5b50600d5461027990600160a81b900460ff1681565b3480156106ef57600080fd5b506102796106fe366004612524565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506001600160e01b0319821663780e9d6360e01b145b8061079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107a8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906129b3565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610838826000541190565b61089f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c682611048565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610896565b336001600160a01b0382161480610951575061095181336106fe565b6109c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610896565b6109ce838383611791565b505050565b600d546001600160a01b031633146109fd5760405162461bcd60e51b815260040161089690612898565b600d54600160a81b900460ff1615610a1e57600d805460ff60a81b19169055565b600d805461ffff60a01b1916600160a81b179055565b6109ce8383836117ed565b600d546001600160a01b03163314610a695760405162461bcd60e51b815260040161089690612898565b610a7281611b75565b50565b6000610a8083611117565b8210610ad95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610896565b600080549080805b83811015610b83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3457805192505b876001600160a01b0316836001600160a01b03161415610b705786841415610b625750935061079392505050565b83610b6c816129ee565b9450505b5080610b7b816129ee565b915050610ae1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610896565b600d546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161089690612898565b600a5481610c1a60005490565b610c2491906128e6565b1115610c655760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b7f00000000000000000000000000000000000000000000000000000000000000008111610c9a57610c968282611d27565b5050565b805b80156109ce577f00000000000000000000000000000000000000000000000000000000000000008111610cd3576109ce8382611d27565b610cfd837f0000000000000000000000000000000000000000000000000000000000000000611d27565b610d277f000000000000000000000000000000000000000000000000000000000000000082612959565b9050610c9c565b600d546001600160a01b03163314610d585760405162461bcd60e51b815260040161089690612898565b600073b61c7802302c64e0f52696268cf8dc36c88bd4cb6064610d7c47600f612912565b610d8691906128fe565b604051600081818185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610dd557600080fd5b600073e7796e6daca0aae1afa6d064bf20af3be630ee036064610df947600f612912565b610e0391906128fe565b604051600081818185875af1925050503d8060008114610e3f576040519150601f19603f3d011682016040523d82523d6000602084013e610e44565b606091505b5050905080610e5257600080fd5b6000734067f688ad8ff2d12e465c1af5d1b98f8509ae126064610e7647600a612912565b610e8091906128fe565b604051600081818185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b5050905080610ecf57600080fd5b604051600090339047908381818185875af1925050503d8060008114610f11576040519150601f19603f3d011682016040523d82523d6000602084013e610f16565b606091505b5050905080610f595760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610896565b50505050565b6109ce8383836040518060200160405280600081525061168b565b600d546001600160a01b03163314610fa45760405162461bcd60e51b815260040161089690612898565b600955565b6000805482106110075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610896565b5090565b600d546001600160a01b031633146110355760405162461bcd60e51b815260040161089690612898565b8051610c969060089060208401906123e0565b600061105382611d41565b5192915050565b60088054611067906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611093906129b3565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b505050505081565b600d546001600160a01b031633146111125760405162461bcd60e51b815260040161089690612898565b600a55565b60006001600160a01b0382166111835760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610896565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146111d25760405162461bcd60e51b815260040161089690612898565b60005b818110156109ce576001600e60008585858181106111f5576111f5612a49565b905060200201602081019061120a9190612502565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061123c816129ee565b9150506111d5565b600d54600160a01b900460ff166112905760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b6044820152606401610896565b336000818152600f6020908152604080832054600e9092529091205460ff166112ed5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610896565b600b546112fa84836128e6565b11156113385760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600a548361134560005490565b61134f91906128e6565b11156113905760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b8260095461139e9190612912565b3410156113e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610896565b6113ec83826128e6565b6001600160a01b0383166000908152600f60205260409020556109ce3384611d27565b600d546001600160a01b031633146114395760405162461bcd60e51b815260040161089690612898565b600c55565b600d546001600160a01b031633146114685760405162461bcd60e51b815260040161089690612898565b600b55565b600d546001600160a01b031633146114975760405162461bcd60e51b815260040161089690612898565b600d54600160a01b900460ff16156114b857600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6060600280546107a8906129b3565b600d54600160a81b900460ff166115255760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610896565b336000818152600f6020526040902054600b5461154284836128e6565b11156115805760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600c548311156113385760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b6044820152606401610896565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610896565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116968484846117ed565b6116a284848484611eeb565b610f595760405162461bcd60e51b815260040161089690612845565b60606116cb826000541190565b6117175760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610896565b6000611721611ff8565b604080518082019091526005815264173539b7b760d91b602082015281519192509061175c5760405180602001604052806000815250611789565b8161176685612007565b82604051602001611779939291906127b2565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f882611d41565b80519091506000906001600160a01b0316336001600160a01b0316148061182f5750336118248461082b565b6001600160a01b0316145b806118415750815161184190336106fe565b9050806118ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610896565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610896565b6001600160a01b0384166119835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610896565b6119936000848460000151611791565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b0316612931565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166128bb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a998460016128e6565b6000818152600360205260409020549091506001600160a01b0316611b2b57611ac3816000541190565b15611b2b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bc55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610896565b60006001611bd384846128e6565b611bdd9190612959565b90506001600054611bee9190612959565b811115611c07576001600054611c049190612959565b90505b611c12816000541190565b611c6d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610896565b815b818111611d13576000818152600360205260409020546001600160a01b0316611d01576000611c9d82611d41565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0b816129ee565b915050611c6f565b50611d1f8160016128e6565b600755505050565b610c96828260405180602001604052806000815250612105565b6040805180820190915260008082526020820152611d60826000541190565b611dbf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610896565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e2057611e127f000000000000000000000000000000000000000000000000000000000000000084612959565b611e1d9060016128e6565b90505b825b818110611e8a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7757949350505050565b5080611e828161299c565b915050611e22565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610896565b60006001600160a01b0384163b15611fed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2f9033908990889088906004016127f5565b602060405180830381600087803b158015611f4957600080fd5b505af1925050508015611f79575060408051601f3d908101601f19168201909252611f7691810190612707565b60015b611fd3573d808015611fa7576040519150601f19603f3d011682016040523d82523d6000602084013e611fac565b606091505b508051611fcb5760405162461bcd60e51b815260040161089690612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b6060600880546107a8906129b3565b60608161202b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612055578061203f816129ee565b915061204e9050600a836128fe565b915061202f565b60008167ffffffffffffffff81111561207057612070612a5f565b6040519080825280601f01601f19166020018201604052801561209a576020820181803683370190505b5090505b8415611789576120af600183612959565b91506120bc600a86612a09565b6120c79060306128e6565b60f81b8183815181106120dc576120dc612a49565b60200101906001600160f81b031916908160001a9053506120fe600a866128fe565b945061209e565b6000546001600160a01b0384166121685760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610896565b612173816000541190565b156121c05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000000083111561223b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610896565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122979087906128bb565b6001600160801b031681526020018583602001516122b591906128bb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123996000888488611eeb565b6123b55760405162461bcd60e51b815260040161089690612845565b816123bf816129ee565b92505080806123cd906129ee565b91505061234c565b506000819055611b6d565b8280546123ec906129b3565b90600052602060002090601f01602090048101928261240e5760008555612454565b82601f1061242757805160ff1916838001178555612454565b82800160010185558215612454579182015b82811115612454578251825591602001919060010190612439565b506110079291505b80821115611007576000815560010161245c565b600067ffffffffffffffff8084111561248b5761248b612a5f565b604051601f8501601f19908116603f011681019082821181831017156124b3576124b3612a5f565b816040528093508581528686860111156124cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124fd57600080fd5b919050565b60006020828403121561251457600080fd5b61251d826124e6565b9392505050565b6000806040838503121561253757600080fd5b612540836124e6565b915061254e602084016124e6565b90509250929050565b60008060006060848603121561256c57600080fd5b612575846124e6565b9250612583602085016124e6565b9150604084013590509250925092565b600080600080608085870312156125a957600080fd5b6125b2856124e6565b93506125c0602086016124e6565b925060408501359150606085013567ffffffffffffffff8111156125e357600080fd5b8501601f810187136125f457600080fd5b61260387823560208401612470565b91505092959194509250565b6000806040838503121561262257600080fd5b61262b836124e6565b91506020830135801515811461264057600080fd5b809150509250929050565b6000806040838503121561265e57600080fd5b612667836124e6565b946020939093013593505050565b6000806020838503121561268857600080fd5b823567ffffffffffffffff808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b8135818111156126c357600080fd5b8660208260051b85010111156126d857600080fd5b60209290920196919550909350505050565b6000602082840312156126fc57600080fd5b813561251d81612a75565b60006020828403121561271957600080fd5b815161251d81612a75565b60006020828403121561273657600080fd5b813567ffffffffffffffff81111561274d57600080fd5b8201601f8101841361275e57600080fd5b61178984823560208401612470565b60006020828403121561277f57600080fd5b5035919050565b6000815180845261279e816020860160208601612970565b601f01601f19169290920160200192915050565b600084516127c4818460208901612970565b8451908301906127d8818360208901612970565b84519101906127eb818360208801612970565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282890830184612786565b9695505050505050565b60208152600061251d6020830184612786565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60006001600160801b038083168185168083038211156128dd576128dd612a1d565b01949350505050565b600082198211156128f9576128f9612a1d565b500190565b60008261290d5761290d612a33565b500490565b600081600019048311821515161561292c5761292c612a1d565b500290565b60006001600160801b038381169083168181101561295157612951612a1d565b039392505050565b60008282101561296b5761296b612a1d565b500390565b60005b8381101561298b578181015183820152602001612973565b83811115610f595750506000910152565b6000816129ab576129ab612a1d565b506000190190565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a1d565b5060010190565b600082612a1857612a18612a33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7257600080fdfea26469706673582212206210a3e76d8fc5eae880ae99b138da4d323756f3ced183e76e6d1cdd680f99d764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f62617365000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102275760003560e01c80636352211e116101225780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd14610676578063d5abeb0114610696578063d7224ba0146106ac578063e8656fcc146106c2578063e985e9c5146106e357005b80638da5cb5b146105ee57806395d89b411461060e578063a0712d6814610623578063a22cb46514610636578063b88d4fde1461065657005b8063740d73f3116100e9578063740d73f3146105665780637835c6351461058657806378835f42146105995780637f00c7a6146105b957806389bdeec6146105d957005b80636352211e146104b85780636c0360eb146104d85780636f8b44b0146104ed5780636f9170f61461050d57806370a082311461054657005b80632d20fb60116101aa57806342842e0e1161017157806342842e0e1461041757806344a0d68a146104375780634f6ccce71461045757806355f804b3146104775780635bd90b761461049757005b80632d20fb60146103795780632f745c59146103995780633542aee2146103b957806337351b0f146103d95780633ccfd60b1461040f57005b8063105739b8116101ee578063105739b81461030357806313faede61461031857806318160ddd1461032e578063239c70ae1461034357806323b872dd1461035957005b806301f569971461023057806301ffc9a71461025957806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e357005b3661022e57005b005b34801561023c57600080fd5b50610246600c5481565b6040519081526020015b60405180910390f35b34801561026557600080fd5b506102796102743660046126ea565b61072c565b6040519015158152602001610250565b34801561029557600080fd5b5061029e610799565b6040516102509190612832565b3480156102b757600080fd5b506102cb6102c636600461276d565b61082b565b6040516001600160a01b039091168152602001610250565b3480156102ef57600080fd5b5061022e6102fe36600461264b565b6108bb565b34801561030f57600080fd5b5061022e6109d3565b34801561032457600080fd5b5061024660095481565b34801561033a57600080fd5b50600054610246565b34801561034f57600080fd5b50610246600b5481565b34801561036557600080fd5b5061022e610374366004612557565b610a34565b34801561038557600080fd5b5061022e61039436600461276d565b610a3f565b3480156103a557600080fd5b506102466103b436600461264b565b610a75565b3480156103c557600080fd5b5061022e6103d436600461264b565b610be3565b3480156103e557600080fd5b506102466103f4366004612502565b6001600160a01b03166000908152600f602052604090205490565b61022e610d2e565b34801561042357600080fd5b5061022e610432366004612557565b610f5f565b34801561044357600080fd5b5061022e61045236600461276d565b610f7a565b34801561046357600080fd5b5061024661047236600461276d565b610fa9565b34801561048357600080fd5b5061022e610492366004612724565b61100b565b3480156104a357600080fd5b50600d5461027990600160a01b900460ff1681565b3480156104c457600080fd5b506102cb6104d336600461276d565b611048565b3480156104e457600080fd5b5061029e61105a565b3480156104f957600080fd5b5061022e61050836600461276d565b6110e8565b34801561051957600080fd5b50610279610528366004612502565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561055257600080fd5b50610246610561366004612502565b611117565b34801561057257600080fd5b5061022e610581366004612675565b6111a8565b61022e61059436600461276d565b611244565b3480156105a557600080fd5b5061022e6105b436600461276d565b61140f565b3480156105c557600080fd5b5061022e6105d436600461276d565b61143e565b3480156105e557600080fd5b5061022e61146d565b3480156105fa57600080fd5b50600d546102cb906001600160a01b031681565b34801561061a57600080fd5b5061029e6114cd565b61022e61063136600461276d565b6114dc565b34801561064257600080fd5b5061022e61065136600461260f565b6115c6565b34801561066257600080fd5b5061022e610671366004612593565b61168b565b34801561068257600080fd5b5061029e61069136600461276d565b6116be565b3480156106a257600080fd5b50610246600a5481565b3480156106b857600080fd5b5061024660075481565b3480156106ce57600080fd5b50600d5461027990600160a81b900460ff1681565b3480156106ef57600080fd5b506102796106fe366004612524565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506001600160e01b0319821663780e9d6360e01b145b8061079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107a8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906129b3565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610838826000541190565b61089f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c682611048565b9050806001600160a01b0316836001600160a01b031614156109355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610896565b336001600160a01b0382161480610951575061095181336106fe565b6109c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610896565b6109ce838383611791565b505050565b600d546001600160a01b031633146109fd5760405162461bcd60e51b815260040161089690612898565b600d54600160a81b900460ff1615610a1e57600d805460ff60a81b19169055565b600d805461ffff60a01b1916600160a81b179055565b6109ce8383836117ed565b600d546001600160a01b03163314610a695760405162461bcd60e51b815260040161089690612898565b610a7281611b75565b50565b6000610a8083611117565b8210610ad95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610896565b600080549080805b83811015610b83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b3457805192505b876001600160a01b0316836001600160a01b03161415610b705786841415610b625750935061079392505050565b83610b6c816129ee565b9450505b5080610b7b816129ee565b915050610ae1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610896565b600d546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161089690612898565b600a5481610c1a60005490565b610c2491906128e6565b1115610c655760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000002a8111610c9a57610c968282611d27565b5050565b805b80156109ce577f000000000000000000000000000000000000000000000000000000000000002a8111610cd3576109ce8382611d27565b610cfd837f000000000000000000000000000000000000000000000000000000000000002a611d27565b610d277f000000000000000000000000000000000000000000000000000000000000002a82612959565b9050610c9c565b600d546001600160a01b03163314610d585760405162461bcd60e51b815260040161089690612898565b600073b61c7802302c64e0f52696268cf8dc36c88bd4cb6064610d7c47600f612912565b610d8691906128fe565b604051600081818185875af1925050503d8060008114610dc2576040519150601f19603f3d011682016040523d82523d6000602084013e610dc7565b606091505b5050905080610dd557600080fd5b600073e7796e6daca0aae1afa6d064bf20af3be630ee036064610df947600f612912565b610e0391906128fe565b604051600081818185875af1925050503d8060008114610e3f576040519150601f19603f3d011682016040523d82523d6000602084013e610e44565b606091505b5050905080610e5257600080fd5b6000734067f688ad8ff2d12e465c1af5d1b98f8509ae126064610e7647600a612912565b610e8091906128fe565b604051600081818185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b5050905080610ecf57600080fd5b604051600090339047908381818185875af1925050503d8060008114610f11576040519150601f19603f3d011682016040523d82523d6000602084013e610f16565b606091505b5050905080610f595760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610896565b50505050565b6109ce8383836040518060200160405280600081525061168b565b600d546001600160a01b03163314610fa45760405162461bcd60e51b815260040161089690612898565b600955565b6000805482106110075760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610896565b5090565b600d546001600160a01b031633146110355760405162461bcd60e51b815260040161089690612898565b8051610c969060089060208401906123e0565b600061105382611d41565b5192915050565b60088054611067906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611093906129b3565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b505050505081565b600d546001600160a01b031633146111125760405162461bcd60e51b815260040161089690612898565b600a55565b60006001600160a01b0382166111835760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610896565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146111d25760405162461bcd60e51b815260040161089690612898565b60005b818110156109ce576001600e60008585858181106111f5576111f5612a49565b905060200201602081019061120a9190612502565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061123c816129ee565b9150506111d5565b600d54600160a01b900460ff166112905760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b6044820152606401610896565b336000818152600f6020908152604080832054600e9092529091205460ff166112ed5760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610896565b600b546112fa84836128e6565b11156113385760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600a548361134560005490565b61134f91906128e6565b11156113905760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610896565b8260095461139e9190612912565b3410156113e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610896565b6113ec83826128e6565b6001600160a01b0383166000908152600f60205260409020556109ce3384611d27565b600d546001600160a01b031633146114395760405162461bcd60e51b815260040161089690612898565b600c55565b600d546001600160a01b031633146114685760405162461bcd60e51b815260040161089690612898565b600b55565b600d546001600160a01b031633146114975760405162461bcd60e51b815260040161089690612898565b600d54600160a01b900460ff16156114b857600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6060600280546107a8906129b3565b600d54600160a81b900460ff166115255760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610896565b336000818152600f6020526040902054600b5461154284836128e6565b11156115805760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610896565b600c548311156113385760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b6044820152606401610896565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610896565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116968484846117ed565b6116a284848484611eeb565b610f595760405162461bcd60e51b815260040161089690612845565b60606116cb826000541190565b6117175760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610896565b6000611721611ff8565b604080518082019091526005815264173539b7b760d91b602082015281519192509061175c5760405180602001604052806000815250611789565b8161176685612007565b82604051602001611779939291906127b2565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f882611d41565b80519091506000906001600160a01b0316336001600160a01b0316148061182f5750336118248461082b565b6001600160a01b0316145b806118415750815161184190336106fe565b9050806118ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610896565b846001600160a01b031682600001516001600160a01b03161461191f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610896565b6001600160a01b0384166119835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610896565b6119936000848460000151611791565b6001600160a01b03851660009081526004602052604081208054600192906119c59084906001600160801b0316612931565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a11918591166128bb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a998460016128e6565b6000818152600360205260409020549091506001600160a01b0316611b2b57611ac3816000541190565b15611b2b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bc55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610896565b60006001611bd384846128e6565b611bdd9190612959565b90506001600054611bee9190612959565b811115611c07576001600054611c049190612959565b90505b611c12816000541190565b611c6d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610896565b815b818111611d13576000818152600360205260409020546001600160a01b0316611d01576000611c9d82611d41565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0b816129ee565b915050611c6f565b50611d1f8160016128e6565b600755505050565b610c96828260405180602001604052806000815250612105565b6040805180820190915260008082526020820152611d60826000541190565b611dbf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610896565b60007f000000000000000000000000000000000000000000000000000000000000002a8310611e2057611e127f000000000000000000000000000000000000000000000000000000000000002a84612959565b611e1d9060016128e6565b90505b825b818110611e8a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7757949350505050565b5080611e828161299c565b915050611e22565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610896565b60006001600160a01b0384163b15611fed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2f9033908990889088906004016127f5565b602060405180830381600087803b158015611f4957600080fd5b505af1925050508015611f79575060408051601f3d908101601f19168201909252611f7691810190612707565b60015b611fd3573d808015611fa7576040519150601f19603f3d011682016040523d82523d6000602084013e611fac565b606091505b508051611fcb5760405162461bcd60e51b815260040161089690612845565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b6060600880546107a8906129b3565b60608161202b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612055578061203f816129ee565b915061204e9050600a836128fe565b915061202f565b60008167ffffffffffffffff81111561207057612070612a5f565b6040519080825280601f01601f19166020018201604052801561209a576020820181803683370190505b5090505b8415611789576120af600183612959565b91506120bc600a86612a09565b6120c79060306128e6565b60f81b8183815181106120dc576120dc612a49565b60200101906001600160f81b031916908160001a9053506120fe600a866128fe565b945061209e565b6000546001600160a01b0384166121685760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610896565b612173816000541190565b156121c05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610896565b7f000000000000000000000000000000000000000000000000000000000000002a83111561223b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610896565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122979087906128bb565b6001600160801b031681526020018583602001516122b591906128bb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123996000888488611eeb565b6123b55760405162461bcd60e51b815260040161089690612845565b816123bf816129ee565b92505080806123cd906129ee565b91505061234c565b506000819055611b6d565b8280546123ec906129b3565b90600052602060002090601f01602090048101928261240e5760008555612454565b82601f1061242757805160ff1916838001178555612454565b82800160010185558215612454579182015b82811115612454578251825591602001919060010190612439565b506110079291505b80821115611007576000815560010161245c565b600067ffffffffffffffff8084111561248b5761248b612a5f565b604051601f8501601f19908116603f011681019082821181831017156124b3576124b3612a5f565b816040528093508581528686860111156124cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124fd57600080fd5b919050565b60006020828403121561251457600080fd5b61251d826124e6565b9392505050565b6000806040838503121561253757600080fd5b612540836124e6565b915061254e602084016124e6565b90509250929050565b60008060006060848603121561256c57600080fd5b612575846124e6565b9250612583602085016124e6565b9150604084013590509250925092565b600080600080608085870312156125a957600080fd5b6125b2856124e6565b93506125c0602086016124e6565b925060408501359150606085013567ffffffffffffffff8111156125e357600080fd5b8501601f810187136125f457600080fd5b61260387823560208401612470565b91505092959194509250565b6000806040838503121561262257600080fd5b61262b836124e6565b91506020830135801515811461264057600080fd5b809150509250929050565b6000806040838503121561265e57600080fd5b612667836124e6565b946020939093013593505050565b6000806020838503121561268857600080fd5b823567ffffffffffffffff808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b8135818111156126c357600080fd5b8660208260051b85010111156126d857600080fd5b60209290920196919550909350505050565b6000602082840312156126fc57600080fd5b813561251d81612a75565b60006020828403121561271957600080fd5b815161251d81612a75565b60006020828403121561273657600080fd5b813567ffffffffffffffff81111561274d57600080fd5b8201601f8101841361275e57600080fd5b61178984823560208401612470565b60006020828403121561277f57600080fd5b5035919050565b6000815180845261279e816020860160208601612970565b601f01601f19169290920160200192915050565b600084516127c4818460208901612970565b8451908301906127d8818360208901612970565b84519101906127eb818360208801612970565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282890830184612786565b9695505050505050565b60208152600061251d6020830184612786565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b60006001600160801b038083168185168083038211156128dd576128dd612a1d565b01949350505050565b600082198211156128f9576128f9612a1d565b500190565b60008261290d5761290d612a33565b500490565b600081600019048311821515161561292c5761292c612a1d565b500290565b60006001600160801b038381169083168181101561295157612951612a1d565b039392505050565b60008282101561296b5761296b612a1d565b500390565b60005b8381101561298b578181015183820152602001612973565b83811115610f595750506000910152565b6000816129ab576129ab612a1d565b506000190190565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a1d565b5060010190565b600082612a1857612a18612a33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7257600080fdfea26469706673582212206210a3e76d8fc5eae880ae99b138da4d323756f3ced183e76e6d1cdd680f99d764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f62617365000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : defaultBaseURI (string): ipfs://base
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [2] : 697066733a2f2f62617365000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
56304:5578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56501:41;;;;;;;;;;;;;;;;;;;18153:25:1;;;18141:2;18126:18;56501:41:0;;;;;;;;43260:372;;;;;;;;;;-1:-1:-1;43260:372:0;;;;;:::i;:::-;;:::i;:::-;;;6670:14:1;;6663:22;6645:41;;6633:2;6618:18;43260:372:0;6505:187:1;45065:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46626:214::-;;;;;;;;;;-1:-1:-1;46626:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5968:32:1;;;5950:51;;5938:2;5923:18;46626:214:0;5804:203:1;46147:413:0;;;;;;;;;;-1:-1:-1;46147:413:0;;;;;:::i;:::-;;:::i;60209:197::-;;;;;;;;;;;;;:::i;56404:19::-;;;;;;;;;;;;;;;;41701:100;;;;;;;;;;-1:-1:-1;41754:7:0;41781:12;41701:100;;56461:33;;;;;;;;;;;;;;;;47502:162;;;;;;;;;;-1:-1:-1;47502:162:0;;;;;:::i;:::-;;:::i;61160:111::-;;;;;;;;;;-1:-1:-1;61160:111:0;;;;;:::i;:::-;;:::i;42365:823::-;;;;;;;;;;-1:-1:-1;42365:823:0;;;;;:::i;:::-;;:::i;59206:606::-;;;;;;;;;;-1:-1:-1;59206:606:0;;;;;:::i;:::-;;:::i;57420:122::-;;;;;;;;;;-1:-1:-1;57420:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;57515:19:0;57489:7;57515:19;;;:9;:19;;;;;;;57420:122;60520:632;;;:::i;47735:177::-;;;;;;;;;;-1:-1:-1;47735:177:0;;;;;:::i;:::-;;:::i;57550:86::-;;;;;;;;;;-1:-1:-1;57550:86:0;;;;;:::i;:::-;;:::i;41878:187::-;;;;;;;;;;-1:-1:-1;41878:187:0;;;;;:::i;:::-;;:::i;60414:98::-;;;;;;;;;;-1:-1:-1;60414:98:0;;;;;:::i;:::-;;:::i;56576:23::-;;;;;;;;;;-1:-1:-1;56576:23:0;;;;-1:-1:-1;;;56576:23:0;;;;;;44874:124;;;;;;;;;;-1:-1:-1;44874:124:0;;;;;:::i;:::-;;:::i;56376:21::-;;;;;;;;;;;;;:::i;57644:100::-;;;;;;;;;;-1:-1:-1;57644:100:0;;;;;:::i;:::-;;:::i;57300:112::-;;;;;;;;;;-1:-1:-1;57300:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;57385:19:0;57362:4;57385:19;;;:9;:19;;;;;;;;;57300:112;43696:221;;;;;;;;;;-1:-1:-1;43696:221:0;;;;;:::i;:::-;;:::i;59820:194::-;;;;;;;;;;-1:-1:-1;59820:194:0;;;;;:::i;:::-;;:::i;58625:533::-;;;;;;:::i;:::-;;:::i;57882:154::-;;;;;;;;;;-1:-1:-1;57882:154:0;;;;;:::i;:::-;;:::i;57752:122::-;;;;;;;;;;-1:-1:-1;57752:122:0;;;;;:::i;:::-;;:::i;60022:179::-;;;;;;;;;;;;;:::i;56549:20::-;;;;;;;;;;-1:-1:-1;56549:20:0;;;;-1:-1:-1;;;;;56549:20:0;;;45234:104;;;;;;;;;;;;;:::i;58070:547::-;;;;;;:::i;:::-;;:::i;46912:288::-;;;;;;;;;;-1:-1:-1;46912:288:0;;;;;:::i;:::-;;:::i;47983:355::-;;;;;;;;;;-1:-1:-1;47983:355:0;;;;;:::i;:::-;;:::i;61279:407::-;;;;;;;;;;-1:-1:-1;61279:407:0;;;;;:::i;:::-;;:::i;56430:24::-;;;;;;;;;;;;;;;;52643:43;;;;;;;;;;;;;;;;56606:20;;;;;;;;;;-1:-1:-1;56606:20:0;;;;-1:-1:-1;;;56606:20:0;;;;;;47271:164;;;;;;;;;;-1:-1:-1;47271:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47392:25:0;;;47368:4;47392:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47271:164;43260:372;43362:4;-1:-1:-1;;;;;;43399:40:0;;-1:-1:-1;;;43399:40:0;;:105;;-1:-1:-1;;;;;;;43456:48:0;;-1:-1:-1;;;43456:48:0;43399:105;:172;;;-1:-1:-1;;;;;;;43521:50:0;;-1:-1:-1;;;43521:50:0;43399:172;:225;;;-1:-1:-1;;;;;;;;;;18189:40:0;;;43588:36;43379:245;43260:372;-1:-1:-1;;43260:372:0:o;45065:100::-;45119:13;45152:5;45145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45065:100;:::o;46626:214::-;46694:7;46722:16;46730:7;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;46722:16;46714:74;;;;-1:-1:-1;;;46714:74:0;;17392:2:1;46714:74:0;;;17374:21:1;17431:2;17411:18;;;17404:30;17470:34;17450:18;;;17443:62;-1:-1:-1;;;17521:18:1;;;17514:43;17574:19;;46714:74:0;;;;;;;;;-1:-1:-1;46808:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46808:24:0;;46626:214::o;46147:413::-;46220:13;46236:24;46252:7;46236:15;:24::i;:::-;46220:40;;46285:5;-1:-1:-1;;;;;46279:11:0;:2;-1:-1:-1;;;;;46279:11:0;;;46271:58;;;;-1:-1:-1;;;46271:58:0;;12853:2:1;46271:58:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:32;13024:19;;46271:58:0;12651:398:1;46271:58:0;17148:10;-1:-1:-1;;;;;46364:21:0;;;;:62;;-1:-1:-1;46389:37:0;46406:5;17148:10;47271:164;:::i;46389:37::-;46342:169;;;;-1:-1:-1;;;46342:169:0;;9793:2:1;46342:169:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;9942:27;9922:18;;;9915:55;9987:19;;46342:169:0;9591:421:1;46342:169:0;46524:28;46533:2;46537:7;46546:5;46524:8;:28::i;:::-;46209:351;46147:413;;:::o;60209:197::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;60269:8:::1;::::0;-1:-1:-1;;;60269:8:0;::::1;;;60265:78;;;60294:8;:16:::0;;-1:-1:-1;;;;60294:16:0::1;::::0;;60209:197::o;60265:78::-:1;60353:11;:19:::0;;-1:-1:-1;;;;60383:15:0;-1:-1:-1;;;60383:15:0::1;::::0;;60209:197::o;47502:162::-;47628:28;47638:4;47644:2;47648:7;47628:9;:28::i;61160:111::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;61235:28:::1;61254:8;61235:18;:28::i;:::-;61160:111:::0;:::o;42365:823::-;42454:7;42490:16;42500:5;42490:9;:16::i;:::-;42482:5;:24;42474:71;;;;-1:-1:-1;;;42474:71:0;;7123:2:1;42474:71:0;;;7105:21:1;7162:2;7142:18;;;7135:30;7201:34;7181:18;;;7174:62;-1:-1:-1;;;7252:18:1;;;7245:32;7294:19;;42474:71:0;6921:398:1;42474:71:0;42556:22;41781:12;;;42556:22;;42688:426;42712:14;42708:1;:18;42688:426;;;42748:31;42782:14;;;:11;:14;;;;;;;;;42748:48;;;;;;;;;-1:-1:-1;;;;;42748:48:0;;;;;-1:-1:-1;;;42748:48:0;;;;;;;;;;;;42815:28;42811:103;;42884:14;;;-1:-1:-1;42811:103:0;42953:5;-1:-1:-1;;;;;42932:26:0;:17;-1:-1:-1;;;;;42932:26:0;;42928:175;;;42998:5;42983:11;:20;42979:77;;;-1:-1:-1;43035:1:0;-1:-1:-1;43028:8:0;;-1:-1:-1;;;43028:8:0;42979:77;43074:13;;;;:::i;:::-;;;;42928:175;-1:-1:-1;42728:3:0;;;;:::i;:::-;;;;42688:426;;;-1:-1:-1;43124:56:0;;-1:-1:-1;;;43124:56:0;;15817:2:1;43124:56:0;;;15799:21:1;15856:2;15836:18;;;15829:30;15895:34;15875:18;;;15868:62;-1:-1:-1;;;15946:18:1;;;15939:44;16000:19;;43124:56:0;15615:410:1;59206:606:0;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;59330:9:::1;;59315:11;59299:13;41754:7:::0;41781:12;;41701:100;59299:13:::1;:27;;;;:::i;:::-;:40;;59291:69;;;::::0;-1:-1:-1;;;59291:69:0;;14381:2:1;59291:69:0::1;::::0;::::1;14363:21:1::0;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:46;14495:18;;59291:69:0::1;14179:340:1::0;59291:69:0::1;59390:12;59375:11;:27;59371:108;;59419:27;59429:3;59434:11;59419:9;:27::i;:::-;59206:606:::0;;:::o;59371:108::-:1;59520:11:::0;59542:263:::1;59549:14:::0;;59542:263:::1;;59598:12;59584:10;:26;59580:118;;59631:26;59641:3;59646:10;59631:9;:26::i;59580:118::-;59712:28;59722:3;59727:12;59712:9;:28::i;:::-;59768:25;59781:12;59768:10:::0;:25:::1;:::i;:::-;59755:38;;59542:263;;60520:632:::0;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;60581:7:::1;60602:42;60687:3;60658:26;:21;60682:2;60658:26;:::i;:::-;:32;;;;:::i;:::-;60594:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60580:115;;;60714:2;60706:11;;;::::0;::::1;;60731:7;60752:42;60837:3;60808:26;:21;60832:2;60808:26;:::i;:::-;:32;;;;:::i;:::-;60744:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60730:115;;;60864:2;60856:11;;;::::0;::::1;;60881:7;60902:42;60987:3;60958:26;:21;60982:2;60958:26;:::i;:::-;:32;;;;:::i;:::-;60894:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60880:115;;;61014:2;61006:11;;;::::0;::::1;;61049:49;::::0;61031:12:::1;::::0;61049:10:::1;::::0;61072:21:::1;::::0;61031:12;61049:49;61031:12;61049:49;61072:21;61049:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61030:68;;;61117:7;61109:35;;;::::0;-1:-1:-1;;;61109:35:0;;7886:2:1;61109:35:0::1;::::0;::::1;7868:21:1::0;7925:2;7905:18;;;7898:30;-1:-1:-1;;;7944:18:1;;;7937:45;7999:18;;61109:35:0::1;7684:339:1::0;61109:35:0::1;60567:585;;;;60520:632::o:0;47735:177::-;47865:39;47882:4;47888:2;47892:7;47865:39;;;;;;;;;;;;:16;:39::i;57550:86::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;57613:4:::1;:15:::0;57550:86::o;41878:187::-;41945:7;41781:12;;41973:5;:21;41965:69;;;;-1:-1:-1;;;41965:69:0;;8641:2:1;41965:69:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:33;8813:19;;41965:69:0;8439:399:1;41965:69:0;-1:-1:-1;42052:5:0;41878:187::o;60414:98::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;60487:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;44874:124::-:0;44938:7;44965:20;44977:7;44965:11;:20::i;:::-;:25;;44874:124;-1:-1:-1;;44874:124:0:o;56376:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57644:100::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;57714:9:::1;:22:::0;57644:100::o;43696:221::-;43760:7;-1:-1:-1;;;;;43788:19:0;;43780:75;;;;-1:-1:-1;;;43780:75:0;;10572:2:1;43780:75:0;;;10554:21:1;10611:2;10591:18;;;10584:30;10650:34;10630:18;;;10623:62;-1:-1:-1;;;10701:18:1;;;10694:41;10752:19;;43780:75:0;10370:407:1;43780:75:0;-1:-1:-1;;;;;;43881:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43881:27:0;;43696:221::o;59820:194::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;59910:9:::1;59905:102;59921:21:::0;;::::1;59905:102;;;59991:4;59964:9;:24;59974:10;;59985:1;59974:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59964:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;59964:24:0;:31;;-1:-1:-1;;59964:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59944:3;::::1;::::0;::::1;:::i;:::-;;;;59905:102;;58625:533:::0;56883:11;;-1:-1:-1;;;56883:11:0;;;;56875:40;;;;-1:-1:-1;;;56875:40:0;;15472:2:1;56875:40:0;;;15454:21:1;15511:2;15491:18;;;15484:30;-1:-1:-1;;;15530:18:1;;;15523:46;15586:18;;56875:40:0;15270:340:1;56875:40:0;58723:10:::1;58709:11;58761:14:::0;;;:9:::1;:14;::::0;;;;;;;;58794:9:::1;:14:::0;;;;;;;::::1;;58786:42;;;::::0;-1:-1:-1;;;58786:42:0;;15128:2:1;58786:42:0::1;::::0;::::1;15110:21:1::0;15167:2;15147:18;;;15140:30;-1:-1:-1;;;15186:18:1;;;15179:45;15241:18;;58786:42:0::1;14926:339:1::0;58786:42:0::1;58871:13;::::0;58847:20:::1;58856:11:::0;58847:6;:20:::1;:::i;:::-;:37;;58839:63;;;::::0;-1:-1:-1;;;58839:63:0;;12511:2:1;58839:63:0::1;::::0;::::1;12493:21:1::0;12550:2;12530:18;;;12523:30;-1:-1:-1;;;12569:18:1;;;12562:43;12622:18;;58839:63:0::1;12309:337:1::0;58839:63:0::1;58952:9;;58937:11;58921:13;41754:7:::0;41781:12;;41701:100;58921:13:::1;:27;;;;:::i;:::-;:40;;58913:69;;;::::0;-1:-1:-1;;;58913:69:0;;14381:2:1;58913:69:0::1;::::0;::::1;14363:21:1::0;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:46;14495:18;;58913:69:0::1;14179:340:1::0;58913:69:0::1;59021:11;59014:4;;:18;;;;:::i;:::-;59001:9;:31;;58993:62;;;::::0;-1:-1:-1;;;58993:62:0;;13256:2:1;58993:62:0::1;::::0;::::1;13238:21:1::0;13295:2;13275:18;;;13268:30;-1:-1:-1;;;13314:18:1;;;13307:48;13372:18;;58993:62:0::1;13054:342:1::0;58993:62:0::1;59085:20;59094:11:::0;59085:6;:20:::1;:::i;:::-;-1:-1:-1::0;;;;;59068:14:0;::::1;;::::0;;;:9:::1;:14;::::0;;;;:37;59116:34:::1;59126:10;59138:11:::0;59116:9:::1;:34::i;57882:154::-:0;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;57979:21:::1;:49:::0;57882:154::o;57752:122::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;57833:13:::1;:33:::0;57752:122::o;60022:179::-;56778:5;;-1:-1:-1;;;;;56778:5:0;56787:10;56778:19;56770:41;;;;-1:-1:-1;;;56770:41:0;;;;;;;:::i;:::-;60085:11:::1;::::0;-1:-1:-1;;;60085:11:0;::::1;;;60081:84;;;60113:11;:19:::0;;-1:-1:-1;;;;60113:19:0::1;::::0;;60209:197::o;60081:84::-:1;60175:11;:18:::0;;-1:-1:-1;;;;60175:18:0::1;-1:-1:-1::0;;;60175:18:0::1;::::0;;60022:179::o;45234:104::-;45290:13;45323:7;45316:14;;;;;:::i;58070:547::-;56984:8;;-1:-1:-1;;;56984:8:0;;;;56976:34;;;;-1:-1:-1;;;56976:34:0;;9451:2:1;56976:34:0;;;9433:21:1;9490:2;9470:18;;;9463:30;-1:-1:-1;;;9509:18:1;;;9502:43;9562:18;;56976:34:0;9249:337:1;56976:34:0;58158:10:::1;58144:11;58196:14:::0;;;:9:::1;:14;::::0;;;;;58253:13:::1;::::0;58229:20:::1;58238:11:::0;58196:14;58229:20:::1;:::i;:::-;:37;;58221:63;;;::::0;-1:-1:-1;;;58221:63:0;;12511:2:1;58221:63:0::1;::::0;::::1;12493:21:1::0;12550:2;12530:18;;;12523:30;-1:-1:-1;;;12569:18:1;;;12562:43;12622:18;;58221:63:0::1;12309:337:1::0;58221:63:0::1;58318:21;;58303:11;:36;;58295:66;;;::::0;-1:-1:-1;;;58295:66:0;;11391:2:1;58295:66:0::1;::::0;::::1;11373:21:1::0;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:47;11506:18;;58295:66:0::1;11189:341:1::0;46912:288:0;-1:-1:-1;;;;;47007:24:0;;17148:10;47007:24;;46999:63;;;;-1:-1:-1;;;46999:63:0;;11737:2:1;46999:63:0;;;11719:21:1;11776:2;11756:18;;;11749:30;11815:28;11795:18;;;11788:56;11861:18;;46999:63:0;11535:350:1;46999:63:0;17148:10;47075:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;47075:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;47075:53:0;;;;;;;;;;47144:48;;6645:41:1;;;47075:42:0;;17148:10;47144:48;;6618:18:1;47144:48:0;;;;;;;46912:288;;:::o;47983:355::-;48142:28;48152:4;48158:2;48162:7;48142:9;:28::i;:::-;48203:48;48226:4;48232:2;48236:7;48245:5;48203:22;:48::i;:::-;48181:149;;;;-1:-1:-1;;;48181:149:0;;;;;;;:::i;61279:407::-;61353:13;61387:17;61395:8;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;61387:17;61379:61;;;;-1:-1:-1;;;61379:61:0;;7526:2:1;61379:61:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:33;7584:18;;;7577:61;7655:18;;61379:61:0;7324:355:1;61379:61:0;61453:26;61482:10;:8;:10::i;:::-;61503:28;;;;;;;;;;;;-1:-1:-1;;;61503:28:0;;;;61549:26;;61453:39;;-1:-1:-1;61503:28:0;61549:129;;;;;;;;;;;;;;;;;61619:12;61633:19;:8;:17;:19::i;:::-;61654:4;61602:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61549:129;61542:136;61279:407;-1:-1:-1;;;;61279:407:0:o;52439:196::-;52554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52554:29:0;-1:-1:-1;;;;;52554:29:0;;;;;;;;;52599:28;;52554:24;;52599:28;;;;;;;52439:196;;;:::o;50747:1574::-;50862:35;50900:20;50912:7;50900:11;:20::i;:::-;50975:18;;50862:58;;-1:-1:-1;50933:22:0;;-1:-1:-1;;;;;50959:34:0;17148:10;-1:-1:-1;;;;;50959:34:0;;:87;;;-1:-1:-1;17148:10:0;51010:20;51022:7;51010:11;:20::i;:::-;-1:-1:-1;;;;;51010:36:0;;50959:87;:154;;;-1:-1:-1;51080:18:0;;51063:50;;17148:10;47271:164;:::i;51063:50::-;50933:181;;51135:17;51127:80;;;;-1:-1:-1;;;51127:80:0;;12092:2:1;51127:80:0;;;12074:21:1;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:1;;;12214:48;12279:19;;51127:80:0;11890:414:1;51127:80:0;51250:4;-1:-1:-1;;;;;51228:26:0;:13;:18;;;-1:-1:-1;;;;;51228:26:0;;51220:77;;;;-1:-1:-1;;;51220:77:0;;10984:2:1;51220:77:0;;;10966:21:1;11023:2;11003:18;;;10996:30;11062:34;11042:18;;;11035:62;-1:-1:-1;;;11113:18:1;;;11106:36;11159:19;;51220:77:0;10782:402:1;51220:77:0;-1:-1:-1;;;;;51316:16:0;;51308:66;;;;-1:-1:-1;;;51308:66:0;;9045:2:1;51308:66:0;;;9027:21:1;9084:2;9064:18;;;9057:30;9123:34;9103:18;;;9096:62;-1:-1:-1;;;9174:18:1;;;9167:35;9219:19;;51308:66:0;8843:401:1;51308:66:0;51495:49;51512:1;51516:7;51525:13;:18;;;51495:8;:49::i;:::-;-1:-1:-1;;;;;51557:18:0;;;;;;:12;:18;;;;;:31;;51587:1;;51557:18;:31;;51587:1;;-1:-1:-1;;;;;51557:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;51557:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51599:16:0;;-1:-1:-1;51599:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;51599:16:0;;:29;;-1:-1:-1;;51599:29:0;;:::i;:::-;;;-1:-1:-1;;;;;51599:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51662:43:0;;;;;;;;-1:-1:-1;;;;;51662:43:0;;;;;;51688:15;51662:43;;;;;;;;;-1:-1:-1;51639:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;51639:66:0;-1:-1:-1;;;;;;51639:66:0;;;;;;;;;;;51967:11;51651:7;-1:-1:-1;51967:11:0;:::i;:::-;52034:1;51993:24;;;:11;:24;;;;;:29;51945:33;;-1:-1:-1;;;;;;51993:29:0;51989:227;;52057:20;52065:11;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;52057:20;52053:152;;;52125:64;;;;;;;;52140:18;;-1:-1:-1;;;;;52125:64:0;;;;;;52160:28;;;;52125:64;;;;;;;;;;-1:-1:-1;52098:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;52098:91:0;-1:-1:-1;;;;;;52098:91:0;;;;;;;;;;;;52053:152;52252:7;52248:2;-1:-1:-1;;;;;52233:27:0;52242:4;-1:-1:-1;;;;;52233:27:0;;;;;;;;;;;52271:42;50851:1470;;;50747:1574;;;:::o;52799:885::-;52893:24;;52936:12;52928:49;;;;-1:-1:-1;;;52928:49:0;;10219:2:1;52928:49:0;;;10201:21:1;10258:2;10238:18;;;10231:30;10297:26;10277:18;;;10270:54;10341:18;;52928:49:0;10017:348:1;52928:49:0;52988:16;53038:1;53007:28;53027:8;53007:17;:28;:::i;:::-;:32;;;;:::i;:::-;52988:51;;53080:1;53065:12;;:16;;;;:::i;:::-;53054:8;:27;53050:87;;;53124:1;53109:12;;:16;;;;:::i;:::-;53098:27;;53050:87;53260:17;53268:8;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;53260:17;53252:68;;;;-1:-1:-1;;;53252:68:0;;16232:2:1;53252:68:0;;;16214:21:1;16271:2;16251:18;;;16244:30;16310:34;16290:18;;;16283:62;-1:-1:-1;;;16361:18:1;;;16354:36;16407:19;;53252:68:0;16030:402:1;53252:68:0;53348:17;53331:296;53372:8;53367:1;:13;53331:296;;53437:1;53406:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;53406:19:0;53402:214;;53460:31;53494:14;53506:1;53494:11;:14::i;:::-;53544:56;;;;;;;;53559:14;;-1:-1:-1;;;;;53544:56:0;;;;;;53575:24;;;;53544:56;;;;;;;;;;-1:-1:-1;53527:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;53527:73:0;-1:-1:-1;;;;;;53527:73:0;;;;;;;;;;;;-1:-1:-1;53402:214:0;53382:3;;;;:::i;:::-;;;;53331:296;;;-1:-1:-1;53664:12:0;:8;53675:1;53664:12;:::i;:::-;53637:24;:39;-1:-1:-1;;;52799:885:0:o;48712:104::-;48781:27;48791:2;48795:8;48781:27;;;;;;;;;;;;:9;:27::i;44162:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;44265:16:0;44273:7;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;44265:16;44257:71;;;;-1:-1:-1;;;44257:71:0;;8230:2:1;44257:71:0;;;8212:21:1;8269:2;8249:18;;;8242:30;8308:34;8288:18;;;8281:62;-1:-1:-1;;;8359:18:1;;;8352:40;8409:19;;44257:71:0;8028:406:1;44257:71:0;44341:26;44393:12;44382:7;:23;44378:103;;44443:22;44453:12;44443:7;:22;:::i;:::-;:26;;44468:1;44443:26;:::i;:::-;44422:47;;44378:103;44513:7;44493:242;44530:18;44522:4;:26;44493:242;;44573:31;44607:17;;;:11;:17;;;;;;;;;44573:51;;;;;;;;;-1:-1:-1;;;;;44573:51:0;;;;;-1:-1:-1;;;44573:51:0;;;;;;;;;;;;44643:28;44639:85;;44699:9;44162:650;-1:-1:-1;;;;44162:650:0:o;44639:85::-;-1:-1:-1;44550:6:0;;;;:::i;:::-;;;;44493:242;;;-1:-1:-1;44747:57:0;;-1:-1:-1;;;44747:57:0;;16639:2:1;44747:57:0;;;16621:21:1;16678:2;16658:18;;;16651:30;16717:34;16697:18;;;16690:62;-1:-1:-1;;;16768:18:1;;;16761:45;16823:19;;44747:57:0;16437:411:1;54249:804:0;54404:4;-1:-1:-1;;;;;54425:13:0;;279:20;327:8;54421:625;;54461:72;;-1:-1:-1;;;54461:72:0;;-1:-1:-1;;;;;54461:36:0;;;;;:72;;17148:10;;54512:4;;54518:7;;54527:5;;54461:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54461:72:0;;;;;;;;-1:-1:-1;;54461:72:0;;;;;;;;;;;;:::i;:::-;;;54457:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54707:13:0;;54703:273;;54750:61;;-1:-1:-1;;;54750:61:0;;;;;;;:::i;54703:273::-;54926:6;54920:13;54911:6;54907:2;54903:15;54896:38;54457:534;-1:-1:-1;;;;;;54584:55:0;-1:-1:-1;;;54584:55:0;;-1:-1:-1;54577:62:0;;54421:625;-1:-1:-1;55030:4:0;54249:804;;;;;;:::o;61694:108::-;61754:13;61787:7;61780:14;;;;;:::i;5917:723::-;5973:13;6194:10;6190:53;;-1:-1:-1;;6221:10:0;;;;;;;;;;;;-1:-1:-1;;;6221:10:0;;;;;5917:723::o;6190:53::-;6268:5;6253:12;6309:78;6316:9;;6309:78;;6342:8;;;;:::i;:::-;;-1:-1:-1;6365:10:0;;-1:-1:-1;6373:2:0;6365:10;;:::i;:::-;;;6309:78;;;6397:19;6429:6;6419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6419:17:0;;6397:39;;6447:154;6454:10;;6447:154;;6481:11;6491:1;6481:11;;:::i;:::-;;-1:-1:-1;6550:10:0;6558:2;6550:5;:10;:::i;:::-;6537:24;;:2;:24;:::i;:::-;6524:39;;6507:6;6514;6507:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6507:56:0;;;;;;;;-1:-1:-1;6578:11:0;6587:2;6578:11;;:::i;:::-;;;6447:154;;49093:1400;49216:20;49239:12;-1:-1:-1;;;;;49270:16:0;;49262:62;;;;-1:-1:-1;;;49262:62:0;;14726:2:1;49262:62:0;;;14708:21:1;14765:2;14745:18;;;14738:30;14804:34;14784:18;;;14777:62;-1:-1:-1;;;14855:18:1;;;14848:31;14896:19;;49262:62:0;14524:397:1;49262:62:0;49469:21;49477:12;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;49469:21;49468:22;49460:64;;;;-1:-1:-1;;;49460:64:0;;14023:2:1;49460:64:0;;;14005:21:1;14062:2;14042:18;;;14035:30;14101:31;14081:18;;;14074:59;14150:18;;49460:64:0;13821:353:1;49460:64:0;49555:12;49543:8;:24;;49535:71;;;;-1:-1:-1;;;49535:71:0;;17806:2:1;49535:71:0;;;17788:21:1;17845:2;17825:18;;;17818:30;17884:34;17864:18;;;17857:62;-1:-1:-1;;;17935:18:1;;;17928:32;17977:19;;49535:71:0;17604:398:1;49535:71:0;-1:-1:-1;;;;;49726:16:0;;49693:30;49726:16;;;:12;:16;;;;;;;;;49693:49;;;;;;;;;-1:-1:-1;;;;;49693:49:0;;;;;-1:-1:-1;;;49693:49:0;;;;;;;;;;;49772:135;;;;;;;;49798:19;;49693:49;;49772:135;;;49798:39;;49828:8;;49798:39;:::i;:::-;-1:-1:-1;;;;;49772:135:0;;;;;49887:8;49852:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;49772:135:0;;;;;;-1:-1:-1;;;;;49753:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;49753:154:0;;;;;;;;;;;;49946:43;;;;;;;;;;;49972:15;49946:43;;;;;;;;49918:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;49918:71:0;-1:-1:-1;;;;;;49918:71:0;;;;;;;;;;;;;;;;;;49930:12;;50050:325;50074:8;50070:1;:12;50050:325;;;50109:38;;50134:12;;-1:-1:-1;;;;;50109:38:0;;;50126:1;;50109:38;;50126:1;;50109:38;50188:59;50219:1;50223:2;50227:12;50241:5;50188:22;:59::i;:::-;50162:172;;;;-1:-1:-1;;;50162:172:0;;;;;;;:::i;:::-;50349:14;;;;:::i;:::-;;;;50084:3;;;;;:::i;:::-;;;;50050:325;;;-1:-1:-1;50387:12:0;:27;;;50425:60;60520:632;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:664::-;5152:3;5190:6;5184:13;5206:53;5252:6;5247:3;5240:4;5232:6;5228:17;5206:53;:::i;:::-;5322:13;;5281:16;;;;5344:57;5322:13;5281:16;5378:4;5366:17;;5344:57;:::i;:::-;5468:13;;5423:20;;;5490:57;5468:13;5423:20;5524:4;5512:17;;5490:57;:::i;:::-;5563:20;;4925:664;-1:-1:-1;;;;;4925:664:1:o;6012:488::-;-1:-1:-1;;;;;6281:15:1;;;6263:34;;6333:15;;6328:2;6313:18;;6306:43;6380:2;6365:18;;6358:34;;;6428:3;6423:2;6408:18;;6401:31;;;6206:4;;6449:45;;6474:19;;6466:6;6449:45;:::i;:::-;6441:53;6012:488;-1:-1:-1;;;;;;6012:488:1:o;6697:219::-;6846:2;6835:9;6828:21;6809:4;6866:44;6906:2;6895:9;6891:18;6883:6;6866:44;:::i;13401:415::-;13603:2;13585:21;;;13642:2;13622:18;;;13615:30;13681:34;13676:2;13661:18;;13654:62;-1:-1:-1;;;13747:2:1;13732:18;;13725:49;13806:3;13791:19;;13401:415::o;16853:332::-;17055:2;17037:21;;;17094:1;17074:18;;;17067:29;-1:-1:-1;;;17127:2:1;17112:18;;17105:39;17176:2;17161:18;;16853:332::o;18189:253::-;18229:3;-1:-1:-1;;;;;18318:2:1;18315:1;18311:10;18348:2;18345:1;18341:10;18379:3;18375:2;18371:12;18366:3;18363:21;18360:47;;;18387:18;;:::i;:::-;18423:13;;18189:253;-1:-1:-1;;;;18189:253:1:o;18447:128::-;18487:3;18518:1;18514:6;18511:1;18508:13;18505:39;;;18524:18;;:::i;:::-;-1:-1:-1;18560:9:1;;18447:128::o;18580:120::-;18620:1;18646;18636:35;;18651:18;;:::i;:::-;-1:-1:-1;18685:9:1;;18580:120::o;18705:168::-;18745:7;18811:1;18807;18803:6;18799:14;18796:1;18793:21;18788:1;18781:9;18774:17;18770:45;18767:71;;;18818:18;;:::i;:::-;-1:-1:-1;18858:9:1;;18705:168::o;18878:246::-;18918:4;-1:-1:-1;;;;;19031:10:1;;;;19001;;19053:12;;;19050:38;;;19068:18;;:::i;:::-;19105:13;;18878:246;-1:-1:-1;;;18878:246:1:o;19129:125::-;19169:4;19197:1;19194;19191:8;19188:34;;;19202:18;;:::i;:::-;-1:-1:-1;19239:9:1;;19129:125::o;19259:258::-;19331:1;19341:113;19355:6;19352:1;19349:13;19341:113;;;19431:11;;;19425:18;19412:11;;;19405:39;19377:2;19370:10;19341:113;;;19472:6;19469:1;19466:13;19463:48;;;-1:-1:-1;;19507:1:1;19489:16;;19482:27;19259:258::o;19522:136::-;19561:3;19589:5;19579:39;;19598:18;;:::i;:::-;-1:-1:-1;;;19634:18:1;;19522:136::o;19663:380::-;19742:1;19738:12;;;;19785;;;19806:61;;19860:4;19852:6;19848:17;19838:27;;19806:61;19913:2;19905:6;19902:14;19882:18;19879:38;19876:161;;;19959:10;19954:3;19950:20;19947:1;19940:31;19994:4;19991:1;19984:15;20022:4;20019:1;20012:15;19876:161;;19663:380;;;:::o;20048:135::-;20087:3;-1:-1:-1;;20108:17:1;;20105:43;;;20128:18;;:::i;:::-;-1:-1:-1;20175:1:1;20164:13;;20048:135::o;20188:112::-;20220:1;20246;20236:35;;20251:18;;:::i;:::-;-1:-1:-1;20285:9:1;;20188:112::o;20305:127::-;20366:10;20361:3;20357:20;20354:1;20347:31;20397:4;20394:1;20387:15;20421:4;20418:1;20411:15;20437:127;20498:10;20493:3;20489:20;20486:1;20479:31;20529:4;20526:1;20519:15;20553:4;20550:1;20543:15;20569:127;20630:10;20625:3;20621:20;20618:1;20611:31;20661:4;20658:1;20651:15;20685:4;20682:1;20675:15;20701:127;20762:10;20757:3;20753:20;20750:1;20743:31;20793:4;20790:1;20783:15;20817:4;20814:1;20807:15;20833:131;-1:-1:-1;;;;;;20907:32:1;;20897:43;;20887:71;;20954:1;20951;20944:12
Swarm Source
ipfs://6210a3e76d8fc5eae880ae99b138da4d323756f3ced183e76e6d1cdd680f99d7
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.