Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 15374647 | 811 days ago | IN | 0 ETH | 0.00027789 | ||||
Toggle Public Sa... | 15373144 | 811 days ago | IN | 0 ETH | 0.00075808 | ||||
Airdrop | 15372050 | 811 days ago | IN | 0 ETH | 0.00126113 | ||||
Public Mint | 15372035 | 811 days ago | IN | 0.006 ETH | 0.0020896 | ||||
Airdrop | 15371988 | 811 days ago | IN | 0 ETH | 0.00151542 | ||||
Airdrop | 15371987 | 811 days ago | IN | 0 ETH | 0.00150928 | ||||
Withdraw | 15371974 | 811 days ago | IN | 0 ETH | 0.00052665 | ||||
Public Mint | 15371943 | 811 days ago | IN | 0.006 ETH | 0.00181166 | ||||
Set Approval For... | 15371844 | 811 days ago | IN | 0 ETH | 0.00114584 | ||||
Public Mint | 15371719 | 811 days ago | IN | 0.006 ETH | 0.00202114 | ||||
Public Mint | 15371718 | 811 days ago | IN | 0.006 ETH | 0.00182453 | ||||
Toggle Public Sa... | 15371695 | 811 days ago | IN | 0 ETH | 0.0003871 | ||||
Team Mint | 15371612 | 811 days ago | IN | 0 ETH | 0.00147338 | ||||
Team Mint | 15371611 | 811 days ago | IN | 0 ETH | 0.00132407 | ||||
Team Mint | 15371597 | 811 days ago | IN | 0 ETH | 0.00168578 | ||||
Team Mint | 15371595 | 811 days ago | IN | 0 ETH | 0.00169046 | ||||
Team Mint | 15371587 | 811 days ago | IN | 0 ETH | 0.00207108 | ||||
Team Mint | 15371585 | 811 days ago | IN | 0 ETH | 0.00172232 | ||||
Team Mint | 15371582 | 811 days ago | IN | 0 ETH | 0.00141747 | ||||
Team Mint | 15370710 | 811 days ago | IN | 0 ETH | 0.00152376 | ||||
Transfer Ownersh... | 15347525 | 815 days ago | IN | 0 ETH | 0.00061693 | ||||
Toggle Reveal | 15346151 | 815 days ago | IN | 0 ETH | 0.00058881 | ||||
Set Token Uri | 15346150 | 815 days ago | IN | 0 ETH | 0.00103083 | ||||
0x60806040 | 15340354 | 816 days ago | IN | 0 ETH | 0.01575048 |
Loading...
Loading
Contract Name:
StupidEgg
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-14 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; contract StupidEgg is ERC721A, Ownable{ using Strings for uint256; // Supply uint256 public constant MaxSupply = 10000; uint256 public constant FreeSupply = 2000; // Prices uint256 public FreeSalePrice = 0.00 ether; uint256 public PublicSalePrice = 0.006 ether; // Max Mint / Wallet uint256 public constant MaxMint = 3; mapping(address => uint256) public totalMaxMint; uint256 public constant MaxTeamMint = 200; mapping(address => uint256) public totalMaxTeamMint; // Reveal and unreveal CIDs string private baseTokenUri; string public placeholderTokenUri; // Phases bool public FreeSale; bool public PublicSale; bool public isRevealed; bool public pause; bool public teamMinted; // Name and symbol constructor() ERC721A("Stupid Egg", "SE"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "Cannot be called by a contract"); _; } function FreeMint(uint256 _quantity) external payable callerIsUser{ require(FreeSale, "Free sale not yet active."); require((totalSupply() + _quantity) <= 2000, "Beyond max supply"); require((totalMaxMint[msg.sender] + _quantity) <= MaxMint, "Cannot mint beyond max mint!"); require(msg.value >= (FreeSalePrice * _quantity), "Payment is below the price"); totalMaxMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PublicMint(uint256 _quantity) external payable callerIsUser{ require(PublicSale, "Public sale not yet active."); require((totalSupply() + _quantity) <= 9800, "Beyond Max Supply"); require((totalMaxMint[msg.sender] + _quantity) <= MaxMint, "Cannot mint beyond max mint!"); require(msg.value >= (PublicSalePrice * _quantity), "Payment is below the price"); totalMaxMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; if(!isRevealed){ return placeholderTokenUri; } return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } function walletOf() external view returns(uint256[] memory){ address _owner = msg.sender; uint256 numberOfOwnedNFT = balanceOf(_owner); uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT); for(uint256 index = 0; index < numberOfOwnedNFT; index++){ ownerIds[index] = tokenOfOwnerByIndex(_owner, index); } return ownerIds; } function TeamMint(address _to, uint _quantity) external onlyOwner { require((totalMaxTeamMint[msg.sender] + _quantity) <= MaxTeamMint, "Cannot mint beyond team max mint!"); totalMaxTeamMint[msg.sender] += _quantity; _safeMint(_to, _quantity); } function airdrop(address _to, uint _quantity) external onlyOwner { require(totalSupply() + _quantity <= 9800, "Reached max Supply"); _safeMint(_to, _quantity); } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{ placeholderTokenUri = _placeholderTokenUri; } function setFreeSalePrice(uint256 _newFreeSalePrice) public onlyOwner { FreeSalePrice = _newFreeSalePrice; } function setPublicSalePrice(uint256 _newPublicSalePrice) public onlyOwner { PublicSalePrice = _newPublicSalePrice; } function togglePause() external onlyOwner{ pause = !pause; } function toggleFreeSale() external onlyOwner{ FreeSale = !FreeSale; } function togglePublicSale() external onlyOwner{ PublicSale = !PublicSale; } function toggleReveal() external onlyOwner{ isRevealed = !isRevealed; } function withdraw() external onlyOwner{ payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"FreeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxTeamMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeSalePrice","type":"uint256"}],"name":"setFreeSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMaxTeamMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600855661550f7dca700006009553480156200002157600080fd5b50604080518082018252600a8152695374757069642045676760b01b602080830191825283518085019094526002845261534560f01b9084015281519192916200006e91600191620000fd565b50805162000084906002906020840190620000fd565b505050620000a16200009b620000a760201b60201c565b620000ab565b620001e0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010b90620001a3565b90600052602060002090601f0160209004810192826200012f57600085556200017a565b82601f106200014a57805160ff19168380011785556200017a565b828001600101855582156200017a579182015b828111156200017a5782518255916020019190600101906200015d565b50620001889291506200018c565b5090565b5b808211156200018857600081556001016200018d565b600181811c90821680620001b857607f821691505b60208210811415620001da57634e487b7160e01b600052602260045260246000fd5b50919050565b61248c80620001f06000396000f3fe6080604052600436106102885760003560e01c806377a38c1a1161015a578063b3536ef1116100c1578063c87b56dd1161007a578063c87b56dd14610756578063d932199b14610776578063e222c7f914610790578063e8b5498d146107a5578063e985e9c5146107c7578063f2fde38b1461081057600080fd5b8063b3536ef1146106cc578063b36c1284146106e2578063b88d4fde146106f8578063ba1bb6e014610718578063bdfaa0841461072e578063c4ae31681461074157600080fd5b806394f743961161011357806394f743961461062257806395d89b41146106375780639fb17e341461064c578063a22cb4651461065f578063addbb2401461067f578063b0962c53146106ac57600080fd5b806377a38c1a1461056c578063791a25191461058157806383a974a2146105a15780638456cb59146105c35780638ba4cc3c146105e45780638da5cb5b1461060457600080fd5b806342842e0e116101fe5780635b8ad429116101b75780635b8ad429146104c25780635d3a6b0d146104d75780636352211e146104f75780636bc609f91461051757806370a0823114610537578063715018a61461055757600080fd5b806342842e0e1461040a57806347f281671461042a5780634cf5f7a4146104575780634f6ccce71461046c57806350839bef1461048c57806354214f69146104a257600080fd5b8063095ea7b311610250578063095ea7b3146103615780630f59c6eb1461038157806318160ddd146103a057806323b872dd146103b55780632f745c59146103d55780633ccfd60b146103f557600080fd5b806301ffc9a71461028d578063040edb22146102c25780630675b7c6146102e557806306fdde0314610307578063081812fc14610329575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612072565b610830565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d760c881565b6040519081526020016102b9565b3480156102f157600080fd5b506103056103003660046120ac565b61089d565b005b34801561031357600080fd5b5061031c6108e7565b6040516102b99190612292565b34801561033557600080fd5b506103496103443660046120f5565b610979565b6040516001600160a01b0390911681526020016102b9565b34801561036d57600080fd5b5061030561037c366004612048565b6109bf565b34801561038d57600080fd5b50600e546102ad90610100900460ff1681565b3480156103ac57600080fd5b506000546102d7565b3480156103c157600080fd5b506103056103d0366004611f54565b610a4d565b3480156103e157600080fd5b506102d76103f0366004612048565b610a58565b34801561040157600080fd5b50610305610b2d565b34801561041657600080fd5b50610305610425366004611f54565b610b86565b34801561043657600080fd5b506102d7610445366004611f06565b600b6020526000908152604090205481565b34801561046357600080fd5b5061031c610ba1565b34801561047857600080fd5b506102d76104873660046120f5565b610c2f565b34801561049857600080fd5b506102d76107d081565b3480156104ae57600080fd5b50600e546102ad9062010000900460ff1681565b3480156104ce57600080fd5b50610305610c56565b3480156104e357600080fd5b506103056104f2366004612048565b610c9f565b34801561050357600080fd5b506103496105123660046120f5565b610d6e565b34801561052357600080fd5b506103056105323660046120f5565b610d80565b34801561054357600080fd5b506102d7610552366004611f06565b610daf565b34801561056357600080fd5b50610305610dfd565b34801561057857600080fd5b50610305610e33565b34801561058d57600080fd5b5061030561059c3660046120f5565b610e71565b3480156105ad57600080fd5b506105b6610ea0565b6040516102b9919061224e565b3480156105cf57600080fd5b50600e546102ad906301000000900460ff1681565b3480156105f057600080fd5b506103056105ff366004612048565b610f43565b34801561061057600080fd5b506007546001600160a01b0316610349565b34801561062e57600080fd5b506102d7600381565b34801561064357600080fd5b5061031c610fd1565b61030561065a3660046120f5565b610fe0565b34801561066b57600080fd5b5061030561067a36600461200c565b6111d7565b34801561068b57600080fd5b506102d761069a366004611f06565b600a6020526000908152604090205481565b3480156106b857600080fd5b506103056106c73660046120ac565b61126d565b3480156106d857600080fd5b506102d760095481565b3480156106ee57600080fd5b506102d761271081565b34801561070457600080fd5b50610305610713366004611f90565b6112aa565b34801561072457600080fd5b506102d760085481565b61030561073c3660046120f5565b6112e4565b34801561074d57600080fd5b50610305611458565b34801561076257600080fd5b5061031c6107713660046120f5565b6114a3565b34801561078257600080fd5b50600e546102ad9060ff1681565b34801561079c57600080fd5b50610305611625565b3480156107b157600080fd5b50600e546102ad90640100000000900460ff1681565b3480156107d357600080fd5b506102ad6107e2366004611f21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081c57600080fd5b5061030561082b366004611f06565b61166c565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506001600160e01b0319821663780e9d6360e01b145b8061089757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108d05760405162461bcd60e51b81526004016108c7906122a5565b60405180910390fd5b80516108e390600c906020840190611de4565b5050565b6060600180546108f690612368565b80601f016020809104026020016040519081016040528092919081815260200182805461092290612368565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b6000610986826000541190565b6109a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ca82610d6e565b9050806001600160a01b0316836001600160a01b031614156109ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a1f5750610a1d81336107e2565b155b15610a3d576040516367d9dca160e11b815260040160405180910390fd5b610a48838383611704565b505050565b610a48838383611760565b6000610a6383610daf565b8210610a82576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b1b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610add57805192505b876001600160a01b0316836001600160a01b03161415610b125786841415610b0b5750935061089792505050565b6001909301925b50600101610a8a565b50610b246123d2565b50505092915050565b6007546001600160a01b03163314610b575760405162461bcd60e51b81526004016108c7906122a5565b60405133904780156108fc02916000818181858888f19350505050158015610b83573d6000803e3d6000fd5b50565b610a48838383604051806020016040528060008152506112aa565b600d8054610bae90612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610bda90612368565b8015610c275780601f10610bfc57610100808354040283529160200191610c27565b820191906000526020600020905b815481529060010190602001808311610c0a57829003601f168201915b505050505081565b600080548210610c52576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610c805760405162461bcd60e51b81526004016108c7906122a5565b600e805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314610cc95760405162461bcd60e51b81526004016108c7906122a5565b336000908152600b602052604090205460c890610ce79083906122da565b1115610d3f5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74206d696e74206265796f6e64207465616d206d6178206d696e746044820152602160f81b60648201526084016108c7565b336000908152600b602052604081208054839290610d5e9084906122da565b909155506108e39050828261197f565b6000610d7982611999565b5192915050565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108c7906122a5565b600855565b60006001600160a01b038216610dd8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e275760405162461bcd60e51b81526004016108c7906122a5565b610e316000611a2e565b565b6007546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016108c7906122a5565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016108c7906122a5565b600955565b6060336000610eae82610daf565b905060008167ffffffffffffffff811115610ecb57610ecb61242a565b604051908082528060200260200182016040528015610ef4578160200160208202803683370190505b50905060005b82811015610f3b57610f0c8482610a58565b828281518110610f1e57610f1e612414565b602090810291909101015280610f33816123a3565b915050610efa565b509392505050565b6007546001600160a01b03163314610f6d5760405162461bcd60e51b81526004016108c7906122a5565b61264881610f7a60005490565b610f8491906122da565b1115610fc75760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016108c7565b6108e3828261197f565b6060600280546108f690612368565b32331461102f5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064016108c7565b600e54610100900460ff166110865760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c65206e6f7420796574206163746976652e000000000060448201526064016108c7565b6126488161109360005490565b61109d91906122da565b11156110df5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016108c7565b336000908152600a60205260409020546003906110fd9083906122da565b111561114b5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206d696e74210000000060448201526064016108c7565b806009546111599190612306565b3410156111a85760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e742069732062656c6f772074686520707269636500000000000060448201526064016108c7565b336000908152600a6020526040812080548392906111c79084906122da565b90915550610b839050338261197f565b6001600160a01b0382163314156112015760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112975760405162461bcd60e51b81526004016108c7906122a5565b80516108e390600d906020840190611de4565b6112b5848484611760565b6112c184848484611a80565b6112de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146113335760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064016108c7565b600e5460ff166113855760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206e6f7420796574206163746976652e0000000000000060448201526064016108c7565b6107d08161139260005490565b61139c91906122da565b11156113de5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016108c7565b336000908152600a60205260409020546003906113fc9083906122da565b111561144a5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206d696e74210000000060448201526064016108c7565b806008546111599190612306565b6007546001600160a01b031633146114825760405162461bcd60e51b81526004016108c7906122a5565b600e805463ff00000019811663010000009182900460ff1615909102179055565b60606114b0826000541190565b6115145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b60006115218360016122da565b600e5490915062010000900460ff166115c757600d805461154190612368565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612368565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050915050919050565b6000600c80546115d690612368565b9050116115f2576040518060200160405280600081525061161e565b600c6115fd82611b8f565b60405160200161160e929190612156565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461164f5760405162461bcd60e51b81526004016108c7906122a5565b600e805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146116965760405162461bcd60e51b81526004016108c7906122a5565b6001600160a01b0381166116fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b610b8381611a2e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061176b82611999565b80519091506000906001600160a01b0316336001600160a01b031614806117a257503361179784610979565b6001600160a01b0316145b806117b4575081516117b490336107e2565b9050806117d457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118095760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661183057604051633a954ecd60e21b815260040160405180910390fd5b6118406000848460000151611704565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611935576118e8816000541190565b15611935578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108e3828260405180602001604052806000815250611c8d565b60408051808201909152600080825260208201526119b8826000541190565b6119d557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a24579392505050565b50600019016119d7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac4903390899088908890600401612211565b602060405180830381600087803b158015611ade57600080fd5b505af1925050508015611b0e575060408051601f3d908101601f19168201909252611b0b9181019061208f565b60015b611b69573d808015611b3c576040519150601f19603f3d011682016040523d82523d6000602084013e611b41565b606091505b508051611b61576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b87565b5060015b949350505050565b606081611bb35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bdd5780611bc7816123a3565b9150611bd69050600a836122f2565b9150611bb7565b60008167ffffffffffffffff811115611bf857611bf861242a565b6040519080825280601f01601f191660200182016040528015611c22576020820181803683370190505b5090505b8415611b8757611c37600183612325565b9150611c44600a866123be565b611c4f9060306122da565b60f81b818381518110611c6457611c64612414565b60200101906001600160f81b031916908160001a905350611c86600a866122f2565b9450611c26565b610a4883838360016000546001600160a01b038516611cbe57604051622e076360e81b815260040160405180910390fd5b83611cdc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ddb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611db15750611daf6000888488611a80565b155b15611dcf576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d5a565b50600055611978565b828054611df090612368565b90600052602060002090601f016020900481019282611e125760008555611e58565b82601f10611e2b57805160ff1916838001178555611e58565b82800160010185558215611e58579182015b82811115611e58578251825591602001919060010190611e3d565b50610c529291505b80821115610c525760008155600101611e60565b600067ffffffffffffffff80841115611e8f57611e8f61242a565b604051601f8501601f19908116603f01168101908282118183101715611eb757611eb761242a565b81604052809350858152868686011115611ed057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f0157600080fd5b919050565b600060208284031215611f1857600080fd5b61161e82611eea565b60008060408385031215611f3457600080fd5b611f3d83611eea565b9150611f4b60208401611eea565b90509250929050565b600080600060608486031215611f6957600080fd5b611f7284611eea565b9250611f8060208501611eea565b9150604084013590509250925092565b60008060008060808587031215611fa657600080fd5b611faf85611eea565b9350611fbd60208601611eea565b925060408501359150606085013567ffffffffffffffff811115611fe057600080fd5b8501601f81018713611ff157600080fd5b61200087823560208401611e74565b91505092959194509250565b6000806040838503121561201f57600080fd5b61202883611eea565b91506020830135801515811461203d57600080fd5b809150509250929050565b6000806040838503121561205b57600080fd5b61206483611eea565b946020939093013593505050565b60006020828403121561208457600080fd5b813561161e81612440565b6000602082840312156120a157600080fd5b815161161e81612440565b6000602082840312156120be57600080fd5b813567ffffffffffffffff8111156120d557600080fd5b8201601f810184136120e657600080fd5b611b8784823560208401611e74565b60006020828403121561210757600080fd5b5035919050565b6000815180845261212681602086016020860161233c565b601f01601f19169290920160200192915050565b6000815161214c81856020860161233c565b9290920192915050565b600080845481600182811c91508083168061217257607f831692505b602080841082141561219257634e487b7160e01b86526022600452602486fd5b8180156121a657600181146121b7576121e4565b60ff198616895284890196506121e4565b60008b81526020902060005b868110156121dc5781548b8201529085019083016121c3565b505084890196505b5050505050506122086121f7828661213a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122449083018461210e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122865783518352928401929184019160010161226a565b50909695505050505050565b60208152600061161e602083018461210e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122ed576122ed6123e8565b500190565b600082612301576123016123fe565b500490565b6000816000190483118215151615612320576123206123e8565b500290565b600082821015612337576123376123e8565b500390565b60005b8381101561235757818101518382015260200161233f565b838111156112de5750506000910152565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123e8565b5060010190565b6000826123cd576123cd6123fe565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8357600080fdfea264697066735822122059ec9f61911de9b4cecf9639d16d29ae6524150191804ea6d5d9e53a26c256f564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102885760003560e01c806377a38c1a1161015a578063b3536ef1116100c1578063c87b56dd1161007a578063c87b56dd14610756578063d932199b14610776578063e222c7f914610790578063e8b5498d146107a5578063e985e9c5146107c7578063f2fde38b1461081057600080fd5b8063b3536ef1146106cc578063b36c1284146106e2578063b88d4fde146106f8578063ba1bb6e014610718578063bdfaa0841461072e578063c4ae31681461074157600080fd5b806394f743961161011357806394f743961461062257806395d89b41146106375780639fb17e341461064c578063a22cb4651461065f578063addbb2401461067f578063b0962c53146106ac57600080fd5b806377a38c1a1461056c578063791a25191461058157806383a974a2146105a15780638456cb59146105c35780638ba4cc3c146105e45780638da5cb5b1461060457600080fd5b806342842e0e116101fe5780635b8ad429116101b75780635b8ad429146104c25780635d3a6b0d146104d75780636352211e146104f75780636bc609f91461051757806370a0823114610537578063715018a61461055757600080fd5b806342842e0e1461040a57806347f281671461042a5780634cf5f7a4146104575780634f6ccce71461046c57806350839bef1461048c57806354214f69146104a257600080fd5b8063095ea7b311610250578063095ea7b3146103615780630f59c6eb1461038157806318160ddd146103a057806323b872dd146103b55780632f745c59146103d55780633ccfd60b146103f557600080fd5b806301ffc9a71461028d578063040edb22146102c25780630675b7c6146102e557806306fdde0314610307578063081812fc14610329575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612072565b610830565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d760c881565b6040519081526020016102b9565b3480156102f157600080fd5b506103056103003660046120ac565b61089d565b005b34801561031357600080fd5b5061031c6108e7565b6040516102b99190612292565b34801561033557600080fd5b506103496103443660046120f5565b610979565b6040516001600160a01b0390911681526020016102b9565b34801561036d57600080fd5b5061030561037c366004612048565b6109bf565b34801561038d57600080fd5b50600e546102ad90610100900460ff1681565b3480156103ac57600080fd5b506000546102d7565b3480156103c157600080fd5b506103056103d0366004611f54565b610a4d565b3480156103e157600080fd5b506102d76103f0366004612048565b610a58565b34801561040157600080fd5b50610305610b2d565b34801561041657600080fd5b50610305610425366004611f54565b610b86565b34801561043657600080fd5b506102d7610445366004611f06565b600b6020526000908152604090205481565b34801561046357600080fd5b5061031c610ba1565b34801561047857600080fd5b506102d76104873660046120f5565b610c2f565b34801561049857600080fd5b506102d76107d081565b3480156104ae57600080fd5b50600e546102ad9062010000900460ff1681565b3480156104ce57600080fd5b50610305610c56565b3480156104e357600080fd5b506103056104f2366004612048565b610c9f565b34801561050357600080fd5b506103496105123660046120f5565b610d6e565b34801561052357600080fd5b506103056105323660046120f5565b610d80565b34801561054357600080fd5b506102d7610552366004611f06565b610daf565b34801561056357600080fd5b50610305610dfd565b34801561057857600080fd5b50610305610e33565b34801561058d57600080fd5b5061030561059c3660046120f5565b610e71565b3480156105ad57600080fd5b506105b6610ea0565b6040516102b9919061224e565b3480156105cf57600080fd5b50600e546102ad906301000000900460ff1681565b3480156105f057600080fd5b506103056105ff366004612048565b610f43565b34801561061057600080fd5b506007546001600160a01b0316610349565b34801561062e57600080fd5b506102d7600381565b34801561064357600080fd5b5061031c610fd1565b61030561065a3660046120f5565b610fe0565b34801561066b57600080fd5b5061030561067a36600461200c565b6111d7565b34801561068b57600080fd5b506102d761069a366004611f06565b600a6020526000908152604090205481565b3480156106b857600080fd5b506103056106c73660046120ac565b61126d565b3480156106d857600080fd5b506102d760095481565b3480156106ee57600080fd5b506102d761271081565b34801561070457600080fd5b50610305610713366004611f90565b6112aa565b34801561072457600080fd5b506102d760085481565b61030561073c3660046120f5565b6112e4565b34801561074d57600080fd5b50610305611458565b34801561076257600080fd5b5061031c6107713660046120f5565b6114a3565b34801561078257600080fd5b50600e546102ad9060ff1681565b34801561079c57600080fd5b50610305611625565b3480156107b157600080fd5b50600e546102ad90640100000000900460ff1681565b3480156107d357600080fd5b506102ad6107e2366004611f21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081c57600080fd5b5061030561082b366004611f06565b61166c565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506001600160e01b0319821663780e9d6360e01b145b8061089757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108d05760405162461bcd60e51b81526004016108c7906122a5565b60405180910390fd5b80516108e390600c906020840190611de4565b5050565b6060600180546108f690612368565b80601f016020809104026020016040519081016040528092919081815260200182805461092290612368565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b6000610986826000541190565b6109a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ca82610d6e565b9050806001600160a01b0316836001600160a01b031614156109ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a1f5750610a1d81336107e2565b155b15610a3d576040516367d9dca160e11b815260040160405180910390fd5b610a48838383611704565b505050565b610a48838383611760565b6000610a6383610daf565b8210610a82576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b1b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610add57805192505b876001600160a01b0316836001600160a01b03161415610b125786841415610b0b5750935061089792505050565b6001909301925b50600101610a8a565b50610b246123d2565b50505092915050565b6007546001600160a01b03163314610b575760405162461bcd60e51b81526004016108c7906122a5565b60405133904780156108fc02916000818181858888f19350505050158015610b83573d6000803e3d6000fd5b50565b610a48838383604051806020016040528060008152506112aa565b600d8054610bae90612368565b80601f0160208091040260200160405190810160405280929190818152602001828054610bda90612368565b8015610c275780601f10610bfc57610100808354040283529160200191610c27565b820191906000526020600020905b815481529060010190602001808311610c0a57829003601f168201915b505050505081565b600080548210610c52576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610c805760405162461bcd60e51b81526004016108c7906122a5565b600e805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314610cc95760405162461bcd60e51b81526004016108c7906122a5565b336000908152600b602052604090205460c890610ce79083906122da565b1115610d3f5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74206d696e74206265796f6e64207465616d206d6178206d696e746044820152602160f81b60648201526084016108c7565b336000908152600b602052604081208054839290610d5e9084906122da565b909155506108e39050828261197f565b6000610d7982611999565b5192915050565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108c7906122a5565b600855565b60006001600160a01b038216610dd8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e275760405162461bcd60e51b81526004016108c7906122a5565b610e316000611a2e565b565b6007546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016108c7906122a5565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016108c7906122a5565b600955565b6060336000610eae82610daf565b905060008167ffffffffffffffff811115610ecb57610ecb61242a565b604051908082528060200260200182016040528015610ef4578160200160208202803683370190505b50905060005b82811015610f3b57610f0c8482610a58565b828281518110610f1e57610f1e612414565b602090810291909101015280610f33816123a3565b915050610efa565b509392505050565b6007546001600160a01b03163314610f6d5760405162461bcd60e51b81526004016108c7906122a5565b61264881610f7a60005490565b610f8491906122da565b1115610fc75760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016108c7565b6108e3828261197f565b6060600280546108f690612368565b32331461102f5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064016108c7565b600e54610100900460ff166110865760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c65206e6f7420796574206163746976652e000000000060448201526064016108c7565b6126488161109360005490565b61109d91906122da565b11156110df5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b60448201526064016108c7565b336000908152600a60205260409020546003906110fd9083906122da565b111561114b5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206d696e74210000000060448201526064016108c7565b806009546111599190612306565b3410156111a85760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e742069732062656c6f772074686520707269636500000000000060448201526064016108c7565b336000908152600a6020526040812080548392906111c79084906122da565b90915550610b839050338261197f565b6001600160a01b0382163314156112015760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112975760405162461bcd60e51b81526004016108c7906122a5565b80516108e390600d906020840190611de4565b6112b5848484611760565b6112c184848484611a80565b6112de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146113335760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064016108c7565b600e5460ff166113855760405162461bcd60e51b815260206004820152601960248201527f467265652073616c65206e6f7420796574206163746976652e0000000000000060448201526064016108c7565b6107d08161139260005490565b61139c91906122da565b11156113de5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64206d617820737570706c7960781b60448201526064016108c7565b336000908152600a60205260409020546003906113fc9083906122da565b111561144a5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206d696e74210000000060448201526064016108c7565b806008546111599190612306565b6007546001600160a01b031633146114825760405162461bcd60e51b81526004016108c7906122a5565b600e805463ff00000019811663010000009182900460ff1615909102179055565b60606114b0826000541190565b6115145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b60006115218360016122da565b600e5490915062010000900460ff166115c757600d805461154190612368565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612368565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050915050919050565b6000600c80546115d690612368565b9050116115f2576040518060200160405280600081525061161e565b600c6115fd82611b8f565b60405160200161160e929190612156565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461164f5760405162461bcd60e51b81526004016108c7906122a5565b600e805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146116965760405162461bcd60e51b81526004016108c7906122a5565b6001600160a01b0381166116fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b610b8381611a2e565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061176b82611999565b80519091506000906001600160a01b0316336001600160a01b031614806117a257503361179784610979565b6001600160a01b0316145b806117b4575081516117b490336107e2565b9050806117d457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118095760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661183057604051633a954ecd60e21b815260040160405180910390fd5b6118406000848460000151611704565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611935576118e8816000541190565b15611935578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108e3828260405180602001604052806000815250611c8d565b60408051808201909152600080825260208201526119b8826000541190565b6119d557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a24579392505050565b50600019016119d7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac4903390899088908890600401612211565b602060405180830381600087803b158015611ade57600080fd5b505af1925050508015611b0e575060408051601f3d908101601f19168201909252611b0b9181019061208f565b60015b611b69573d808015611b3c576040519150601f19603f3d011682016040523d82523d6000602084013e611b41565b606091505b508051611b61576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b87565b5060015b949350505050565b606081611bb35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bdd5780611bc7816123a3565b9150611bd69050600a836122f2565b9150611bb7565b60008167ffffffffffffffff811115611bf857611bf861242a565b6040519080825280601f01601f191660200182016040528015611c22576020820181803683370190505b5090505b8415611b8757611c37600183612325565b9150611c44600a866123be565b611c4f9060306122da565b60f81b818381518110611c6457611c64612414565b60200101906001600160f81b031916908160001a905350611c86600a866122f2565b9450611c26565b610a4883838360016000546001600160a01b038516611cbe57604051622e076360e81b815260040160405180910390fd5b83611cdc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ddb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611db15750611daf6000888488611a80565b155b15611dcf576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d5a565b50600055611978565b828054611df090612368565b90600052602060002090601f016020900481019282611e125760008555611e58565b82601f10611e2b57805160ff1916838001178555611e58565b82800160010185558215611e58579182015b82811115611e58578251825591602001919060010190611e3d565b50610c529291505b80821115610c525760008155600101611e60565b600067ffffffffffffffff80841115611e8f57611e8f61242a565b604051601f8501601f19908116603f01168101908282118183101715611eb757611eb761242a565b81604052809350858152868686011115611ed057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f0157600080fd5b919050565b600060208284031215611f1857600080fd5b61161e82611eea565b60008060408385031215611f3457600080fd5b611f3d83611eea565b9150611f4b60208401611eea565b90509250929050565b600080600060608486031215611f6957600080fd5b611f7284611eea565b9250611f8060208501611eea565b9150604084013590509250925092565b60008060008060808587031215611fa657600080fd5b611faf85611eea565b9350611fbd60208601611eea565b925060408501359150606085013567ffffffffffffffff811115611fe057600080fd5b8501601f81018713611ff157600080fd5b61200087823560208401611e74565b91505092959194509250565b6000806040838503121561201f57600080fd5b61202883611eea565b91506020830135801515811461203d57600080fd5b809150509250929050565b6000806040838503121561205b57600080fd5b61206483611eea565b946020939093013593505050565b60006020828403121561208457600080fd5b813561161e81612440565b6000602082840312156120a157600080fd5b815161161e81612440565b6000602082840312156120be57600080fd5b813567ffffffffffffffff8111156120d557600080fd5b8201601f810184136120e657600080fd5b611b8784823560208401611e74565b60006020828403121561210757600080fd5b5035919050565b6000815180845261212681602086016020860161233c565b601f01601f19169290920160200192915050565b6000815161214c81856020860161233c565b9290920192915050565b600080845481600182811c91508083168061217257607f831692505b602080841082141561219257634e487b7160e01b86526022600452602486fd5b8180156121a657600181146121b7576121e4565b60ff198616895284890196506121e4565b60008b81526020902060005b868110156121dc5781548b8201529085019083016121c3565b505084890196505b5050505050506122086121f7828661213a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122449083018461210e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122865783518352928401929184019160010161226a565b50909695505050505050565b60208152600061161e602083018461210e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122ed576122ed6123e8565b500190565b600082612301576123016123fe565b500490565b6000816000190483118215151615612320576123206123e8565b500290565b600082821015612337576123376123e8565b500390565b60005b8381101561235757818101518382015260200161233f565b838111156112de5750506000910152565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123e8565b5060010190565b6000826123cd576123cd6123fe565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8357600080fdfea264697066735822122059ec9f61911de9b4cecf9639d16d29ae6524150191804ea6d5d9e53a26c256f564736f6c63430008070033
Deployed Bytecode Sourcemap
43435:4496:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30685:372;;;;;;;;;;-1:-1:-1;30685:372:0;;;;;:::i;:::-;;:::i;:::-;;;7422:14:1;;7415:22;7397:41;;7385:2;7370:18;30685:372:0;;;;;;;;43869:41;;;;;;;;;;;;43907:3;43869:41;;;;;12225:25:1;;;12213:2;12198:18;43869:41:0;12079:177:1;46924:115:0;;;;;;;;;;-1:-1:-1;46924:115:0;;;;;:::i;:::-;;:::i;:::-;;32501:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33978:204::-;;;;;;;;;;-1:-1:-1;33978:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;33978:204:0;5919:203:1;33567:345:0;;;;;;;;;;-1:-1:-1;33567:345:0;;;;;:::i;:::-;;:::i;44131:22::-;;;;;;;;;;-1:-1:-1;44131:22:0;;;;;;;;;;;28952:101;;;;;;;;;;-1:-1:-1;29005:7:0;29032:13;28952:101;;34835:170;;;;;;;;;;-1:-1:-1;34835:170:0;;;;;:::i;:::-;;:::i;29606:1007::-;;;;;;;;;;-1:-1:-1;29606:1007:0;;;;;:::i;:::-;;:::i;47820:108::-;;;;;;;;;;;;;:::i;35076:185::-;;;;;;;;;;-1:-1:-1;35076:185:0;;;;;:::i;:::-;;:::i;43917:51::-;;;;;;;;;;-1:-1:-1;43917:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;44045:35;;;;;;;;;;;;;:::i;29130:176::-;;;;;;;;;;-1:-1:-1;29130:176:0;;;;;:::i;:::-;;:::i;43577:41::-;;;;;;;;;;;;43614:4;43577:41;;44160:22;;;;;;;;;;-1:-1:-1;44160:22:0;;;;;;;;;;;47727:85;;;;;;;;;;;;;:::i;46456:270::-;;;;;;;;;;-1:-1:-1;46456:270:0;;;;;:::i;:::-;;:::i;32310:124::-;;;;;;;;;;-1:-1:-1;32310:124:0;;;;;:::i;:::-;;:::i;47195:118::-;;;;;;;;;;-1:-1:-1;47195:118:0;;;;;:::i;:::-;;:::i;31121:206::-;;;;;;;;;;-1:-1:-1;31121:206:0;;;;;:::i;:::-;;:::i;7448:103::-;;;;;;;;;;;;;:::i;47539:83::-;;;;;;;;;;;;;:::i;47321:126::-;;;;;;;;;;-1:-1:-1;47321:126:0;;;;;:::i;:::-;;:::i;46042:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44189:17::-;;;;;;;;;;-1:-1:-1;44189:17:0;;;;;;;;;;;46734:177;;;;;;;;;;-1:-1:-1;46734:177:0;;;;;:::i;:::-;;:::i;6797:87::-;;;;;;;;;;-1:-1:-1;6870:6:0;;-1:-1:-1;;;;;6870:6:0;6797:87;;43771:35;;;;;;;;;;;;43805:1;43771:35;;32670:104;;;;;;;;;;;;;:::i;44969:500::-;;;;;;:::i;:::-;;:::i;34254:279::-;;;;;;;;;;-1:-1:-1;34254:279:0;;;;;:::i;:::-;;:::i;43813:47::-;;;;;;;;;;-1:-1:-1;43813:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;47045:142;;;;;;;;;;-1:-1:-1;47045:142:0;;;;;:::i;:::-;;:::i;43690:44::-;;;;;;;;;;;;;;;;43529:41;;;;;;;;;;;;43565:5;43529:41;;35332:308;;;;;;;;;;-1:-1:-1;35332:308:0;;;;;:::i;:::-;;:::i;43642:41::-;;;;;;;;;;;;;;;;44464:497;;;;;;:::i;:::-;;:::i;47457:74::-;;;;;;;;;;;;;:::i;45598:436::-;;;;;;;;;;-1:-1:-1;45598:436:0;;;;;:::i;:::-;;:::i;44104:20::-;;;;;;;;;;-1:-1:-1;44104:20:0;;;;;;;;47630:89;;;;;;;;;;;;;:::i;44213:22::-;;;;;;;;;;-1:-1:-1;44213:22:0;;;;;;;;;;;34604:164;;;;;;;;;;-1:-1:-1;34604:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34725:25:0;;;34701:4;34725:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34604:164;7706:201;;;;;;;;;;-1:-1:-1;7706:201:0;;;;;:::i;:::-;;:::i;30685:372::-;30787:4;-1:-1:-1;;;;;;30824:40:0;;-1:-1:-1;;;30824:40:0;;:105;;-1:-1:-1;;;;;;;30881:48:0;;-1:-1:-1;;;30881:48:0;30824:105;:172;;;-1:-1:-1;;;;;;;30946:50:0;;-1:-1:-1;;;30946:50:0;30824:172;:225;;;-1:-1:-1;;;;;;;;;;19713:40:0;;;31013:36;30804:245;30685:372;-1:-1:-1;;30685:372:0:o;46924:115::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;;;;;;;;;47003:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46924:115:::0;:::o;32501:100::-;32555:13;32588:5;32581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32501:100;:::o;33978:204::-;34046:7;34071:16;34079:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;34071:16;34066:64;;34096:34;;-1:-1:-1;;;34096:34:0;;;;;;;;;;;34066:64;-1:-1:-1;34150:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34150:24:0;;33978:204::o;33567:345::-;33640:13;33656:24;33672:7;33656:15;:24::i;:::-;33640:40;;33701:5;-1:-1:-1;;;;;33695:11:0;:2;-1:-1:-1;;;;;33695:11:0;;33691:48;;;33715:24;;-1:-1:-1;;;33715:24:0;;;;;;;;;;;33691:48;5601:10;-1:-1:-1;;;;;33756:21:0;;;;;;:63;;-1:-1:-1;33782:37:0;33799:5;5601:10;34604:164;:::i;33782:37::-;33781:38;33756:63;33752:111;;;33828:35;;-1:-1:-1;;;33828:35:0;;;;;;;;;;;33752:111;33876:28;33885:2;33889:7;33898:5;33876:8;:28::i;:::-;33629:283;33567:345;;:::o;34835:170::-;34969:28;34979:4;34985:2;34989:7;34969:9;:28::i;29606:1007::-;29695:7;29728:16;29738:5;29728:9;:16::i;:::-;29719:5;:25;29715:61;;29753:23;;-1:-1:-1;;;29753:23:0;;;;;;;;;;;29715:61;29787:22;29032:13;;;29787:22;;30050:466;30070:14;30066:1;:18;30050:466;;;30110:31;30144:14;;;:11;:14;;;;;;;;;30110:48;;;;;;;;;-1:-1:-1;;;;;30110:48:0;;;;;-1:-1:-1;;;30110:48:0;;;;;;;;;;;;30181:28;30177:111;;30254:14;;;-1:-1:-1;30177:111:0;30331:5;-1:-1:-1;;;;;30310:26:0;:17;-1:-1:-1;;;;;30310:26:0;;30306:195;;;30380:5;30365:11;:20;30361:85;;;-1:-1:-1;30421:1:0;-1:-1:-1;30414:8:0;;-1:-1:-1;;;30414:8:0;30361:85;30468:13;;;;;30306:195;-1:-1:-1;30086:3:0;;30050:466;;;-1:-1:-1;30592:13:0;;:::i;:::-;29704:909;;;29606:1007;;;;:::o;47820:108::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47869:51:::1;::::0;47877:10:::1;::::0;47898:21:::1;47869:51:::0;::::1;;;::::0;::::1;::::0;;;47898:21;47877:10;47869:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47820:108::o:0;35076:185::-;35214:39;35231:4;35237:2;35241:7;35214:39;;;;;;;;;;;;:16;:39::i;44045:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29130:176::-;29197:7;29032:13;;29221:5;:22;29217:58;;29252:23;;-1:-1:-1;;;29252:23:0;;;;;;;;;;;29217:58;-1:-1:-1;29293:5:0;29130:176::o;47727:85::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47794:10:::1;::::0;;-1:-1:-1;;47780:24:0;::::1;47794:10:::0;;;;::::1;;;47793:11;47780:24:::0;;::::1;;::::0;;47727:85::o;46456:270::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;46555:10:::1;46538:28;::::0;;;:16:::1;:28;::::0;;;;;43907:3:::1;::::0;46538:40:::1;::::0;46569:9;;46538:40:::1;:::i;:::-;46537:58;;46529:104;;;::::0;-1:-1:-1;;;46529:104:0;;9697:2:1;46529:104:0::1;::::0;::::1;9679:21:1::0;9736:2;9716:18;;;9709:30;9775:34;9755:18;;;9748:62;-1:-1:-1;;;9826:18:1;;;9819:31;9867:19;;46529:104:0::1;9495:397:1::0;46529:104:0::1;46661:10;46644:28;::::0;;;:16:::1;:28;::::0;;;;:41;;46676:9;;46644:28;:41:::1;::::0;46676:9;;46644:41:::1;:::i;:::-;::::0;;;-1:-1:-1;46693:25:0::1;::::0;-1:-1:-1;46703:3:0;46708:9;46693::::1;:25::i;32310:124::-:0;32374:7;32401:20;32413:7;32401:11;:20::i;:::-;:25;;32310:124;-1:-1:-1;;32310:124:0:o;47195:118::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47272:13:::1;:33:::0;47195:118::o;31121:206::-;31185:7;-1:-1:-1;;;;;31209:19:0;;31205:60;;31237:28;;-1:-1:-1;;;31237:28:0;;;;;;;;;;;31205:60;-1:-1:-1;;;;;;31291:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31291:27:0;;31121:206::o;7448:103::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;7513:30:::1;7540:1;7513:18;:30::i;:::-;7448:103::o:0;47539:83::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47606:8:::1;::::0;;-1:-1:-1;;47594:20:0;::::1;47606:8;::::0;;::::1;47605:9;47594:20;::::0;;47539:83::o;47321:126::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47402:15:::1;:37:::0;47321:126::o;46042:406::-;46084:16;46129:10;46112:14;46177:17;46129:10;46177:9;:17::i;:::-;46150:44;;46205:25;46247:16;46233:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46233:31:0;;46205:59;;46281:13;46277:136;46308:16;46300:5;:24;46277:136;;;46367:34;46387:6;46395:5;46367:19;:34::i;:::-;46349:8;46358:5;46349:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;46326:7;;;;:::i;:::-;;;;46277:136;;;-1:-1:-1;46432:8:0;46042:406;-1:-1:-1;;;46042:406:0:o;46734:177::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;46843:4:::1;46830:9;46814:13;29005:7:::0;29032:13;;28952:101;46814:13:::1;:25;;;;:::i;:::-;:33;;46806:64;;;::::0;-1:-1:-1;;;46806:64:0;;9350:2:1;46806:64:0::1;::::0;::::1;9332:21:1::0;9389:2;9369:18;;;9362:30;-1:-1:-1;;;9408:18:1;;;9401:48;9466:18;;46806:64:0::1;9148:342:1::0;46806:64:0::1;46878:25;46888:3;46893:9;46878;:25::i;32670:104::-:0;32726:13;32759:7;32752:14;;;;;:::i;44969:500::-;44372:9;44385:10;44372:23;44364:66;;;;-1:-1:-1;;;44364:66:0;;11922:2:1;44364:66:0;;;11904:21:1;11961:2;11941:18;;;11934:30;12000:32;11980:18;;;11973:60;12050:18;;44364:66:0;11720:354:1;44364:66:0;45056:10:::1;::::0;::::1;::::0;::::1;;;45048:50;;;::::0;-1:-1:-1;;;45048:50:0;;8994:2:1;45048:50:0::1;::::0;::::1;8976:21:1::0;9033:2;9013:18;;;9006:30;9072:29;9052:18;;;9045:57;9119:18;;45048:50:0::1;8792:351:1::0;45048:50:0::1;45148:4;45134:9;45118:13;29005:7:::0;29032:13;;28952:101;45118:13:::1;:25;;;;:::i;:::-;45117:35;;45109:65;;;::::0;-1:-1:-1;;;45109:65:0;;11576:2:1;45109:65:0::1;::::0;::::1;11558:21:1::0;11615:2;11595:18;;;11588:30;-1:-1:-1;;;11634:18:1;;;11627:47;11691:18;;45109:65:0::1;11374:341:1::0;45109:65:0::1;45207:10;45194:24;::::0;;;:12:::1;:24;::::0;;;;;43805:1:::1;::::0;45194:36:::1;::::0;45221:9;;45194:36:::1;:::i;:::-;45193:50;;45185:91;;;::::0;-1:-1:-1;;;45185:91:0;;8637:2:1;45185:91:0::1;::::0;::::1;8619:21:1::0;8676:2;8656:18;;;8649:30;8715;8695:18;;;8688:58;8763:18;;45185:91:0::1;8435:352:1::0;45185:91:0::1;45327:9;45309:15;;:27;;;;:::i;:::-;45295:9;:42;;45287:81;;;::::0;-1:-1:-1;;;45287:81:0;;8282:2:1;45287:81:0::1;::::0;::::1;8264:21:1::0;8321:2;8301:18;;;8294:30;8360:28;8340:18;;;8333:56;8406:18;;45287:81:0::1;8080:350:1::0;45287:81:0::1;45394:10;45381:24;::::0;;;:12:::1;:24;::::0;;;;:37;;45409:9;;45381:24;:37:::1;::::0;45409:9;;45381:37:::1;:::i;:::-;::::0;;;-1:-1:-1;45429:32:0::1;::::0;-1:-1:-1;45439:10:0::1;45451:9:::0;45429::::1;:32::i;34254:279::-:0;-1:-1:-1;;;;;34345:24:0;;5601:10;34345:24;34341:54;;;34378:17;;-1:-1:-1;;;34378:17:0;;;;;;;;;;;34341:54;5601:10;34408:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34408:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34408:53:0;;;;;;;;;;34477:48;;7397:41:1;;;34408:42:0;;5601:10;34477:48;;7370:18:1;34477:48:0;;;;;;;34254:279;;:::o;47045:142::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47137:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;35332:308::-:0;35491:28;35501:4;35507:2;35511:7;35491:9;:28::i;:::-;35535:48;35558:4;35564:2;35568:7;35577:5;35535:22;:48::i;:::-;35530:102;;35592:40;;-1:-1:-1;;;35592:40:0;;;;;;;;;;;35530:102;35332:308;;;;:::o;44464:497::-;44372:9;44385:10;44372:23;44364:66;;;;-1:-1:-1;;;44364:66:0;;11922:2:1;44364:66:0;;;11904:21:1;11961:2;11941:18;;;11934:30;12000:32;11980:18;;;11973:60;12050:18;;44364:66:0;11720:354:1;44364:66:0;44549:8:::1;::::0;::::1;;44541:46;;;::::0;-1:-1:-1;;;44541:46:0;;10099:2:1;44541:46:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;10177:27;10157:18;;;10150:55;10222:18;;44541:46:0::1;9897:349:1::0;44541:46:0::1;44637:4;44623:9;44607:13;29005:7:::0;29032:13;;28952:101;44607:13:::1;:25;;;;:::i;:::-;44606:35;;44598:65;;;::::0;-1:-1:-1;;;44598:65:0;;11230:2:1;44598:65:0::1;::::0;::::1;11212:21:1::0;11269:2;11249:18;;;11242:30;-1:-1:-1;;;11288:18:1;;;11281:47;11345:18;;44598:65:0::1;11028:341:1::0;44598:65:0::1;44696:10;44683:24;::::0;;;:12:::1;:24;::::0;;;;;43805:1:::1;::::0;44683:36:::1;::::0;44710:9;;44683:36:::1;:::i;:::-;44682:50;;44674:91;;;::::0;-1:-1:-1;;;44674:91:0;;8637:2:1;44674:91:0::1;::::0;::::1;8619:21:1::0;8676:2;8656:18;;;8649:30;8715;8695:18;;;8688:58;8763:18;;44674:91:0::1;8435:352:1::0;44674:91:0::1;44814:9;44798:13;;:25;;;;:::i;47457:74::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47518:5:::1;::::0;;-1:-1:-1;;47509:14:0;::::1;47518:5:::0;;;;::::1;;;47517:6;47509:14:::0;;::::1;;::::0;;47457:74::o;45598:436::-;45671:13;45705:16;45713:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;45705:16;45697:76;;;;-1:-1:-1;;;45697:76:0;;10814:2:1;45697:76:0;;;10796:21:1;10853:2;10833:18;;;10826:30;10892:34;10872:18;;;10865:62;-1:-1:-1;;;10943:18:1;;;10936:45;10998:19;;45697:76:0;10612:411:1;45697:76:0;45786:14;45803:11;:7;45813:1;45803:11;:::i;:::-;45831:10;;45786:28;;-1:-1:-1;45831:10:0;;;;;45827:68;;45864:19;45857:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45598:436;;;:::o;45827:68::-;45951:1;45928:12;45922:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;45979:12;45993:17;:6;:15;:17::i;:::-;45962:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45922:104;45915:111;45598:436;-1:-1:-1;;;45598:436:0:o;47630:89::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;47701:10:::1;::::0;;-1:-1:-1;;47687:24:0;::::1;47701:10;::::0;;;::::1;;;47700:11;47687:24:::0;;::::1;;::::0;;47630:89::o;7706:201::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7795:22:0;::::1;7787:73;;;::::0;-1:-1:-1;;;7787:73:0;;7875:2:1;7787:73:0::1;::::0;::::1;7857:21:1::0;7914:2;7894:18;;;7887:30;7953:34;7933:18;;;7926:62;-1:-1:-1;;;8004:18:1;;;7997:36;8050:19;;7787:73:0::1;7673:402:1::0;7787:73:0::1;7871:28;7890:8;7871:18;:28::i;40658:196::-:0;40773:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40773:29:0;-1:-1:-1;;;;;40773:29:0;;;;;;;;;40818:28;;40773:24;;40818:28;;;;;;;40658:196;;;:::o;38578:1962::-;38693:35;38731:20;38743:7;38731:11;:20::i;:::-;38806:18;;38693:58;;-1:-1:-1;38764:22:0;;-1:-1:-1;;;;;38790:34:0;5601:10;-1:-1:-1;;;;;38790:34:0;;:87;;;-1:-1:-1;5601:10:0;38841:20;38853:7;38841:11;:20::i;:::-;-1:-1:-1;;;;;38841:36:0;;38790:87;:154;;;-1:-1:-1;38911:18:0;;38894:50;;5601:10;34604:164;:::i;38894:50::-;38764:181;;38963:17;38958:66;;38989:35;;-1:-1:-1;;;38989:35:0;;;;;;;;;;;38958:66;39061:4;-1:-1:-1;;;;;39039:26:0;:13;:18;;;-1:-1:-1;;;;;39039:26:0;;39035:67;;39074:28;;-1:-1:-1;;;39074:28:0;;;;;;;;;;;39035:67;-1:-1:-1;;;;;39117:16:0;;39113:52;;39142:23;;-1:-1:-1;;;39142:23:0;;;;;;;;;;;39113:52;39286:49;39303:1;39307:7;39316:13;:18;;;39286:8;:49::i;:::-;-1:-1:-1;;;;;39631:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39631:31:0;;;-1:-1:-1;;;;;39631:31:0;;;-1:-1:-1;;39631:31:0;;;;;;;39677:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39677:29:0;;;;;;;;;;;;;39723:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39768:61:0;;;;-1:-1:-1;;;39813:15:0;39768:61;;;;;;40103:11;;;40133:24;;;;;:29;40103:11;;40133:29;40129:295;;40201:20;40209:11;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;40201:20;40197:212;;;40278:18;;;40246:24;;;:11;:24;;;;;;;;:50;;40361:28;;;;40319:70;;-1:-1:-1;;;40319:70:0;-1:-1:-1;;;;;;40319:70:0;;;-1:-1:-1;;;;;40246:50:0;;;40319:70;;;;;;;40197:212;39606:829;40471:7;40467:2;-1:-1:-1;;;;;40452:27:0;40461:4;-1:-1:-1;;;;;40452:27:0;;;;;;;;;;;40490:42;38682:1858;;38578:1962;;;:::o;36015:104::-;36084:27;36094:2;36098:8;36084:27;;;;;;;;;;;;:9;:27::i;31744:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;31844:16:0;31852:7;35952:4;35986:13;-1:-1:-1;35976:23:0;35895:112;31844:16;31839:61;;31869:31;;-1:-1:-1;;;31869:31:0;;;;;;;;;;;31839:61;31958:7;31938:245;32005:31;32039:17;;;:11;:17;;;;;;;;;32005:51;;;;;;;;;-1:-1:-1;;;;;32005:51:0;;;;;-1:-1:-1;;;32005:51:0;;;;;;;;;;;;32079:28;32075:93;;32139:9;31744:504;-1:-1:-1;;;31744:504:0:o;32075:93::-;-1:-1:-1;;;31978:6:0;31938:245;;8067:191;8160:6;;;-1:-1:-1;;;;;8177:17:0;;;-1:-1:-1;;;;;;8177:17:0;;;;;;;8210:40;;8160:6;;;8177:17;8160:6;;8210:40;;8141:16;;8210:40;8130:128;8067:191;:::o;41419:765::-;41574:4;-1:-1:-1;;;;;41595:13:0;;9793:19;:23;41591:586;;41631:72;;-1:-1:-1;;;41631:72:0;;-1:-1:-1;;;;;41631:36:0;;;;;:72;;5601:10;;41682:4;;41688:7;;41697:5;;41631:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41631:72:0;;;;;;;;-1:-1:-1;;41631:72:0;;;;;;;;;;;;:::i;:::-;;;41627:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41877:13:0;;41873:234;;41904:40;;-1:-1:-1;;;41904:40:0;;;;;;;;;;;41873:234;42057:6;42051:13;42042:6;42038:2;42034:15;42027:38;41627:495;-1:-1:-1;;;;;;41754:55:0;-1:-1:-1;;;41754:55:0;;-1:-1:-1;41747:62:0;;41591:586;-1:-1:-1;42161:4:0;41591:586;41419:765;;;;;;:::o;3083:723::-;3139:13;3360:10;3356:53;;-1:-1:-1;;3387:10:0;;;;;;;;;;;;-1:-1:-1;;;3387:10:0;;;;;3083:723::o;3356:53::-;3434:5;3419:12;3475:78;3482:9;;3475:78;;3508:8;;;;:::i;:::-;;-1:-1:-1;3531:10:0;;-1:-1:-1;3539:2:0;3531:10;;:::i;:::-;;;3475:78;;;3563:19;3595:6;3585:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3585:17:0;;3563:39;;3613:154;3620:10;;3613:154;;3647:11;3657:1;3647:11;;:::i;:::-;;-1:-1:-1;3716:10:0;3724:2;3716:5;:10;:::i;:::-;3703:24;;:2;:24;:::i;:::-;3690:39;;3673:6;3680;3673:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3673:56:0;;;;;;;;-1:-1:-1;3744:11:0;3753:2;3744:11;;:::i;:::-;;;3613:154;;36482:163;36605:32;36611:2;36615:8;36625:5;36632:4;37043:20;37066:13;-1:-1:-1;;;;;37094:16:0;;37090:48;;37119:19;;-1:-1:-1;;;37119:19:0;;;;;;;;;;;37090:48;37153:13;37149:44;;37175:18;;-1:-1:-1;;;37175:18:0;;;;;;;;;;;37149:44;-1:-1:-1;;;;;37546:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37546:45:0;;-1:-1:-1;;;;;37546:45:0;;;;;;;;;;37606:50;;;;;;;;;;;;;;37673:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37723:66:0;;;;-1:-1:-1;;;37773:15:0;37723:66;;;;;;;37673:25;;37858:330;37878:8;37874:1;:12;37858:330;;;37917:38;;37942:12;;-1:-1:-1;;;;;37917:38:0;;;37934:1;;37917:38;;37934:1;;37917:38;37978:4;:68;;;;;37987:59;38018:1;38022:2;38026:12;38040:5;37987:22;:59::i;:::-;37986:60;37978:68;37974:164;;;38078:40;;-1:-1:-1;;;38078:40:0;;;;;;;;;;;37974:164;38158:14;;;;;37888:3;37858:330;;;-1:-1:-1;38204:13:0;:28;38256:60;35332:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;12334:1;12327:14;;;12371:4;12358:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6620:632::-;6791:2;6843:21;;;6913:13;;6816:18;;;6935:22;;;6762:4;;6791:2;7014:15;;;;6988:2;6973:18;;;6762:4;7057:169;7071:6;7068:1;7065:13;7057:169;;;7132:13;;7120:26;;7201:15;;;;7166:12;;;;7093:1;7086:9;7057:169;;;-1:-1:-1;7243:3:1;;6620:632;-1:-1:-1;;;;;;6620:632:1:o;7449:219::-;7598:2;7587:9;7580:21;7561:4;7618:44;7658:2;7647:9;7643:18;7635:6;7618:44;:::i;10251:356::-;10453:2;10435:21;;;10472:18;;;10465:30;10531:34;10526:2;10511:18;;10504:62;10598:2;10583:18;;10251:356::o;12387:128::-;12427:3;12458:1;12454:6;12451:1;12448:13;12445:39;;;12464:18;;:::i;:::-;-1:-1:-1;12500:9:1;;12387:128::o;12520:120::-;12560:1;12586;12576:35;;12591:18;;:::i;:::-;-1:-1:-1;12625:9:1;;12520:120::o;12645:168::-;12685:7;12751:1;12747;12743:6;12739:14;12736:1;12733:21;12728:1;12721:9;12714:17;12710:45;12707:71;;;12758:18;;:::i;:::-;-1:-1:-1;12798:9:1;;12645:168::o;12818:125::-;12858:4;12886:1;12883;12880:8;12877:34;;;12891:18;;:::i;:::-;-1:-1:-1;12928:9:1;;12818:125::o;12948:258::-;13020:1;13030:113;13044:6;13041:1;13038:13;13030:113;;;13120:11;;;13114:18;13101:11;;;13094:39;13066:2;13059:10;13030:113;;;13161:6;13158:1;13155:13;13152:48;;;-1:-1:-1;;13196:1:1;13178:16;;13171:27;12948:258::o;13211:380::-;13290:1;13286:12;;;;13333;;;13354:61;;13408:4;13400:6;13396:17;13386:27;;13354:61;13461:2;13453:6;13450:14;13430:18;13427:38;13424:161;;;13507:10;13502:3;13498:20;13495:1;13488:31;13542:4;13539:1;13532:15;13570:4;13567:1;13560:15;13424:161;;13211:380;;;:::o;13596:135::-;13635:3;-1:-1:-1;;13656:17:1;;13653:43;;;13676:18;;:::i;:::-;-1:-1:-1;13723:1:1;13712:13;;13596:135::o;13736:112::-;13768:1;13794;13784:35;;13799:18;;:::i;:::-;-1:-1:-1;13833:9:1;;13736:112::o;13853:127::-;13914:10;13909:3;13905:20;13902:1;13895:31;13945:4;13942:1;13935:15;13969:4;13966:1;13959:15;13985:127;14046:10;14041:3;14037:20;14034:1;14027:31;14077:4;14074:1;14067:15;14101:4;14098:1;14091:15;14117:127;14178:10;14173:3;14169:20;14166:1;14159:31;14209:4;14206:1;14199:15;14233:4;14230:1;14223:15;14249:127;14310:10;14305:3;14301:20;14298:1;14291:31;14341:4;14338:1;14331:15;14365:4;14362:1;14355:15;14381:127;14442:10;14437:3;14433:20;14430:1;14423:31;14473:4;14470:1;14463:15;14497:4;14494:1;14487:15;14513:131;-1:-1:-1;;;;;;14587:32:1;;14577:43;;14567:71;;14634:1;14631;14624:12
Swarm Source
ipfs://59ec9f61911de9b4cecf9639d16d29ae6524150191804ea6d5d9e53a26c256f5
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.