Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 20 from a total of 20 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14996029 | 949 days ago | IN | 0 ETH | 0.00064186 | ||||
Set Approval For... | 14722496 | 994 days ago | IN | 0 ETH | 0.00175868 | ||||
Transfer From | 14682521 | 1001 days ago | IN | 0 ETH | 0.00242709 | ||||
Withdraw | 14676637 | 1001 days ago | IN | 0 ETH | 0.00132285 | ||||
Reveal | 14672318 | 1002 days ago | IN | 0 ETH | 0.0017291 | ||||
Set Base URI | 14672311 | 1002 days ago | IN | 0 ETH | 0.00204886 | ||||
Mint | 14672106 | 1002 days ago | IN | 0.05 ETH | 0.00597486 | ||||
Mint | 14669300 | 1003 days ago | IN | 0.05 ETH | 0.00750542 | ||||
Set Cost | 14666105 | 1003 days ago | IN | 0 ETH | 0.00087962 | ||||
Mint | 14660724 | 1004 days ago | IN | 0.03 ETH | 0.00758599 | ||||
Mint | 14660430 | 1004 days ago | IN | 0.03 ETH | 0.00795491 | ||||
Mint | 14660071 | 1004 days ago | IN | 0.03 ETH | 0.00519404 | ||||
Mint | 14659633 | 1004 days ago | IN | 0.03 ETH | 0.00425312 | ||||
Mint | 14659512 | 1004 days ago | IN | 0.03 ETH | 0.00412232 | ||||
Mint | 14659298 | 1004 days ago | IN | 0.03 ETH | 0.00680035 | ||||
Mint | 14659244 | 1004 days ago | IN | 0.03 ETH | 0.00637384 | ||||
Set Only Whiteli... | 14646459 | 1006 days ago | IN | 0 ETH | 0.00039917 | ||||
Mint | 14273595 | 1064 days ago | IN | 0.03 ETH | 0.00716041 | ||||
Mint | 14273595 | 1064 days ago | IN | 0.03 ETH | 0.00731636 | ||||
Whitelist Users | 14273583 | 1064 days ago | IN | 0 ETH | 0.003418 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14676637 | 1001 days ago | 0.37 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GMfrensNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-25 */ // SPDX-License-Identifier: MIT /** ██████ ███ ███ ███████ ██████ ███████ ███ ██ ▄▄███▄▄· ██ ████ ████ ██ ██ ██ ██ ████ ██ ██ ██ ███ ██ ████ ██ █████ ██████ █████ ██ ██ ██ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ███████ ██ ████ ███████ ▀▀▀ Welcome to the GM fren$! This is a kind of Artist collaboration DAO, it will not be limited to just art, it will provide some utilities. Community members made up of art lovers directly vote for up-and-coming artists and support them. We regularly release artist collaboration collections. The DAO will receive a portion of the project's revenue, which will allow for continued growth. */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) 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(); } } // File: contracts/gmfrens.sol /** ██████ ███ ███ ███████ ██████ ███████ ███ ██ ▄▄███▄▄· ██ ████ ████ ██ ██ ██ ██ ████ ██ ██ ██ ███ ██ ████ ██ █████ ██████ █████ ██ ██ ██ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ███████ ██ ████ ███████ ▀▀▀ Welcome to the GM fren$! This is a kind of Artist collaboration DAO, it will not be limited to just art, it will provide some utilities. Community members made up of art lovers directly vote for up-and-coming artists and support them. We regularly release artist collaboration collections. The DAO will receive a portion of the project's revenue, which will allow for continued growth. */ pragma solidity >=0.7.0 <0.9.0; contract GMfrensNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.03 ether; uint256 public maxSupply = 3000; uint256 public maxMintAmount = 30; uint256 public nftPerAddressLimit = 3; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); mint(30); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_user","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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000c5a565b50666a94d74f430000600e55610bb8600f55601e60105560036011556012805462ffffff1916620100001790553480156200006257600080fd5b5060405162003a8738038062003a87833981016040819052620000859162000dc0565b8351849084906200009e90600090602085019062000c5a565b508051620000b490600190602084019062000c5a565b505050620000d1620000cb620000fd60201b60201c565b62000101565b620000dc8262000153565b620000e781620001bb565b620000f3601e6200021b565b5050505062000fdb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a25760405162461bcd60e51b8152602060048201819052602482015260008051602062003a6783398151915260448201526064015b60405180910390fd5b8051620001b790600b90602084019062000c5a565b5050565b600a546001600160a01b03163314620002065760405162461bcd60e51b8152602060048201819052602482015260008051602062003a67833981519152604482015260640162000199565b8051620001b790600d90602084019062000c5a565b60125460ff1615620002705760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e74726163742069732070617573656400000000000000000000604482015260640162000199565b60006200027c60085490565b905060008211620002d05760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640162000199565b601054821115620003305760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840162000199565b600f546200033f838362000eca565b11156200038f5760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d697420657863656564656400000000000000000000604482015260640162000199565b600a546001600160a01b03163314620004d95760125462010000900460ff161515600114156200048357620003c43362000538565b620004125760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640162000199565b3360009081526014602052604090205460115462000431848362000eca565b1115620004815760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640162000199565b505b81600e5462000493919062000ee5565b341015620004d95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640162000199565b60015b8281116200053357336000908152601460205260408120805491620005018362000f91565b909155506200051e90503362000518838562000eca565b620005b6565b806200052a8162000f91565b915050620004dc565b505050565b6000805b601354811015620005ad57826001600160a01b0316601382815481106200057357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415620005985750600192915050565b80620005a48162000f91565b9150506200053c565b50600092915050565b620001b7828260405180602001604052806000815250620005d860201b60201c565b620005e483836200064b565b620005f36000848484620007a1565b620005335760405162461bcd60e51b8152602060048201526032602482015260008051602062003a4783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b6001600160a01b038216620006a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000199565b6000818152600260205260409020546001600160a01b0316156200070a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000199565b62000718600083836200090a565b6001600160a01b03821660009081526003602052604081208054600192906200074390849062000eca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620007c2846001600160a01b0316620009e660201b6200175c1760201c565b15620008fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620007fc90339089908890889060040162000e74565b602060405180830381600087803b1580156200081757600080fd5b505af19250505080156200084a575060408051601f3d908101601f19168201909252620008479181019062000d8f565b60015b620008e3573d8080156200087b576040519150601f19603f3d011682016040523d82523d6000602084013e62000880565b606091505b508051620008db5760405162461bcd60e51b8152602060048201526032602482015260008051602062003a4783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000902565b5060015b949350505050565b620009228383836200053360201b62000b2d1760201c565b6001600160a01b03831662000980576200097a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620009a6565b816001600160a01b0316836001600160a01b031614620009a657620009a68382620009f5565b6001600160a01b038216620009c057620005338162000aa2565b826001600160a01b0316826001600160a01b031614620005335762000533828262000b80565b6001600160a01b03163b151590565b6000600162000a0f8462000bd160201b62000fc31760201c565b62000a1b919062000f07565b60008381526007602052604090205490915080821462000a6f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000ab69060019062000f07565b6000838152600960205260408120546008805493945090928490811062000aed57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811062000b1d57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b6457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b988362000bd160201b62000fc31760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000c3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000199565b506001600160a01b031660009081526003602052604090205490565b82805462000c689062000f54565b90600052602060002090601f01602090048101928262000c8c576000855562000cd7565b82601f1062000ca757805160ff191683800117855562000cd7565b8280016001018555821562000cd7579182015b8281111562000cd757825182559160200191906001019062000cba565b5062000ce592915062000ce9565b5090565b5b8082111562000ce5576000815560010162000cea565b600082601f83011262000d11578081fd5b81516001600160401b038082111562000d2e5762000d2e62000fc5565b604051601f8301601f19908116603f0116810190828211818310171562000d595762000d5962000fc5565b8160405283815286602085880101111562000d72578485fd5b62000d8584602083016020890162000f21565b9695505050505050565b60006020828403121562000da1578081fd5b81516001600160e01b03198116811462000db9578182fd5b9392505050565b6000806000806080858703121562000dd6578283fd5b84516001600160401b038082111562000ded578485fd5b62000dfb8883890162000d00565b9550602087015191508082111562000e11578485fd5b62000e1f8883890162000d00565b9450604087015191508082111562000e35578384fd5b62000e438883890162000d00565b9350606087015191508082111562000e59578283fd5b5062000e688782880162000d00565b91505092959194509250565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000eb38160a085016020870162000f21565b601f01601f19169190910160a00195945050505050565b6000821982111562000ee05762000ee062000faf565b500190565b600081600019048311821515161562000f025762000f0262000faf565b500290565b60008282101562000f1c5762000f1c62000faf565b500390565b60005b8381101562000f3e57818101518382015260200162000f24565b8381111562000f4e576000848401525b50505050565b600181811c9082168062000f6957607f821691505b6020821081141562000f8b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000fa85762000fa862000faf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612a5c8062000feb6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125e6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125cc565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127eb565b3480156102fc57600080fd5b5061031061030b366004612664565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc610358366004612533565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b136600461240a565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612456565b610b32565b34801561040557600080fd5b50610373610414366004612533565b610b63565b34801561042557600080fd5b5061029761043436600461240a565b610bf9565b34801561044557600080fd5b506102cc6104543660046125cc565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612456565b610d55565b34801561048d57600080fd5b506104a161049c36600461240a565b610d70565b6040516102a391906127a7565b3480156104ba57600080fd5b506102cc6104c9366004612664565b610e2e565b3480156104da57600080fd5b506103736104e9366004612664565b610e5d565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc61052836600461261e565b610efe565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612664565b610f3f565b34801561057357600080fd5b506102e3610fb6565b34801561058857600080fd5b5061037361059736600461240a565b610fc3565b3480156105a857600080fd5b506102cc61104a565b3480156105bd57600080fd5b506102cc6105cc366004612664565b611080565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e36110af565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612664565b6110be565b34801561064357600080fd5b506102cc61065236600461250a565b6113a5565b34801561066357600080fd5b506102cc6113b0565b34801561067857600080fd5b506102cc610687366004612491565b6113eb565b34801561069857600080fd5b506103106106a7366004612664565b611423565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e361144d565b3480156106e357600080fd5b506102e36106f2366004612664565b61145a565b34801561070357600080fd5b506102cc610712366004612664565b6115d9565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc61074836600461261e565b611608565b34801561075957600080fd5b50610297610768366004612424565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461255c565b611645565b3480156107c257600080fd5b506102cc6107d136600461261e565b611687565b3480156107e257600080fd5b506102cc6107f136600461240a565b6116c4565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b8261176b565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612850565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612964565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612964565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612964565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612964565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f3f565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d83836117bb565b505050565b610b3c3382611829565b610b585760405162461bcd60e51b815260040161084b90612885565b610b2d838383611920565b6000610b6e83610fc3565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c608161299f565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612850565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612850565b6000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905080610d5257600080fd5b50565b610b2d838383604051806020016040528060008152506113eb565b60606000610d7d83610fc3565b905060008167ffffffffffffffff811115610da857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610dd1578160200160208202803683370190505b50905060005b82811015610e2657610de98582610b63565b828281518110610e0957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e1e8161299f565b915050610dd7565b509392505050565b600a546001600160a01b03163314610e585760405162461bcd60e51b815260040161084b90612850565b600e55565b6000610e6860085490565b8210610ecb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eec57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600b90602084019061225e565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612964565b60006001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110745760405162461bcd60e51b815260040161084b90612850565b61107e6000611ac7565b565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161084b90612850565b601055565b60606001805461087690612964565b60125460ff161561110a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061111560085490565b9050600082116111675760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111c55760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111d283836128d6565b11156112195760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113555760125462010000900460ff161515600114156113035761124a33610bf9565b6112965760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b336000908152601460205260409020546011546112b384836128d6565b11156113015760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546113119190612902565b3410156113555760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161137a8361299f565b9091555061139390503361138e83856128d6565b611b19565b8061139d8161299f565b915050611358565b610f3b338383611b33565b600a546001600160a01b031633146113da5760405162461bcd60e51b815260040161084b90612850565b6012805461ff001916610100179055565b6113f53383611829565b6114115760405162461bcd60e51b815260040161084b90612885565b61141d84848484611c02565b50505050565b6013818154811061143357600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612964565b6000818152600260205260409020546060906001600160a01b03166114d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661157a57600d80546114f590612964565b80601f016020809104026020016040519081016040528092919081815260200182805461152190612964565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b50505050509050919050565b6000611584611c35565b905060008151116115a457604051806020016040528060008152506115d2565b806115ae84611c44565b600c6040516020016115c2939291906126a8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116035760405162461bcd60e51b815260040161084b90612850565b601155565b600a546001600160a01b031633146116325760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600c90602084019061225e565b600a546001600160a01b0316331461166f5760405162461bcd60e51b815260040161084b90612850565b61167b601360006122e2565b610b2d60138383612300565b600a546001600160a01b031633146116b15760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600d90602084019061225e565b600a546001600160a01b031633146116ee5760405162461bcd60e51b815260040161084b90612850565b6001600160a01b0381166117535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d5281611ac7565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061179c57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f082610f3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b60006118ad83610f3f565b9050806001600160a01b0316846001600160a01b031614806118e85750836001600160a01b03166118dd846108f9565b6001600160a01b0316145b8061191857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193382610f3f565b6001600160a01b0316146119975760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161084b565b6001600160a01b0382166119f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a04838383611d5e565b611a0f6000826117bb565b6001600160a01b0383166000908152600360205260408120805460019290611a38908490612921565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a669084906128d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3b828260405180602001604052806000815250611e16565b816001600160a01b0316836001600160a01b03161415611b955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c0d848484611920565b611c1984848484611e49565b61141d5760405162461bcd60e51b815260040161084b906127fe565b6060600b805461087690612964565b606081611c685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c925780611c7c8161299f565b9150611c8b9050600a836128ee565b9150611c6c565b60008167ffffffffffffffff811115611cbb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce5576020820181803683370190505b5090505b841561191857611cfa600183612921565b9150611d07600a866129ba565b611d129060306128d6565b60f81b818381518110611d3557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d57600a866128ee565b9450611ce9565b6001600160a01b038316611db957611db481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ddc565b816001600160a01b0316836001600160a01b031614611ddc57611ddc8382611f56565b6001600160a01b038216611df357610b2d81611ff3565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826120cc565b611e208383612110565b611e2d6000848484611e49565b610b2d5760405162461bcd60e51b815260040161084b906127fe565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8d90339089908890889060040161276a565b602060405180830381600087803b158015611ea757600080fd5b505af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed491810190612602565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161084b906127fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611918565b506001949350505050565b60006001611f6384610fc3565b611f6d9190612921565b600083815260076020526040902054909150808214611fc0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200590600190612921565b6000838152600960205260408120546008805493945090928490811061203b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061206a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120b057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120d783610fc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121d760008383611d5e565b6001600160a01b03821660009081526003602052604081208054600192906122009084906128d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461226a90612964565b90600052602060002090601f01602090048101928261228c57600085556122d2565b82601f106122a557805160ff19168380011785556122d2565b828001600101855582156122d2579182015b828111156122d25782518255916020019190600101906122b7565b506122de929150612353565b5090565b5080546000825590600052602060002090810190610d529190612353565b8280548282559060005260206000209081019282156122d2579160200282015b828111156122d25781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612320565b5b808211156122de5760008155600101612354565b600067ffffffffffffffff80841115612383576123836129fa565b604051601f8501601f19908116603f011681019082821181831017156123ab576123ab6129fa565b816040528093508581528686860111156123c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f557600080fd5b919050565b803580151581146123f557600080fd5b60006020828403121561241b578081fd5b6115d2826123de565b60008060408385031215612436578081fd5b61243f836123de565b915061244d602084016123de565b90509250929050565b60008060006060848603121561246a578081fd5b612473846123de565b9250612481602085016123de565b9150604084013590509250925092565b600080600080608085870312156124a6578081fd5b6124af856123de565b93506124bd602086016123de565b925060408501359150606085013567ffffffffffffffff8111156124df578182fd5b8501601f810187136124ef578182fd5b6124fe87823560208401612368565b91505092959194509250565b6000806040838503121561251c578182fd5b612525836123de565b915061244d602084016123fa565b60008060408385031215612545578182fd5b61254e836123de565b946020939093013593505050565b6000806020838503121561256e578182fd5b823567ffffffffffffffff80821115612585578384fd5b818501915085601f830112612598578384fd5b8135818111156125a6578485fd5b8660208260051b85010111156125ba578485fd5b60209290920196919550909350505050565b6000602082840312156125dd578081fd5b6115d2826123fa565b6000602082840312156125f7578081fd5b81356115d281612a10565b600060208284031215612613578081fd5b81516115d281612a10565b60006020828403121561262f578081fd5b813567ffffffffffffffff811115612645578182fd5b8201601f81018413612655578182fd5b61191884823560208401612368565b600060208284031215612675578081fd5b5035919050565b60008151808452612694816020860160208601612938565b601f01601f19169290920160200192915050565b6000845160206126bb8285838a01612938565b8551918401916126ce8184848a01612938565b85549201918390600181811c90808316806126ea57607f831692505b85831081141561270857634e487b7160e01b88526022600452602488fd5b80801561271c576001811461272d57612759565b60ff19851688528388019550612759565b60008b815260209020895b858110156127515781548a820152908401908801612738565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279d9083018461267c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127df578351835292840192918401916001016127c3565b50909695505050505050565b6020815260006115d2602083018461267c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128e9576128e96129ce565b500190565b6000826128fd576128fd6129e4565b500490565b600081600019048311821515161561291c5761291c6129ce565b500290565b600082821015612933576129336129ce565b500390565b60005b8381101561295357818101518382015260200161293b565b8381111561141d5750506000910152565b600181811c9082168061297857607f821691505b6020821081141561299957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129b3576129b36129ce565b5060010190565b6000826129c9576129c96129e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5257600080fdfea26469706673582212200ed8af2d6ac685aff3a4a6748e92e82d70fffb45d192176458f78e9b49e5246864736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000008474d206672656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6b6576696e63686f696172742e636f6d2f676d6672656e732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d51556e79706555596d344a356a444641676b456e486e39595a4674674643707652716f774a314635643147562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125e6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125cc565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127eb565b3480156102fc57600080fd5b5061031061030b366004612664565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc610358366004612533565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b136600461240a565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612456565b610b32565b34801561040557600080fd5b50610373610414366004612533565b610b63565b34801561042557600080fd5b5061029761043436600461240a565b610bf9565b34801561044557600080fd5b506102cc6104543660046125cc565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612456565b610d55565b34801561048d57600080fd5b506104a161049c36600461240a565b610d70565b6040516102a391906127a7565b3480156104ba57600080fd5b506102cc6104c9366004612664565b610e2e565b3480156104da57600080fd5b506103736104e9366004612664565b610e5d565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc61052836600461261e565b610efe565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612664565b610f3f565b34801561057357600080fd5b506102e3610fb6565b34801561058857600080fd5b5061037361059736600461240a565b610fc3565b3480156105a857600080fd5b506102cc61104a565b3480156105bd57600080fd5b506102cc6105cc366004612664565b611080565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e36110af565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612664565b6110be565b34801561064357600080fd5b506102cc61065236600461250a565b6113a5565b34801561066357600080fd5b506102cc6113b0565b34801561067857600080fd5b506102cc610687366004612491565b6113eb565b34801561069857600080fd5b506103106106a7366004612664565b611423565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e361144d565b3480156106e357600080fd5b506102e36106f2366004612664565b61145a565b34801561070357600080fd5b506102cc610712366004612664565b6115d9565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc61074836600461261e565b611608565b34801561075957600080fd5b50610297610768366004612424565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461255c565b611645565b3480156107c257600080fd5b506102cc6107d136600461261e565b611687565b3480156107e257600080fd5b506102cc6107f136600461240a565b6116c4565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b8261176b565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612850565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612964565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612964565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612964565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612964565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f3f565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d83836117bb565b505050565b610b3c3382611829565b610b585760405162461bcd60e51b815260040161084b90612885565b610b2d838383611920565b6000610b6e83610fc3565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c608161299f565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612850565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612850565b6000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905080610d5257600080fd5b50565b610b2d838383604051806020016040528060008152506113eb565b60606000610d7d83610fc3565b905060008167ffffffffffffffff811115610da857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610dd1578160200160208202803683370190505b50905060005b82811015610e2657610de98582610b63565b828281518110610e0957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e1e8161299f565b915050610dd7565b509392505050565b600a546001600160a01b03163314610e585760405162461bcd60e51b815260040161084b90612850565b600e55565b6000610e6860085490565b8210610ecb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eec57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600b90602084019061225e565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612964565b60006001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110745760405162461bcd60e51b815260040161084b90612850565b61107e6000611ac7565b565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161084b90612850565b601055565b60606001805461087690612964565b60125460ff161561110a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061111560085490565b9050600082116111675760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111c55760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111d283836128d6565b11156112195760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113555760125462010000900460ff161515600114156113035761124a33610bf9565b6112965760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b336000908152601460205260409020546011546112b384836128d6565b11156113015760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546113119190612902565b3410156113555760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161137a8361299f565b9091555061139390503361138e83856128d6565b611b19565b8061139d8161299f565b915050611358565b610f3b338383611b33565b600a546001600160a01b031633146113da5760405162461bcd60e51b815260040161084b90612850565b6012805461ff001916610100179055565b6113f53383611829565b6114115760405162461bcd60e51b815260040161084b90612885565b61141d84848484611c02565b50505050565b6013818154811061143357600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612964565b6000818152600260205260409020546060906001600160a01b03166114d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661157a57600d80546114f590612964565b80601f016020809104026020016040519081016040528092919081815260200182805461152190612964565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b50505050509050919050565b6000611584611c35565b905060008151116115a457604051806020016040528060008152506115d2565b806115ae84611c44565b600c6040516020016115c2939291906126a8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116035760405162461bcd60e51b815260040161084b90612850565b601155565b600a546001600160a01b031633146116325760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600c90602084019061225e565b600a546001600160a01b0316331461166f5760405162461bcd60e51b815260040161084b90612850565b61167b601360006122e2565b610b2d60138383612300565b600a546001600160a01b031633146116b15760405162461bcd60e51b815260040161084b90612850565b8051610f3b90600d90602084019061225e565b600a546001600160a01b031633146116ee5760405162461bcd60e51b815260040161084b90612850565b6001600160a01b0381166117535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d5281611ac7565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061179c57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f082610f3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b60006118ad83610f3f565b9050806001600160a01b0316846001600160a01b031614806118e85750836001600160a01b03166118dd846108f9565b6001600160a01b0316145b8061191857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193382610f3f565b6001600160a01b0316146119975760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161084b565b6001600160a01b0382166119f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a04838383611d5e565b611a0f6000826117bb565b6001600160a01b0383166000908152600360205260408120805460019290611a38908490612921565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a669084906128d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3b828260405180602001604052806000815250611e16565b816001600160a01b0316836001600160a01b03161415611b955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c0d848484611920565b611c1984848484611e49565b61141d5760405162461bcd60e51b815260040161084b906127fe565b6060600b805461087690612964565b606081611c685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c925780611c7c8161299f565b9150611c8b9050600a836128ee565b9150611c6c565b60008167ffffffffffffffff811115611cbb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce5576020820181803683370190505b5090505b841561191857611cfa600183612921565b9150611d07600a866129ba565b611d129060306128d6565b60f81b818381518110611d3557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d57600a866128ee565b9450611ce9565b6001600160a01b038316611db957611db481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ddc565b816001600160a01b0316836001600160a01b031614611ddc57611ddc8382611f56565b6001600160a01b038216611df357610b2d81611ff3565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826120cc565b611e208383612110565b611e2d6000848484611e49565b610b2d5760405162461bcd60e51b815260040161084b906127fe565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8d90339089908890889060040161276a565b602060405180830381600087803b158015611ea757600080fd5b505af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed491810190612602565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161084b906127fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611918565b506001949350505050565b60006001611f6384610fc3565b611f6d9190612921565b600083815260076020526040902054909150808214611fc0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200590600190612921565b6000838152600960205260408120546008805493945090928490811061203b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061206a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120b057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120d783610fc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121d760008383611d5e565b6001600160a01b03821660009081526003602052604081208054600192906122009084906128d6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461226a90612964565b90600052602060002090601f01602090048101928261228c57600085556122d2565b82601f106122a557805160ff19168380011785556122d2565b828001600101855582156122d2579182015b828111156122d25782518255916020019190600101906122b7565b506122de929150612353565b5090565b5080546000825590600052602060002090810190610d529190612353565b8280548282559060005260206000209081019282156122d2579160200282015b828111156122d25781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612320565b5b808211156122de5760008155600101612354565b600067ffffffffffffffff80841115612383576123836129fa565b604051601f8501601f19908116603f011681019082821181831017156123ab576123ab6129fa565b816040528093508581528686860111156123c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f557600080fd5b919050565b803580151581146123f557600080fd5b60006020828403121561241b578081fd5b6115d2826123de565b60008060408385031215612436578081fd5b61243f836123de565b915061244d602084016123de565b90509250929050565b60008060006060848603121561246a578081fd5b612473846123de565b9250612481602085016123de565b9150604084013590509250925092565b600080600080608085870312156124a6578081fd5b6124af856123de565b93506124bd602086016123de565b925060408501359150606085013567ffffffffffffffff8111156124df578182fd5b8501601f810187136124ef578182fd5b6124fe87823560208401612368565b91505092959194509250565b6000806040838503121561251c578182fd5b612525836123de565b915061244d602084016123fa565b60008060408385031215612545578182fd5b61254e836123de565b946020939093013593505050565b6000806020838503121561256e578182fd5b823567ffffffffffffffff80821115612585578384fd5b818501915085601f830112612598578384fd5b8135818111156125a6578485fd5b8660208260051b85010111156125ba578485fd5b60209290920196919550909350505050565b6000602082840312156125dd578081fd5b6115d2826123fa565b6000602082840312156125f7578081fd5b81356115d281612a10565b600060208284031215612613578081fd5b81516115d281612a10565b60006020828403121561262f578081fd5b813567ffffffffffffffff811115612645578182fd5b8201601f81018413612655578182fd5b61191884823560208401612368565b600060208284031215612675578081fd5b5035919050565b60008151808452612694816020860160208601612938565b601f01601f19169290920160200192915050565b6000845160206126bb8285838a01612938565b8551918401916126ce8184848a01612938565b85549201918390600181811c90808316806126ea57607f831692505b85831081141561270857634e487b7160e01b88526022600452602488fd5b80801561271c576001811461272d57612759565b60ff19851688528388019550612759565b60008b815260209020895b858110156127515781548a820152908401908801612738565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279d9083018461267c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127df578351835292840192918401916001016127c3565b50909695505050505050565b6020815260006115d2602083018461267c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128e9576128e96129ce565b500190565b6000826128fd576128fd6129e4565b500490565b600081600019048311821515161561291c5761291c6129ce565b500290565b600082821015612933576129336129ce565b500390565b60005b8381101561295357818101518382015260200161293b565b8381111561141d5750506000910152565b600181811c9082168061297857607f821691505b6020821081141561299957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129b3576129b36129ce565b5060010190565b6000826129c9576129c96129e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5257600080fdfea26469706673582212200ed8af2d6ac685aff3a4a6748e92e82d70fffb45d192176458f78e9b49e5246864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000008474d206672656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6b6576696e63686f696172742e636f6d2f676d6672656e732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d51556e79706555596d344a356a444641676b456e486e39595a4674674643707652716f774a314635643147562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): GM frens
Arg [1] : _symbol (string): GMF
Arg [2] : _initBaseURI (string): https://kevinchoiart.com/gmfrens/
Arg [3] : _initNotRevealedUri (string): ipfs://QmQUnypeUYm4J5jDFAgkEnHn9YZFtgFCpvRqowJ1F5d1GV/hidden.json
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 474d206672656e73000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 474d460000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [9] : 68747470733a2f2f6b6576696e63686f696172742e636f6d2f676d6672656e73
Arg [10] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d51556e79706555596d344a356a444641676b456e486e39
Arg [13] : 595a4674674643707652716f774a314635643147562f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47992:4258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40511:224;;;;;;;;;;-1:-1:-1;40511:224:0;;;;;:::i;:::-;;:::i;:::-;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;40511:224:0;;;;;;;;51763:73;;;;;;;;;;-1:-1:-1;51763:73:0;;;;;:::i;:::-;;:::i;:::-;;27331:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28890:221::-;;;;;;;;;;-1:-1:-1;28890:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;28890:221:0;7229:102:1;48146:28:0;;;;;;;;;;;;;:::i;28413:411::-;;;;;;;;;;-1:-1:-1;28413:411:0;;;;;:::i;:::-;;:::i;48179:32::-;;;;;;;;;;;;;;;;;;;18753:25:1;;;18741:2;18726:18;48179:32:0;18708:76:1;41151:113:0;;;;;;;;;;-1:-1:-1;41239:10:0;:17;41151:113;;48477:55;;;;;;;;;;-1:-1:-1;48477:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48252:33;;;;;;;;;;;;;;;;29640:339;;;;;;;;;;-1:-1:-1;29640:339:0;;;;;:::i;:::-;;:::i;40819:256::-;;;;;;;;;;-1:-1:-1;40819:256:0;;;;;:::i;:::-;;:::i;49892:239::-;;;;;;;;;;-1:-1:-1;49892:239:0;;;;;:::i;:::-;;:::i;51844:95::-;;;;;;;;;;-1:-1:-1;51844:95:0;;;;;:::i;:::-;;:::i;52098:149::-;;;:::i;30050:185::-;;;;;;;;;;-1:-1:-1;30050:185:0;;;;;:::i;:::-;;:::i;50137:348::-;;;;;;;;;;-1:-1:-1;50137:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51195:80::-;;;;;;;;;;-1:-1:-1;51195:80:0;;;;;:::i;:::-;;:::i;41341:233::-;;;;;;;;;;-1:-1:-1;41341:233:0;;;;;:::i;:::-;;:::i;48363:28::-;;;;;;;;;;-1:-1:-1;48363:28:0;;;;;;;;;;;51403:98;;;;;;;;;;-1:-1:-1;51403:98:0;;;;;:::i;:::-;;:::i;48332:26::-;;;;;;;;;;-1:-1:-1;48332:26:0;;;;;;;;27025:239;;;;;;;;;;-1:-1:-1;27025:239:0;;;;;:::i;:::-;;:::i;48078:21::-;;;;;;;;;;;;;:::i;26755:208::-;;;;;;;;;;-1:-1:-1;26755:208:0;;;;;:::i;:::-;;:::i;5927:103::-;;;;;;;;;;;;;:::i;51281:116::-;;;;;;;;;;-1:-1:-1;51281:116:0;;;;;:::i;:::-;;:::i;5276:87::-;;;;;;;;;;-1:-1:-1;5349:6:0;;-1:-1:-1;;;;;5349:6:0;5276:87;;27500:104;;;;;;;;;;;;;:::i;48396:34::-;;;;;;;;;;-1:-1:-1;48396:34:0;;;;;;;;;;;48947:937;;;;;;:::i;:::-;;:::i;29183:155::-;;;;;;;;;;-1:-1:-1;29183:155:0;;;;;:::i;:::-;;:::i;51010:65::-;;;;;;;;;;;;;:::i;30306:328::-;;;;;;;;;;-1:-1:-1;30306:328:0;;;;;:::i;:::-;;:::i;48435:37::-;;;;;;;;;;-1:-1:-1;48435:37:0;;;;;:::i;:::-;;:::i;48290:::-;;;;;;;;;;;;;;;;48104;;;;;;;;;;;;;:::i;50491:497::-;;;;;;;;;;-1:-1:-1;50491:497:0;;;;;:::i;:::-;;:::i;51083:104::-;;;;;;;;;;-1:-1:-1;51083:104:0;;;;;:::i;:::-;;:::i;48216:31::-;;;;;;;;;;;;;;;;51507:122;;;;;;;;;;-1:-1:-1;51507:122:0;;;;;:::i;:::-;;:::i;29409:164::-;;;;;;;;;;-1:-1:-1;29409:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29530:25:0;;;29506:4;29530:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29409:164;51947:144;;;;;;;;;;-1:-1:-1;51947:144:0;;;;;:::i;:::-;;:::i;51637:120::-;;;;;;;;;;-1:-1:-1;51637:120:0;;;;;:::i;:::-;;:::i;6185:201::-;;;;;;;;;;-1:-1:-1;6185:201:0;;;;;:::i;:::-;;:::i;40511:224::-;40613:4;-1:-1:-1;;;;;;40637:50:0;;-1:-1:-1;;;40637:50:0;;:90;;;40691:36;40715:11;40691:23;:36::i;:::-;40630:97;40511:224;-1:-1:-1;;40511:224:0:o;51763:73::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;;;;;;;;;51815:6:::1;:15:::0;;-1:-1:-1;;51815:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51763:73::o;27331:100::-;27385:13;27418:5;27411:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27331:100;:::o;28890:221::-;28966:7;32233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32233:16:0;28986:73;;;;-1:-1:-1;;;28986:73:0;;14980:2:1;28986:73:0;;;14962:21:1;15019:2;14999:18;;;14992:30;15058:34;15038:18;;;15031:62;-1:-1:-1;;;15109:18:1;;;15102:42;15161:19;;28986:73:0;14952:234:1;28986:73:0;-1:-1:-1;29079:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29079:24:0;;28890:221::o;48146:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28413:411::-;28494:13;28510:23;28525:7;28510:14;:23::i;:::-;28494:39;;28558:5;-1:-1:-1;;;;;28552:11:0;:2;-1:-1:-1;;;;;28552:11:0;;;28544:57;;;;-1:-1:-1;;;28544:57:0;;16521:2:1;28544:57:0;;;16503:21:1;16560:2;16540:18;;;16533:30;16599:34;16579:18;;;16572:62;-1:-1:-1;;;16650:18:1;;;16643:31;16691:19;;28544:57:0;16493:223:1;28544:57:0;4080:10;-1:-1:-1;;;;;28636:21:0;;;;:62;;-1:-1:-1;28661:37:0;28678:5;4080:10;29409:164;:::i;28661:37::-;28614:168;;;;-1:-1:-1;;;28614:168:0;;12617:2:1;28614:168:0;;;12599:21:1;12656:2;12636:18;;;12629:30;12695:34;12675:18;;;12668:62;12766:26;12746:18;;;12739:54;12810:19;;28614:168:0;12589:246:1;28614:168:0;28795:21;28804:2;28808:7;28795:8;:21::i;:::-;28413:411;;;:::o;29640:339::-;29835:41;4080:10;29868:7;29835:18;:41::i;:::-;29827:103;;;;-1:-1:-1;;;29827:103:0;;;;;;;:::i;:::-;29943:28;29953:4;29959:2;29963:7;29943:9;:28::i;40819:256::-;40916:7;40952:23;40969:5;40952:16;:23::i;:::-;40944:5;:31;40936:87;;;;-1:-1:-1;;;40936:87:0;;9087:2:1;40936:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;40936:87:0;9059:233:1;40936:87:0;-1:-1:-1;;;;;;41041:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40819:256::o;49892:239::-;49951:4;;49964:143;49985:20;:27;49981:31;;49964:143;;;50059:5;-1:-1:-1;;;;;50032:32:0;:20;50053:1;50032:23;;;;;;-1:-1:-1;;;50032:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50032:23:0;:32;50028:72;;;-1:-1:-1;50086:4:0;;49892:239;-1:-1:-1;;49892:239:0:o;50028:72::-;50014:3;;;;:::i;:::-;;;;49964:143;;;-1:-1:-1;50120:5:0;;49892:239;-1:-1:-1;;49892:239:0:o;51844:95::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51909:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51909:24:0;;::::1;::::0;;;::::1;::::0;;51844:95::o;52098:149::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;52153:7:::1;52174;5349:6:::0;;-1:-1:-1;;;;;5349:6:0;;5276:87;52174:7:::1;-1:-1:-1::0;;;;;52166:21:0::1;52195;52166:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52152:69;;;52236:2;52228:11;;;::::0;::::1;;5567:1;52098:149::o:0;30050:185::-;30188:39;30205:4;30211:2;30215:7;30188:39;;;;;;;;;;;;:16;:39::i;50137:348::-;50212:16;50240:23;50266:17;50276:6;50266:9;:17::i;:::-;50240:43;;50290:25;50332:15;50318:30;;;;;;-1:-1:-1;;;50318:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50318:30:0;;50290:58;;50360:9;50355:103;50375:15;50371:1;:19;50355:103;;;50420:30;50440:6;50448:1;50420:19;:30::i;:::-;50406:8;50415:1;50406:11;;;;;;-1:-1:-1;;;50406:11:0;;;;;;;;;;;;;;;;;;:44;50392:3;;;;:::i;:::-;;;;50355:103;;;-1:-1:-1;50471:8:0;50137:348;-1:-1:-1;;;50137:348:0:o;51195:80::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51254:4:::1;:15:::0;51195:80::o;41341:233::-;41416:7;41452:30;41239:10;:17;;41151:113;41452:30;41444:5;:38;41436:95;;;;-1:-1:-1;;;41436:95:0;;17688:2:1;41436:95:0;;;17670:21:1;17727:2;17707:18;;;17700:30;17766:34;17746:18;;;17739:62;-1:-1:-1;;;17817:18:1;;;17810:42;17869:19;;41436:95:0;17660:234:1;41436:95:0;41549:10;41560:5;41549:17;;;;;;-1:-1:-1;;;41549:17:0;;;;;;;;;;;;;;;;;41542:24;;41341:233;;;:::o;51403:98::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51474:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51403:98:::0;:::o;27025:239::-;27097:7;27133:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27133:16:0;27168:19;27160:73;;;;-1:-1:-1;;;27160:73:0;;13453:2:1;27160:73:0;;;13435:21:1;13492:2;13472:18;;;13465:30;13531:34;13511:18;;;13504:62;-1:-1:-1;;;13582:18:1;;;13575:39;13631:19;;27160:73:0;13425:231:1;48078:21:0;;;;;;;:::i;26755:208::-;26827:7;-1:-1:-1;;;;;26855:19:0;;26847:74;;;;-1:-1:-1;;;26847:74:0;;13042:2:1;26847:74:0;;;13024:21:1;13081:2;13061:18;;;13054:30;13120:34;13100:18;;;13093:62;-1:-1:-1;;;13171:18:1;;;13164:40;13221:19;;26847:74:0;13014:232:1;26847:74:0;-1:-1:-1;;;;;;26939:16:0;;;;;:9;:16;;;;;;;26755:208::o;5927:103::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;5992:30:::1;6019:1;5992:18;:30::i;:::-;5927:103::o:0;51281:116::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51358:13:::1;:33:::0;51281:116::o;27500:104::-;27556:13;27589:7;27582:14;;;;;:::i;48947:937::-;49013:6;;;;49012:7;49004:42;;;;-1:-1:-1;;;49004:42:0;;15754:2:1;49004:42:0;;;15736:21:1;15793:2;15773:18;;;15766:30;-1:-1:-1;;;15812:18:1;;;15805:52;15874:18;;49004:42:0;15726:172:1;49004:42:0;49053:14;49070:13;41239:10;:17;;41151:113;49070:13;49053:30;;49112:1;49098:11;:15;49090:55;;;;-1:-1:-1;;;49090:55:0;;18453:2:1;49090:55:0;;;18435:21:1;18492:2;18472:18;;;18465:30;18531:29;18511:18;;;18504:57;18578:18;;49090:55:0;18425:177:1;49090:55:0;49175:13;;49160:11;:28;;49152:77;;;;-1:-1:-1;;;49152:77:0;;14214:2:1;49152:77:0;;;14196:21:1;14253:2;14233:18;;;14226:30;14292:34;14272:18;;;14265:62;-1:-1:-1;;;14343:18:1;;;14336:34;14387:19;;49152:77:0;14186:226:1;49152:77:0;49268:9;;49244:20;49253:11;49244:6;:20;:::i;:::-;:33;;49236:68;;;;-1:-1:-1;;;49236:68:0;;13863:2:1;49236:68:0;;;13845:21:1;13902:2;13882:18;;;13875:30;-1:-1:-1;;;13921:18:1;;;13914:52;13983:18;;49236:68:0;13835:172:1;49236:68:0;5349:6;;-1:-1:-1;;;;;5349:6:0;49317:10;:21;49313:416;;49354:15;;;;;;;:23;;49373:4;49354:23;49351:298;;;49402:25;49416:10;49402:13;:25::i;:::-;49394:61;;;;-1:-1:-1;;;49394:61:0;;18101:2:1;49394:61:0;;;18083:21:1;18140:2;18120:18;;;18113:30;18179:25;18159:18;;;18152:53;18222:18;;49394:61:0;18073:173:1;49394:61:0;49518:10;49470:24;49497:32;;;:20;:32;;;;;;49586:18;;49552:30;49571:11;49497:32;49552:30;:::i;:::-;:52;;49544:93;;;;-1:-1:-1;;;49544:93:0;;11088:2:1;49544:93:0;;;11070:21:1;11127:2;11107:18;;;11100:30;11166;11146:18;;;11139:58;11214:18;;49544:93:0;11060:178:1;49544:93:0;49351:298;;49687:11;49680:4;;:18;;;;:::i;:::-;49667:9;:31;;49659:62;;;;-1:-1:-1;;;49659:62:0;;16923:2:1;49659:62:0;;;16905:21:1;16962:2;16942:18;;;16935:30;-1:-1:-1;;;16981:18:1;;;16974:48;17039:18;;49659:62:0;16895:168:1;49659:62:0;49758:1;49741:138;49766:11;49761:1;:16;49741:138;;49816:10;49795:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;49838:33:0;;-1:-1:-1;49848:10:0;49860;49869:1;49860:6;:10;:::i;:::-;49838:9;:33::i;:::-;49779:3;;;;:::i;:::-;;;;49741:138;;29183:155;29278:52;4080:10;29311:8;29321;29278:18;:52::i;51010:65::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51054:8:::1;:15:::0;;-1:-1:-1;;51054:15:0::1;;;::::0;;51010:65::o;30306:328::-;30481:41;4080:10;30514:7;30481:18;:41::i;:::-;30473:103;;;;-1:-1:-1;;;30473:103:0;;;;;;;:::i;:::-;30587:39;30601:4;30607:2;30611:7;30620:5;30587:13;:39::i;:::-;30306:328;;;;:::o;48435:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48435:37:0;;-1:-1:-1;48435:37:0;:::o;48104:::-;;;;;;;:::i;50491:497::-;32209:4;32233:16;;;:7;:16;;;;;;50589:13;;-1:-1:-1;;;;;32233:16:0;50614:97;;;;-1:-1:-1;;;50614:97:0;;16105:2:1;50614:97:0;;;16087:21:1;16144:2;16124:18;;;16117:30;16183:34;16163:18;;;16156:62;-1:-1:-1;;;16234:18:1;;;16227:45;16289:19;;50614:97:0;16077:237:1;50614:97:0;50727:8;;;;;;;50724:62;;50764:14;50757:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50491:497;;;:::o;50724:62::-;50794:28;50825:10;:8;:10::i;:::-;50794:41;;50880:1;50855:14;50849:28;:32;:133;;;;;;;;;;;;;;;;;50917:14;50933:18;:7;:16;:18::i;:::-;50953:13;50900:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50849:133;50842:140;50491:497;-1:-1:-1;;;50491:497:0:o;51083:104::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51154:18:::1;:27:::0;51083:104::o;51507:122::-;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51590:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51947:144::-:0;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;52022:27:::1;52029:20;;52022:27;:::i;:::-;52056:29;:20;52079:6:::0;;52056:29:::1;:::i;51637:120::-:0;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;51719:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6185:201::-:0;5349:6;;-1:-1:-1;;;;;5349:6:0;4080:10;5496:23;5488:68;;;;-1:-1:-1;;;5488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6274:22:0;::::1;6266:73;;;::::0;-1:-1:-1;;;6266:73:0;;9918:2:1;6266:73:0::1;::::0;::::1;9900:21:1::0;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:36;10093:19;;6266:73:0::1;9890:228:1::0;6266:73:0::1;6350:28;6369:8;6350:18;:28::i;7977:326::-:0;-1:-1:-1;;;;;8272:19:0;;:23;;;7977:326::o;26386:305::-;26488:4;-1:-1:-1;;;;;;26525:40:0;;-1:-1:-1;;;26525:40:0;;:105;;-1:-1:-1;;;;;;;26582:48:0;;-1:-1:-1;;;26582:48:0;26525:105;:158;;;-1:-1:-1;;;;;;;;;;18169:40:0;;;26647:36;18060:157;36290:174;36365:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36365:29:0;-1:-1:-1;;;;;36365:29:0;;;;;;;;:24;;36419:23;36365:24;36419:14;:23::i;:::-;-1:-1:-1;;;;;36410:46:0;;;;;;;;;;;36290:174;;:::o;32438:348::-;32531:4;32233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32233:16:0;32548:73;;;;-1:-1:-1;;;32548:73:0;;12204:2:1;32548:73:0;;;12186:21:1;12243:2;12223:18;;;12216:30;12282:34;12262:18;;;12255:62;-1:-1:-1;;;12333:18:1;;;12326:42;12385:19;;32548:73:0;12176:234:1;32548:73:0;32632:13;32648:23;32663:7;32648:14;:23::i;:::-;32632:39;;32701:5;-1:-1:-1;;;;;32690:16:0;:7;-1:-1:-1;;;;;32690:16:0;;:51;;;;32734:7;-1:-1:-1;;;;;32710:31:0;:20;32722:7;32710:11;:20::i;:::-;-1:-1:-1;;;;;32710:31:0;;32690:51;:87;;;-1:-1:-1;;;;;;29530:25:0;;;29506:4;29530:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32745:32;32682:96;32438:348;-1:-1:-1;;;;32438:348:0:o;35547:625::-;35706:4;-1:-1:-1;;;;;35679:31:0;:23;35694:7;35679:14;:23::i;:::-;-1:-1:-1;;;;;35679:31:0;;35671:81;;;;-1:-1:-1;;;35671:81:0;;10325:2:1;35671:81:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403:34;10383:18;;;10376:62;-1:-1:-1;;;10454:18:1;;;10447:35;10499:19;;35671:81:0;10297:227:1;35671:81:0;-1:-1:-1;;;;;35771:16:0;;35763:65;;;;-1:-1:-1;;;35763:65:0;;11445:2:1;35763:65:0;;;11427:21:1;11484:2;11464:18;;;11457:30;11523:34;11503:18;;;11496:62;-1:-1:-1;;;11574:18:1;;;11567:34;11618:19;;35763:65:0;11417:226:1;35763:65:0;35841:39;35862:4;35868:2;35872:7;35841:20;:39::i;:::-;35945:29;35962:1;35966:7;35945:8;:29::i;:::-;-1:-1:-1;;;;;35987:15:0;;;;;;:9;:15;;;;;:20;;36006:1;;35987:15;:20;;36006:1;;35987:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36018:13:0;;;;;;:9;:13;;;;;:18;;36035:1;;36018:13;:18;;36035:1;;36018:18;:::i;:::-;;;;-1:-1:-1;;36047:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36047:21:0;-1:-1:-1;;;;;36047:21:0;;;;;;;;;36086:27;;36047:16;;36086:27;;;;;;;28413:411;;;:::o;6546:191::-;6639:6;;;-1:-1:-1;;;;;6656:17:0;;;-1:-1:-1;;;;;;6656:17:0;;;;;;;6689:40;;6639:6;;;6656:17;6639:6;;6689:40;;6620:16;;6689:40;6546:191;;:::o;33128:110::-;33204:26;33214:2;33218:7;33204:26;;;;;;;;;;;;:9;:26::i;36606:315::-;36761:8;-1:-1:-1;;;;;36752:17:0;:5;-1:-1:-1;;;;;36752:17:0;;;36744:55;;;;-1:-1:-1;;;36744:55:0;;11850:2:1;36744:55:0;;;11832:21:1;11889:2;11869:18;;;11862:30;11928:27;11908:18;;;11901:55;11973:18;;36744:55:0;11822:175:1;36744:55:0;-1:-1:-1;;;;;36810:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36810:46:0;;;;;;;;;;36872:41;;8609::1;;;36872::0;;8582:18:1;36872:41:0;;;;;;;36606:315;;;:::o;31516:::-;31673:28;31683:4;31689:2;31693:7;31673:9;:28::i;:::-;31720:48;31743:4;31749:2;31753:7;31762:5;31720:22;:48::i;:::-;31712:111;;;;-1:-1:-1;;;31712:111:0;;;;;;;:::i;48826:102::-;48886:13;48915:7;48908:14;;;;;:::i;1562:723::-;1618:13;1839:10;1835:53;;-1:-1:-1;;1866:10:0;;;;;;;;;;;;-1:-1:-1;;;1866:10:0;;;;;1562:723::o;1835:53::-;1913:5;1898:12;1954:78;1961:9;;1954:78;;1987:8;;;;:::i;:::-;;-1:-1:-1;2010:10:0;;-1:-1:-1;2018:2:0;2010:10;;:::i;:::-;;;1954:78;;;2042:19;2074:6;2064:17;;;;;;-1:-1:-1;;;2064:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2064:17:0;;2042:39;;2092:154;2099:10;;2092:154;;2126:11;2136:1;2126:11;;:::i;:::-;;-1:-1:-1;2195:10:0;2203:2;2195:5;:10;:::i;:::-;2182:24;;:2;:24;:::i;:::-;2169:39;;2152:6;2159;2152:14;;;;;;-1:-1:-1;;;2152:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2152:56:0;;;;;;;;-1:-1:-1;2223:11:0;2232:2;2223:11;;:::i;:::-;;;2092:154;;42187:589;-1:-1:-1;;;;;42393:18:0;;42389:187;;42428:40;42460:7;43603:10;:17;;43576:24;;;;:15;:24;;;;;:44;;;43631:24;;;;;;;;;;;;43499:164;42428:40;42389:187;;;42498:2;-1:-1:-1;;;;;42490:10:0;:4;-1:-1:-1;;;;;42490:10:0;;42486:90;;42517:47;42550:4;42556:7;42517:32;:47::i;:::-;-1:-1:-1;;;;;42590:16:0;;42586:183;;42623:45;42660:7;42623:36;:45::i;42586:183::-;42696:4;-1:-1:-1;;;;;42690:10:0;:2;-1:-1:-1;;;;;42690:10:0;;42686:83;;42717:40;42745:2;42749:7;42717:27;:40::i;33465:321::-;33595:18;33601:2;33605:7;33595:5;:18::i;:::-;33646:54;33677:1;33681:2;33685:7;33694:5;33646:22;:54::i;:::-;33624:154;;;;-1:-1:-1;;;33624:154:0;;;;;;;:::i;37486:799::-;37641:4;-1:-1:-1;;;;;37662:13:0;;8272:19;:23;37658:620;;37698:72;;-1:-1:-1;;;37698:72:0;;-1:-1:-1;;;;;37698:36:0;;;;;:72;;4080:10;;37749:4;;37755:7;;37764:5;;37698:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37698:72:0;;;;;;;;-1:-1:-1;;37698:72:0;;;;;;;;;;;;:::i;:::-;;;37694:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37940:13:0;;37936:272;;37983:60;;-1:-1:-1;;;37983:60:0;;;;;;;:::i;37936:272::-;38158:6;38152:13;38143:6;38139:2;38135:15;38128:38;37694:529;-1:-1:-1;;;;;;37821:51:0;-1:-1:-1;;;37821:51:0;;-1:-1:-1;37814:58:0;;37658:620;-1:-1:-1;38262:4:0;37486:799;;;;;;:::o;44290:988::-;44556:22;44606:1;44581:22;44598:4;44581:16;:22::i;:::-;:26;;;;:::i;:::-;44618:18;44639:26;;;:17;:26;;;;;;44556:51;;-1:-1:-1;44772:28:0;;;44768:328;;-1:-1:-1;;;;;44839:18:0;;44817:19;44839:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44890:30;;;;;;:44;;;45007:30;;:17;:30;;;;;:43;;;44768:328;-1:-1:-1;45192:26:0;;;;:17;:26;;;;;;;;45185:33;;;-1:-1:-1;;;;;45236:18:0;;;;;:12;:18;;;;;:34;;;;;;;45229:41;44290:988::o;45573:1079::-;45851:10;:17;45826:22;;45851:21;;45871:1;;45851:21;:::i;:::-;45883:18;45904:24;;;:15;:24;;;;;;46277:10;:26;;45826:46;;-1:-1:-1;45904:24:0;;45826:46;;46277:26;;;;-1:-1:-1;;;46277:26:0;;;;;;;;;;;;;;;;;46255:48;;46341:11;46316:10;46327;46316:22;;;;;;-1:-1:-1;;;46316:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46421:28;;;:15;:28;;;;;;;:41;;;46593:24;;;;;46586:31;46628:10;:16;;;;;-1:-1:-1;;;46628:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45573:1079;;;;:::o;43077:221::-;43162:14;43179:20;43196:2;43179:16;:20::i;:::-;-1:-1:-1;;;;;43210:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43255:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43077:221:0:o;34122:439::-;-1:-1:-1;;;;;34202:16:0;;34194:61;;;;-1:-1:-1;;;34194:61:0;;14619:2:1;34194:61:0;;;14601:21:1;;;14638:18;;;14631:30;14697:34;14677:18;;;14670:62;14749:18;;34194:61:0;14591:182:1;34194:61:0;32209:4;32233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32233:16:0;:30;34266:58;;;;-1:-1:-1;;;34266:58:0;;10731:2:1;34266:58:0;;;10713:21:1;10770:2;10750:18;;;10743:30;10809;10789:18;;;10782:58;10857:18;;34266:58:0;10703:178:1;34266:58:0;34337:45;34366:1;34370:2;34374:7;34337:20;:45::i;:::-;-1:-1:-1;;;;;34395:13:0;;;;;;:9;:13;;;;;:18;;34412:1;;34395:13;:18;;34412:1;;34395:18;:::i;:::-;;;;-1:-1:-1;;34424:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34424:21:0;-1:-1:-1;;;;;34424:21:0;;;;;;;;34463:33;;34424:16;;;34463:33;;34424:16;;34463:33;51474:21:::1;51403:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;18836:4;18855:17;;;18905:4;18889:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;15191:356::-;15393:2;15375:21;;;15412:18;;;15405:30;15471:34;15466:2;15451:18;;15444:62;15538:2;15523:18;;15365:182::o;17068:413::-;17270:2;17252:21;;;17309:2;17289:18;;;17282:30;17348:34;17343:2;17328:18;;17321:62;-1:-1:-1;;;17414:2:1;17399:18;;17392:47;17471:3;17456:19;;17242:239::o;18921:128::-;18961:3;18992:1;18988:6;18985:1;18982:13;18979:2;;;18998:18;;:::i;:::-;-1:-1:-1;19034:9:1;;18969:80::o;19054:120::-;19094:1;19120;19110:2;;19125:18;;:::i;:::-;-1:-1:-1;19159:9:1;;19100:74::o;19179:168::-;19219:7;19285:1;19281;19277:6;19273:14;19270:1;19267:21;19262:1;19255:9;19248:17;19244:45;19241:2;;;19292:18;;:::i;:::-;-1:-1:-1;19332:9:1;;19231:116::o;19352:125::-;19392:4;19420:1;19417;19414:8;19411:2;;;19425:18;;:::i;:::-;-1:-1:-1;19462:9:1;;19401:76::o;19482:258::-;19554:1;19564:113;19578:6;19575:1;19572:13;19564:113;;;19654:11;;;19648:18;19635:11;;;19628:39;19600:2;19593:10;19564:113;;;19695:6;19692:1;19689:13;19686:2;;;-1:-1:-1;;19730:1:1;19712:16;;19705:27;19535:205::o;19745:380::-;19824:1;19820:12;;;;19867;;;19888:2;;19942:4;19934:6;19930:17;19920:27;;19888:2;19995;19987:6;19984:14;19964:18;19961:38;19958:2;;;20041:10;20036:3;20032:20;20029:1;20022:31;20076:4;20073:1;20066:15;20104:4;20101:1;20094:15;19958:2;;19800:325;;;:::o;20130:135::-;20169:3;-1:-1:-1;;20190:17:1;;20187:2;;;20210:18;;:::i;:::-;-1:-1:-1;20257:1:1;20246:13;;20177:88::o;20270:112::-;20302:1;20328;20318:2;;20333:18;;:::i;:::-;-1:-1:-1;20367:9:1;;20308:74::o;20387:127::-;20448:10;20443:3;20439:20;20436:1;20429:31;20479:4;20476:1;20469:15;20503:4;20500:1;20493:15;20519:127;20580:10;20575:3;20571:20;20568:1;20561:31;20611:4;20608:1;20601:15;20635:4;20632:1;20625:15;20651:127;20712:10;20707:3;20703:20;20700:1;20693:31;20743:4;20740:1;20733:15;20767:4;20764:1;20757:15;20783:131;-1:-1:-1;;;;;;20857:32:1;;20847:43;;20837:2;;20904:1;20901;20894:12
Swarm Source
ipfs://0ed8af2d6ac685aff3a4a6748e92e82d70fffb45d192176458f78e9b49e52468
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.