ERC-721
Overview
Max Total Supply
214 SKLJNKS
Holders
93
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 SKLJNKSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SkullJunkies
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-17 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Contract: SkullJunkies NFT // Token ID: "Skulljunkies" // Token Symbol: "SKLJNKS" // Author: Sean Pentiboyina // ---- CONTRACT BEGINS HERE ---- pragma solidity ^0.8.0; contract SkullJunkies is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ""; uint256 public cost = 0.02 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 5; bool public paused = false; uint256 public walletLimit = 150; mapping(address => bool) public whitelisted; address payable public payments; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address _skullsplitterAddress ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); // To change the amount of Reserved Owner Tokens, // change the number in the mint(msg.sender, 100) method below // to any other number you want. The default is // 100 reserve tokens for the owner. //mint(msg.sender, 5); // After launching and giving 100 tokens to Oner, maxMintAmount // sets to 20 and walletLimit sets to 3. maxMintAmount = 5; //walletLimit = 50; payments = payable(_skullsplitterAddress); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require((balanceOf(msg.sender) + _mintAmount) <= walletLimit, 'Wallet limit is reached.'); if (msg.sender != owner()) { if(whitelisted[msg.sender] != true) { require(msg.value >= cost * _mintAmount); } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } function whiteListMint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require(whitelisted[msg.sender] == true, 'Address is not whitelisted.'); require((balanceOf(msg.sender) + _mintAmount) <= walletLimit, 'Wallet limit is reached.'); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent Skulljunkies NFT" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // // ONLY THE OWNER CAN CALL THE FUNCTIONS BELOW. // // This sets the minting price of each NFT. // Example: If you pass in 0.1, then you will need to pay 0.1 ETH + gas to mint 1 NFT. function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } // This sets the amount users can mint at once. // Example: If you want your users to be able to mint 20 NFTs at once, // then you can set the setMaxMintAmount to 20. // // *THIS IS NOT A WALLET LIMIT. THERE IS ANOTHER FUNCTION FOR THAT BELOW* function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } // This sets the wallet limit. // Example: If you set the setWalletLimit function to 5, then users can have AT MOST 5 NFTs in their wallet. // You can change this to adjust the pre-mint wallet limit vs. the main minting phase's wallet limit. function setWalletLimit(uint256 _newWalletLimit) public onlyOwner() { walletLimit = _newWalletLimit; } // If you want to save gas by setting the maxMintAmount and walletLimit // at the same time, you can use this function. // Simply pass in the new maxMintAmount first, and the newWalletLimit second. // Example: // If you want to set a pre-mint phase where users can only mint 3 NFTs at a time, // and have a wallet limit of 9 NFTs, you can pass in the arguments // 3 and 9 respectively. // Then, to activate full minting for your official launch phase, // simply pass in new arguments to change the maxMintAmount and walletLimit. // Example: // Now that you're fully launching, you can pass in 10 to the newMaxMintAmount argument // which would allow users to mint up to 10 at a time, and pass in 20 to the // newWalletLimit argument which would create a wallet limit of 20 NFTs. function setMaxMintAmountAndWalletLimit(uint256 _newmaxMintAmount, uint256 _newWalletLimit) public onlyOwner() { maxMintAmount = _newmaxMintAmount; walletLimit = _newWalletLimit; } // This sets the max supply. This will be set to 10,000 by default, although it is changable. function setMaxSupply(uint256 _newSupply) public onlyOwner() { maxSupply = _newSupply; } // This changes the baseURI. // Example: If you pass in "https://google.com/", then every new NFT that is minted // will have a URI corresponding to the baseURI you passed in. // The first NFT you mint would have a URI of "https://google.com/1", // The second NFT you mint would have a URI of "https://google.com/2", etc. function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } // This sets the baseURI extension. // Example: If your database requires that the URI of each NFT // must have a .json at the end of the URI // (like https://google.com/1.json instead of just https://google.com/1) // then you can use this function to set the base extension. // For the above example, you would pass in ".json" to add the .json extension. function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } // This pauses or unpauses sales. function pause(bool _state) public onlyOwner { paused = _state; } // This whitelists users. // You MUST use an array for this function, and put quotes around the addresses you would like to whitelist. // Example: // If you want to whitelist 0x000000000000000000000000000000000000, // then pass in the argument: // ["0x000000000000000000000000000000000000"] // // If you want to whitelist multiple users, then pass in the argument with commas // seperating the user's addresses. // Example: // ["0x000000000000000000000000000000000000","0x111111111111111111111111111111111", "0x222222222222222222222222222222222"] function whitelistUser(address[] memory _user) public onlyOwner { uint256 x = 0; for (x = 0; x < _user.length; x++) { whitelisted[_user[x]] = true; } } // This removes whitelisted users. // It's arguments are the same as for whitelisting users. // You MUST use an array, and put quotes around the addresses you would like to remove from the whitelist. function removeWhitelistUser(address[] memory _user) public onlyOwner { uint256 x = 0; for (x = 0; x < _user.length; x++) { whitelisted[_user[x]] = false; } } // This withdraws the contract's balance of ETH to the Owner's (whoever launched the contract) address. function withdraw() public payable onlyOwner { require(payable(payments).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_skullsplitterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"},{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setMaxMintAmountAndWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600c91620001c5565b5066470de4df820000600d55612710600e556005600f556010805460ff1916905560966011553480156200004e57600080fd5b5060405162002c4c38038062002c4c833981016040819052620000719162000322565b8351849084906200008a906000906020850190620001c5565b508051620000a0906001906020840190620001c5565b505050620000bd620000b7620000f760201b60201c565b620000fb565b620000c8826200014d565b6005600f55601380546001600160a01b0319166001600160a01b03929092169190911790555062000428915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c190600b906020840190620001c5565b5050565b828054620001d390620003d5565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b600082601f8301126200027d57600080fd5b81516001600160401b03808211156200029a576200029a62000412565b604051601f8301601f19908116603f01168101908282118183101715620002c557620002c562000412565b81604052838152602092508683858801011115620002e257600080fd5b600091505b83821015620003065785820183015181830184015290820190620002e7565b83821115620003185760008385830101525b9695505050505050565b600080600080608085870312156200033957600080fd5b84516001600160401b03808211156200035157600080fd5b6200035f888389016200026b565b955060208701519150808211156200037657600080fd5b62000384888389016200026b565b945060408701519150808211156200039b57600080fd5b50620003aa878288016200026b565b606087015190935090506001600160a01b0381168114620003ca57600080fd5b939692955090935050565b600181811c90821680620003ea57607f821691505b602082108114156200040c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61281480620004386000396000f3fe6080604052600436106102515760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610693578063d936547e146106a9578063da3ef23f146106d9578063e985e9c5146106f9578063f1d5f51714610742578063f2fde38b1461076257600080fd5b8063a22cb465146105fe578063a6d23e101461061e578063b88d4fde1461063e578063c66828621461065e578063c87b56dd1461067357600080fd5b8063715018a6116100fd578063715018a6146105765780638da5cb5b1461058b57806395d89b41146105a9578063999abb7b146105be5780639b6fbf8a146105de57600080fd5b80635c975abb146104e75780636352211e146105015780636c0360eb146105215780636f8b44b01461053657806370a082311461055657600080fd5b806323b872dd116101d257806340c10f191161019657806340c10f191461042757806342842e0e1461043a578063438b63001461045a57806344a0d68a146104875780634f6ccce7146104a757806355f804b3146104c757600080fd5b806323b872dd146103b65780632f745c59146103d65780633534b18a146103f65780633c8463a1146104095780633ccfd60b1461041f57600080fd5b8063095ea7b311610219578063095ea7b3146103275780630f5fa1991461034757806313faede61461036757806318160ddd1461038b578063239c70ae146103a057600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063088a4ed014610307575b600080fd5b34801561026257600080fd5b50610276610271366004612317565b610782565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046122fc565b6107ad565b005b3480156102b957600080fd5b506102c26107f3565b6040516102829190612546565b3480156102db57600080fd5b506102ef6102ea36600461239a565b610885565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461239a565b61091a565b34801561033357600080fd5b506102ab61034236600461221e565b610949565b34801561035357600080fd5b506102ab6103623660046123b3565b610a5f565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5060085461037d565b3480156103ac57600080fd5b5061037d600f5481565b3480156103c257600080fd5b506102ab6103d136600461213c565b610a94565b3480156103e257600080fd5b5061037d6103f136600461221e565b610ac5565b6102ab61040436600461221e565b610b5b565b34801561041557600080fd5b5061037d60115481565b6102ab610c95565b6102ab61043536600461221e565b610cf2565b34801561044657600080fd5b506102ab61045536600461213c565b610e16565b34801561046657600080fd5b5061047a6104753660046120ee565b610e31565b6040516102829190612502565b34801561049357600080fd5b506102ab6104a236600461239a565b610ed3565b3480156104b357600080fd5b5061037d6104c236600461239a565b610f02565b3480156104d357600080fd5b506102ab6104e2366004612351565b610f95565b3480156104f357600080fd5b506010546102769060ff1681565b34801561050d57600080fd5b506102ef61051c36600461239a565b610fd6565b34801561052d57600080fd5b506102c261104d565b34801561054257600080fd5b506102ab61055136600461239a565b6110db565b34801561056257600080fd5b5061037d6105713660046120ee565b61110a565b34801561058257600080fd5b506102ab611191565b34801561059757600080fd5b50600a546001600160a01b03166102ef565b3480156105b557600080fd5b506102c26111c5565b3480156105ca57600080fd5b506102ab6105d9366004612248565b6111d4565b3480156105ea57600080fd5b506102ab6105f9366004612248565b611266565b34801561060a57600080fd5b506102ab6106193660046121f4565b6112f8565b34801561062a57600080fd5b506013546102ef906001600160a01b031681565b34801561064a57600080fd5b506102ab610659366004612178565b6113bd565b34801561066a57600080fd5b506102c26113ef565b34801561067f57600080fd5b506102c261068e36600461239a565b6113fc565b34801561069f57600080fd5b5061037d600e5481565b3480156106b557600080fd5b506102766106c43660046120ee565b60126020526000908152604090205460ff1681565b3480156106e557600080fd5b506102ab6106f4366004612351565b6114e8565b34801561070557600080fd5b50610276610714366004612109565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074e57600080fd5b506102ab61075d36600461239a565b611525565b34801561076e57600080fd5b506102ab61077d3660046120ee565b611554565b60006001600160e01b0319821663780e9d6360e01b14806107a757506107a7826115ef565b92915050565b600a546001600160a01b031633146107e05760405162461bcd60e51b81526004016107d7906125ab565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610802906126f0565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906126f0565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d7565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109445760405162461bcd60e51b81526004016107d7906125ab565b600f55565b600061095482610fd6565b9050806001600160a01b0316836001600160a01b031614156109c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d7565b336001600160a01b03821614806109de57506109de8133610714565b610a505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610a5a838361163f565b505050565b600a546001600160a01b03163314610a895760405162461bcd60e51b81526004016107d7906125ab565b600f91909155601155565b610a9e33826116ad565b610aba5760405162461bcd60e51b81526004016107d7906125e0565b610a5a8383836117a4565b6000610ad08361110a565b8210610b325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610b6660085490565b905060008211610b7557600080fd5b600f54821115610b8457600080fd5b600e54610b918383612662565b1115610b9c57600080fd5b3360009081526012602052604090205460ff161515600114610c005760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e000000000060448201526064016107d7565b60115482610c0d3361110a565b610c179190612662565b1115610c605760405162461bcd60e51b81526020600482015260186024820152772bb0b63632ba103634b6b4ba1034b9903932b0b1b432b21760411b60448201526064016107d7565b60015b828111610c8f57610c7d84610c788385612662565b61194f565b80610c878161272b565b915050610c63565b50505050565b600a546001600160a01b03163314610cbf5760405162461bcd60e51b81526004016107d7906125ab565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610cf057600080fd5b565b6000610cfd60085490565b60105490915060ff1615610d1057600080fd5b60008211610d1d57600080fd5b600f54821115610d2c57600080fd5b600e54610d398383612662565b1115610d4457600080fd5b60115482610d513361110a565b610d5b9190612662565b1115610da45760405162461bcd60e51b81526020600482015260186024820152772bb0b63632ba103634b6b4ba1034b9903932b0b1b432b21760411b60448201526064016107d7565b600a546001600160a01b03163314610dec573360009081526012602052604090205460ff161515600114610dec5781600d54610de0919061268e565b341015610dec57600080fd5b60015b828111610c8f57610e0484610c788385612662565b80610e0e8161272b565b915050610def565b610a5a838383604051806020016040528060008152506113bd565b60606000610e3e8361110a565b905060008167ffffffffffffffff811115610e5b57610e5b6127b2565b604051908082528060200260200182016040528015610e84578160200160208202803683370190505b50905060005b82811015610ecb57610e9c8582610ac5565b828281518110610eae57610eae61279c565b602090810291909101015280610ec38161272b565b915050610e8a565b509392505050565b600a546001600160a01b03163314610efd5760405162461bcd60e51b81526004016107d7906125ab565b600d55565b6000610f0d60085490565b8210610f705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107d7565b60088281548110610f8357610f8361279c565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbf5760405162461bcd60e51b81526004016107d7906125ab565b8051610fd290600b906020840190611fd1565b5050565b6000818152600260205260408120546001600160a01b0316806107a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107d7565b600b805461105a906126f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611086906126f0565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b505050505081565b600a546001600160a01b031633146111055760405162461bcd60e51b81526004016107d7906125ab565b600e55565b60006001600160a01b0382166111755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016107d7906125ab565b610cf06000611969565b606060018054610802906126f0565b600a546001600160a01b031633146111fe5760405162461bcd60e51b81526004016107d7906125ab565b60005b8151811015610fd2576000601260008484815181106112225761122261279c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061125e8161272b565b915050611201565b600a546001600160a01b031633146112905760405162461bcd60e51b81526004016107d7906125ab565b60005b8151811015610fd2576001601260008484815181106112b4576112b461279c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112f08161272b565b915050611293565b6001600160a01b0382163314156113515760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c733836116ad565b6113e35760405162461bcd60e51b81526004016107d7906125e0565b610c8f848484846119bb565b600c805461105a906126f0565b6000818152600260205260409020546060906001600160a01b03166114895760405162461bcd60e51b815260206004820152603a60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420536b756c6c6a756e6b696573204e465400000000000060648201526084016107d7565b60006114936119ee565b905060008151116114b357604051806020016040528060008152506114e1565b806114bd846119fd565b600c6040516020016114d193929190612401565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115125760405162461bcd60e51b81526004016107d7906125ab565b8051610fd290600c906020840190611fd1565b600a546001600160a01b0316331461154f5760405162461bcd60e51b81526004016107d7906125ab565b601155565b600a546001600160a01b0316331461157e5760405162461bcd60e51b81526004016107d7906125ab565b6001600160a01b0381166115e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d7565b6115ec81611969565b50565b60006001600160e01b031982166380ac58cd60e01b148061162057506001600160e01b03198216635b5e139f60e01b145b806107a757506301ffc9a760e01b6001600160e01b03198316146107a7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167482610fd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d7565b600061173183610fd6565b9050806001600160a01b0316846001600160a01b0316148061176c5750836001600160a01b031661176184610885565b6001600160a01b0316145b8061179c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117b782610fd6565b6001600160a01b03161461181f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d7565b6001600160a01b0382166118815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d7565b61188c838383611afb565b61189760008261163f565b6001600160a01b03831660009081526003602052604081208054600192906118c09084906126ad565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ee908490612662565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fd2828260405180602001604052806000815250611bb3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119c68484846117a4565b6119d284848484611be6565b610c8f5760405162461bcd60e51b81526004016107d790612559565b6060600b8054610802906126f0565b606081611a215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4b5780611a358161272b565b9150611a449050600a8361267a565b9150611a25565b60008167ffffffffffffffff811115611a6657611a666127b2565b6040519080825280601f01601f191660200182016040528015611a90576020820181803683370190505b5090505b841561179c57611aa56001836126ad565b9150611ab2600a86612746565b611abd906030612662565b60f81b818381518110611ad257611ad261279c565b60200101906001600160f81b031916908160001a905350611af4600a8661267a565b9450611a94565b6001600160a01b038316611b5657611b5181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b79565b816001600160a01b0316836001600160a01b031614611b7957611b798382611cf3565b6001600160a01b038216611b9057610a5a81611d90565b826001600160a01b0316826001600160a01b031614610a5a57610a5a8282611e3f565b611bbd8383611e83565b611bca6000848484611be6565b610a5a5760405162461bcd60e51b81526004016107d790612559565b60006001600160a01b0384163b15611ce857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2a9033908990889088906004016124c5565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c74575060408051601f3d908101601f19168201909252611c7191810190612334565b60015b611cce573d808015611ca2576040519150601f19603f3d011682016040523d82523d6000602084013e611ca7565b606091505b508051611cc65760405162461bcd60e51b81526004016107d790612559565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061179c565b506001949350505050565b60006001611d008461110a565b611d0a91906126ad565b600083815260076020526040902054909150808214611d5d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611da2906001906126ad565b60008381526009602052604081205460088054939450909284908110611dca57611dca61279c565b906000526020600020015490508060088381548110611deb57611deb61279c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2357611e23612786565b6001900381819060005260206000200160009055905550505050565b6000611e4a8361110a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b6000818152600260205260409020546001600160a01b031615611f3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d7565b611f4a60008383611afb565b6001600160a01b0382166000908152600360205260408120805460019290611f73908490612662565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fdd906126f0565b90600052602060002090601f016020900481019282611fff5760008555612045565b82601f1061201857805160ff1916838001178555612045565b82800160010185558215612045579182015b8281111561204557825182559160200191906001019061202a565b50612051929150612055565b5090565b5b808211156120515760008155600101612056565b600067ffffffffffffffff831115612084576120846127b2565b612097601f8401601f1916602001612631565b90508281528383830111156120ab57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120d957600080fd5b919050565b803580151581146120d957600080fd5b60006020828403121561210057600080fd5b6114e1826120c2565b6000806040838503121561211c57600080fd5b612125836120c2565b9150612133602084016120c2565b90509250929050565b60008060006060848603121561215157600080fd5b61215a846120c2565b9250612168602085016120c2565b9150604084013590509250925092565b6000806000806080858703121561218e57600080fd5b612197856120c2565b93506121a5602086016120c2565b925060408501359150606085013567ffffffffffffffff8111156121c857600080fd5b8501601f810187136121d957600080fd5b6121e88782356020840161206a565b91505092959194509250565b6000806040838503121561220757600080fd5b612210836120c2565b9150612133602084016120de565b6000806040838503121561223157600080fd5b61223a836120c2565b946020939093013593505050565b6000602080838503121561225b57600080fd5b823567ffffffffffffffff8082111561227357600080fd5b818501915085601f83011261228757600080fd5b813581811115612299576122996127b2565b8060051b91506122aa848301612631565b8181528481019084860184860187018a10156122c557600080fd5b600095505b838610156122ef576122db816120c2565b8352600195909501949186019186016122ca565b5098975050505050505050565b60006020828403121561230e57600080fd5b6114e1826120de565b60006020828403121561232957600080fd5b81356114e1816127c8565b60006020828403121561234657600080fd5b81516114e1816127c8565b60006020828403121561236357600080fd5b813567ffffffffffffffff81111561237a57600080fd5b8201601f8101841361238b57600080fd5b61179c8482356020840161206a565b6000602082840312156123ac57600080fd5b5035919050565b600080604083850312156123c657600080fd5b50508035926020909101359150565b600081518084526123ed8160208601602086016126c4565b601f01601f19169290920160200192915050565b6000845160206124148285838a016126c4565b8551918401916124278184848a016126c4565b8554920191600090600181811c908083168061244457607f831692505b85831081141561246257634e487b7160e01b85526022600452602485fd5b8080156124765760018114612487576124b4565b60ff198516885283880195506124b4565b60008b81526020902060005b858110156124ac5781548a820152908401908801612493565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846123d5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561253a5783518352928401929184019160010161251e565b50909695505050505050565b6020815260006114e160208301846123d5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561265a5761265a6127b2565b604052919050565b600082198211156126755761267561275a565b500190565b60008261268957612689612770565b500490565b60008160001904831182151516156126a8576126a861275a565b500290565b6000828210156126bf576126bf61275a565b500390565b60005b838110156126df5781810151838201526020016126c7565b83811115610c8f5750506000910152565b600181811c9082168061270457607f821691505b6020821081141561272557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273f5761273f61275a565b5060010190565b60008261275557612755612770565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ec57600080fdfea2646970667358221220fe423140fdd6c78de9509003f2800e6d068e6c417f62e0f06f3ccd8452cb2ba164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000ad11e056d7fb004b1bcdf477f89c26080a2923ca000000000000000000000000000000000000000000000000000000000000000c536b756c6c4a756e6b69657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007534b4c4a4e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f736b756c6c6a756e6b6965732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e66742f000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610693578063d936547e146106a9578063da3ef23f146106d9578063e985e9c5146106f9578063f1d5f51714610742578063f2fde38b1461076257600080fd5b8063a22cb465146105fe578063a6d23e101461061e578063b88d4fde1461063e578063c66828621461065e578063c87b56dd1461067357600080fd5b8063715018a6116100fd578063715018a6146105765780638da5cb5b1461058b57806395d89b41146105a9578063999abb7b146105be5780639b6fbf8a146105de57600080fd5b80635c975abb146104e75780636352211e146105015780636c0360eb146105215780636f8b44b01461053657806370a082311461055657600080fd5b806323b872dd116101d257806340c10f191161019657806340c10f191461042757806342842e0e1461043a578063438b63001461045a57806344a0d68a146104875780634f6ccce7146104a757806355f804b3146104c757600080fd5b806323b872dd146103b65780632f745c59146103d65780633534b18a146103f65780633c8463a1146104095780633ccfd60b1461041f57600080fd5b8063095ea7b311610219578063095ea7b3146103275780630f5fa1991461034757806313faede61461036757806318160ddd1461038b578063239c70ae146103a057600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063088a4ed014610307575b600080fd5b34801561026257600080fd5b50610276610271366004612317565b610782565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046122fc565b6107ad565b005b3480156102b957600080fd5b506102c26107f3565b6040516102829190612546565b3480156102db57600080fd5b506102ef6102ea36600461239a565b610885565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461239a565b61091a565b34801561033357600080fd5b506102ab61034236600461221e565b610949565b34801561035357600080fd5b506102ab6103623660046123b3565b610a5f565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5060085461037d565b3480156103ac57600080fd5b5061037d600f5481565b3480156103c257600080fd5b506102ab6103d136600461213c565b610a94565b3480156103e257600080fd5b5061037d6103f136600461221e565b610ac5565b6102ab61040436600461221e565b610b5b565b34801561041557600080fd5b5061037d60115481565b6102ab610c95565b6102ab61043536600461221e565b610cf2565b34801561044657600080fd5b506102ab61045536600461213c565b610e16565b34801561046657600080fd5b5061047a6104753660046120ee565b610e31565b6040516102829190612502565b34801561049357600080fd5b506102ab6104a236600461239a565b610ed3565b3480156104b357600080fd5b5061037d6104c236600461239a565b610f02565b3480156104d357600080fd5b506102ab6104e2366004612351565b610f95565b3480156104f357600080fd5b506010546102769060ff1681565b34801561050d57600080fd5b506102ef61051c36600461239a565b610fd6565b34801561052d57600080fd5b506102c261104d565b34801561054257600080fd5b506102ab61055136600461239a565b6110db565b34801561056257600080fd5b5061037d6105713660046120ee565b61110a565b34801561058257600080fd5b506102ab611191565b34801561059757600080fd5b50600a546001600160a01b03166102ef565b3480156105b557600080fd5b506102c26111c5565b3480156105ca57600080fd5b506102ab6105d9366004612248565b6111d4565b3480156105ea57600080fd5b506102ab6105f9366004612248565b611266565b34801561060a57600080fd5b506102ab6106193660046121f4565b6112f8565b34801561062a57600080fd5b506013546102ef906001600160a01b031681565b34801561064a57600080fd5b506102ab610659366004612178565b6113bd565b34801561066a57600080fd5b506102c26113ef565b34801561067f57600080fd5b506102c261068e36600461239a565b6113fc565b34801561069f57600080fd5b5061037d600e5481565b3480156106b557600080fd5b506102766106c43660046120ee565b60126020526000908152604090205460ff1681565b3480156106e557600080fd5b506102ab6106f4366004612351565b6114e8565b34801561070557600080fd5b50610276610714366004612109565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074e57600080fd5b506102ab61075d36600461239a565b611525565b34801561076e57600080fd5b506102ab61077d3660046120ee565b611554565b60006001600160e01b0319821663780e9d6360e01b14806107a757506107a7826115ef565b92915050565b600a546001600160a01b031633146107e05760405162461bcd60e51b81526004016107d7906125ab565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610802906126f0565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906126f0565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d7565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109445760405162461bcd60e51b81526004016107d7906125ab565b600f55565b600061095482610fd6565b9050806001600160a01b0316836001600160a01b031614156109c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d7565b336001600160a01b03821614806109de57506109de8133610714565b610a505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610a5a838361163f565b505050565b600a546001600160a01b03163314610a895760405162461bcd60e51b81526004016107d7906125ab565b600f91909155601155565b610a9e33826116ad565b610aba5760405162461bcd60e51b81526004016107d7906125e0565b610a5a8383836117a4565b6000610ad08361110a565b8210610b325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610b6660085490565b905060008211610b7557600080fd5b600f54821115610b8457600080fd5b600e54610b918383612662565b1115610b9c57600080fd5b3360009081526012602052604090205460ff161515600114610c005760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e000000000060448201526064016107d7565b60115482610c0d3361110a565b610c179190612662565b1115610c605760405162461bcd60e51b81526020600482015260186024820152772bb0b63632ba103634b6b4ba1034b9903932b0b1b432b21760411b60448201526064016107d7565b60015b828111610c8f57610c7d84610c788385612662565b61194f565b80610c878161272b565b915050610c63565b50505050565b600a546001600160a01b03163314610cbf5760405162461bcd60e51b81526004016107d7906125ab565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610cf057600080fd5b565b6000610cfd60085490565b60105490915060ff1615610d1057600080fd5b60008211610d1d57600080fd5b600f54821115610d2c57600080fd5b600e54610d398383612662565b1115610d4457600080fd5b60115482610d513361110a565b610d5b9190612662565b1115610da45760405162461bcd60e51b81526020600482015260186024820152772bb0b63632ba103634b6b4ba1034b9903932b0b1b432b21760411b60448201526064016107d7565b600a546001600160a01b03163314610dec573360009081526012602052604090205460ff161515600114610dec5781600d54610de0919061268e565b341015610dec57600080fd5b60015b828111610c8f57610e0484610c788385612662565b80610e0e8161272b565b915050610def565b610a5a838383604051806020016040528060008152506113bd565b60606000610e3e8361110a565b905060008167ffffffffffffffff811115610e5b57610e5b6127b2565b604051908082528060200260200182016040528015610e84578160200160208202803683370190505b50905060005b82811015610ecb57610e9c8582610ac5565b828281518110610eae57610eae61279c565b602090810291909101015280610ec38161272b565b915050610e8a565b509392505050565b600a546001600160a01b03163314610efd5760405162461bcd60e51b81526004016107d7906125ab565b600d55565b6000610f0d60085490565b8210610f705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107d7565b60088281548110610f8357610f8361279c565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbf5760405162461bcd60e51b81526004016107d7906125ab565b8051610fd290600b906020840190611fd1565b5050565b6000818152600260205260408120546001600160a01b0316806107a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107d7565b600b805461105a906126f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611086906126f0565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b505050505081565b600a546001600160a01b031633146111055760405162461bcd60e51b81526004016107d7906125ab565b600e55565b60006001600160a01b0382166111755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111bb5760405162461bcd60e51b81526004016107d7906125ab565b610cf06000611969565b606060018054610802906126f0565b600a546001600160a01b031633146111fe5760405162461bcd60e51b81526004016107d7906125ab565b60005b8151811015610fd2576000601260008484815181106112225761122261279c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061125e8161272b565b915050611201565b600a546001600160a01b031633146112905760405162461bcd60e51b81526004016107d7906125ab565b60005b8151811015610fd2576001601260008484815181106112b4576112b461279c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112f08161272b565b915050611293565b6001600160a01b0382163314156113515760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c733836116ad565b6113e35760405162461bcd60e51b81526004016107d7906125e0565b610c8f848484846119bb565b600c805461105a906126f0565b6000818152600260205260409020546060906001600160a01b03166114895760405162461bcd60e51b815260206004820152603a60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420536b756c6c6a756e6b696573204e465400000000000060648201526084016107d7565b60006114936119ee565b905060008151116114b357604051806020016040528060008152506114e1565b806114bd846119fd565b600c6040516020016114d193929190612401565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115125760405162461bcd60e51b81526004016107d7906125ab565b8051610fd290600c906020840190611fd1565b600a546001600160a01b0316331461154f5760405162461bcd60e51b81526004016107d7906125ab565b601155565b600a546001600160a01b0316331461157e5760405162461bcd60e51b81526004016107d7906125ab565b6001600160a01b0381166115e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d7565b6115ec81611969565b50565b60006001600160e01b031982166380ac58cd60e01b148061162057506001600160e01b03198216635b5e139f60e01b145b806107a757506301ffc9a760e01b6001600160e01b03198316146107a7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167482610fd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d7565b600061173183610fd6565b9050806001600160a01b0316846001600160a01b0316148061176c5750836001600160a01b031661176184610885565b6001600160a01b0316145b8061179c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117b782610fd6565b6001600160a01b03161461181f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d7565b6001600160a01b0382166118815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d7565b61188c838383611afb565b61189760008261163f565b6001600160a01b03831660009081526003602052604081208054600192906118c09084906126ad565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ee908490612662565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fd2828260405180602001604052806000815250611bb3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119c68484846117a4565b6119d284848484611be6565b610c8f5760405162461bcd60e51b81526004016107d790612559565b6060600b8054610802906126f0565b606081611a215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4b5780611a358161272b565b9150611a449050600a8361267a565b9150611a25565b60008167ffffffffffffffff811115611a6657611a666127b2565b6040519080825280601f01601f191660200182016040528015611a90576020820181803683370190505b5090505b841561179c57611aa56001836126ad565b9150611ab2600a86612746565b611abd906030612662565b60f81b818381518110611ad257611ad261279c565b60200101906001600160f81b031916908160001a905350611af4600a8661267a565b9450611a94565b6001600160a01b038316611b5657611b5181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b79565b816001600160a01b0316836001600160a01b031614611b7957611b798382611cf3565b6001600160a01b038216611b9057610a5a81611d90565b826001600160a01b0316826001600160a01b031614610a5a57610a5a8282611e3f565b611bbd8383611e83565b611bca6000848484611be6565b610a5a5760405162461bcd60e51b81526004016107d790612559565b60006001600160a01b0384163b15611ce857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2a9033908990889088906004016124c5565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c74575060408051601f3d908101601f19168201909252611c7191810190612334565b60015b611cce573d808015611ca2576040519150601f19603f3d011682016040523d82523d6000602084013e611ca7565b606091505b508051611cc65760405162461bcd60e51b81526004016107d790612559565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061179c565b506001949350505050565b60006001611d008461110a565b611d0a91906126ad565b600083815260076020526040902054909150808214611d5d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611da2906001906126ad565b60008381526009602052604081205460088054939450909284908110611dca57611dca61279c565b906000526020600020015490508060088381548110611deb57611deb61279c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2357611e23612786565b6001900381819060005260206000200160009055905550505050565b6000611e4a8361110a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b6000818152600260205260409020546001600160a01b031615611f3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d7565b611f4a60008383611afb565b6001600160a01b0382166000908152600360205260408120805460019290611f73908490612662565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fdd906126f0565b90600052602060002090601f016020900481019282611fff5760008555612045565b82601f1061201857805160ff1916838001178555612045565b82800160010185558215612045579182015b8281111561204557825182559160200191906001019061202a565b50612051929150612055565b5090565b5b808211156120515760008155600101612056565b600067ffffffffffffffff831115612084576120846127b2565b612097601f8401601f1916602001612631565b90508281528383830111156120ab57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120d957600080fd5b919050565b803580151581146120d957600080fd5b60006020828403121561210057600080fd5b6114e1826120c2565b6000806040838503121561211c57600080fd5b612125836120c2565b9150612133602084016120c2565b90509250929050565b60008060006060848603121561215157600080fd5b61215a846120c2565b9250612168602085016120c2565b9150604084013590509250925092565b6000806000806080858703121561218e57600080fd5b612197856120c2565b93506121a5602086016120c2565b925060408501359150606085013567ffffffffffffffff8111156121c857600080fd5b8501601f810187136121d957600080fd5b6121e88782356020840161206a565b91505092959194509250565b6000806040838503121561220757600080fd5b612210836120c2565b9150612133602084016120de565b6000806040838503121561223157600080fd5b61223a836120c2565b946020939093013593505050565b6000602080838503121561225b57600080fd5b823567ffffffffffffffff8082111561227357600080fd5b818501915085601f83011261228757600080fd5b813581811115612299576122996127b2565b8060051b91506122aa848301612631565b8181528481019084860184860187018a10156122c557600080fd5b600095505b838610156122ef576122db816120c2565b8352600195909501949186019186016122ca565b5098975050505050505050565b60006020828403121561230e57600080fd5b6114e1826120de565b60006020828403121561232957600080fd5b81356114e1816127c8565b60006020828403121561234657600080fd5b81516114e1816127c8565b60006020828403121561236357600080fd5b813567ffffffffffffffff81111561237a57600080fd5b8201601f8101841361238b57600080fd5b61179c8482356020840161206a565b6000602082840312156123ac57600080fd5b5035919050565b600080604083850312156123c657600080fd5b50508035926020909101359150565b600081518084526123ed8160208601602086016126c4565b601f01601f19169290920160200192915050565b6000845160206124148285838a016126c4565b8551918401916124278184848a016126c4565b8554920191600090600181811c908083168061244457607f831692505b85831081141561246257634e487b7160e01b85526022600452602485fd5b8080156124765760018114612487576124b4565b60ff198516885283880195506124b4565b60008b81526020902060005b858110156124ac5781548a820152908401908801612493565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846123d5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561253a5783518352928401929184019160010161251e565b50909695505050505050565b6020815260006114e160208301846123d5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561265a5761265a6127b2565b604052919050565b600082198211156126755761267561275a565b500190565b60008261268957612689612770565b500490565b60008160001904831182151516156126a8576126a861275a565b500290565b6000828210156126bf576126bf61275a565b500390565b60005b838110156126df5781810151838201526020016126c7565b83811115610c8f5750506000910152565b600181811c9082168061270457607f821691505b6020821081141561272557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273f5761273f61275a565b5060010190565b60008261275557612755612770565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ec57600080fdfea2646970667358221220fe423140fdd6c78de9509003f2800e6d068e6c417f62e0f06f3ccd8452cb2ba164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000ad11e056d7fb004b1bcdf477f89c26080a2923ca000000000000000000000000000000000000000000000000000000000000000c536b756c6c4a756e6b69657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007534b4c4a4e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f736b756c6c6a756e6b6965732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e66742f000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): SkullJunkies
Arg [1] : _symbol (string): SKLJNKS
Arg [2] : _initBaseURI (string): https://skulljunkies.s3.us-east-2.amazonaws.com/nft/
Arg [3] : _skullsplitterAddress (address): 0xAD11e056D7FB004b1BCDF477f89C26080a2923Ca
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000ad11e056d7fb004b1bcdf477f89c26080a2923ca
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 536b756c6c4a756e6b6965730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 534b4c4a4e4b5300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [9] : 68747470733a2f2f736b756c6c6a756e6b6965732e73332e75732d656173742d
Arg [10] : 322e616d617a6f6e6177732e636f6d2f6e66742f000000000000000000000000
Deployed Bytecode Sourcemap
43269:7810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;8817:14:1;;8810:22;8792:41;;8780:2;8765:18;34666:224:0;;;;;;;;49612:73;;;;;;;;;;-1:-1:-1;49612:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7254:32:1;;;7236:51;;7224:2;7209:18;24117:221:0;7090:203:1;46946:118:0;;;;;;;;;;-1:-1:-1;46946:118:0;;;;;:::i;:::-;;:::i;23640:411::-;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;48244:193::-;;;;;;;;;;-1:-1:-1;48244:193:0;;;;;:::i;:::-;;:::i;43420:32::-;;;;;;;;;;;;;;;;;;;17141:25:1;;;17129:2;17114:18;43420:32:0;16995:177:1;35306:113:0;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;43494:32;;;;;;;;;;;;;;;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;45090:507::-;;;;;;:::i;:::-;;:::i;43562:32::-;;;;;;;;;;;;;;;;50958:112;;;:::i;44485:597::-;;;;;;:::i;:::-;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;45611:348::-;;;;;;;;;;-1:-1:-1;45611:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46604:82::-;;;;;;;;;;-1:-1:-1;46604:82:0;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;48975:98::-;;;;;;;;;;-1:-1:-1;48975:98:0;;;;;:::i;:::-;;:::i;43531:26::-;;;;;;;;;;-1:-1:-1;43531:26:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;43357:21::-;;;;;;;;;;;;;:::i;48539:96::-;;;;;;;;;;-1:-1:-1;48539:96:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;41804:87::-;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;50655:189::-;;;;;;;;;;-1:-1:-1;50655:189:0;;;;;:::i;:::-;;:::i;50260:182::-;;;;;;;;;;-1:-1:-1;50260:182:0;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;43647:31::-;;;;;;;;;;-1:-1:-1;43647:31:0;;;;-1:-1:-1;;;;;43647:31:0;;;25673:328;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43383:32::-;;;;;;;;;;;;;:::i;45965:434::-;;;;;;;;;;-1:-1:-1;45965:434:0;;;;;:::i;:::-;;:::i;43457:32::-;;;;;;;;;;;;;;;;43599:43;;;;;;;;;;-1:-1:-1;43599:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49448:122;;;;;;;;;;-1:-1:-1;49448:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;47320:110;;;;;;;;;;-1:-1:-1;47320:110:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;49612:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;49664:6:::1;:15:::0;;-1:-1:-1;;49664:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49612:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;14424:2:1;24213:73:0;;;14406:21:1;14463:2;14443:18;;;14436:30;14502:34;14482:18;;;14475:62;-1:-1:-1;;;14553:18:1;;;14546:42;14605:19;;24213:73:0;14222:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;46946:118::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47025:13:::1;:33:::0;46946:118::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;15608:2:1;23771:57:0;;;15590:21:1;15647:2;15627:18;;;15620:30;15686:34;15666:18;;;15659:62;-1:-1:-1;;;15737:18:1;;;15730:31;15778:19;;23771:57:0;15406:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;12817:2:1;23841:168:0;;;12799:21:1;12856:2;12836:18;;;12829:30;12895:34;12875:18;;;12868:62;12966:26;12946:18;;;12939:54;13010:19;;23841:168:0;12615:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;48244:193::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;48362:13:::1;:33:::0;;;;48402:11:::1;:29:::0;48244:193::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;9270:2:1;35091:87:0;;;9252:21:1;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;-1:-1:-1;;;9399:18:1;;;9392:41;9450:19;;35091:87:0;9068:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;45090:507::-;45169:14;45186:13;35394:10;:17;;35306:113;45186:13;45169:30;;45228:1;45214:11;:15;45206:24;;;;;;45260:13;;45245:11;:28;;45237:37;;;;;;45313:9;;45289:20;45298:11;45289:6;:20;:::i;:::-;:33;;45281:42;;;;;;45350:10;45338:23;;;;:11;:23;;;;;;;;:31;;:23;:31;45330:71;;;;-1:-1:-1;;;45330:71:0;;16010:2:1;45330:71:0;;;15992:21:1;16049:2;16029:18;;;16022:30;16088:29;16068:18;;;16061:57;16135:18;;45330:71:0;15808:351:1;45330:71:0;45457:11;;45441;45417:21;45427:10;45417:9;:21::i;:::-;:35;;;;:::i;:::-;45416:52;;45408:89;;;;-1:-1:-1;;;45408:89:0;;12464:2:1;45408:89:0;;;12446:21:1;12503:2;12483:18;;;12476:30;-1:-1:-1;;;12522:18:1;;;12515:54;12586:18;;45408:89:0;12262:348:1;45408:89:0;45523:1;45506:86;45531:11;45526:1;:16;45506:86;;45558:26;45568:3;45573:10;45582:1;45573:6;:10;:::i;:::-;45558:9;:26::i;:::-;45544:3;;;;:::i;:::-;;;;45506:86;;;;45162:435;45090:507;;:::o;50958:112::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;51026:8:::1;::::0;51018:45:::1;::::0;-1:-1:-1;;;;;51026:8:0;;::::1;::::0;51041:21:::1;51018:45:::0;::::1;;;::::0;51026:8:::1;51018:45:::0;51026:8;51018:45;51041:21;51026:8;51018:45;::::1;;;;;;51010:54;;;::::0;::::1;;50958:112::o:0;44485:597::-;44555:14;44572:13;35394:10;:17;;35306:113;44572:13;44601:6;;44555:30;;-1:-1:-1;44601:6:0;;44600:7;44592:16;;;;;;44637:1;44623:11;:15;44615:24;;;;;;44669:13;;44654:11;:28;;44646:37;;;;;;44722:9;;44698:20;44707:11;44698:6;:20;:::i;:::-;:33;;44690:42;;;;;;44788:11;;44772;44748:21;44758:10;44748:9;:21::i;:::-;:35;;;;:::i;:::-;44747:52;;44739:89;;;;-1:-1:-1;;;44739:89:0;;12464:2:1;44739:89:0;;;12446:21:1;12503:2;12483:18;;;12476:30;-1:-1:-1;;;12522:18:1;;;12515:54;12586:18;;44739:89:0;12262:348:1;44739:89:0;41877:6;;-1:-1:-1;;;;;41877:6:0;44841:10;:21;44837:146;;44890:10;44878:23;;;;:11;:23;;;;;;;;:31;;:23;:31;44875:101;;44952:11;44945:4;;:18;;;;:::i;:::-;44932:9;:31;;44924:40;;;;;;45008:1;44991:86;45016:11;45011:1;:16;44991:86;;45043:26;45053:3;45058:10;45067:1;45058:6;:10;:::i;45043:26::-;45029:3;;;;:::i;:::-;;;;44991:86;;25417:185;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;45611:348::-;45686:16;45714:23;45740:17;45750:6;45740:9;:17::i;:::-;45714:43;;45764:25;45806:15;45792:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45792:30:0;;45764:58;;45834:9;45829:103;45849:15;45845:1;:19;45829:103;;;45894:30;45914:6;45922:1;45894:19;:30::i;:::-;45880:8;45889:1;45880:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45866:3;;;;:::i;:::-;;;;45829:103;;;-1:-1:-1;45945:8:0;45611:348;-1:-1:-1;;;45611:348:0:o;46604:82::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46665:4:::1;:15:::0;46604:82::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;16784:2:1;35591:95:0;;;16766:21:1;16823:2;16803:18;;;16796:30;16862:34;16842:18;;;16835:62;-1:-1:-1;;;16913:18:1;;;16906:42;16965:19;;35591:95:0;16582:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;48975:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;49046:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48975:98:::0;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;13653:2:1;22387:73:0;;;13635:21:1;13692:2;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;-1:-1:-1;;;13782:18:1;;;13775:39;13831:19;;22387:73:0;13451:405:1;43357:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48539:96::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;48607:9:::1;:22:::0;48539:96::o;21982:208::-;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;13242:2:1;22074:74:0;;;13224:21:1;13281:2;13261:18;;;13254:30;13320:34;13300:18;;;13293:62;-1:-1:-1;;;13371:18:1;;;13364:40;13421:19;;22074:74:0;13040:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;22727:104::-:0;22783:13;22816:7;22809:14;;;;;:::i;50655:189::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;50733:9:::1;50754:85;50770:5;:12;50766:1;:16;50754:85;;;50825:5;50801:11;:21;50813:5;50819:1;50813:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50801:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50801:21:0;:29;;-1:-1:-1;;50801:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50784:3;::::1;::::0;::::1;:::i;:::-;;;;50754:85;;50260:182:::0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;50332:9:::1;50353:84;50369:5;:12;50365:1;:16;50353:84;;;50424:4;50400:11;:21;50412:5;50418:1;50412:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50400:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50400:21:0;:28;;-1:-1:-1;;50400:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50383:3;::::1;::::0;::::1;:::i;:::-;;;;50353:84;;24410:295:::0;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;11697:2:1;24505:62:0;;;11679:21:1;11736:2;11716:18;;;11709:30;11775:27;11755:18;;;11748:55;11820:18;;24505:62:0;11495:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;8792:41:1;;;24580:42:0;;20167:10;24649:48;;8765:18:1;24649:48:0;;;;;;;24410:295;;:::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;43383:32::-;;;;;;;:::i;45965:434::-;27576:4;27600:16;;;:7;:16;;;;;;46063:13;;-1:-1:-1;;;;;27600:16:0;46088:108;;;;-1:-1:-1;;;46088:108:0;;10865:2:1;46088:108:0;;;10847:21:1;10904:2;10884:18;;;10877:30;10943:34;10923:18;;;10916:62;11014:28;10994:18;;;10987:56;11060:19;;46088:108:0;10663:422:1;46088:108:0;46205:28;46236:10;:8;:10::i;:::-;46205:41;;46291:1;46266:14;46260:28;:32;:133;;;;;;;;;;;;;;;;;46328:14;46344:18;:7;:16;:18::i;:::-;46364:13;46311:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46260:133;46253:140;45965:434;-1:-1:-1;;;45965:434:0:o;49448:122::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;49531:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47320:110::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47395:11:::1;:29:::0;47320:110::o;42704:192::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;10101:2:1;42785:73:0::1;::::0;::::1;10083:21:1::0;10140:2;10120:18;;;10113:30;10179:34;10159:18;;;10152:62;-1:-1:-1;;;10230:18:1;;;10223:36;10276:19;;42785:73:0::1;9899:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;21613:305::-;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;12051:2:1;27915:73:0;;;12033:21:1;12090:2;12070:18;;;12063:30;12129:34;12109:18;;;12102:62;-1:-1:-1;;;12180:18:1;;;12173:42;12232:19;;27915:73:0;11849:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;15198:2:1;30921:85:0;;;15180:21:1;15237:2;15217:18;;;15210:30;15276:34;15256:18;;;15249:62;-1:-1:-1;;;15327:18:1;;;15320:39;15376:19;;30921:85:0;14996:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;11292:2:1;31017:65:0;;;11274:21:1;11331:2;11311:18;;;11304:30;11370:34;11350:18;;;11343:62;-1:-1:-1;;;11421:18:1;;;11414:34;11465:19;;31017:65:0;11090:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;44364:102::-;44424:13;44453:7;44446:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;-1:-1:-1;;;32444:72:0;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;14063:2:1;29561:61:0;;;14045:21:1;;;14082:18;;;14075:30;14141:34;14121:18;;;14114:62;14193:18;;29561:61:0;13861:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;10508:2:1;29633:58:0;;;10490:21:1;10547:2;10527:18;;;10520:30;10586;10566:18;;;10559:58;10634:18;;29633:58:0;10306:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:248::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;-1:-1:-1;;5211:23:1;;;5281:2;5266:18;;;5253:32;;-1:-1:-1;5043:248:1:o;5296:257::-;5337:3;5375:5;5369:12;5402:6;5397:3;5390:19;5418:63;5474:6;5467:4;5462:3;5458:14;5451:4;5444:5;5440:16;5418:63;:::i;:::-;5535:2;5514:15;-1:-1:-1;;5510:29:1;5501:39;;;;5542:4;5497:50;;5296:257;-1:-1:-1;;5296:257:1:o;5558:1527::-;5782:3;5820:6;5814:13;5846:4;5859:51;5903:6;5898:3;5893:2;5885:6;5881:15;5859:51;:::i;:::-;5973:13;;5932:16;;;;5995:55;5973:13;5932:16;6017:15;;;5995:55;:::i;:::-;6139:13;;6072:20;;;6112:1;;6199;6221:18;;;;6274;;;;6301:93;;6379:4;6369:8;6365:19;6353:31;;6301:93;6442:2;6432:8;6429:16;6409:18;6406:40;6403:167;;;-1:-1:-1;;;6469:33:1;;6525:4;6522:1;6515:15;6555:4;6476:3;6543:17;6403:167;6586:18;6613:110;;;;6737:1;6732:328;;;;6579:481;;6613:110;-1:-1:-1;;6648:24:1;;6634:39;;6693:20;;;;-1:-1:-1;6613:110:1;;6732:328;17530:1;17523:14;;;17567:4;17554:18;;6827:1;6841:169;6855:8;6852:1;6849:15;6841:169;;;6937:14;;6922:13;;;6915:37;6980:16;;;;6872:10;;6841:169;;;6845:3;;7041:8;7034:5;7030:20;7023:27;;6579:481;-1:-1:-1;7076:3:1;;5558:1527;-1:-1:-1;;;;;;;;;;;5558:1527:1:o;7522:488::-;-1:-1:-1;;;;;7791:15:1;;;7773:34;;7843:15;;7838:2;7823:18;;7816:43;7890:2;7875:18;;7868:34;;;7938:3;7933:2;7918:18;;7911:31;;;7716:4;;7959:45;;7984:19;;7976:6;7959:45;:::i;:::-;7951:53;7522:488;-1:-1:-1;;;;;;7522:488:1:o;8015:632::-;8186:2;8238:21;;;8308:13;;8211:18;;;8330:22;;;8157:4;;8186:2;8409:15;;;;8383:2;8368:18;;;8157:4;8452:169;8466:6;8463:1;8460:13;8452:169;;;8527:13;;8515:26;;8596:15;;;;8561:12;;;;8488:1;8481:9;8452:169;;;-1:-1:-1;8638:3:1;;8015:632;-1:-1:-1;;;;;;8015:632:1:o;8844:219::-;8993:2;8982:9;8975:21;8956:4;9013:44;9053:2;9042:9;9038:18;9030:6;9013:44;:::i;9480:414::-;9682:2;9664:21;;;9721:2;9701:18;;;9694:30;9760:34;9755:2;9740:18;;9733:62;-1:-1:-1;;;9826:2:1;9811:18;;9804:48;9884:3;9869:19;;9480:414::o;14635:356::-;14837:2;14819:21;;;14856:18;;;14849:30;14915:34;14910:2;14895:18;;14888:62;14982:2;14967:18;;14635:356::o;16164:413::-;16366:2;16348:21;;;16405:2;16385:18;;;16378:30;16444:34;16439:2;16424:18;;16417:62;-1:-1:-1;;;16510:2:1;16495:18;;16488:47;16567:3;16552:19;;16164:413::o;17177:275::-;17248:2;17242:9;17313:2;17294:13;;-1:-1:-1;;17290:27:1;17278:40;;17348:18;17333:34;;17369:22;;;17330:62;17327:88;;;17395:18;;:::i;:::-;17431:2;17424:22;17177:275;;-1:-1:-1;17177:275:1:o;17583:128::-;17623:3;17654:1;17650:6;17647:1;17644:13;17641:39;;;17660:18;;:::i;:::-;-1:-1:-1;17696:9:1;;17583:128::o;17716:120::-;17756:1;17782;17772:35;;17787:18;;:::i;:::-;-1:-1:-1;17821:9:1;;17716:120::o;17841:168::-;17881:7;17947:1;17943;17939:6;17935:14;17932:1;17929:21;17924:1;17917:9;17910:17;17906:45;17903:71;;;17954:18;;:::i;:::-;-1:-1:-1;17994:9:1;;17841:168::o;18014:125::-;18054:4;18082:1;18079;18076:8;18073:34;;;18087:18;;:::i;:::-;-1:-1:-1;18124:9:1;;18014:125::o;18144:258::-;18216:1;18226:113;18240:6;18237:1;18234:13;18226:113;;;18316:11;;;18310:18;18297:11;;;18290:39;18262:2;18255:10;18226:113;;;18357:6;18354:1;18351:13;18348:48;;;-1:-1:-1;;18392:1:1;18374:16;;18367:27;18144:258::o;18407:380::-;18486:1;18482:12;;;;18529;;;18550:61;;18604:4;18596:6;18592:17;18582:27;;18550:61;18657:2;18649:6;18646:14;18626:18;18623:38;18620:161;;;18703:10;18698:3;18694:20;18691:1;18684:31;18738:4;18735:1;18728:15;18766:4;18763:1;18756:15;18620:161;;18407:380;;;:::o;18792:135::-;18831:3;-1:-1:-1;;18852:17:1;;18849:43;;;18872:18;;:::i;:::-;-1:-1:-1;18919:1:1;18908:13;;18792:135::o;18932:112::-;18964:1;18990;18980:35;;18995:18;;:::i;:::-;-1:-1:-1;19029:9:1;;18932:112::o;19049:127::-;19110:10;19105:3;19101:20;19098:1;19091:31;19141:4;19138:1;19131:15;19165:4;19162:1;19155:15;19181:127;19242:10;19237:3;19233:20;19230:1;19223:31;19273:4;19270:1;19263:15;19297:4;19294:1;19287:15;19313:127;19374:10;19369:3;19365:20;19362:1;19355:31;19405:4;19402:1;19395:15;19429:4;19426:1;19419:15;19445:127;19506:10;19501:3;19497:20;19494:1;19487:31;19537:4;19534:1;19527:15;19561:4;19558:1;19551:15;19577:127;19638:10;19633:3;19629:20;19626:1;19619:31;19669:4;19666:1;19659:15;19693:4;19690:1;19683:15;19709:131;-1:-1:-1;;;;;;19783:32:1;;19773:43;;19763:71;;19830:1;19827;19820:12
Swarm Source
ipfs://fe423140fdd6c78de9509003f2800e6d068e6c417f62e0f06f3ccd8452cb2ba1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.