Overview
ETH Balance
0.05 ETH
Eth Value
$108.54 (@ $2,170.80/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 91 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15573746 | 896 days ago | IN | 0 ETH | 0.00024956 | ||||
Transfer From | 13610008 | 1207 days ago | IN | 0 ETH | 0.01071148 | ||||
Transfer From | 13609117 | 1207 days ago | IN | 0 ETH | 0.01037247 | ||||
Transfer From | 13536037 | 1218 days ago | IN | 0 ETH | 0.01067485 | ||||
Mint With Kong | 13404200 | 1239 days ago | IN | 0.05 ETH | 0.01703529 | ||||
Set Approval For... | 13320669 | 1252 days ago | IN | 0 ETH | 0.0023732 | ||||
Set Approval For... | 13318530 | 1253 days ago | IN | 0 ETH | 0.00254891 | ||||
Withdraw All | 13303595 | 1255 days ago | IN | 0 ETH | 0.00277883 | ||||
Mint With Kong | 13283650 | 1258 days ago | IN | 0.05 ETH | 0.01517351 | ||||
Mint With Kong | 13283648 | 1258 days ago | IN | 0.05 ETH | 0.01300487 | ||||
Mint With Kong | 13260433 | 1262 days ago | IN | 0.05 ETH | 0.01058229 | ||||
Mint With Kong | 13252504 | 1263 days ago | IN | 0.05 ETH | 0.0093256 | ||||
Mint With Kong | 13252504 | 1263 days ago | IN | 0.05 ETH | 0.0093256 | ||||
Mint With Kong | 13252504 | 1263 days ago | IN | 0.05 ETH | 0.0093256 | ||||
Mint With Kong | 13252498 | 1263 days ago | IN | 0.05 ETH | 0.00836906 | ||||
Mint With Kong | 13252496 | 1263 days ago | IN | 0.05 ETH | 0.00666807 | ||||
Mint With Kong | 13252496 | 1263 days ago | IN | 0.05 ETH | 0.00666807 | ||||
Mint With Kong | 13252493 | 1263 days ago | IN | 0.05 ETH | 0.00735436 | ||||
Mint With Kong | 13252492 | 1263 days ago | IN | 0.05 ETH | 0.0079364 | ||||
Mint With Kong | 13252489 | 1263 days ago | IN | 0.05 ETH | 0.0071822 | ||||
Mint With Kong | 13252485 | 1263 days ago | IN | 0.05 ETH | 0.00730096 | ||||
Set Approval For... | 13252426 | 1263 days ago | IN | 0 ETH | 0.00236434 | ||||
Set Approval For... | 13252420 | 1263 days ago | IN | 0 ETH | 0.0022408 | ||||
Mint With Kong | 13252414 | 1263 days ago | IN | 0.05 ETH | 0.00813806 | ||||
Mint With Kong | 13252385 | 1263 days ago | IN | 0.05 ETH | 0.00767135 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13303595 | 1255 days ago | 3.8 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Spatter
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-15 */ // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity 0.8.6; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] /** * @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/introspection/[email protected] /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] /** * @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/security/[email protected] /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/access/[email protected] /** * @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); } } // File contracts/interfaces/IN.sol interface IN is IERC721Enumerable, IERC721Metadata { function getReward() external view returns (uint256); } // File contracts/core/KongzPassCore.sol abstract contract KongzPassCore is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 public constant MAX_KONGZ_TOKEN_ID = 1000; IN public immutable kongz; bool public immutable onlyKongzHolders; uint16 public immutable reservedAllowance; uint16 public reserveMinted; uint256 public immutable maxTotalSupply; uint256 public immutable priceForKongzHoldersInWei; uint256 public immutable priceForOpenMintInWei; /** * @notice Construct an KongzPassCore instance * @param name Name of the token * @param symbol Symbol of the token * @param kongz_ Address of your CyberKongz instance (only for testing) * @param onlyKongzHolders_ True if only Genesis CyberKongz holders can mint this token * @param maxTotalSupply_ Maximum number of tokens that can ever be minted * @param reservedAllowance_ Number of tokens reserved for Genesis CyberKongz holders * @param priceForKongzHoldersInWei_ Price Genesis CyberKongz holders need to pay to mint * @param priceForOpenMintInWei_ Price open minter need to pay to mint */ constructor( string memory name, string memory symbol, IN kongz_, bool onlyKongzHolders_, uint256 maxTotalSupply_, uint16 reservedAllowance_, uint256 priceForKongzHoldersInWei_, uint256 priceForOpenMintInWei_ ) ERC721(name, symbol) { require(maxTotalSupply_ > 0, "KongzPass:INVALID_SUPPLY"); require(!onlyKongzHolders_ || (onlyKongzHolders_ && maxTotalSupply_ <= MAX_KONGZ_TOKEN_ID), "KongzPass:INVALID_SUPPLY"); require(maxTotalSupply_ >= reservedAllowance_, "KongzPass:INVALID_ALLOWANCE"); // If restricted to Genesis CyberKongz holders we limit max total supply kongz = kongz_; onlyKongzHolders = onlyKongzHolders_; maxTotalSupply = maxTotalSupply_; reservedAllowance = reservedAllowance_; priceForKongzHoldersInWei = priceForKongzHoldersInWei_; priceForOpenMintInWei = priceForOpenMintInWei_; } /** * @notice Allow a Genesis CyberKongz holder to mint a token with one of their Kongz token's id * @param tokenId Id to be minted */ function mintWithKong(uint256 tokenId) public payable virtual nonReentrant { require( // If no reserved allowance we respect total supply contraint (reservedAllowance == 0 && totalSupply() < maxTotalSupply) || reserveMinted < reservedAllowance, "KongzPass:MAX_ALLOCATION_REACHED" ); require(kongz.ownerOf(tokenId) == msg.sender, "KongzPass:INVALID_OWNER"); require(msg.value == priceForKongzHoldersInWei, "KongzPass:INVALID_PRICE"); // If reserved allowance is active we track mints count if (reservedAllowance > 0) { reserveMinted++; } _safeMint(msg.sender, tokenId); } /** * @notice Allow anyone to mint a token with the supply id if this pass is unrestricted. * Genesis CyberKongz token holders can use this function without using the Genesis CyberKongz token holders allowance, * this is useful when the allowance is fully utilized. * @param tokenId Id to be minted */ function mint(uint256 tokenId) public payable virtual nonReentrant { require(!onlyKongzHolders, "KongzPass:OPEN_MINTING_DISABLED"); require(openMintsAvailable() > 0, "KongzPass:MAX_ALLOCATION_REACHED"); require( (tokenId > MAX_KONGZ_TOKEN_ID && tokenId <= maxTokenId()) || kongz.ownerOf(tokenId) == msg.sender, "KongzPass:INVALID_ID" ); require(msg.value == priceForOpenMintInWei, "KongzPass:INVALID_PRICE"); _safeMint(msg.sender, tokenId); } /** * @notice Calculate the maximum token id that can ever be minted * @return Maximum token id */ function maxTokenId() public view returns (uint256) { uint256 maxOpenMints = maxTotalSupply - reservedAllowance; return MAX_KONGZ_TOKEN_ID + maxOpenMints; } /** * @notice Calculate the currently available number of reserved tokens for Genesis CyberKongz token holders * @return Reserved mint available */ function kongHoldersMintsAvailable() external view returns (uint256) { return reservedAllowance - reserveMinted; } /** * @notice Calculate the currently available number of open mints * @return Open mint available */ function openMintsAvailable() public view returns (uint256) { uint256 maxOpenMints = maxTotalSupply - reservedAllowance; uint256 currentOpenMints = totalSupply() - reserveMinted; return maxOpenMints - currentOpenMints; } /** * @notice Allows owner to withdraw amount */ function withdrawAll() external onlyOwner { payable(owner()).transfer(address(this).balance); } } // File contracts/core/KongzPass.sol abstract contract KongzPass is KongzPassCore { /** * @notice Construct an KongzPass instance * @param name Name of the token * @param symbol Symbol of the token * @param onlyKongzHolders True if only Genesis CyberKongz tokens holders can mint this token * @param maxTotalSupply Maximum number of tokens that can ever be minted * @param reservedAllowance Number of tokens reserved for Genesis CyberKongz token holders * @param priceForKongzHoldersInWei Price Genesis CyberKongz token holders need to pay to mint * @param priceForOpenMintInWei Price open minter need to pay to mint */ constructor( string memory name, string memory symbol, bool onlyKongzHolders, uint256 maxTotalSupply, uint16 reservedAllowance, uint256 priceForKongzHoldersInWei, uint256 priceForOpenMintInWei ) KongzPassCore( name, symbol, IN(0x57a204AA1042f6E66DD7730813f4024114d74f37), onlyKongzHolders, maxTotalSupply, reservedAllowance, priceForKongzHoldersInWei, priceForOpenMintInWei ) {} } // File contracts/Spatter.sol /** * @title Spatter.Art * @author Proof * @notice This contract allows Genesis CyberKongz holders to mint a Spatter */ contract Spatter is KongzPass { using Strings for uint256; constructor( string memory name, string memory symbol ) KongzPass(name, symbol, true, 1000, 1000, 50000000000000000, 0) {} 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(),".json")) : ""; } function _baseURI() internal view virtual override returns (string memory) { return "https://ipfs.io/ipfs/QmWZRw4M5eTfSNQ7MeUn2rdxtreZdjykqcoQSwBHpeeufX/"; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_KONGZ_TOKEN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"kongHoldersMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kongz","outputs":[{"internalType":"contract IN","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintWithKong","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyKongzHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceForKongzHoldersInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceForOpenMintInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedAllowance","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b5060405162002a8a38038062002a8a8339810160408190526200003591620003b4565b818160016103e88066b1a2bc2ec50000600086867357a204aa1042f6e66dd7730813f4024114d74f378787878787878781600090805190602001906200007d92919062000257565b5080516200009390600190602084019062000257565b50506001600a5550620000a63362000205565b60008411620000fc5760405162461bcd60e51b815260206004820152601860248201527f4b6f6e677a506173733a494e56414c49445f535550504c59000000000000000060448201526064015b60405180910390fd5b8415806200011557508480156200011557506103e88411155b620001635760405162461bcd60e51b815260206004820152601860248201527f4b6f6e677a506173733a494e56414c49445f535550504c5900000000000000006044820152606401620000f3565b8261ffff16841015620001b95760405162461bcd60e51b815260206004820152601b60248201527f4b6f6e677a506173733a494e56414c49445f414c4c4f57414e434500000000006044820152606401620000f3565b60609590951b6001600160601b03191660805292151560f81b60a05260e09190915260f01b6001600160f01b03191660c052610100526101205250620004719950505050505050505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000265906200041e565b90600052602060002090601f016020900481019282620002895760008555620002d4565b82601f10620002a457805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d4578251825591602001919060010190620002b7565b50620002e2929150620002e6565b5090565b5b80821115620002e25760008155600101620002e7565b600082601f8301126200030f57600080fd5b81516001600160401b03808211156200032c576200032c6200045b565b604051601f8301601f19908116603f011681019082821181831017156200035757620003576200045b565b816040528381526020925086838588010111156200037457600080fd5b600091505b8382101562000398578582018301518183018401529082019062000379565b83821115620003aa5760008385830101525b9695505050505050565b60008060408385031215620003c857600080fd5b82516001600160401b0380821115620003e057600080fd5b620003ee86838701620002fd565b935060208501519150808211156200040557600080fd5b506200041485828601620002fd565b9150509250929050565b600181811c908216806200043357607f821691505b602082108114156200045557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160f81c60c05160f01c60e051610100516101205161255e6200052c600039600081816106730152610f7a0152600081816104d401526113f401526000818161038a01528181610c1c01528181610d0e01526112520152600081816103230152818161094a01528181610bfa01528181610cec015281816112280152818161128a015261146001526000818161061f0152610daf0152600081816102b601528181610eb00152611322015261255e6000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063d41843c31161006f578063d41843c3146105b1578063e985e9c5146105c4578063f066ecee1461060d578063f2fde38b14610641578063f82cbbe81461066157600080fd5b8063a0712d681461053e578063a22cb46514610551578063b88d4fde14610571578063c87b56dd1461059157600080fd5b80638a89336d116100dc5780638a89336d146104c25780638da5cb5b146104f657806391ba317a1461051457806395d89b411461052957600080fd5b806370a0823114610463578063715018a6146104835780638416b69614610498578063853828b6146104ad57600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e146103e15780634c81433f146104015780634f6ccce7146104235780636352211e1461044357600080fd5b806323b872dd146103585780632ab4d052146103785780632ea08df6146103ac5780632f745c59146103c157600080fd5b80630de78428116101c15780630de78428146102a45780630fc2cebe146102d857806318160ddd146102fc57806320bc84ce1461031157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612147565b610695565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106c0565b60405161021f9190612242565b34801561025657600080fd5b5061026a610265366004612181565b610752565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d36600461211b565b6107ec565b005b3480156102b057600080fd5b5061026a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102e457600080fd5b506102ee6103e881565b60405190815260200161021f565b34801561030857600080fd5b506008546102ee565b34801561031d57600080fd5b506103457f000000000000000000000000000000000000000000000000000000000000000081565b60405161ffff909116815260200161021f565b34801561036457600080fd5b506102a2610373366004611fc7565b610902565b34801561038457600080fd5b506102ee7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103b857600080fd5b506102ee610933565b3480156103cd57600080fd5b506102ee6103dc36600461211b565b610977565b3480156103ed57600080fd5b506102a26103fc366004611fc7565b610a0d565b34801561040d57600080fd5b50600b5461034590600160a01b900461ffff1681565b34801561042f57600080fd5b506102ee61043e366004612181565b610a28565b34801561044f57600080fd5b5061026a61045e366004612181565b610abb565b34801561046f57600080fd5b506102ee61047e366004611f54565b610b32565b34801561048f57600080fd5b506102a2610bb9565b3480156104a457600080fd5b506102ee610bef565b3480156104b957600080fd5b506102a2610c7b565b3480156104ce57600080fd5b506102ee7f000000000000000000000000000000000000000000000000000000000000000081565b34801561050257600080fd5b50600b546001600160a01b031661026a565b34801561052057600080fd5b506102ee610ce1565b34801561053557600080fd5b5061023d610d46565b6102a261054c366004612181565b610d55565b34801561055d57600080fd5b506102a261056c3660046120e8565b610ff3565b34801561057d57600080fd5b506102a261058c366004612008565b6110b8565b34801561059d57600080fd5b5061023d6105ac366004612181565b6110f0565b6102a26105bf366004612181565b6111cb565b3480156105d057600080fd5b506102136105df366004611f8e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061957600080fd5b506102137f000000000000000000000000000000000000000000000000000000000000000081565b34801561064d57600080fd5b506102a261065c366004611f54565b6114c5565b34801561066d57600080fd5b506102ee7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b0319821663780e9d6360e01b14806106ba57506106ba8261155d565b92915050565b6060600080546106cf906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb906123bf565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f782610abb565b9050806001600160a01b0316836001600160a01b031614156108655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c7565b336001600160a01b0382161480610881575061088181336105df565b6108f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c7565b6108fd83836115ad565b505050565b61090c338261161b565b6109285760405162461bcd60e51b81526004016107c7906122dc565b6108fd838383611712565b600b5460009061096e90600160a01b900461ffff167f0000000000000000000000000000000000000000000000000000000000000000612359565b61ffff16905090565b600061098283610b32565b82106109e45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108fd838383604051806020016040528060008152506110b8565b6000610a3360085490565b8210610a965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c7565b60088281548110610aa957610aa961248d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c7565b60006001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c7565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610be35760405162461bcd60e51b81526004016107c7906122a7565b610bed60006118bd565b565b600080610c4061ffff7f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000061237c565b600b5490915060009061ffff600160a01b90910416610c5e60085490565b610c68919061237c565b9050610c74818361237c565b9250505090565b600b546001600160a01b03163314610ca55760405162461bcd60e51b81526004016107c7906122a7565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cde573d6000803e3d6000fd5b50565b600080610d3261ffff7f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000061237c565b9050610d40816103e861232d565b91505090565b6060600180546106cf906123bf565b6002600a541415610da85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600a557f000000000000000000000000000000000000000000000000000000000000000015610e1b5760405162461bcd60e51b815260206004820152601f60248201527f4b6f6e677a506173733a4f50454e5f4d494e54494e475f44495341424c45440060448201526064016107c7565b6000610e25610bef565b11610e725760405162461bcd60e51b815260206004820181905260248201527f4b6f6e677a506173733a4d41585f414c4c4f434154494f4e5f5245414348454460448201526064016107c7565b6103e881118015610e8a5750610e86610ce1565b8111155b80610f3557506040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b158015610ef257600080fd5b505afa158015610f06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2a9190611f71565b6001600160a01b0316145b610f785760405162461bcd60e51b815260206004820152601460248201527312dbdb99de94185cdcce9253959053125117d25160621b60448201526064016107c7565b7f00000000000000000000000000000000000000000000000000000000000000003414610fe15760405162461bcd60e51b81526020600482015260176024820152764b6f6e677a506173733a494e56414c49445f505249434560481b60448201526064016107c7565b610feb338261190f565b506001600a55565b6001600160a01b03821633141561104c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c2338361161b565b6110de5760405162461bcd60e51b81526004016107c7906122dc565b6110ea8484848461192d565b50505050565b6000818152600260205260409020546060906001600160a01b031661116f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c7565b6000611179611960565b9050600081511161119957604051806020016040528060008152506111c4565b806111a384611980565b6040516020016111b49291906121c6565b6040516020818303038152906040525b9392505050565b6002600a54141561121e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600a5561ffff7f00000000000000000000000000000000000000000000000000000000000000001615801561127c57507f000000000000000000000000000000000000000000000000000000000000000061127a60085490565b105b806112b65750600b5461ffff7f00000000000000000000000000000000000000000000000000000000000000008116600160a01b90920416105b6113025760405162461bcd60e51b815260206004820181905260248201527f4b6f6e677a506173733a4d41585f414c4c4f434154494f4e5f5245414348454460448201526064016107c7565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b15801561136457600080fd5b505afa158015611378573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139c9190611f71565b6001600160a01b0316146113f25760405162461bcd60e51b815260206004820152601760248201527f4b6f6e677a506173733a494e56414c49445f4f574e455200000000000000000060448201526064016107c7565b7f0000000000000000000000000000000000000000000000000000000000000000341461145b5760405162461bcd60e51b81526020600482015260176024820152764b6f6e677a506173733a494e56414c49445f505249434560481b60448201526064016107c7565b61ffff7f00000000000000000000000000000000000000000000000000000000000000001615610fe157600b8054600160a01b900461ffff169060146114a0836123fa565b91906101000a81548161ffff021916908361ffff16021790555050610feb338261190f565b600b546001600160a01b031633146114ef5760405162461bcd60e51b81526004016107c7906122a7565b6001600160a01b0381166115545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b610cde816118bd565b60006001600160e01b031982166380ac58cd60e01b148061158e57506001600160e01b03198216635b5e139f60e01b145b806106ba57506301ffc9a760e01b6001600160e01b03198316146106ba565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115e282610abb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c7565b600061169f83610abb565b9050806001600160a01b0316846001600160a01b031614806116da5750836001600160a01b03166116cf84610752565b6001600160a01b0316145b8061170a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172582610abb565b6001600160a01b03161461178d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c7565b6001600160a01b0382166117ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6117fa838383611a7e565b6118056000826115ad565b6001600160a01b038316600090815260036020526040812080546001929061182e90849061237c565b90915550506001600160a01b038216600090815260036020526040812080546001929061185c90849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611929828260405180602001604052806000815250611b36565b5050565b611938848484611712565b61194484848484611b69565b6110ea5760405162461bcd60e51b81526004016107c790612255565b60606040518060800160405280604481526020016124e560449139905090565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b88161241c565b91506119c79050600a83612345565b91506119a8565b60008167ffffffffffffffff8111156119e9576119e96124a3565b6040519080825280601f01601f191660200182016040528015611a13576020820181803683370190505b5090505b841561170a57611a2860018361237c565b9150611a35600a86612437565b611a4090603061232d565b60f81b818381518110611a5557611a5561248d565b60200101906001600160f81b031916908160001a905350611a77600a86612345565b9450611a17565b6001600160a01b038316611ad957611ad481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611afc565b816001600160a01b0316836001600160a01b031614611afc57611afc8382611c76565b6001600160a01b038216611b13576108fd81611d13565b826001600160a01b0316826001600160a01b0316146108fd576108fd8282611dc2565b611b408383611e06565b611b4d6000848484611b69565b6108fd5760405162461bcd60e51b81526004016107c790612255565b60006001600160a01b0384163b15611c6b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bad903390899088908890600401612205565b602060405180830381600087803b158015611bc757600080fd5b505af1925050508015611bf7575060408051601f3d908101601f19168201909252611bf491810190612164565b60015b611c51573d808015611c25576040519150601f19603f3d011682016040523d82523d6000602084013e611c2a565b606091505b508051611c495760405162461bcd60e51b81526004016107c790612255565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170a565b506001949350505050565b60006001611c8384610b32565b611c8d919061237c565b600083815260076020526040902054909150808214611ce0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d259060019061237c565b60008381526009602052604081205460088054939450909284908110611d4d57611d4d61248d565b906000526020600020015490508060088381548110611d6e57611d6e61248d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611da657611da6612477565b6001900381819060005260206000200160009055905550505050565b6000611dcd83610b32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c7565b6000818152600260205260409020546001600160a01b031615611ec15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c7565b611ecd60008383611a7e565b6001600160a01b0382166000908152600360205260408120805460019290611ef690849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060208284031215611f6657600080fd5b81356111c4816124b9565b600060208284031215611f8357600080fd5b81516111c4816124b9565b60008060408385031215611fa157600080fd5b8235611fac816124b9565b91506020830135611fbc816124b9565b809150509250929050565b600080600060608486031215611fdc57600080fd5b8335611fe7816124b9565b92506020840135611ff7816124b9565b929592945050506040919091013590565b6000806000806080858703121561201e57600080fd5b8435612029816124b9565b93506020850135612039816124b9565b925060408501359150606085013567ffffffffffffffff8082111561205d57600080fd5b818701915087601f83011261207157600080fd5b813581811115612083576120836124a3565b604051601f8201601f19908116603f011681019083821181831017156120ab576120ab6124a3565b816040528281528a60208487010111156120c457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120fb57600080fd5b8235612106816124b9565b915060208301358015158114611fbc57600080fd5b6000806040838503121561212e57600080fd5b8235612139816124b9565b946020939093013593505050565b60006020828403121561215957600080fd5b81356111c4816124ce565b60006020828403121561217657600080fd5b81516111c4816124ce565b60006020828403121561219357600080fd5b5035919050565b600081518084526121b2816020860160208601612393565b601f01601f19169290920160200192915050565b600083516121d8818460208801612393565b8351908301906121ec818360208801612393565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122389083018461219a565b9695505050505050565b6020815260006111c4602083018461219a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123405761234061244b565b500190565b60008261235457612354612461565b500490565b600061ffff838116908316818110156123745761237461244b565b039392505050565b60008282101561238e5761238e61244b565b500390565b60005b838110156123ae578181015183820152602001612396565b838111156110ea5750506000910152565b600181811c908216806123d357607f821691505b602082108114156123f457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156124125761241261244b565b6001019392505050565b60006000198214156124305761243061244b565b5060010190565b60008261244657612446612461565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cde57600080fd5b6001600160e01b031981168114610cde57600080fdfe68747470733a2f2f697066732e696f2f697066732f516d575a5277344d35655466534e51374d65556e327264787472655a646a796b71636f51537742487065657566582fa26469706673582212202280188b98d7b4bf6ab9713275a94ecc496c7c83c8d7b169141dc6d4e812b43764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007537061747465720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075350415454455200000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063d41843c31161006f578063d41843c3146105b1578063e985e9c5146105c4578063f066ecee1461060d578063f2fde38b14610641578063f82cbbe81461066157600080fd5b8063a0712d681461053e578063a22cb46514610551578063b88d4fde14610571578063c87b56dd1461059157600080fd5b80638a89336d116100dc5780638a89336d146104c25780638da5cb5b146104f657806391ba317a1461051457806395d89b411461052957600080fd5b806370a0823114610463578063715018a6146104835780638416b69614610498578063853828b6146104ad57600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e146103e15780634c81433f146104015780634f6ccce7146104235780636352211e1461044357600080fd5b806323b872dd146103585780632ab4d052146103785780632ea08df6146103ac5780632f745c59146103c157600080fd5b80630de78428116101c15780630de78428146102a45780630fc2cebe146102d857806318160ddd146102fc57806320bc84ce1461031157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612147565b610695565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106c0565b60405161021f9190612242565b34801561025657600080fd5b5061026a610265366004612181565b610752565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d36600461211b565b6107ec565b005b3480156102b057600080fd5b5061026a7f00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f3781565b3480156102e457600080fd5b506102ee6103e881565b60405190815260200161021f565b34801561030857600080fd5b506008546102ee565b34801561031d57600080fd5b506103457f00000000000000000000000000000000000000000000000000000000000003e881565b60405161ffff909116815260200161021f565b34801561036457600080fd5b506102a2610373366004611fc7565b610902565b34801561038457600080fd5b506102ee7f00000000000000000000000000000000000000000000000000000000000003e881565b3480156103b857600080fd5b506102ee610933565b3480156103cd57600080fd5b506102ee6103dc36600461211b565b610977565b3480156103ed57600080fd5b506102a26103fc366004611fc7565b610a0d565b34801561040d57600080fd5b50600b5461034590600160a01b900461ffff1681565b34801561042f57600080fd5b506102ee61043e366004612181565b610a28565b34801561044f57600080fd5b5061026a61045e366004612181565b610abb565b34801561046f57600080fd5b506102ee61047e366004611f54565b610b32565b34801561048f57600080fd5b506102a2610bb9565b3480156104a457600080fd5b506102ee610bef565b3480156104b957600080fd5b506102a2610c7b565b3480156104ce57600080fd5b506102ee7f00000000000000000000000000000000000000000000000000b1a2bc2ec5000081565b34801561050257600080fd5b50600b546001600160a01b031661026a565b34801561052057600080fd5b506102ee610ce1565b34801561053557600080fd5b5061023d610d46565b6102a261054c366004612181565b610d55565b34801561055d57600080fd5b506102a261056c3660046120e8565b610ff3565b34801561057d57600080fd5b506102a261058c366004612008565b6110b8565b34801561059d57600080fd5b5061023d6105ac366004612181565b6110f0565b6102a26105bf366004612181565b6111cb565b3480156105d057600080fd5b506102136105df366004611f8e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061957600080fd5b506102137f000000000000000000000000000000000000000000000000000000000000000181565b34801561064d57600080fd5b506102a261065c366004611f54565b6114c5565b34801561066d57600080fd5b506102ee7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b0319821663780e9d6360e01b14806106ba57506106ba8261155d565b92915050565b6060600080546106cf906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb906123bf565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f782610abb565b9050806001600160a01b0316836001600160a01b031614156108655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c7565b336001600160a01b0382161480610881575061088181336105df565b6108f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c7565b6108fd83836115ad565b505050565b61090c338261161b565b6109285760405162461bcd60e51b81526004016107c7906122dc565b6108fd838383611712565b600b5460009061096e90600160a01b900461ffff167f00000000000000000000000000000000000000000000000000000000000003e8612359565b61ffff16905090565b600061098283610b32565b82106109e45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108fd838383604051806020016040528060008152506110b8565b6000610a3360085490565b8210610a965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c7565b60088281548110610aa957610aa961248d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c7565b60006001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c7565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610be35760405162461bcd60e51b81526004016107c7906122a7565b610bed60006118bd565b565b600080610c4061ffff7f00000000000000000000000000000000000000000000000000000000000003e8167f00000000000000000000000000000000000000000000000000000000000003e861237c565b600b5490915060009061ffff600160a01b90910416610c5e60085490565b610c68919061237c565b9050610c74818361237c565b9250505090565b600b546001600160a01b03163314610ca55760405162461bcd60e51b81526004016107c7906122a7565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cde573d6000803e3d6000fd5b50565b600080610d3261ffff7f00000000000000000000000000000000000000000000000000000000000003e8167f00000000000000000000000000000000000000000000000000000000000003e861237c565b9050610d40816103e861232d565b91505090565b6060600180546106cf906123bf565b6002600a541415610da85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600a557f000000000000000000000000000000000000000000000000000000000000000115610e1b5760405162461bcd60e51b815260206004820152601f60248201527f4b6f6e677a506173733a4f50454e5f4d494e54494e475f44495341424c45440060448201526064016107c7565b6000610e25610bef565b11610e725760405162461bcd60e51b815260206004820181905260248201527f4b6f6e677a506173733a4d41585f414c4c4f434154494f4e5f5245414348454460448201526064016107c7565b6103e881118015610e8a5750610e86610ce1565b8111155b80610f3557506040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f371690636352211e9060240160206040518083038186803b158015610ef257600080fd5b505afa158015610f06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2a9190611f71565b6001600160a01b0316145b610f785760405162461bcd60e51b815260206004820152601460248201527312dbdb99de94185cdcce9253959053125117d25160621b60448201526064016107c7565b7f00000000000000000000000000000000000000000000000000000000000000003414610fe15760405162461bcd60e51b81526020600482015260176024820152764b6f6e677a506173733a494e56414c49445f505249434560481b60448201526064016107c7565b610feb338261190f565b506001600a55565b6001600160a01b03821633141561104c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c2338361161b565b6110de5760405162461bcd60e51b81526004016107c7906122dc565b6110ea8484848461192d565b50505050565b6000818152600260205260409020546060906001600160a01b031661116f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c7565b6000611179611960565b9050600081511161119957604051806020016040528060008152506111c4565b806111a384611980565b6040516020016111b49291906121c6565b6040516020818303038152906040525b9392505050565b6002600a54141561121e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c7565b6002600a5561ffff7f00000000000000000000000000000000000000000000000000000000000003e81615801561127c57507f00000000000000000000000000000000000000000000000000000000000003e861127a60085490565b105b806112b65750600b5461ffff7f00000000000000000000000000000000000000000000000000000000000003e88116600160a01b90920416105b6113025760405162461bcd60e51b815260206004820181905260248201527f4b6f6e677a506173733a4d41585f414c4c4f434154494f4e5f5245414348454460448201526064016107c7565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f371690636352211e9060240160206040518083038186803b15801561136457600080fd5b505afa158015611378573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139c9190611f71565b6001600160a01b0316146113f25760405162461bcd60e51b815260206004820152601760248201527f4b6f6e677a506173733a494e56414c49445f4f574e455200000000000000000060448201526064016107c7565b7f00000000000000000000000000000000000000000000000000b1a2bc2ec50000341461145b5760405162461bcd60e51b81526020600482015260176024820152764b6f6e677a506173733a494e56414c49445f505249434560481b60448201526064016107c7565b61ffff7f00000000000000000000000000000000000000000000000000000000000003e81615610fe157600b8054600160a01b900461ffff169060146114a0836123fa565b91906101000a81548161ffff021916908361ffff16021790555050610feb338261190f565b600b546001600160a01b031633146114ef5760405162461bcd60e51b81526004016107c7906122a7565b6001600160a01b0381166115545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b610cde816118bd565b60006001600160e01b031982166380ac58cd60e01b148061158e57506001600160e01b03198216635b5e139f60e01b145b806106ba57506301ffc9a760e01b6001600160e01b03198316146106ba565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115e282610abb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c7565b600061169f83610abb565b9050806001600160a01b0316846001600160a01b031614806116da5750836001600160a01b03166116cf84610752565b6001600160a01b0316145b8061170a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172582610abb565b6001600160a01b03161461178d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c7565b6001600160a01b0382166117ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6117fa838383611a7e565b6118056000826115ad565b6001600160a01b038316600090815260036020526040812080546001929061182e90849061237c565b90915550506001600160a01b038216600090815260036020526040812080546001929061185c90849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611929828260405180602001604052806000815250611b36565b5050565b611938848484611712565b61194484848484611b69565b6110ea5760405162461bcd60e51b81526004016107c790612255565b60606040518060800160405280604481526020016124e560449139905090565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b88161241c565b91506119c79050600a83612345565b91506119a8565b60008167ffffffffffffffff8111156119e9576119e96124a3565b6040519080825280601f01601f191660200182016040528015611a13576020820181803683370190505b5090505b841561170a57611a2860018361237c565b9150611a35600a86612437565b611a4090603061232d565b60f81b818381518110611a5557611a5561248d565b60200101906001600160f81b031916908160001a905350611a77600a86612345565b9450611a17565b6001600160a01b038316611ad957611ad481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611afc565b816001600160a01b0316836001600160a01b031614611afc57611afc8382611c76565b6001600160a01b038216611b13576108fd81611d13565b826001600160a01b0316826001600160a01b0316146108fd576108fd8282611dc2565b611b408383611e06565b611b4d6000848484611b69565b6108fd5760405162461bcd60e51b81526004016107c790612255565b60006001600160a01b0384163b15611c6b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bad903390899088908890600401612205565b602060405180830381600087803b158015611bc757600080fd5b505af1925050508015611bf7575060408051601f3d908101601f19168201909252611bf491810190612164565b60015b611c51573d808015611c25576040519150601f19603f3d011682016040523d82523d6000602084013e611c2a565b606091505b508051611c495760405162461bcd60e51b81526004016107c790612255565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170a565b506001949350505050565b60006001611c8384610b32565b611c8d919061237c565b600083815260076020526040902054909150808214611ce0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d259060019061237c565b60008381526009602052604081205460088054939450909284908110611d4d57611d4d61248d565b906000526020600020015490508060088381548110611d6e57611d6e61248d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611da657611da6612477565b6001900381819060005260206000200160009055905550505050565b6000611dcd83610b32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c7565b6000818152600260205260409020546001600160a01b031615611ec15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c7565b611ecd60008383611a7e565b6001600160a01b0382166000908152600360205260408120805460019290611ef690849061232d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060208284031215611f6657600080fd5b81356111c4816124b9565b600060208284031215611f8357600080fd5b81516111c4816124b9565b60008060408385031215611fa157600080fd5b8235611fac816124b9565b91506020830135611fbc816124b9565b809150509250929050565b600080600060608486031215611fdc57600080fd5b8335611fe7816124b9565b92506020840135611ff7816124b9565b929592945050506040919091013590565b6000806000806080858703121561201e57600080fd5b8435612029816124b9565b93506020850135612039816124b9565b925060408501359150606085013567ffffffffffffffff8082111561205d57600080fd5b818701915087601f83011261207157600080fd5b813581811115612083576120836124a3565b604051601f8201601f19908116603f011681019083821181831017156120ab576120ab6124a3565b816040528281528a60208487010111156120c457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120fb57600080fd5b8235612106816124b9565b915060208301358015158114611fbc57600080fd5b6000806040838503121561212e57600080fd5b8235612139816124b9565b946020939093013593505050565b60006020828403121561215957600080fd5b81356111c4816124ce565b60006020828403121561217657600080fd5b81516111c4816124ce565b60006020828403121561219357600080fd5b5035919050565b600081518084526121b2816020860160208601612393565b601f01601f19169290920160200192915050565b600083516121d8818460208801612393565b8351908301906121ec818360208801612393565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122389083018461219a565b9695505050505050565b6020815260006111c4602083018461219a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123405761234061244b565b500190565b60008261235457612354612461565b500490565b600061ffff838116908316818110156123745761237461244b565b039392505050565b60008282101561238e5761238e61244b565b500390565b60005b838110156123ae578181015183820152602001612396565b838111156110ea5750506000910152565b600181811c908216806123d357607f821691505b602082108114156123f457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156124125761241261244b565b6001019392505050565b60006000198214156124305761243061244b565b5060010190565b60008261244657612446612461565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cde57600080fd5b6001600160e01b031981168114610cde57600080fdfe68747470733a2f2f697066732e696f2f697066732f516d575a5277344d35655466534e51374d65556e327264787472655a646a796b71636f51537742487065657566582fa26469706673582212202280188b98d7b4bf6ab9713275a94ecc496c7c83c8d7b169141dc6d4e812b43764736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007537061747465720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075350415454455200000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Spatter
Arg [1] : symbol (string): SPATTER
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 5370617474657200000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 5350415454455200000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
52217:824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34469:224;;;;;;;;;;-1:-1:-1;34469:224:0;;;;;:::i;:::-;;:::i;:::-;;;5847:14:1;;5840:22;5822:41;;5810:2;5795:18;34469:224:0;;;;;;;;21422:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22981:221::-;;;;;;;;;;-1:-1:-1;22981:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5145:32:1;;;5127:51;;5115:2;5100:18;22981:221:0;5082:102:1;22504:411:0;;;;;;;;;;-1:-1:-1;22504:411:0;;;;;:::i;:::-;;:::i;:::-;;45887:25;;;;;;;;;;;;;;;45829:49;;;;;;;;;;;;45874:4;45829:49;;;;;15997:25:1;;;15985:2;15970:18;45829:49:0;15952:76:1;35109:113:0;;;;;;;;;;-1:-1:-1;35197:10:0;:17;35109:113;;45964:41;;;;;;;;;;;;;;;;;;15832:6:1;15820:19;;;15802:38;;15790:2;15775:18;45964:41:0;15757:89:1;23871:339:0;;;;;;;;;;-1:-1:-1;23871:339:0;;;;;:::i;:::-;;:::i;46046:39::-;;;;;;;;;;;;;;;50081:128;;;;;;;;;;;;;:::i;34777:256::-;;;;;;;;;;-1:-1:-1;34777:256:0;;;;;:::i;:::-;;:::i;24281:185::-;;;;;;;;;;-1:-1:-1;24281:185:0;;;;;:::i;:::-;;:::i;46012:27::-;;;;;;;;;;-1:-1:-1;46012:27:0;;;;-1:-1:-1;;;46012:27:0;;;;;;35299:233;;;;;;;;;;-1:-1:-1;35299:233:0;;;;;:::i;:::-;;:::i;21116:239::-;;;;;;;;;;-1:-1:-1;21116:239:0;;;;;:::i;:::-;;:::i;20846:208::-;;;;;;;;;;-1:-1:-1;20846:208:0;;;;;:::i;:::-;;:::i;44910:94::-;;;;;;;;;;;;;:::i;50342:252::-;;;;;;;;;;;;;:::i;50668:109::-;;;;;;;;;;;;;:::i;46092:50::-;;;;;;;;;;;;;;;44259:87;;;;;;;;;;-1:-1:-1;44332:6:0;;-1:-1:-1;;;;;44332:6:0;44259:87;;49723:179;;;;;;;;;;;;;:::i;21591:104::-;;;;;;;;;;;;;:::i;49064:529::-;;;;;;:::i;:::-;;:::i;23274:295::-;;;;;;;;;;-1:-1:-1;23274:295:0;;;;;:::i;:::-;;:::i;24537:328::-;;;;;;;;;;-1:-1:-1;24537:328:0;;;;;:::i;:::-;;:::i;52519:342::-;;;;;;;;;;-1:-1:-1;52519:342:0;;;;;:::i;:::-;;:::i;48002:701::-;;;;;;:::i;:::-;;:::i;23640:164::-;;;;;;;;;;-1:-1:-1;23640:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23640:164;45919:38;;;;;;;;;;;;;;;45159:192;;;;;;;;;;-1:-1:-1;45159:192:0;;;;;:::i;:::-;;:::i;46149:46::-;;;;;;;;;;;;;;;34469:224;34571:4;-1:-1:-1;;;;;;34595:50:0;;-1:-1:-1;;;34595:50:0;;:90;;;34649:36;34673:11;34649:23;:36::i;:::-;34588:97;34469:224;-1:-1:-1;;34469:224:0:o;21422:100::-;21476:13;21509:5;21502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21422:100;:::o;22981:221::-;23057:7;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;23077:73;;;;-1:-1:-1;;;23077:73:0;;12667:2:1;23077:73:0;;;12649:21:1;12706:2;12686:18;;;12679:30;12745:34;12725:18;;;12718:62;-1:-1:-1;;;12796:18:1;;;12789:42;12848:19;;23077:73:0;;;;;;;;;-1:-1:-1;23170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23170:24:0;;22981:221::o;22504:411::-;22585:13;22601:23;22616:7;22601:14;:23::i;:::-;22585:39;;22649:5;-1:-1:-1;;;;;22643:11:0;:2;-1:-1:-1;;;;;22643:11:0;;;22635:57;;;;-1:-1:-1;;;22635:57:0;;14267:2:1;22635:57:0;;;14249:21:1;14306:2;14286:18;;;14279:30;14345:34;14325:18;;;14318:62;-1:-1:-1;;;14396:18:1;;;14389:31;14437:19;;22635:57:0;14239:223:1;22635:57:0;16064:10;-1:-1:-1;;;;;22727:21:0;;;;:62;;-1:-1:-1;22752:37:0;22769:5;16064:10;23640:164;:::i;22752:37::-;22705:168;;;;-1:-1:-1;;;22705:168:0;;10350:2:1;22705:168:0;;;10332:21:1;10389:2;10369:18;;;10362:30;10428:34;10408:18;;;10401:62;10499:26;10479:18;;;10472:54;10543:19;;22705:168:0;10322:246:1;22705:168:0;22886:21;22895:2;22899:7;22886:8;:21::i;:::-;22574:341;22504:411;;:::o;23871:339::-;24066:41;16064:10;24099:7;24066:18;:41::i;:::-;24058:103;;;;-1:-1:-1;;;24058:103:0;;;;;;;:::i;:::-;24174:28;24184:4;24190:2;24194:7;24174:9;:28::i;50081:128::-;50188:13;;50141:7;;50168:33;;-1:-1:-1;;;50188:13:0;;;;50168:17;:33;:::i;:::-;50161:40;;;;50081:128;:::o;34777:256::-;34874:7;34910:23;34927:5;34910:16;:23::i;:::-;34902:5;:31;34894:87;;;;-1:-1:-1;;;34894:87:0;;6519:2:1;34894:87:0;;;6501:21:1;6558:2;6538:18;;;6531:30;6597:34;6577:18;;;6570:62;-1:-1:-1;;;6648:18:1;;;6641:41;6699:19;;34894:87:0;6491:233:1;34894:87:0;-1:-1:-1;;;;;;34999:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34777:256::o;24281:185::-;24419:39;24436:4;24442:2;24446:7;24419:39;;;;;;;;;;;;:16;:39::i;35299:233::-;35374:7;35410:30;35197:10;:17;;35109:113;35410:30;35402:5;:38;35394:95;;;;-1:-1:-1;;;35394:95:0;;15087:2:1;35394:95:0;;;15069:21:1;15126:2;15106:18;;;15099:30;15165:34;15145:18;;;15138:62;-1:-1:-1;;;15216:18:1;;;15209:42;15268:19;;35394:95:0;15059:234:1;35394:95:0;35507:10;35518:5;35507:17;;;;;;;;:::i;:::-;;;;;;;;;35500:24;;35299:233;;;:::o;21116:239::-;21188:7;21224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21224:16:0;21259:19;21251:73;;;;-1:-1:-1;;;21251:73:0;;11535:2:1;21251:73:0;;;11517:21:1;11574:2;11554:18;;;11547:30;11613:34;11593:18;;;11586:62;-1:-1:-1;;;11664:18:1;;;11657:39;11713:19;;21251:73:0;11507:231:1;20846:208:0;20918:7;-1:-1:-1;;;;;20946:19:0;;20938:74;;;;-1:-1:-1;;;20938:74:0;;11124:2:1;20938:74:0;;;11106:21:1;11163:2;11143:18;;;11136:30;11202:34;11182:18;;;11175:62;-1:-1:-1;;;11253:18:1;;;11246:40;11303:19;;20938:74:0;11096:232:1;20938:74:0;-1:-1:-1;;;;;;21030:16:0;;;;;:9;:16;;;;;;;20846:208::o;44910:94::-;44332:6;;-1:-1:-1;;;;;44332:6:0;16064:10;44479:23;44471:68;;;;-1:-1:-1;;;44471:68:0;;;;;;;:::i;:::-;44975:21:::1;44993:1;44975:9;:21::i;:::-;44910:94::o:0;50342:252::-;50393:7;;50436:34;;50453:17;50436:34;:14;:34;:::i;:::-;50524:13;;50413:57;;-1:-1:-1;50481:24:0;;50524:13;-1:-1:-1;;;50524:13:0;;;;50508;35197:10;:17;;35109:113;50508:13;:29;;;;:::i;:::-;50481:56;-1:-1:-1;50555:31:0;50481:56;50555:12;:31;:::i;:::-;50548:38;;;;50342:252;:::o;50668:109::-;44332:6;;-1:-1:-1;;;;;44332:6:0;16064:10;44479:23;44471:68;;;;-1:-1:-1;;;44471:68:0;;;;;;;:::i;:::-;44332:6;;50721:48:::1;::::0;-1:-1:-1;;;;;44332:6:0;;;;50747:21:::1;50721:48:::0;::::1;;;::::0;::::1;::::0;;;50747:21;44332:6;50721:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50668:109::o:0;49723:179::-;49766:7;;49809:34;;49826:17;49809:34;:14;:34;:::i;:::-;49786:57;-1:-1:-1;49861:33:0;49786:57;45874:4;49861:33;:::i;:::-;49854:40;;;49723:179;:::o;21591:104::-;21647:13;21680:7;21673:14;;;;;:::i;49064:529::-;42341:1;42937:7;;:19;;42929:63;;;;-1:-1:-1;;;42929:63:0;;15500:2:1;42929:63:0;;;15482:21:1;15539:2;15519:18;;;15512:30;15578:33;15558:18;;;15551:61;15629:18;;42929:63:0;15472:181:1;42929:63:0;42341:1;43070:7;:18;49151:16:::1;49150:17;49142:61;;;::::0;-1:-1:-1;;;49142:61:0;;8818:2:1;49142:61:0::1;::::0;::::1;8800:21:1::0;8857:2;8837:18;;;8830:30;8896:33;8876:18;;;8869:61;8947:18;;49142:61:0::1;8790:181:1::0;49142:61:0::1;49245:1;49222:20;:18;:20::i;:::-;:24;49214:69;;;::::0;-1:-1:-1;;;49214:69:0;;12306:2:1;49214:69:0::1;::::0;::::1;12288:21:1::0;;;12325:18;;;12318:30;12384:34;12364:18;;;12357:62;12436:18;;49214:69:0::1;12278:182:1::0;49214:69:0::1;45874:4;49317:7;:28;:55;;;;;49360:12;:10;:12::i;:::-;49349:7;:23;;49317:55;49316:97;;;-1:-1:-1::0;49377:22:0::1;::::0;-1:-1:-1;;;49377:22:0;;::::1;::::0;::::1;15997:25:1::0;;;49403:10:0::1;::::0;-1:-1:-1;;;;;49377:5:0::1;:13;::::0;::::1;::::0;15970:18:1;;49377:22:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49377:36:0::1;;49316:97;49294:167;;;::::0;-1:-1:-1;;;49294:167:0;;10775:2:1;49294:167:0::1;::::0;::::1;10757:21:1::0;10814:2;10794:18;;;10787:30;-1:-1:-1;;;10833:18:1;;;10826:50;10893:18;;49294:167:0::1;10747:170:1::0;49294:167:0::1;49493:21;49480:9;:34;49472:70;;;::::0;-1:-1:-1;;;49472:70:0;;8114:2:1;49472:70:0::1;::::0;::::1;8096:21:1::0;8153:2;8133:18;;;8126:30;-1:-1:-1;;;8172:18:1;;;8165:53;8235:18;;49472:70:0::1;8086:173:1::0;49472:70:0::1;49555:30;49565:10;49577:7;49555:9;:30::i;:::-;-1:-1:-1::0;42297:1:0;43249:7;:22;49064:529::o;23274:295::-;-1:-1:-1;;;;;23377:24:0;;16064:10;23377:24;;23369:62;;;;-1:-1:-1;;;23369:62:0;;9583:2:1;23369:62:0;;;9565:21:1;9622:2;9602:18;;;9595:30;9661:27;9641:18;;;9634:55;9706:18;;23369:62:0;9555:175:1;23369:62:0;16064:10;23444:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23444:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23444:53:0;;;;;;;;;;23513:48;;5822:41:1;;;23444:42:0;;16064:10;23513:48;;5795:18:1;23513:48:0;;;;;;;23274:295;;:::o;24537:328::-;24712:41;16064:10;24745:7;24712:18;:41::i;:::-;24704:103;;;;-1:-1:-1;;;24704:103:0;;;;;;;:::i;:::-;24818:39;24832:4;24838:2;24842:7;24851:5;24818:13;:39::i;:::-;24537:328;;;;:::o;52519:342::-;26440:4;26464:16;;;:7;:16;;;;;;52592:13;;-1:-1:-1;;;;;26464:16:0;52618:76;;;;-1:-1:-1;;;52618:76:0;;13851:2:1;52618:76:0;;;13833:21:1;13890:2;13870:18;;;13863:30;13929:34;13909:18;;;13902:62;-1:-1:-1;;;13980:18:1;;;13973:45;14035:19;;52618:76:0;13823:237:1;52618:76:0;52707:21;52731:10;:8;:10::i;:::-;52707:34;;52783:1;52765:7;52759:21;:25;:94;;;;;;;;;;;;;;;;;52811:7;52820:18;:7;:16;:18::i;:::-;52794:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52759:94;52752:101;52519:342;-1:-1:-1;;;52519:342:0:o;48002:701::-;42341:1;42937:7;;:19;;42929:63;;;;-1:-1:-1;;;42929:63:0;;15500:2:1;42929:63:0;;;15482:21:1;15539:2;15519:18;;;15512:30;15578:33;15558:18;;;15551:61;15629:18;;42929:63:0;15472:181:1;42929:63:0;42341:1;43070:7;:18;48186:22:::1;:17;:22;::::0;:56;::::1;;;;48228:14;48212:13;35197:10:::0;:17;;35109:113;48212:13:::1;:30;48186:56;48185:95;;;-1:-1:-1::0;48247:13:0::1;::::0;:33:::1;48263:17;48247:33:::0;::::1;-1:-1:-1::0;;;48247:13:0;;::::1;;:33;48185:95;48088:252;;;::::0;-1:-1:-1;;;48088:252:0;;12306:2:1;48088:252:0::1;::::0;::::1;12288:21:1::0;;;12325:18;;;12318:30;12384:34;12364:18;;;12357:62;12436:18;;48088:252:0::1;12278:182:1::0;48088:252:0::1;48359:22;::::0;-1:-1:-1;;;48359:22:0;;::::1;::::0;::::1;15997:25:1::0;;;48385:10:0::1;::::0;-1:-1:-1;;;;;48359:5:0::1;:13;::::0;::::1;::::0;15970:18:1;;48359:22:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48359:36:0::1;;48351:72;;;::::0;-1:-1:-1;;;48351:72:0;;8466:2:1;48351:72:0::1;::::0;::::1;8448:21:1::0;8505:2;8485:18;;;8478:30;8544:25;8524:18;;;8517:53;8587:18;;48351:72:0::1;8438:173:1::0;48351:72:0::1;48455:25;48442:9;:38;48434:74;;;::::0;-1:-1:-1;;;48434:74:0;;8114:2:1;48434:74:0::1;::::0;::::1;8096:21:1::0;8153:2;8133:18;;;8126:30;-1:-1:-1;;;8172:18:1;;;8165:53;8235:18;;48434:74:0::1;8086:173:1::0;48434:74:0::1;48590:21;:17;:21;::::0;48586:69:::1;;48628:13;:15:::0;;-1:-1:-1;;;48628:15:0;::::1;;;::::0;:13:::1;:15;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;48665:30;48675:10;48687:7;48665:9;:30::i;45159:192::-:0;44332:6;;-1:-1:-1;;;;;44332:6:0;16064:10;44479:23;44471:68;;;;-1:-1:-1;;;44471:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45248:22:0;::::1;45240:73;;;::::0;-1:-1:-1;;;45240:73:0;;7350:2:1;45240:73:0::1;::::0;::::1;7332:21:1::0;7389:2;7369:18;;;7362:30;7428:34;7408:18;;;7401:62;-1:-1:-1;;;7479:18:1;;;7472:36;7525:19;;45240:73:0::1;7322:228:1::0;45240:73:0::1;45324:19;45334:8;45324:9;:19::i;20477:305::-:0;20579:4;-1:-1:-1;;;;;;20616:40:0;;-1:-1:-1;;;20616:40:0;;:105;;-1:-1:-1;;;;;;;20673:48:0;;-1:-1:-1;;;20673:48:0;20616:105;:158;;;-1:-1:-1;;;;;;;;;;19127:40:0;;;20738:36;19018:157;30357:174;30432:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30432:29:0;-1:-1:-1;;;;;30432:29:0;;;;;;;;:24;;30486:23;30432:24;30486:14;:23::i;:::-;-1:-1:-1;;;;;30477:46:0;;;;;;;;;;;30357:174;;:::o;26669:348::-;26762:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;26779:73;;;;-1:-1:-1;;;26779:73:0;;9937:2:1;26779:73:0;;;9919:21:1;9976:2;9956:18;;;9949:30;10015:34;9995:18;;;9988:62;-1:-1:-1;;;10066:18:1;;;10059:42;10118:19;;26779:73:0;9909:234:1;26779:73:0;26863:13;26879:23;26894:7;26879:14;:23::i;:::-;26863:39;;26932:5;-1:-1:-1;;;;;26921:16:0;:7;-1:-1:-1;;;;;26921:16:0;;:51;;;;26965:7;-1:-1:-1;;;;;26941:31:0;:20;26953:7;26941:11;:20::i;:::-;-1:-1:-1;;;;;26941:31:0;;26921:51;:87;;;-1:-1:-1;;;;;;23761:25:0;;;23737:4;23761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26976:32;26913:96;26669:348;-1:-1:-1;;;;26669:348:0:o;29661:578::-;29820:4;-1:-1:-1;;;;;29793:31:0;:23;29808:7;29793:14;:23::i;:::-;-1:-1:-1;;;;;29793:31:0;;29785:85;;;;-1:-1:-1;;;29785:85:0;;13441:2:1;29785:85:0;;;13423:21:1;13480:2;13460:18;;;13453:30;13519:34;13499:18;;;13492:62;-1:-1:-1;;;13570:18:1;;;13563:39;13619:19;;29785:85:0;13413:231:1;29785:85:0;-1:-1:-1;;;;;29889:16:0;;29881:65;;;;-1:-1:-1;;;29881:65:0;;9178:2:1;29881:65:0;;;9160:21:1;9217:2;9197:18;;;9190:30;9256:34;9236:18;;;9229:62;-1:-1:-1;;;9307:18:1;;;9300:34;9351:19;;29881:65:0;9150:226:1;29881:65:0;29959:39;29980:4;29986:2;29990:7;29959:20;:39::i;:::-;30063:29;30080:1;30084:7;30063:8;:29::i;:::-;-1:-1:-1;;;;;30105:15:0;;;;;;:9;:15;;;;;:20;;30124:1;;30105:15;:20;;30124:1;;30105:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30136:13:0;;;;;;:9;:13;;;;;:18;;30153:1;;30136:13;:18;;30153:1;;30136:18;:::i;:::-;;;;-1:-1:-1;;30165:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30165:21:0;-1:-1:-1;;;;;30165:21:0;;;;;;;;;30204:27;;30165:16;;30204:27;;;;;;;29661:578;;;:::o;45359:173::-;45434:6;;;-1:-1:-1;;;;;45451:17:0;;;-1:-1:-1;;;;;;45451:17:0;;;;;;;45484:40;;45434:6;;;45451:17;45434:6;;45484:40;;45415:16;;45484:40;45404:128;45359:173;:::o;27359:110::-;27435:26;27445:2;27449:7;27435:26;;;;;;;;;;;;:9;:26::i;:::-;27359:110;;:::o;25747:315::-;25904:28;25914:4;25920:2;25924:7;25904:9;:28::i;:::-;25951:48;25974:4;25980:2;25984:7;25993:5;25951:22;:48::i;:::-;25943:111;;;;-1:-1:-1;;;25943:111:0;;;;;;;:::i;52867:171::-;52927:13;52953:77;;;;;;;;;;;;;;;;;;;52867:171;:::o;16486:723::-;16542:13;16763:10;16759:53;;-1:-1:-1;;16790:10:0;;;;;;;;;;;;-1:-1:-1;;;16790:10:0;;;;;16486:723::o;16759:53::-;16837:5;16822:12;16878:78;16885:9;;16878:78;;16911:8;;;;:::i;:::-;;-1:-1:-1;16934:10:0;;-1:-1:-1;16942:2:0;16934:10;;:::i;:::-;;;16878:78;;;16966:19;16998:6;16988:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16988:17:0;;16966:39;;17016:154;17023:10;;17016:154;;17050:11;17060:1;17050:11;;:::i;:::-;;-1:-1:-1;17119:10:0;17127:2;17119:5;:10;:::i;:::-;17106:24;;:2;:24;:::i;:::-;17093:39;;17076:6;17083;17076:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17076:56:0;;;;;;;;-1:-1:-1;17147:11:0;17156:2;17147:11;;:::i;:::-;;;17016:154;;36145:589;-1:-1:-1;;;;;36351:18:0;;36347:187;;36386:40;36418:7;37561:10;:17;;37534:24;;;;:15;:24;;;;;:44;;;37589:24;;;;;;;;;;;;37457:164;36386:40;36347:187;;;36456:2;-1:-1:-1;;;;;36448:10:0;:4;-1:-1:-1;;;;;36448:10:0;;36444:90;;36475:47;36508:4;36514:7;36475:32;:47::i;:::-;-1:-1:-1;;;;;36548:16:0;;36544:183;;36581:45;36618:7;36581:36;:45::i;36544:183::-;36654:4;-1:-1:-1;;;;;36648:10:0;:2;-1:-1:-1;;;;;36648:10:0;;36644:83;;36675:40;36703:2;36707:7;36675:27;:40::i;27696:321::-;27826:18;27832:2;27836:7;27826:5;:18::i;:::-;27877:54;27908:1;27912:2;27916:7;27925:5;27877:22;:54::i;:::-;27855:154;;;;-1:-1:-1;;;27855:154:0;;;;;;;:::i;31096:799::-;31251:4;-1:-1:-1;;;;;31272:13:0;;8374:20;8422:8;31268:620;;31308:72;;-1:-1:-1;;;31308:72:0;;-1:-1:-1;;;;;31308:36:0;;;;;:72;;16064:10;;31359:4;;31365:7;;31374:5;;31308:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31308:72:0;;;;;;;;-1:-1:-1;;31308:72:0;;;;;;;;;;;;:::i;:::-;;;31304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31550:13:0;;31546:272;;31593:60;;-1:-1:-1;;;31593:60:0;;;;;;;:::i;31546:272::-;31768:6;31762:13;31753:6;31749:2;31745:15;31738:38;31304:529;-1:-1:-1;;;;;;31431:51:0;-1:-1:-1;;;31431:51:0;;-1:-1:-1;31424:58:0;;31268:620;-1:-1:-1;31872:4:0;31096:799;;;;;;:::o;38248:988::-;38514:22;38564:1;38539:22;38556:4;38539:16;:22::i;:::-;:26;;;;:::i;:::-;38576:18;38597:26;;;:17;:26;;;;;;38514:51;;-1:-1:-1;38730:28:0;;;38726:328;;-1:-1:-1;;;;;38797:18:0;;38775:19;38797:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38848:30;;;;;;:44;;;38965:30;;:17;:30;;;;;:43;;;38726:328;-1:-1:-1;39150:26:0;;;;:17;:26;;;;;;;;39143:33;;;-1:-1:-1;;;;;39194:18:0;;;;;:12;:18;;;;;:34;;;;;;;39187:41;38248:988::o;39531:1079::-;39809:10;:17;39784:22;;39809:21;;39829:1;;39809:21;:::i;:::-;39841:18;39862:24;;;:15;:24;;;;;;40235:10;:26;;39784:46;;-1:-1:-1;39862:24:0;;39784:46;;40235:26;;;;;;:::i;:::-;;;;;;;;;40213:48;;40299:11;40274:10;40285;40274:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40379:28;;;:15;:28;;;;;;;:41;;;40551:24;;;;;40544:31;40586:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39602:1008;;;39531:1079;:::o;37035:221::-;37120:14;37137:20;37154:2;37137:16;:20::i;:::-;-1:-1:-1;;;;;37168:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37213:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37035:221:0:o;28353:382::-;-1:-1:-1;;;;;28433:16:0;;28425:61;;;;-1:-1:-1;;;28425:61:0;;11945:2:1;28425:61:0;;;11927:21:1;;;11964:18;;;11957:30;12023:34;12003:18;;;11996:62;12075:18;;28425:61:0;11917:182:1;28425:61:0;26440:4;26464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26464:16:0;:30;28497:58;;;;-1:-1:-1;;;28497:58:0;;7757:2:1;28497:58:0;;;7739:21:1;7796:2;7776:18;;;7769:30;7835;7815:18;;;7808:58;7883:18;;28497:58:0;7729:178:1;28497:58:0;28568:45;28597:1;28601:2;28605:7;28568:20;:45::i;:::-;-1:-1:-1;;;;;28626:13:0;;;;;;:9;:13;;;;;:18;;28643:1;;28626:13;:18;;28643:1;;28626:18;:::i;:::-;;;;-1:-1:-1;;28655:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28655:21:0;-1:-1:-1;;;;;28655:21:0;;;;;;;;28694:33;;28655:16;;;28694:33;;28655:16;;28694:33;28353:382;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:2;;;667:1;664;657:12;619:2;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;609:301;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:2;;;1077:1;1074;1067:12;1029:2;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;1019:352;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;1019:352::o;1376:1266::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:2;;;1565:1;1562;1555:12;1516:2;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1743:33;1702:32;1743:33;:::i;:::-;1795:7;-1:-1:-1;1849:2:1;1834:18;;1821:32;;-1:-1:-1;1904:2:1;1889:18;;1876:32;1927:18;1957:14;;;1954:2;;;1984:1;1981;1974:12;1954:2;2022:6;2011:9;2007:22;1997:32;;2067:7;2060:4;2056:2;2052:13;2048:27;2038:2;;2089:1;2086;2079:12;2038:2;2125;2112:16;2147:2;2143;2140:10;2137:2;;;2153:18;;:::i;:::-;2228:2;2222:9;2196:2;2282:13;;-1:-1:-1;;2278:22:1;;;2302:2;2274:31;2270:40;2258:53;;;2326:18;;;2346:22;;;2323:46;2320:2;;;2372:18;;:::i;:::-;2412:10;2408:2;2401:22;2447:2;2439:6;2432:18;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:2;;;2508:1;2505;2498:12;2459:2;2564;2559;2555;2551:11;2546:2;2538:6;2534:15;2521:46;2609:1;2604:2;2599;2591:6;2587:15;2583:24;2576:35;2630:6;2620:16;;;;;;;1506:1136;;;;;;;:::o;2647:416::-;2712:6;2720;2773:2;2761:9;2752:7;2748:23;2744:32;2741:2;;;2789:1;2786;2779:12;2741:2;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;:::-;2897:5;-1:-1:-1;2954:2:1;2939:18;;2926:32;2996:15;;2989:23;2977:36;;2967:2;;3027:1;3024;3017:12;3068:315;3136:6;3144;3197:2;3185:9;3176:7;3172:23;3168:32;3165:2;;;3213:1;3210;3203:12;3165:2;3252:9;3239:23;3271:31;3296:5;3271:31;:::i;:::-;3321:5;3373:2;3358:18;;;;3345:32;;-1:-1:-1;;;3155:228:1:o;3388:245::-;3446:6;3499:2;3487:9;3478:7;3474:23;3470:32;3467:2;;;3515:1;3512;3505:12;3467:2;3554:9;3541:23;3573:30;3597:5;3573:30;:::i;3638:249::-;3707:6;3760:2;3748:9;3739:7;3735:23;3731:32;3728:2;;;3776:1;3773;3766:12;3728:2;3808:9;3802:16;3827:30;3851:5;3827:30;:::i;3892:180::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:2;;;4020:1;4017;4010:12;3972:2;-1:-1:-1;4043:23:1;;3962:110;-1:-1:-1;3962:110:1:o;4077:257::-;4118:3;4156:5;4150:12;4183:6;4178:3;4171:19;4199:63;4255:6;4248:4;4243:3;4239:14;4232:4;4225:5;4221:16;4199:63;:::i;:::-;4316:2;4295:15;-1:-1:-1;;4291:29:1;4282:39;;;;4323:4;4278:50;;4126:208;-1:-1:-1;;4126:208:1:o;4339:637::-;4619:3;4657:6;4651:13;4673:53;4719:6;4714:3;4707:4;4699:6;4695:17;4673:53;:::i;:::-;4789:13;;4748:16;;;;4811:57;4789:13;4748:16;4845:4;4833:17;;4811:57;:::i;:::-;-1:-1:-1;;;4890:20:1;;4919:22;;;4968:1;4957:13;;4627:349;-1:-1:-1;;;;4627:349:1:o;5189:488::-;-1:-1:-1;;;;;5458:15:1;;;5440:34;;5510:15;;5505:2;5490:18;;5483:43;5557:2;5542:18;;5535:34;;;5605:3;5600:2;5585:18;;5578:31;;;5383:4;;5626:45;;5651:19;;5643:6;5626:45;:::i;:::-;5618:53;5392:285;-1:-1:-1;;;;;;5392:285:1:o;6093:219::-;6242:2;6231:9;6224:21;6205:4;6262:44;6302:2;6291:9;6287:18;6279:6;6262:44;:::i;6729:414::-;6931:2;6913:21;;;6970:2;6950:18;;;6943:30;7009:34;7004:2;6989:18;;6982:62;-1:-1:-1;;;7075:2:1;7060:18;;7053:48;7133:3;7118:19;;6903:240::o;12878:356::-;13080:2;13062:21;;;13099:18;;;13092:30;13158:34;13153:2;13138:18;;13131:62;13225:2;13210:18;;13052:182::o;14467:413::-;14669:2;14651:21;;;14708:2;14688:18;;;14681:30;14747:34;14742:2;14727:18;;14720:62;-1:-1:-1;;;14813:2:1;14798:18;;14791:47;14870:3;14855:19;;14641:239::o;16033:128::-;16073:3;16104:1;16100:6;16097:1;16094:13;16091:2;;;16110:18;;:::i;:::-;-1:-1:-1;16146:9:1;;16081:80::o;16166:120::-;16206:1;16232;16222:2;;16237:18;;:::i;:::-;-1:-1:-1;16271:9:1;;16212:74::o;16291:217::-;16330:4;16359:6;16415:10;;;;16385;;16437:12;;;16434:2;;;16452:18;;:::i;:::-;16489:13;;16339:169;-1:-1:-1;;;16339:169:1:o;16513:125::-;16553:4;16581:1;16578;16575:8;16572:2;;;16586:18;;:::i;:::-;-1:-1:-1;16623:9:1;;16562:76::o;16643:258::-;16715:1;16725:113;16739:6;16736:1;16733:13;16725:113;;;16815:11;;;16809:18;16796:11;;;16789:39;16761:2;16754:10;16725:113;;;16856:6;16853:1;16850:13;16847:2;;;-1:-1:-1;;16891:1:1;16873:16;;16866:27;16696:205::o;16906:380::-;16985:1;16981:12;;;;17028;;;17049:2;;17103:4;17095:6;17091:17;17081:27;;17049:2;17156;17148:6;17145:14;17125:18;17122:38;17119:2;;;17202:10;17197:3;17193:20;17190:1;17183:31;17237:4;17234:1;17227:15;17265:4;17262:1;17255:15;17119:2;;16961:325;;;:::o;17291:197::-;17329:3;17357:6;17398:2;17391:5;17387:14;17425:2;17416:7;17413:15;17410:2;;;17431:18;;:::i;:::-;17480:1;17467:15;;17337:151;-1:-1:-1;;;17337:151:1:o;17493:135::-;17532:3;-1:-1:-1;;17553:17:1;;17550:2;;;17573:18;;:::i;:::-;-1:-1:-1;17620:1:1;17609:13;;17540:88::o;17633:112::-;17665:1;17691;17681:2;;17696:18;;:::i;:::-;-1:-1:-1;17730:9:1;;17671:74::o;17750:127::-;17811:10;17806:3;17802:20;17799:1;17792:31;17842:4;17839:1;17832:15;17866:4;17863:1;17856:15;17882:127;17943:10;17938:3;17934:20;17931:1;17924:31;17974:4;17971:1;17964:15;17998:4;17995:1;17988:15;18014:127;18075:10;18070:3;18066:20;18063:1;18056:31;18106:4;18103:1;18096:15;18130:4;18127:1;18120:15;18146:127;18207:10;18202:3;18198:20;18195:1;18188:31;18238:4;18235:1;18228:15;18262:4;18259:1;18252:15;18278:127;18339:10;18334:3;18330:20;18327:1;18320:31;18370:4;18367:1;18360:15;18394:4;18391:1;18384:15;18410:131;-1:-1:-1;;;;;18485:31:1;;18475:42;;18465:2;;18531:1;18528;18521:12;18546:131;-1:-1:-1;;;;;;18620:32:1;;18610:43;;18600:2;;18667:1;18664;18657:12
Swarm Source
ipfs://2280188b98d7b4bf6ab9713275a94ecc496c7c83c8d7b169141dc6d4e812b437
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,168.45 | 0.05 | $108.42 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.