ERC-721
Overview
Max Total Supply
2,000 MM
Holders
363
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
12 MMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MissMetaverse
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-29 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/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 = 0; 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.9; contract MissMetaverse is ERC721A { using Strings for uint256; string public baseURI; uint256 public cost; uint256 public maxSupply; uint256 public maxMintAmount = 12; uint256 public maxMintPerTransaction; uint256 private podiumAwardsCount; address public owner; bool public preSaleLive; bool public mintLive; mapping(address => bool) private whiteList; mapping(address => uint256) private mintCount; mapping(uint256 => string) private podiumAwards; 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("Miss Metaverse", "MM", maxMintAmount) { owner = msg.sender; baseURI = defaultBaseURI; maxSupply = 7500; maxMintPerTransaction = 4; cost = 0.05 ether; podiumAwardsCount = 20; } function isWhiteListed(address _address) public view returns (bool){ return whiteList[_address]; } function mintedByAddressCount(address _address) public view returns (uint256){ return mintCount[_address]; } // 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 success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } function setOwnersExplicit(uint256 quantity) external onlyOwner { _setOwnersExplicit(quantity); } // token URI functionality function setPodiumAwardTokenURI(uint256 _tokenId, string memory _tokenURI) external onlyOwner { require(_tokenId < podiumAwardsCount, "tokenId above max awards"); podiumAwards[_tokenId] = _tokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if (bytes(podiumAwards[_tokenId]).length > 0) { return podiumAwards[_tokenId]; } 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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setPodiumAwardTokenURI","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
60a0604052600080556000600755600c600b553480156200001f57600080fd5b5060405162002f1538038062002f15833981016040819052620000429162000223565b6040518060400160405280600e81526020016d4d697373204d657461766572736560901b815250604051806040016040528060028152602001614d4d60f01b815250600b5460008111620000ec5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200010190600190602086019062000167565b5081516200011790600290602085019062000167565b506080525050600e80546001600160a01b0319163317905580516200014490600890602084019062000167565b5050611d4c600a556004600c5566b1a2bc2ec500006009556014600d556200033c565b8280546200017590620002ff565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023757600080fd5b82516001600160401b03808211156200024f57600080fd5b818501915085601f8301126200026457600080fd5b8151818111156200027957620002796200020d565b604051601f8201601f19908116603f01168101908382118183101715620002a457620002a46200020d565b816040528281528886848701011115620002bd57600080fd5b600093505b82841015620002e15784840186015181850187015292850192620002c2565b82841115620002f35760008684830101525b98975050505050505050565b600181811c908216806200031457607f821691505b602082108114156200033657634e487b7160e01b600052602260045260246000fd5b50919050565b608051612b936200038260003960008181610cff01528181610d3c01528181610d7101528181610d9a01528181611dfb01528181611e25015261226c0152612b936000f3fe6080604052600436106102065760003560e01c806355f804b3116101175780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd146105f5578063d5abeb0114610615578063d7224ba01461062b578063e8656fcc14610641578063e985e9c51461066257005b80638da5cb5b1461056d57806395d89b411461058d578063a0712d68146105a2578063a22cb465146105b5578063b88d4fde146105d557005b80636f9170f6116100e95780636f9170f6146104cc57806370a0823114610505578063740d73f3146105255780637835c6351461054557806389bdeec61461055857005b806355f804b3146104565780635bd90b76146104765780636352211e146104975780636c0360eb146104b757005b806323b872dd116101945780633542aee2116101665780633542aee2146103b857806337351b0f146103d85780633ccfd60b1461040e57806342842e0e146104165780634f6ccce71461043657005b806323b872dd146103385780632d20fb60146103585780632f745c5914610378578063315955fd1461039857005b8063095ea7b3116101d8578063095ea7b3146102c2578063105739b8146102e257806313faede6146102f757806318160ddd1461030d578063239c70ae1461032257005b806301f569971461020f57806301ffc9a71461023857806306fdde0314610268578063081812fc1461028a57005b3661020d57005b005b34801561021b57600080fd5b50610225600c5481565b6040519081526020015b60405180910390f35b34801561024457600080fd5b5061025861025336600461257c565b6106ab565b604051901515815260200161022f565b34801561027457600080fd5b5061027d610718565b60405161022f91906125f8565b34801561029657600080fd5b506102aa6102a536600461260b565b6107aa565b6040516001600160a01b03909116815260200161022f565b3480156102ce57600080fd5b5061020d6102dd366004612640565b61083a565b3480156102ee57600080fd5b5061020d610952565b34801561030357600080fd5b5061022560095481565b34801561031957600080fd5b50600054610225565b34801561032e57600080fd5b50610225600b5481565b34801561034457600080fd5b5061020d61035336600461266a565b6109cf565b34801561036457600080fd5b5061020d61037336600461260b565b6109da565b34801561038457600080fd5b50610225610393366004612640565b610a2c565b3480156103a457600080fd5b5061020d6103b3366004612752565b610ba9565b3480156103c457600080fd5b5061020d6103d3366004612640565b610c5f565b3480156103e457600080fd5b506102256103f3366004612799565b6001600160a01b031660009081526010602052604090205490565b61020d610dc6565b34801561042257600080fd5b5061020d61043136600461266a565b610ea4565b34801561044257600080fd5b5061022561045136600461260b565b610ebf565b34801561046257600080fd5b5061020d6104713660046127b4565b610f21565b34801561048257600080fd5b50600e5461025890600160a01b900460ff1681565b3480156104a357600080fd5b506102aa6104b236600461260b565b610f7a565b3480156104c357600080fd5b5061027d610f8c565b3480156104d857600080fd5b506102586104e7366004612799565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561051157600080fd5b50610225610520366004612799565b61101a565b34801561053157600080fd5b5061020d6105403660046127e9565b6110ab565b61020d61055336600461260b565b611163565b34801561056457600080fd5b5061020d611354565b34801561057957600080fd5b50600e546102aa906001600160a01b031681565b34801561059957600080fd5b5061027d6113d0565b61020d6105b036600461260b565b6113df565b3480156105c157600080fd5b5061020d6105d036600461285e565b6114d5565b3480156105e157600080fd5b5061020d6105f036600461289a565b61159a565b34801561060157600080fd5b5061027d61061036600461260b565b61161f565b34801561062157600080fd5b50610225600a5481565b34801561063757600080fd5b5061022560075481565b34801561064d57600080fd5b50600e5461025890600160a81b900460ff1681565b34801561066e57600080fd5b5061025861067d366004612916565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806106dc57506001600160e01b03198216635b5e139f60e01b145b806106f757506001600160e01b0319821663780e9d6360e01b145b8061071257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072790612949565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612949565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b7826000541190565b61081e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084582610f7a565b9050806001600160a01b0316836001600160a01b031614156108b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610815565b336001600160a01b03821614806108d057506108d0813361067d565b6109425760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610815565b61094d8383836117b1565b505050565b600e546001600160a01b031633146109985760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600e54600160a81b900460ff16156109b957600e805460ff60a81b19169055565b600e805461ffff60a01b1916600160a81b179055565b61094d83838361181a565b600e546001600160a01b03163314610a205760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b610a2981611bad565b50565b6000610a378361101a565b8210610a905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610815565b600080549080805b83811015610b3a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aeb57805192505b876001600160a01b0316836001600160a01b03161415610b275786841415610b195750935061071292505050565b83610b238161299a565b9450505b5080610b328161299a565b915050610a98565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610815565b600e546001600160a01b03163314610bef5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600d548210610c405760405162461bcd60e51b815260206004820152601860248201527f746f6b656e49642061626f7665206d61782061776172647300000000000000006044820152606401610815565b6000828152601160209081526040909120825161094d928401906124d6565b600e546001600160a01b03163314610ca55760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600a5481610cb260005490565b610cbc91906129b5565b1115610cfd5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610815565b7f00000000000000000000000000000000000000000000000000000000000000008111610d3257610d2e8282611d5f565b5050565b805b801561094d577f00000000000000000000000000000000000000000000000000000000000000008111610d6b5761094d8382611d5f565b610d95837f0000000000000000000000000000000000000000000000000000000000000000611d5f565b610dbf7f0000000000000000000000000000000000000000000000000000000000000000826129cd565b9050610d34565b600e546001600160a01b03163314610e0c5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b604051600090339047908381818185875af1925050503d8060008114610e4e576040519150601f19603f3d011682016040523d82523d6000602084013e610e53565b606091505b5050905080610a295760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610815565b61094d8383836040518060200160405280600081525061159a565b600080548210610f1d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610815565b5090565b600e546001600160a01b03163314610f675760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b8051610d2e9060089060208401906124d6565b6000610f8582611d79565b5192915050565b60088054610f9990612949565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590612949565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b505050505081565b60006001600160a01b0382166110865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610815565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b031633146110f15760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b60005b8181101561094d576001600f6000858585818110611114576111146129e4565b90506020020160208101906111299190612799565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061115b8161299a565b9150506110f4565b600e54600160a01b900460ff166111bc5760405162461bcd60e51b815260206004820152601060248201527f70726553616c65206e6f74206c697665000000000000000000000000000000006044820152606401610815565b33600081815260106020908152604080832054600f9092529091205460ff166112275760405162461bcd60e51b815260206004820152600f60248201527f6e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610815565b600b5461123484836129b5565b11156112725760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610815565b600a548361127f60005490565b61128991906129b5565b11156112ca5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610815565b826009546112d891906129fa565b3410156113275760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742066756e647300000000000000000000000000006044820152606401610815565b61133183826129b5565b6001600160a01b03831660009081526010602052604090205561094d3384611d5f565b600e546001600160a01b0316331461139a5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600e54600160a01b900460ff16156113bb57600e805460ff60a01b19169055565b600e805460ff60a01b1916600160a01b179055565b60606002805461072790612949565b600e54600160a81b900460ff166114285760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610815565b33600081815260106020526040902054600b5461144584836129b5565b11156114835760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610815565b600c548311156112725760405162461bcd60e51b815260206004820152601160248201527f616d6f756e74206d757374203c206d61780000000000000000000000000000006044820152606401610815565b6001600160a01b03821633141561152e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610815565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a584848461181a565b6115b184848484611f31565b6116195760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b50505050565b606061162c826000541190565b6116785760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610815565b6000828152601160205260408120805461169190612949565b9050111561173757600082815260116020526040902080546116b290612949565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612949565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b50505050509050919050565b600061174161208a565b604080518082019091526005815264173539b7b760d91b602082015281519192509061177c57604051806020016040528060008152506117a9565b8161178685612099565b8260405160200161179993929190612a19565b6040516020818303038152906040525b949350505050565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061182582611d79565b80519091506000906001600160a01b0316336001600160a01b0316148061185c575033611851846107aa565b6001600160a01b0316145b8061186e5750815161186e903361067d565b9050806118e35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610815565b846001600160a01b031682600001516001600160a01b0316146119575760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610815565b6001600160a01b0384166119bb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610815565b6119cb60008484600001516117b1565b6001600160a01b03851660009081526004602052604081208054600192906119fd9084906001600160801b0316612a5c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a4991859116612a84565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ad18460016129b5565b6000818152600360205260409020549091506001600160a01b0316611b6357611afb816000541190565b15611b635760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bfd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610815565b60006001611c0b84846129b5565b611c1591906129cd565b90506001600054611c2691906129cd565b811115611c3f576001600054611c3c91906129cd565b90505b611c4a816000541190565b611ca55760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610815565b815b818111611d4b576000818152600360205260409020546001600160a01b0316611d39576000611cd582611d79565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d438161299a565b915050611ca7565b50611d578160016129b5565b600755505050565b610d2e8282604051806020016040528060008152506121af565b6040805180820190915260008082526020820152611d98826000541190565b611df75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610815565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e5857611e4a7f0000000000000000000000000000000000000000000000000000000000000000846129cd565b611e559060016129b5565b90505b825b818110611ec2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611eaf57949350505050565b5080611eba81612aaf565b915050611e5a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610815565b60006001600160a01b0384163b1561207f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f75903390899088908890600401612ac6565b602060405180830381600087803b158015611f8f57600080fd5b505af1925050508015611fbf575060408051601f3d908101601f19168201909252611fbc91810190612b02565b60015b612065573d808015611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b50805161205d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a9565b506001949350505050565b60606008805461072790612949565b6060816120bd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120e757806120d18161299a565b91506120e09050600a83612b35565b91506120c1565b60008167ffffffffffffffff811115612102576121026126a6565b6040519080825280601f01601f19166020018201604052801561212c576020820181803683370190505b5090505b84156117a9576121416001836129cd565b915061214e600a86612b49565b6121599060306129b5565b60f81b81838151811061216e5761216e6129e4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121a8600a86612b35565b9450612130565b6000546001600160a01b0384166122125760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610815565b61221d816000541190565b1561226a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610815565b7f00000000000000000000000000000000000000000000000000000000000000008311156122e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610815565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612341908790612a84565b6001600160801b0316815260200185836020015161235f9190612a84565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124cb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124436000888488611f31565b6124ab5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b816124b58161299a565b92505080806124c39061299a565b9150506123f6565b506000819055611ba5565b8280546124e290612949565b90600052602060002090601f016020900481019282612504576000855561254a565b82601f1061251d57805160ff191683800117855561254a565b8280016001018555821561254a579182015b8281111561254a57825182559160200191906001019061252f565b50610f1d9291505b80821115610f1d5760008155600101612552565b6001600160e01b031981168114610a2957600080fd5b60006020828403121561258e57600080fd5b813561259981612566565b9392505050565b60005b838110156125bb5781810151838201526020016125a3565b838111156116195750506000910152565b600081518084526125e48160208601602086016125a0565b601f01601f19169290920160200192915050565b60208152600061259960208301846125cc565b60006020828403121561261d57600080fd5b5035919050565b80356001600160a01b038116811461263b57600080fd5b919050565b6000806040838503121561265357600080fd5b61265c83612624565b946020939093013593505050565b60008060006060848603121561267f57600080fd5b61268884612624565b925061269660208501612624565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126d7576126d76126a6565b604051601f8501601f19908116603f011681019082821181831017156126ff576126ff6126a6565b8160405280935085815286868601111561271857600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261274357600080fd5b612599838335602085016126bc565b6000806040838503121561276557600080fd5b82359150602083013567ffffffffffffffff81111561278357600080fd5b61278f85828601612732565b9150509250929050565b6000602082840312156127ab57600080fd5b61259982612624565b6000602082840312156127c657600080fd5b813567ffffffffffffffff8111156127dd57600080fd5b6117a984828501612732565b600080602083850312156127fc57600080fd5b823567ffffffffffffffff8082111561281457600080fd5b818501915085601f83011261282857600080fd5b81358181111561283757600080fd5b8660208260051b850101111561284c57600080fd5b60209290920196919550909350505050565b6000806040838503121561287157600080fd5b61287a83612624565b91506020830135801515811461288f57600080fd5b809150509250929050565b600080600080608085870312156128b057600080fd5b6128b985612624565b93506128c760208601612624565b925060408501359150606085013567ffffffffffffffff8111156128ea57600080fd5b8501601f810187136128fb57600080fd5b61290a878235602084016126bc565b91505092959194509250565b6000806040838503121561292957600080fd5b61293283612624565b915061294060208401612624565b90509250929050565b600181811c9082168061295d57607f821691505b6020821081141561297e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006000198214156129ae576129ae612984565b5060010190565b600082198211156129c8576129c8612984565b500190565b6000828210156129df576129df612984565b500390565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612a1457612a14612984565b500290565b60008451612a2b8184602089016125a0565b845190830190612a3f8183602089016125a0565b8451910190612a528183602088016125a0565b0195945050505050565b60006001600160801b0383811690831681811015612a7c57612a7c612984565b039392505050565b60006001600160801b03808316818516808303821115612aa657612aa6612984565b01949350505050565b600081612abe57612abe612984565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612af860808301846125cc565b9695505050505050565b600060208284031215612b1457600080fd5b815161259981612566565b634e487b7160e01b600052601260045260246000fd5b600082612b4457612b44612b1f565b500490565b600082612b5857612b58612b1f565b50069056fea2646970667358221220fce2d1a6a7d18315d5f18bc959fa5e8f86a9c60149cec9bb9d17cea31132f47164736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963666a677a72667673787369346b7033367a666d7971647366376368337579327764737262616c747a6d6a716b66787879646a752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102065760003560e01c806355f804b3116101175780638da5cb5b116100a5578063c87b56dd1161006c578063c87b56dd146105f5578063d5abeb0114610615578063d7224ba01461062b578063e8656fcc14610641578063e985e9c51461066257005b80638da5cb5b1461056d57806395d89b411461058d578063a0712d68146105a2578063a22cb465146105b5578063b88d4fde146105d557005b80636f9170f6116100e95780636f9170f6146104cc57806370a0823114610505578063740d73f3146105255780637835c6351461054557806389bdeec61461055857005b806355f804b3146104565780635bd90b76146104765780636352211e146104975780636c0360eb146104b757005b806323b872dd116101945780633542aee2116101665780633542aee2146103b857806337351b0f146103d85780633ccfd60b1461040e57806342842e0e146104165780634f6ccce71461043657005b806323b872dd146103385780632d20fb60146103585780632f745c5914610378578063315955fd1461039857005b8063095ea7b3116101d8578063095ea7b3146102c2578063105739b8146102e257806313faede6146102f757806318160ddd1461030d578063239c70ae1461032257005b806301f569971461020f57806301ffc9a71461023857806306fdde0314610268578063081812fc1461028a57005b3661020d57005b005b34801561021b57600080fd5b50610225600c5481565b6040519081526020015b60405180910390f35b34801561024457600080fd5b5061025861025336600461257c565b6106ab565b604051901515815260200161022f565b34801561027457600080fd5b5061027d610718565b60405161022f91906125f8565b34801561029657600080fd5b506102aa6102a536600461260b565b6107aa565b6040516001600160a01b03909116815260200161022f565b3480156102ce57600080fd5b5061020d6102dd366004612640565b61083a565b3480156102ee57600080fd5b5061020d610952565b34801561030357600080fd5b5061022560095481565b34801561031957600080fd5b50600054610225565b34801561032e57600080fd5b50610225600b5481565b34801561034457600080fd5b5061020d61035336600461266a565b6109cf565b34801561036457600080fd5b5061020d61037336600461260b565b6109da565b34801561038457600080fd5b50610225610393366004612640565b610a2c565b3480156103a457600080fd5b5061020d6103b3366004612752565b610ba9565b3480156103c457600080fd5b5061020d6103d3366004612640565b610c5f565b3480156103e457600080fd5b506102256103f3366004612799565b6001600160a01b031660009081526010602052604090205490565b61020d610dc6565b34801561042257600080fd5b5061020d61043136600461266a565b610ea4565b34801561044257600080fd5b5061022561045136600461260b565b610ebf565b34801561046257600080fd5b5061020d6104713660046127b4565b610f21565b34801561048257600080fd5b50600e5461025890600160a01b900460ff1681565b3480156104a357600080fd5b506102aa6104b236600461260b565b610f7a565b3480156104c357600080fd5b5061027d610f8c565b3480156104d857600080fd5b506102586104e7366004612799565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561051157600080fd5b50610225610520366004612799565b61101a565b34801561053157600080fd5b5061020d6105403660046127e9565b6110ab565b61020d61055336600461260b565b611163565b34801561056457600080fd5b5061020d611354565b34801561057957600080fd5b50600e546102aa906001600160a01b031681565b34801561059957600080fd5b5061027d6113d0565b61020d6105b036600461260b565b6113df565b3480156105c157600080fd5b5061020d6105d036600461285e565b6114d5565b3480156105e157600080fd5b5061020d6105f036600461289a565b61159a565b34801561060157600080fd5b5061027d61061036600461260b565b61161f565b34801561062157600080fd5b50610225600a5481565b34801561063757600080fd5b5061022560075481565b34801561064d57600080fd5b50600e5461025890600160a81b900460ff1681565b34801561066e57600080fd5b5061025861067d366004612916565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806106dc57506001600160e01b03198216635b5e139f60e01b145b806106f757506001600160e01b0319821663780e9d6360e01b145b8061071257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072790612949565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612949565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b7826000541190565b61081e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084582610f7a565b9050806001600160a01b0316836001600160a01b031614156108b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610815565b336001600160a01b03821614806108d057506108d0813361067d565b6109425760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610815565b61094d8383836117b1565b505050565b600e546001600160a01b031633146109985760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600e54600160a81b900460ff16156109b957600e805460ff60a81b19169055565b600e805461ffff60a01b1916600160a81b179055565b61094d83838361181a565b600e546001600160a01b03163314610a205760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b610a2981611bad565b50565b6000610a378361101a565b8210610a905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610815565b600080549080805b83811015610b3a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aeb57805192505b876001600160a01b0316836001600160a01b03161415610b275786841415610b195750935061071292505050565b83610b238161299a565b9450505b5080610b328161299a565b915050610a98565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610815565b600e546001600160a01b03163314610bef5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600d548210610c405760405162461bcd60e51b815260206004820152601860248201527f746f6b656e49642061626f7665206d61782061776172647300000000000000006044820152606401610815565b6000828152601160209081526040909120825161094d928401906124d6565b600e546001600160a01b03163314610ca55760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600a5481610cb260005490565b610cbc91906129b5565b1115610cfd5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610815565b7f000000000000000000000000000000000000000000000000000000000000000c8111610d3257610d2e8282611d5f565b5050565b805b801561094d577f000000000000000000000000000000000000000000000000000000000000000c8111610d6b5761094d8382611d5f565b610d95837f000000000000000000000000000000000000000000000000000000000000000c611d5f565b610dbf7f000000000000000000000000000000000000000000000000000000000000000c826129cd565b9050610d34565b600e546001600160a01b03163314610e0c5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b604051600090339047908381818185875af1925050503d8060008114610e4e576040519150601f19603f3d011682016040523d82523d6000602084013e610e53565b606091505b5050905080610a295760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610815565b61094d8383836040518060200160405280600081525061159a565b600080548210610f1d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610815565b5090565b600e546001600160a01b03163314610f675760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b8051610d2e9060089060208401906124d6565b6000610f8582611d79565b5192915050565b60088054610f9990612949565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590612949565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b505050505081565b60006001600160a01b0382166110865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610815565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b031633146110f15760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b60005b8181101561094d576001600f6000858585818110611114576111146129e4565b90506020020160208101906111299190612799565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061115b8161299a565b9150506110f4565b600e54600160a01b900460ff166111bc5760405162461bcd60e51b815260206004820152601060248201527f70726553616c65206e6f74206c697665000000000000000000000000000000006044820152606401610815565b33600081815260106020908152604080832054600f9092529091205460ff166112275760405162461bcd60e51b815260206004820152600f60248201527f6e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610815565b600b5461123484836129b5565b11156112725760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610815565b600a548361127f60005490565b61128991906129b5565b11156112ca5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b6044820152606401610815565b826009546112d891906129fa565b3410156113275760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742066756e647300000000000000000000000000006044820152606401610815565b61133183826129b5565b6001600160a01b03831660009081526010602052604090205561094d3384611d5f565b600e546001600160a01b0316331461139a5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610815565b600e54600160a01b900460ff16156113bb57600e805460ff60a01b19169055565b600e805460ff60a01b1916600160a01b179055565b60606002805461072790612949565b600e54600160a81b900460ff166114285760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b6044820152606401610815565b33600081815260106020526040902054600b5461144584836129b5565b11156114835760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b6044820152606401610815565b600c548311156112725760405162461bcd60e51b815260206004820152601160248201527f616d6f756e74206d757374203c206d61780000000000000000000000000000006044820152606401610815565b6001600160a01b03821633141561152e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610815565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a584848461181a565b6115b184848484611f31565b6116195760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b50505050565b606061162c826000541190565b6116785760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610815565b6000828152601160205260408120805461169190612949565b9050111561173757600082815260116020526040902080546116b290612949565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612949565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b50505050509050919050565b600061174161208a565b604080518082019091526005815264173539b7b760d91b602082015281519192509061177c57604051806020016040528060008152506117a9565b8161178685612099565b8260405160200161179993929190612a19565b6040516020818303038152906040525b949350505050565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061182582611d79565b80519091506000906001600160a01b0316336001600160a01b0316148061185c575033611851846107aa565b6001600160a01b0316145b8061186e5750815161186e903361067d565b9050806118e35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610815565b846001600160a01b031682600001516001600160a01b0316146119575760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610815565b6001600160a01b0384166119bb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610815565b6119cb60008484600001516117b1565b6001600160a01b03851660009081526004602052604081208054600192906119fd9084906001600160801b0316612a5c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a4991859116612a84565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ad18460016129b5565b6000818152600360205260409020549091506001600160a01b0316611b6357611afb816000541190565b15611b635760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611bfd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610815565b60006001611c0b84846129b5565b611c1591906129cd565b90506001600054611c2691906129cd565b811115611c3f576001600054611c3c91906129cd565b90505b611c4a816000541190565b611ca55760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610815565b815b818111611d4b576000818152600360205260409020546001600160a01b0316611d39576000611cd582611d79565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d438161299a565b915050611ca7565b50611d578160016129b5565b600755505050565b610d2e8282604051806020016040528060008152506121af565b6040805180820190915260008082526020820152611d98826000541190565b611df75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610815565b60007f000000000000000000000000000000000000000000000000000000000000000c8310611e5857611e4a7f000000000000000000000000000000000000000000000000000000000000000c846129cd565b611e559060016129b5565b90505b825b818110611ec2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611eaf57949350505050565b5080611eba81612aaf565b915050611e5a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610815565b60006001600160a01b0384163b1561207f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f75903390899088908890600401612ac6565b602060405180830381600087803b158015611f8f57600080fd5b505af1925050508015611fbf575060408051601f3d908101601f19168201909252611fbc91810190612b02565b60015b612065573d808015611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b50805161205d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a9565b506001949350505050565b60606008805461072790612949565b6060816120bd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120e757806120d18161299a565b91506120e09050600a83612b35565b91506120c1565b60008167ffffffffffffffff811115612102576121026126a6565b6040519080825280601f01601f19166020018201604052801561212c576020820181803683370190505b5090505b84156117a9576121416001836129cd565b915061214e600a86612b49565b6121599060306129b5565b60f81b81838151811061216e5761216e6129e4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121a8600a86612b35565b9450612130565b6000546001600160a01b0384166122125760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610815565b61221d816000541190565b1561226a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610815565b7f000000000000000000000000000000000000000000000000000000000000000c8311156122e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610815565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612341908790612a84565b6001600160801b0316815260200185836020015161235f9190612a84565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124cb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124436000888488611f31565b6124ab5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610815565b816124b58161299a565b92505080806124c39061299a565b9150506123f6565b506000819055611ba5565b8280546124e290612949565b90600052602060002090601f016020900481019282612504576000855561254a565b82601f1061251d57805160ff191683800117855561254a565b8280016001018555821561254a579182015b8281111561254a57825182559160200191906001019061252f565b50610f1d9291505b80821115610f1d5760008155600101612552565b6001600160e01b031981168114610a2957600080fd5b60006020828403121561258e57600080fd5b813561259981612566565b9392505050565b60005b838110156125bb5781810151838201526020016125a3565b838111156116195750506000910152565b600081518084526125e48160208601602086016125a0565b601f01601f19169290920160200192915050565b60208152600061259960208301846125cc565b60006020828403121561261d57600080fd5b5035919050565b80356001600160a01b038116811461263b57600080fd5b919050565b6000806040838503121561265357600080fd5b61265c83612624565b946020939093013593505050565b60008060006060848603121561267f57600080fd5b61268884612624565b925061269660208501612624565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126d7576126d76126a6565b604051601f8501601f19908116603f011681019082821181831017156126ff576126ff6126a6565b8160405280935085815286868601111561271857600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261274357600080fd5b612599838335602085016126bc565b6000806040838503121561276557600080fd5b82359150602083013567ffffffffffffffff81111561278357600080fd5b61278f85828601612732565b9150509250929050565b6000602082840312156127ab57600080fd5b61259982612624565b6000602082840312156127c657600080fd5b813567ffffffffffffffff8111156127dd57600080fd5b6117a984828501612732565b600080602083850312156127fc57600080fd5b823567ffffffffffffffff8082111561281457600080fd5b818501915085601f83011261282857600080fd5b81358181111561283757600080fd5b8660208260051b850101111561284c57600080fd5b60209290920196919550909350505050565b6000806040838503121561287157600080fd5b61287a83612624565b91506020830135801515811461288f57600080fd5b809150509250929050565b600080600080608085870312156128b057600080fd5b6128b985612624565b93506128c760208601612624565b925060408501359150606085013567ffffffffffffffff8111156128ea57600080fd5b8501601f810187136128fb57600080fd5b61290a878235602084016126bc565b91505092959194509250565b6000806040838503121561292957600080fd5b61293283612624565b915061294060208401612624565b90509250929050565b600181811c9082168061295d57607f821691505b6020821081141561297e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006000198214156129ae576129ae612984565b5060010190565b600082198211156129c8576129c8612984565b500190565b6000828210156129df576129df612984565b500390565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612a1457612a14612984565b500290565b60008451612a2b8184602089016125a0565b845190830190612a3f8183602089016125a0565b8451910190612a528183602088016125a0565b0195945050505050565b60006001600160801b0383811690831681811015612a7c57612a7c612984565b039392505050565b60006001600160801b03808316818516808303821115612aa657612aa6612984565b01949350505050565b600081612abe57612abe612984565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612af860808301846125cc565b9695505050505050565b600060208284031215612b1457600080fd5b815161259981612566565b634e487b7160e01b600052601260045260246000fd5b600082612b4457612b44612b1f565b500490565b600082612b5857612b58612b1f565b50069056fea2646970667358221220fce2d1a6a7d18315d5f18bc959fa5e8f86a9c60149cec9bb9d17cea31132f47164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963666a677a72667673787369346b7033367a666d7971647366376368337579327764737262616c747a6d6a716b66787879646a752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : defaultBaseURI (string): ipfs://bafybeicfjgzrfvsxsi4kp36zfmyqdsf7ch3uy2wdsrbaltzmjqkfxxydju/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656963666a677a72667673787369346b7033367a
Arg [3] : 666d7971647366376368337579327764737262616c747a6d6a716b6678787964
Arg [4] : 6a752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
58831:5133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59032:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;59032:36:0;;;;;;;;45787:372;;;;;;;;;;-1:-1:-1;45787:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;45787:372:0;582:187:1;47592:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49153:214::-;;;;;;;;;;-1:-1:-1;49153:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:55:1;;;1856:74;;1844:2;1829:18;49153:214:0;1710:226:1;48674:413:0;;;;;;;;;;-1:-1:-1;48674:413:0;;;;;:::i;:::-;;:::i;62366:197::-;;;;;;;;;;;;;:::i;58935:19::-;;;;;;;;;;;;;;;;44228:100;;;;;;;;;;-1:-1:-1;44281:7:0;44308:12;44228:100;;58992:33;;;;;;;;;;;;;;;;50029:162;;;;;;;;;;-1:-1:-1;50029:162:0;;;;;:::i;:::-;;:::i;62865:111::-;;;;;;;;;;-1:-1:-1;62865:111:0;;;;;:::i;:::-;;:::i;44892:823::-;;;;;;;;;;-1:-1:-1;44892:823:0;;;;;:::i;:::-;;:::i;63016:223::-;;;;;;;;;;-1:-1:-1;63016:223:0;;;;;:::i;:::-;;:::i;61363:606::-;;;;;;;;;;-1:-1:-1;61363:606:0;;;;;:::i;:::-;;:::i;60071:122::-;;;;;;;;;;-1:-1:-1;60071:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;60166:19:0;60140:7;60166:19;;;:9;:19;;;;;;;60071:122;62677:180;;;:::i;50262:177::-;;;;;;;;;;-1:-1:-1;50262:177:0;;;;;:::i;:::-;;:::i;44405:187::-;;;;;;;;;;-1:-1:-1;44405:187:0;;;;;:::i;:::-;;:::i;62571:98::-;;;;;;;;;;-1:-1:-1;62571:98:0;;;;;:::i;:::-;;:::i;59142:23::-;;;;;;;;;;-1:-1:-1;59142:23:0;;;;-1:-1:-1;;;59142:23:0;;;;;;47401:124;;;;;;;;;;-1:-1:-1;47401:124:0;;;;;:::i;:::-;;:::i;58907:21::-;;;;;;;;;;;;;:::i;59951:112::-;;;;;;;;;;-1:-1:-1;59951:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;60036:19:0;60013:4;60036:19;;;:9;:19;;;;;;;;;59951:112;46223:221;;;;;;;;;;-1:-1:-1;46223:221:0;;;;;:::i;:::-;;:::i;61977:194::-;;;;;;;;;;-1:-1:-1;61977:194:0;;;;;:::i;:::-;;:::i;60782:533::-;;;;;;:::i;:::-;;:::i;62179:179::-;;;;;;;;;;;;;:::i;59115:20::-;;;;;;;;;;-1:-1:-1;59115:20:0;;;;-1:-1:-1;;;;;59115:20:0;;;47761:104;;;;;;;;;;;;;:::i;60227:547::-;;;;;;:::i;:::-;;:::i;49439:288::-;;;;;;;;;;-1:-1:-1;49439:288:0;;;;;:::i;:::-;;:::i;50510:355::-;;;;;;;;;;-1:-1:-1;50510:355:0;;;;;:::i;:::-;;:::i;63247:521::-;;;;;;;;;;-1:-1:-1;63247:521:0;;;;;:::i;:::-;;:::i;58961:24::-;;;;;;;;;;;;;;;;55170:43;;;;;;;;;;;;;;;;59172:20;;;;;;;;;;-1:-1:-1;59172:20:0;;;;-1:-1:-1;;;59172:20:0;;;;;;49798:164;;;;;;;;;;-1:-1:-1;49798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49919:25:0;;;49895:4;49919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49798:164;45787:372;45889:4;-1:-1:-1;;;;;;45926:40:0;;-1:-1:-1;;;45926:40:0;;:105;;-1:-1:-1;;;;;;;45983:48:0;;-1:-1:-1;;;45983:48:0;45926:105;:172;;;-1:-1:-1;;;;;;;46048:50:0;;-1:-1:-1;;;46048:50:0;45926:172;:225;;;-1:-1:-1;;;;;;;;;;20717:40:0;;;46115:36;45906:245;45787:372;-1:-1:-1;;45787:372:0:o;47592:100::-;47646:13;47679:5;47672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47592:100;:::o;49153:214::-;49221:7;49249:16;49257:7;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;49249:16;49241:74;;;;-1:-1:-1;;;49241:74:0;;7139:2:1;49241:74:0;;;7121:21:1;7178:2;7158:18;;;7151:30;7217:34;7197:18;;;7190:62;-1:-1:-1;;;7268:18:1;;;7261:43;7321:19;;49241:74:0;;;;;;;;;-1:-1:-1;49335:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49335:24:0;;49153:214::o;48674:413::-;48747:13;48763:24;48779:7;48763:15;:24::i;:::-;48747:40;;48812:5;-1:-1:-1;;;;;48806:11:0;:2;-1:-1:-1;;;;;48806:11:0;;;48798:58;;;;-1:-1:-1;;;48798:58:0;;7553:2:1;48798:58:0;;;7535:21:1;7592:2;7572:18;;;7565:30;7631:34;7611:18;;;7604:62;-1:-1:-1;;;7682:18:1;;;7675:32;7724:19;;48798:58:0;7351:398:1;48798:58:0;19676:10;-1:-1:-1;;;;;48891:21:0;;;;:62;;-1:-1:-1;48916:37:0;48933:5;19676:10;49798:164;:::i;48916:37::-;48869:169;;;;-1:-1:-1;;;48869:169:0;;7956:2:1;48869:169:0;;;7938:21:1;7995:2;7975:18;;;7968:30;8034:34;8014:18;;;8007:62;8105:27;8085:18;;;8078:55;8150:19;;48869:169:0;7754:421:1;48869:169:0;49051:28;49060:2;49064:7;49073:5;49051:8;:28::i;:::-;48736:351;48674:413;;:::o;62366:197::-;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62426:8:::1;::::0;-1:-1:-1;;;62426:8:0;::::1;;;62422:78;;;62451:8;:16:::0;;-1:-1:-1;;;;62451:16:0::1;::::0;;62366:197::o;62422:78::-:1;62510:11;:19:::0;;-1:-1:-1;;;;62540:15:0;-1:-1:-1;;;62540:15:0::1;::::0;;62366:197::o;50029:162::-;50155:28;50165:4;50171:2;50175:7;50155:9;:28::i;62865:111::-;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62940:28:::1;62959:8;62940:18;:28::i;:::-;62865:111:::0;:::o;44892:823::-;44981:7;45017:16;45027:5;45017:9;:16::i;:::-;45009:5;:24;45001:71;;;;-1:-1:-1;;;45001:71:0;;8719:2:1;45001:71:0;;;8701:21:1;8758:2;8738:18;;;8731:30;8797:34;8777:18;;;8770:62;-1:-1:-1;;;8848:18:1;;;8841:32;8890:19;;45001:71:0;8517:398:1;45001:71:0;45083:22;44308:12;;;45083:22;;45215:426;45239:14;45235:1;:18;45215:426;;;45275:31;45309:14;;;:11;:14;;;;;;;;;45275:48;;;;;;;;;-1:-1:-1;;;;;45275:48:0;;;;;-1:-1:-1;;;45275:48:0;;;;;;;;;;;;45342:28;45338:103;;45411:14;;;-1:-1:-1;45338:103:0;45480:5;-1:-1:-1;;;;;45459:26:0;:17;-1:-1:-1;;;;;45459:26:0;;45455:175;;;45525:5;45510:11;:20;45506:77;;;-1:-1:-1;45562:1:0;-1:-1:-1;45555:8:0;;-1:-1:-1;;;45555:8:0;45506:77;45601:13;;;;:::i;:::-;;;;45455:175;-1:-1:-1;45255:3:0;;;;:::i;:::-;;;;45215:426;;;-1:-1:-1;45651:56:0;;-1:-1:-1;;;45651:56:0;;9394:2:1;45651:56:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:34;9452:18;;;9445:62;9543:16;9523:18;;;9516:44;9577:19;;45651:56:0;9192:410:1;63016:223:0;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;63140:17:::1;;63129:8;:28;63121:65;;;::::0;-1:-1:-1;;;63121:65:0;;9809:2:1;63121:65:0::1;::::0;::::1;9791:21:1::0;9848:2;9828:18;;;9821:30;9887:26;9867:18;;;9860:54;9931:18;;63121:65:0::1;9607:348:1::0;63121:65:0::1;63197:22;::::0;;;:12:::1;:22;::::0;;;;;;;:34;;::::1;::::0;;::::1;::::0;::::1;:::i;61363:606::-:0;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;61487:9:::1;;61472:11;61456:13;44281:7:::0;44308:12;;44228:100;61456:13:::1;:27;;;;:::i;:::-;:40;;61448:69;;;::::0;-1:-1:-1;;;61448:69:0;;10295:2:1;61448:69:0::1;::::0;::::1;10277:21:1::0;10334:2;10314:18;;;10307:30;-1:-1:-1;;;10353:18:1;;;10346:46;10409:18;;61448:69:0::1;10093:340:1::0;61448:69:0::1;61547:12;61532:11;:27;61528:108;;61576:27;61586:3;61591:11;61576:9;:27::i;:::-;61363:606:::0;;:::o;61528:108::-:1;61677:11:::0;61699:263:::1;61706:14:::0;;61699:263:::1;;61755:12;61741:10;:26;61737:118;;61788:26;61798:3;61803:10;61788:9;:26::i;61737:118::-;61869:28;61879:3;61884:12;61869:9;:28::i;:::-;61925:25;61938:12;61925:10:::0;:25:::1;:::i;:::-;61912:38;;61699:263;;62677:180:::0;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62754:49:::1;::::0;62736:12:::1;::::0;62754:10:::1;::::0;62777:21:::1;::::0;62736:12;62754:49;62736:12;62754:49;62777:21;62754:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62735:68;;;62822:7;62814:35;;;::::0;-1:-1:-1;;;62814:35:0;;10980:2:1;62814:35:0::1;::::0;::::1;10962:21:1::0;11019:2;10999:18;;;10992:30;11058:17;11038:18;;;11031:45;11093:18;;62814:35:0::1;10778:339:1::0;50262:177:0;50392:39;50409:4;50415:2;50419:7;50392:39;;;;;;;;;;;;:16;:39::i;44405:187::-;44472:7;44308:12;;44500:5;:21;44492:69;;;;-1:-1:-1;;;44492:69:0;;11324:2:1;44492:69:0;;;11306:21:1;11363:2;11343:18;;;11336:30;11402:34;11382:18;;;11375:62;-1:-1:-1;;;11453:18:1;;;11446:33;11496:19;;44492:69:0;11122:399:1;44492:69:0;-1:-1:-1;44579:5:0;44405:187::o;62571:98::-;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62644:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;47401:124::-:0;47465:7;47492:20;47504:7;47492:11;:20::i;:::-;:25;;47401:124;-1:-1:-1;;47401:124:0:o;58907:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46223:221::-;46287:7;-1:-1:-1;;;;;46315:19:0;;46307:75;;;;-1:-1:-1;;;46307:75:0;;11728:2:1;46307:75:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:34;11786:18;;;11779:62;-1:-1:-1;;;11857:18:1;;;11850:41;11908:19;;46307:75:0;11526:407:1;46307:75:0;-1:-1:-1;;;;;;46408:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46408:27:0;;46223:221::o;61977:194::-;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62067:9:::1;62062:102;62078:21:::0;;::::1;62062:102;;;62148:4;62121:9;:24;62131:10;;62142:1;62131:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;62121:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;62121:24:0;:31;;-1:-1:-1;;62121:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62101:3;::::1;::::0;::::1;:::i;:::-;;;;62062:102;;60782:533:::0;59503:11;;-1:-1:-1;;;59503:11:0;;;;59495:40;;;;-1:-1:-1;;;59495:40:0;;12272:2:1;59495:40:0;;;12254:21:1;12311:2;12291:18;;;12284:30;12350:18;12330;;;12323:46;12386:18;;59495:40:0;12070:340:1;59495:40:0;60880:10:::1;60866:11;60918:14:::0;;;:9:::1;:14;::::0;;;;;;;;60951:9:::1;:14:::0;;;;;;;::::1;;60943:42;;;::::0;-1:-1:-1;;;60943:42:0;;12617:2:1;60943:42:0::1;::::0;::::1;12599:21:1::0;12656:2;12636:18;;;12629:30;12695:17;12675:18;;;12668:45;12730:18;;60943:42:0::1;12415:339:1::0;60943:42:0::1;61028:13;::::0;61004:20:::1;61013:11:::0;61004:6;:20:::1;:::i;:::-;:37;;60996:63;;;::::0;-1:-1:-1;;;60996:63:0;;12961:2:1;60996:63:0::1;::::0;::::1;12943:21:1::0;13000:2;12980:18;;;12973:30;-1:-1:-1;;;13019:18:1;;;13012:43;13072:18;;60996:63:0::1;12759:337:1::0;60996:63:0::1;61109:9;;61094:11;61078:13;44281:7:::0;44308:12;;44228:100;61078:13:::1;:27;;;;:::i;:::-;:40;;61070:69;;;::::0;-1:-1:-1;;;61070:69:0;;10295:2:1;61070:69:0::1;::::0;::::1;10277:21:1::0;10334:2;10314:18;;;10307:30;-1:-1:-1;;;10353:18:1;;;10346:46;10409:18;;61070:69:0::1;10093:340:1::0;61070:69:0::1;61178:11;61171:4;;:18;;;;:::i;:::-;61158:9;:31;;61150:62;;;::::0;-1:-1:-1;;;61150:62:0;;13476:2:1;61150:62:0::1;::::0;::::1;13458:21:1::0;13515:2;13495:18;;;13488:30;13554:20;13534:18;;;13527:48;13592:18;;61150:62:0::1;13274:342:1::0;61150:62:0::1;61242:20;61251:11:::0;61242:6;:20:::1;:::i;:::-;-1:-1:-1::0;;;;;61225:14:0;::::1;;::::0;;;:9:::1;:14;::::0;;;;:37;61273:34:::1;61283:10;61295:11:::0;61273:9:::1;:34::i;62179:179::-:0;59398:5;;-1:-1:-1;;;;;59398:5:0;59407:10;59398:19;59390:41;;;;-1:-1:-1;;;59390:41:0;;8382:2:1;59390:41:0;;;8364:21:1;8421:1;8401:18;;;8394:29;-1:-1:-1;;;8439:18:1;;;8432:39;8488:18;;59390:41:0;8180:332:1;59390:41:0;62242:11:::1;::::0;-1:-1:-1;;;62242:11:0;::::1;;;62238:84;;;62270:11;:19:::0;;-1:-1:-1;;;;62270:19:0::1;::::0;;62366:197::o;62238:84::-:1;62332:11;:18:::0;;-1:-1:-1;;;;62332:18:0::1;-1:-1:-1::0;;;62332:18:0::1;::::0;;62179:179::o;47761:104::-;47817:13;47850:7;47843:14;;;;;:::i;60227:547::-;59604:8;;-1:-1:-1;;;59604:8:0;;;;59596:34;;;;-1:-1:-1;;;59596:34:0;;13823:2:1;59596:34:0;;;13805:21:1;13862:2;13842:18;;;13835:30;-1:-1:-1;;;13881:18:1;;;13874:43;13934:18;;59596:34:0;13621:337:1;59596:34:0;60315:10:::1;60301:11;60353:14:::0;;;:9:::1;:14;::::0;;;;;60410:13:::1;::::0;60386:20:::1;60395:11:::0;60353:14;60386:20:::1;:::i;:::-;:37;;60378:63;;;::::0;-1:-1:-1;;;60378:63:0;;12961:2:1;60378:63:0::1;::::0;::::1;12943:21:1::0;13000:2;12980:18;;;12973:30;-1:-1:-1;;;13019:18:1;;;13012:43;13072:18;;60378:63:0::1;12759:337:1::0;60378:63:0::1;60475:21;;60460:11;:36;;60452:66;;;::::0;-1:-1:-1;;;60452:66:0;;14165:2:1;60452:66:0::1;::::0;::::1;14147:21:1::0;14204:2;14184:18;;;14177:30;14243:19;14223:18;;;14216:47;14280:18;;60452:66:0::1;13963:341:1::0;49439:288:0;-1:-1:-1;;;;;49534:24:0;;19676:10;49534:24;;49526:63;;;;-1:-1:-1;;;49526:63:0;;14511:2:1;49526:63:0;;;14493:21:1;14550:2;14530:18;;;14523:30;14589:28;14569:18;;;14562:56;14635:18;;49526:63:0;14309:350:1;49526:63:0;19676:10;49602:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;49602:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;49602:53:0;;;;;;;;;;49671:48;;722:41:1;;;49602:42:0;;19676:10;49671:48;;695:18:1;49671:48:0;;;;;;;49439:288;;:::o;50510:355::-;50669:28;50679:4;50685:2;50689:7;50669:9;:28::i;:::-;50730:48;50753:4;50759:2;50763:7;50772:5;50730:22;:48::i;:::-;50708:149;;;;-1:-1:-1;;;50708:149:0;;14866:2:1;50708:149:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:49;15054:19;;50708:149:0;14664:415:1;50708:149:0;50510:355;;;;:::o;63247:521::-;63321:13;63355:17;63363:8;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;63355:17;63347:61;;;;-1:-1:-1;;;63347:61:0;;15286:2:1;63347:61:0;;;15268:21:1;15325:2;15305:18;;;15298:30;15364:33;15344:18;;;15337:61;15415:18;;63347:61:0;15084:355:1;63347:61:0;63464:1;63431:22;;;:12;:22;;;;;63425:36;;;;;:::i;:::-;;;:40;63421:102;;;63489:22;;;;:12;:22;;;;;63482:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63247:521;;;:::o;63421:102::-;63535:26;63564:10;:8;:10::i;:::-;63585:28;;;;;;;;;;;;-1:-1:-1;;;63585:28:0;;;;63631:26;;63535:39;;-1:-1:-1;63585:28:0;63631:129;;;;;;;;;;;;;;;;;63701:12;63715:19;:8;:17;:19::i;:::-;63736:4;63684:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63631:129;63624:136;63247:521;-1:-1:-1;;;;63247:521:0:o;54966:196::-;55081:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;55081:29:0;-1:-1:-1;;;;;55081:29:0;;;;;;;;;55126:28;;55081:24;;55126:28;;;;;;;54966:196;;;:::o;53274:1574::-;53389:35;53427:20;53439:7;53427:11;:20::i;:::-;53502:18;;53389:58;;-1:-1:-1;53460:22:0;;-1:-1:-1;;;;;53486:34:0;19676:10;-1:-1:-1;;;;;53486:34:0;;:87;;;-1:-1:-1;19676:10:0;53537:20;53549:7;53537:11;:20::i;:::-;-1:-1:-1;;;;;53537:36:0;;53486:87;:154;;;-1:-1:-1;53607:18:0;;53590:50;;19676:10;49798:164;:::i;53590:50::-;53460:181;;53662:17;53654:80;;;;-1:-1:-1;;;53654:80:0;;16315:2:1;53654:80:0;;;16297:21:1;16354:2;16334:18;;;16327:30;16393:34;16373:18;;;16366:62;16464:20;16444:18;;;16437:48;16502:19;;53654:80:0;16113:414:1;53654:80:0;53777:4;-1:-1:-1;;;;;53755:26:0;:13;:18;;;-1:-1:-1;;;;;53755:26:0;;53747:77;;;;-1:-1:-1;;;53747:77:0;;16734:2:1;53747:77:0;;;16716:21:1;16773:2;16753:18;;;16746:30;16812:34;16792:18;;;16785:62;-1:-1:-1;;;16863:18:1;;;16856:36;16909:19;;53747:77:0;16532:402:1;53747:77:0;-1:-1:-1;;;;;53843:16:0;;53835:66;;;;-1:-1:-1;;;53835:66:0;;17141:2:1;53835:66:0;;;17123:21:1;17180:2;17160:18;;;17153:30;17219:34;17199:18;;;17192:62;-1:-1:-1;;;17270:18:1;;;17263:35;17315:19;;53835:66:0;16939:401:1;53835:66:0;54022:49;54039:1;54043:7;54052:13;:18;;;54022:8;:49::i;:::-;-1:-1:-1;;;;;54084:18:0;;;;;;:12;:18;;;;;:31;;54114:1;;54084:18;:31;;54114:1;;-1:-1:-1;;;;;54084:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;54084:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54126:16:0;;-1:-1:-1;54126:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;54126:16:0;;:29;;-1:-1:-1;;54126:29:0;;:::i;:::-;;;-1:-1:-1;;;;;54126:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54189:43:0;;;;;;;;-1:-1:-1;;;;;54189:43:0;;;;;;54215:15;54189:43;;;;;;;;;-1:-1:-1;54166:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;54166:66:0;-1:-1:-1;;;;;;54166:66:0;;;;;;;;;;;54494:11;54178:7;-1:-1:-1;54494:11:0;:::i;:::-;54561:1;54520:24;;;:11;:24;;;;;:29;54472:33;;-1:-1:-1;;;;;;54520:29:0;54516:227;;54584:20;54592:11;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;54584:20;54580:152;;;54652:64;;;;;;;;54667:18;;-1:-1:-1;;;;;54652:64:0;;;;;;54687:28;;;;54652:64;;;;;;;;;;-1:-1:-1;54625:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;54625:91:0;-1:-1:-1;;;;;;54625:91:0;;;;;;;;;;;;54580:152;54779:7;54775:2;-1:-1:-1;;;;;54760:27:0;54769:4;-1:-1:-1;;;;;54760:27:0;;;;;;;;;;;54798:42;53378:1470;;;53274:1574;;;:::o;55326:885::-;55420:24;;55463:12;55455:49;;;;-1:-1:-1;;;55455:49:0;;18056:2:1;55455:49:0;;;18038:21:1;18095:2;18075:18;;;18068:30;18134:26;18114:18;;;18107:54;18178:18;;55455:49:0;17854:348:1;55455:49:0;55515:16;55565:1;55534:28;55554:8;55534:17;:28;:::i;:::-;:32;;;;:::i;:::-;55515:51;;55607:1;55592:12;;:16;;;;:::i;:::-;55581:8;:27;55577:87;;;55651:1;55636:12;;:16;;;;:::i;:::-;55625:27;;55577:87;55787:17;55795:8;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;55787:17;55779:68;;;;-1:-1:-1;;;55779:68:0;;18409:2:1;55779:68:0;;;18391:21:1;18448:2;18428:18;;;18421:30;18487:34;18467:18;;;18460:62;-1:-1:-1;;;18538:18:1;;;18531:36;18584:19;;55779:68:0;18207:402:1;55779:68:0;55875:17;55858:296;55899:8;55894:1;:13;55858:296;;55964:1;55933:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;55933:19:0;55929:214;;55987:31;56021:14;56033:1;56021:11;:14::i;:::-;56071:56;;;;;;;;56086:14;;-1:-1:-1;;;;;56071:56:0;;;;;;56102:24;;;;56071:56;;;;;;;;;;-1:-1:-1;56054:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;56054:73:0;-1:-1:-1;;;;;;56054:73:0;;;;;;;;;;;;-1:-1:-1;55929:214:0;55909:3;;;;:::i;:::-;;;;55858:296;;;-1:-1:-1;56191:12:0;:8;56202:1;56191:12;:::i;:::-;56164:24;:39;-1:-1:-1;;;55326:885:0:o;51239:104::-;51308:27;51318:2;51322:8;51308:27;;;;;;;;;;;;:9;:27::i;46689:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;46792:16:0;46800:7;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;46792:16;46784:71;;;;-1:-1:-1;;;46784:71:0;;18816:2:1;46784:71:0;;;18798:21:1;18855:2;18835:18;;;18828:30;18894:34;18874:18;;;18867:62;-1:-1:-1;;;18945:18:1;;;18938:40;18995:19;;46784:71:0;18614:406:1;46784:71:0;46868:26;46920:12;46909:7;:23;46905:103;;46970:22;46980:12;46970:7;:22;:::i;:::-;:26;;46995:1;46970:26;:::i;:::-;46949:47;;46905:103;47040:7;47020:242;47057:18;47049:4;:26;47020:242;;47100:31;47134:17;;;:11;:17;;;;;;;;;47100:51;;;;;;;;;-1:-1:-1;;;;;47100:51:0;;;;;-1:-1:-1;;;47100:51:0;;;;;;;;;;;;47170:28;47166:85;;47226:9;46689:650;-1:-1:-1;;;;46689:650:0:o;47166:85::-;-1:-1:-1;47077:6:0;;;;:::i;:::-;;;;47020:242;;;-1:-1:-1;47274:57:0;;-1:-1:-1;;;47274:57:0;;19368:2:1;47274:57:0;;;19350:21:1;19407:2;19387:18;;;19380:30;19446:34;19426:18;;;19419:62;19517:17;19497:18;;;19490:45;19552:19;;47274:57:0;19166:411:1;56776:804:0;56931:4;-1:-1:-1;;;;;56952:13:0;;1124:20;1172:8;56948:625;;56988:72;;-1:-1:-1;;;56988:72:0;;-1:-1:-1;;;;;56988:36:0;;;;;:72;;19676:10;;57039:4;;57045:7;;57054:5;;56988:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56988:72:0;;;;;;;;-1:-1:-1;;56988:72:0;;;;;;;;;;;;:::i;:::-;;;56984:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57234:13:0;;57230:273;;57277:61;;-1:-1:-1;;;57277:61:0;;14866:2:1;57277:61:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:49;15054:19;;57277:61:0;14664:415:1;57230:273:0;57453:6;57447:13;57438:6;57434:2;57430:15;57423:38;56984:534;-1:-1:-1;;;;;;57111:55:0;-1:-1:-1;;;57111:55:0;;-1:-1:-1;57104:62:0;;56948:625;-1:-1:-1;57557:4:0;56776:804;;;;;;:::o;63776:108::-;63836:13;63869:7;63862:14;;;;;:::i;8445:723::-;8501:13;8722:10;8718:53;;-1:-1:-1;;8749:10:0;;;;;;;;;;;;-1:-1:-1;;;8749:10:0;;;;;8445:723::o;8718:53::-;8796:5;8781:12;8837:78;8844:9;;8837:78;;8870:8;;;;:::i;:::-;;-1:-1:-1;8893:10:0;;-1:-1:-1;8901:2:0;8893:10;;:::i;:::-;;;8837:78;;;8925:19;8957:6;8947:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8947:17:0;;8925:39;;8975:154;8982:10;;8975:154;;9009:11;9019:1;9009:11;;:::i;:::-;;-1:-1:-1;9078:10:0;9086:2;9078:5;:10;:::i;:::-;9065:24;;:2;:24;:::i;:::-;9052:39;;9035:6;9042;9035:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9106:11:0;9115:2;9106:11;;:::i;:::-;;;8975:154;;51620:1400;51743:20;51766:12;-1:-1:-1;;;;;51797:16:0;;51789:62;;;;-1:-1:-1;;;51789:62:0;;20929:2:1;51789:62:0;;;20911:21:1;20968:2;20948:18;;;20941:30;21007:34;20987:18;;;20980:62;-1:-1:-1;;;21058:18:1;;;21051:31;21099:19;;51789:62:0;20727:397:1;51789:62:0;51996:21;52004:12;51177:4;51211:12;-1:-1:-1;51201:22:0;51120:111;51996:21;51995:22;51987:64;;;;-1:-1:-1;;;51987:64:0;;21331:2:1;51987:64:0;;;21313:21:1;21370:2;21350:18;;;21343:30;21409:31;21389:18;;;21382:59;21458:18;;51987:64:0;21129:353:1;51987:64:0;52082:12;52070:8;:24;;52062:71;;;;-1:-1:-1;;;52062:71:0;;21689:2:1;52062:71:0;;;21671:21:1;21728:2;21708:18;;;21701:30;21767:34;21747:18;;;21740:62;-1:-1:-1;;;21818:18:1;;;21811:32;21860:19;;52062:71:0;21487:398:1;52062:71:0;-1:-1:-1;;;;;52253:16:0;;52220:30;52253:16;;;:12;:16;;;;;;;;;52220:49;;;;;;;;;-1:-1:-1;;;;;52220:49:0;;;;;-1:-1:-1;;;52220:49:0;;;;;;;;;;;52299:135;;;;;;;;52325:19;;52220:49;;52299:135;;;52325:39;;52355:8;;52325:39;:::i;:::-;-1:-1:-1;;;;;52299:135:0;;;;;52414:8;52379:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;52299:135:0;;;;;;-1:-1:-1;;;;;52280:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;52280:154:0;;;;;;;;;;;;52473:43;;;;;;;;;;;52499:15;52473:43;;;;;;;;52445:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;52445:71:0;-1:-1:-1;;;;;;52445:71:0;;;;;;;;;;;;;;;;;;52457:12;;52577:325;52601:8;52597:1;:12;52577:325;;;52636:38;;52661:12;;-1:-1:-1;;;;;52636:38:0;;;52653:1;;52636:38;;52653:1;;52636:38;52715:59;52746:1;52750:2;52754:12;52768:5;52715:22;:59::i;:::-;52689:172;;;;-1:-1:-1;;;52689:172:0;;14866:2:1;52689:172:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:49;15054:19;;52689:172:0;14664:415:1;52689:172:0;52876:14;;;;:::i;:::-;;;;52611:3;;;;;:::i;:::-;;;;52577:325;;;-1:-1:-1;52914:12:0;:27;;;52952:60;50510:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1941:196::-;2009:20;;-1:-1:-1;;;;;2058:54:1;;2048:65;;2038:93;;2127:1;2124;2117:12;2038:93;1941:196;;;:::o;2142:254::-;2210:6;2218;2271:2;2259:9;2250:7;2246:23;2242:32;2239:52;;;2287:1;2284;2277:12;2239:52;2310:29;2329:9;2310:29;:::i;:::-;2300:39;2386:2;2371:18;;;;2358:32;;-1:-1:-1;;;2142:254:1:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:127::-;2795:10;2790:3;2786:20;2783:1;2776:31;2826:4;2823:1;2816:15;2850:4;2847:1;2840:15;2866:632;2931:5;2961:18;3002:2;2994:6;2991:14;2988:40;;;3008:18;;:::i;:::-;3083:2;3077:9;3051:2;3137:15;;-1:-1:-1;;3133:24:1;;;3159:2;3129:33;3125:42;3113:55;;;3183:18;;;3203:22;;;3180:46;3177:72;;;3229:18;;:::i;:::-;3269:10;3265:2;3258:22;3298:6;3289:15;;3328:6;3320;3313:22;3368:3;3359:6;3354:3;3350:16;3347:25;3344:45;;;3385:1;3382;3375:12;3344:45;3435:6;3430:3;3423:4;3415:6;3411:17;3398:44;3490:1;3483:4;3474:6;3466;3462:19;3458:30;3451:41;;;;2866:632;;;;;:::o;3503:222::-;3546:5;3599:3;3592:4;3584:6;3580:17;3576:27;3566:55;;3617:1;3614;3607:12;3566:55;3639:80;3715:3;3706:6;3693:20;3686:4;3678:6;3674:17;3639:80;:::i;3730:390::-;3808:6;3816;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;3921:9;3908:23;3898:33;;3982:2;3971:9;3967:18;3954:32;4009:18;4001:6;3998:30;3995:50;;;4041:1;4038;4031:12;3995:50;4064;4106:7;4097:6;4086:9;4082:22;4064:50;:::i;:::-;4054:60;;;3730:390;;;;;:::o;4125:186::-;4184:6;4237:2;4225:9;4216:7;4212:23;4208:32;4205:52;;;4253:1;4250;4243:12;4205:52;4276:29;4295:9;4276:29;:::i;4316:322::-;4385:6;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4494:9;4481:23;4527:18;4519:6;4516:30;4513:50;;;4559:1;4556;4549:12;4513:50;4582;4624:7;4615:6;4604:9;4600:22;4582:50;:::i;4643:615::-;4729:6;4737;4790:2;4778:9;4769:7;4765:23;4761:32;4758:52;;;4806:1;4803;4796:12;4758:52;4846:9;4833:23;4875:18;4916:2;4908:6;4905:14;4902:34;;;4932:1;4929;4922:12;4902:34;4970:6;4959:9;4955:22;4945:32;;5015:7;5008:4;5004:2;5000:13;4996:27;4986:55;;5037:1;5034;5027:12;4986:55;5077:2;5064:16;5103:2;5095:6;5092:14;5089:34;;;5119:1;5116;5109:12;5089:34;5172:7;5167:2;5157:6;5154:1;5150:14;5146:2;5142:23;5138:32;5135:45;5132:65;;;5193:1;5190;5183:12;5132:65;5224:2;5216:11;;;;;5246:6;;-1:-1:-1;4643:615:1;;-1:-1:-1;;;;4643:615:1:o;5263:347::-;5328:6;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5428:29;5447:9;5428:29;:::i;:::-;5418:39;;5507:2;5496:9;5492:18;5479:32;5554:5;5547:13;5540:21;5533:5;5530:32;5520:60;;5576:1;5573;5566:12;5520:60;5599:5;5589:15;;;5263:347;;;;;:::o;5615:667::-;5710:6;5718;5726;5734;5787:3;5775:9;5766:7;5762:23;5758:33;5755:53;;;5804:1;5801;5794:12;5755:53;5827:29;5846:9;5827:29;:::i;:::-;5817:39;;5875:38;5909:2;5898:9;5894:18;5875:38;:::i;:::-;5865:48;;5960:2;5949:9;5945:18;5932:32;5922:42;;6015:2;6004:9;6000:18;5987:32;6042:18;6034:6;6031:30;6028:50;;;6074:1;6071;6064:12;6028:50;6097:22;;6150:4;6142:13;;6138:27;-1:-1:-1;6128:55:1;;6179:1;6176;6169:12;6128:55;6202:74;6268:7;6263:2;6250:16;6245:2;6241;6237:11;6202:74;:::i;:::-;6192:84;;;5615:667;;;;;;;:::o;6287:260::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6455:29;6474:9;6455:29;:::i;:::-;6445:39;;6503:38;6537:2;6526:9;6522:18;6503:38;:::i;:::-;6493:48;;6287:260;;;;;:::o;6552:380::-;6631:1;6627:12;;;;6674;;;6695:61;;6749:4;6741:6;6737:17;6727:27;;6695:61;6802:2;6794:6;6791:14;6771:18;6768:38;6765:161;;;6848:10;6843:3;6839:20;6836:1;6829:31;6883:4;6880:1;6873:15;6911:4;6908:1;6901:15;6765:161;;6552:380;;;:::o;8920:127::-;8981:10;8976:3;8972:20;8969:1;8962:31;9012:4;9009:1;9002:15;9036:4;9033:1;9026:15;9052:135;9091:3;-1:-1:-1;;9112:17:1;;9109:43;;;9132:18;;:::i;:::-;-1:-1:-1;9179:1:1;9168:13;;9052:135::o;9960:128::-;10000:3;10031:1;10027:6;10024:1;10021:13;10018:39;;;10037:18;;:::i;:::-;-1:-1:-1;10073:9:1;;9960:128::o;10438:125::-;10478:4;10506:1;10503;10500:8;10497:34;;;10511:18;;:::i;:::-;-1:-1:-1;10548:9:1;;10438:125::o;11938:127::-;11999:10;11994:3;11990:20;11987:1;11980:31;12030:4;12027:1;12020:15;12054:4;12051:1;12044:15;13101:168;13141:7;13207:1;13203;13199:6;13195:14;13192:1;13189:21;13184:1;13177:9;13170:17;13166:45;13163:71;;;13214:18;;:::i;:::-;-1:-1:-1;13254:9:1;;13101:168::o;15444:664::-;15671:3;15709:6;15703:13;15725:53;15771:6;15766:3;15759:4;15751:6;15747:17;15725:53;:::i;:::-;15841:13;;15800:16;;;;15863:57;15841:13;15800:16;15897:4;15885:17;;15863:57;:::i;:::-;15987:13;;15942:20;;;16009:57;15987:13;15942:20;16043:4;16031:17;;16009:57;:::i;:::-;16082:20;;15444:664;-1:-1:-1;;;;;15444:664:1:o;17345:246::-;17385:4;-1:-1:-1;;;;;17498:10:1;;;;17468;;17520:12;;;17517:38;;;17535:18;;:::i;:::-;17572:13;;17345:246;-1:-1:-1;;;17345:246:1:o;17596:253::-;17636:3;-1:-1:-1;;;;;17725:2:1;17722:1;17718:10;17755:2;17752:1;17748:10;17786:3;17782:2;17778:12;17773:3;17770:21;17767:47;;;17794:18;;:::i;:::-;17830:13;;17596:253;-1:-1:-1;;;;17596:253:1:o;19025:136::-;19064:3;19092:5;19082:39;;19101:18;;:::i;:::-;-1:-1:-1;;;19137:18:1;;19025:136::o;19582:512::-;19776:4;-1:-1:-1;;;;;19886:2:1;19878:6;19874:15;19863:9;19856:34;19938:2;19930:6;19926:15;19921:2;19910:9;19906:18;19899:43;;19978:6;19973:2;19962:9;19958:18;19951:34;20021:3;20016:2;20005:9;20001:18;19994:31;20042:46;20083:3;20072:9;20068:19;20060:6;20042:46;:::i;:::-;20034:54;19582:512;-1:-1:-1;;;;;;19582:512:1:o;20099:249::-;20168:6;20221:2;20209:9;20200:7;20196:23;20192:32;20189:52;;;20237:1;20234;20227:12;20189:52;20269:9;20263:16;20288:30;20312:5;20288:30;:::i;20353:127::-;20414:10;20409:3;20405:20;20402:1;20395:31;20445:4;20442:1;20435:15;20469:4;20466:1;20459:15;20485:120;20525:1;20551;20541:35;;20556:18;;:::i;:::-;-1:-1:-1;20590:9:1;;20485:120::o;20610:112::-;20642:1;20668;20658:35;;20673:18;;:::i;:::-;-1:-1:-1;20707:9:1;;20610:112::o
Swarm Source
ipfs://fce2d1a6a7d18315d5f18bc959fa5e8f86a9c60149cec9bb9d17cea31132f471
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.