ETH Price: $3,066.06 (+0.94%)
Gas: 4 Gwei

Token

cleangoblins (CLEANGOBLINS)
 

Overview

Max Total Supply

962 CLEANGOBLINS

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CLEANGOBLINS
0x0Dc2BCc2c85Ae106215f11Ac4F70105D040C1F51
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
cleangoblins

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-18
*/

/**
  Submitted for verification at Etherscan.io on 2022-06-12

   .,-:::::  :::    .,::::::   :::.   :::.    :::.      .,-:::::/      ...     :::::::.   :::     ::::::.    :::. .::::::. 
 ,;;;'````'  ;;;    ;;;;''''   ;;`;;  `;;;;,  `;;;    ,;;-'````'    .;;;;;;;.   ;;;'';;'  ;;;     ;;;`;;;;,  `;;;;;;`    ` 
 [[[         [[[     [[cccc   ,[[ '[[,  [[[[[. '[[    [[[   [[[[[[/,[[     \[[, [[[__[[\. [[[     [[[  [[[[[. '[['[==/[[[[,
 $$$         $$'     $$""""  c$$$cc$$$c $$$ "Y$c$$    "$$c.    "$$ $$$,     $$$ $$""""Y$$ $$'     $$$  $$$ "Y$c$$  '''    $
 `88bo,__,o,o88oo,.__888oo,__ 888   888,888    Y88     `Y8bo,,,o88o"888,_ _,88P_88o,,od8Po88oo,.__888  888    Y88 88b    dP
   "YUMMMMMP""""YUMMM""""YUMMMYMM   ""` MMM     YM       `'YMUP"YMM  "YMMMMMP" ""YUMMMP" """"YUMMMMMM  MMM     YM  "YMmMY" 
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

/**
 * @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);
    }
}

/**
 * @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;
    }
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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;
    }
}

/**
 * @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;
}

/**
 * @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);
}

/**
 * @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);
}

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

/**
 * @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);
    }
}

/**
 * @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 making 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;
    }
}

contract cleangoblins is ERC721A, Ownable, ReentrancyGuard {
    uint256 public constant goblinsToClean = 6666;//dirtymfers
    
    bool public bathtub = false;//apply water
    uint256 public bathtubSize = 2;//two's company
    string public soap;//bubbles++
    
    mapping(address => bool) public scrubadubdub;//wtf is that
   
	constructor() ERC721A("cleangoblins", "CLEANGOBLINS") {}

    function _baseURI(
    ) internal view virtual override returns (string memory) {
        return soap;
    }

 	function cleaninGoblin() external nonReentrant {
        require(_msgSender() == tx.origin);
        require(!scrubadubdub[_msgSender()]);
        require(bathtub);
  	    uint256 totalCleaned = totalSupply();
        require(totalCleaned + bathtubSize <= goblinsToClean);
        
        _safeMint(_msgSender(), bathtubSize);
        scrubadubdub[_msgSender()] = true;
    }

    function makinGoblinsClean(
        address fools,
        uint256 cleaning
    ) external onlyOwner {
        uint256 totalCleaned = totalSupply();
        require(totalCleaned + cleaning <= goblinsToClean);

        _safeMint(fools, cleaning);
    }

    function bathtubCapacity(
        uint8 size
    ) external onlyOwner {
        bathtubSize = size;
    }

    function fillBathtub(
        bool filled
    ) external onlyOwner {
        bathtub = filled;
    }

    function dropSoap(
        string memory _soap
    )external onlyOwner {
        soap = _soap;
    }

    function drainBathtub() public payable onlyOwner {
	   (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bathtub","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"size","type":"uint8"}],"name":"bathtubCapacity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bathtubSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cleaninGoblin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drainBathtub","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_soap","type":"string"}],"name":"dropSoap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"filled","type":"bool"}],"name":"fillBathtub","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblinsToClean","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"fools","type":"address"},{"internalType":"uint256","name":"cleaning","type":"uint256"}],"name":"makinGoblinsClean","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"scrubadubdub","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soap","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

60806040526009805460ff191690556002600a553480156200002057600080fd5b506040518060400160405280600c81526020016b636c65616e676f626c696e7360a01b8152506040518060400160405280600c81526020016b434c45414e474f424c494e5360a01b81525081600190805190602001906200008392919062000117565b5080516200009990600290602084019062000117565b505050620000b6620000b0620000c160201b60201c565b620000c5565b6001600855620001fa565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600281046001821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b6121a5806200020a6000396000f3fe6080604052600436106101cd5760003560e01c806359e13184116100f7578063a1026f8a11610095578063e3178b5d11610064578063e3178b5d146104cb578063e985e9c5146104eb578063f081e2861461050b578063f2fde38b1461052b576101cd565b8063a1026f8a1461044b578063a22cb4651461046b578063b88d4fde1461048b578063c87b56dd146104ab576101cd565b8063715018a6116100d1578063715018a6146103ec5780638da5cb5b1461040157806391068ca61461041657806395d89b4114610436576101cd565b806359e13184146103975780636352211e146103ac57806370a08231146103cc576101cd565b806323b872dd1161016f5780633f73e46a1161013e5780633f73e46a1461033a57806342842e0e146103425780634f6ccce7146103625780635619544f14610382576101cd565b806323b872dd146102d0578063266000d2146102f057806327e860eb146103055780632f745c591461031a576101cd565b8063095ea7b3116101ab578063095ea7b31461025757806312716b9c1461027957806314a545631461028e57806318160ddd146102ae576101cd565b806301ffc9a7146101d257806306fdde0314610208578063081812fc1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461196c565b61054b565b6040516101ff9190611ad2565b60405180910390f35b34801561021457600080fd5b5061021d6105ae565b6040516101ff9190611add565b34801561023657600080fd5b5061024a6102453660046119ea565b610640565b6040516101ff9190611a81565b34801561026357600080fd5b50610277610272366004611929565b61068c565b005b34801561028557600080fd5b506101f2610725565b34801561029a57600080fd5b506102776102a9366004611929565b61072e565b3480156102ba57600080fd5b506102c361079b565b6040516101ff9190612035565b3480156102dc57600080fd5b506102776102eb36600461184c565b6107a1565b3480156102fc57600080fd5b5061021d6107ac565b34801561031157600080fd5b506102c361083a565b34801561032657600080fd5b506102c3610335366004611929565b610840565b61027761092b565b34801561034e57600080fd5b5061027761035d36600461184c565b6109d6565b34801561036e57600080fd5b506102c361037d3660046119ea565b6109f1565b34801561038e57600080fd5b506102c3610a1d565b3480156103a357600080fd5b50610277610a23565b3480156103b857600080fd5b5061024a6103c73660046119ea565b610b22565b3480156103d857600080fd5b506102c36103e7366004611800565b610b34565b3480156103f857600080fd5b50610277610b81565b34801561040d57600080fd5b5061024a610bcc565b34801561042257600080fd5b506102776104313660046119a4565b610bdb565b34801561044257600080fd5b5061021d610c31565b34801561045757600080fd5b50610277610466366004611952565b610c40565b34801561047757600080fd5b50610277610486366004611900565b610c92565b34801561049757600080fd5b506102776104a6366004611887565b610d60565b3480156104b757600080fd5b5061021d6104c63660046119ea565b610d99565b3480156104d757600080fd5b506102776104e6366004611a02565b610e1d565b3480156104f757600080fd5b506101f261050636600461181a565b610e64565b34801561051757600080fd5b506101f2610526366004611800565b610e92565b34801561053757600080fd5b50610277610546366004611800565b610ea7565b60006001600160e01b031982166380ac58cd60e01b148061057c57506001600160e01b03198216635b5e139f60e01b145b8061059757506001600160e01b0319821663780e9d6360e01b145b806105a657506105a682610f15565b90505b919050565b6060600180546105bd906120ad565b80601f01602080910402602001604051908101604052809291908181526020018280546105e9906120ad565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b82610f2e565b6106705760405162461bcd60e51b815260040161066790611fe8565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061069782610b22565b9050806001600160a01b0316836001600160a01b031614156106cb5760405162461bcd60e51b815260040161066790611e45565b806001600160a01b03166106dd610f35565b6001600160a01b031614806106f957506106f981610506610f35565b6107155760405162461bcd60e51b815260040161066790611c4a565b610720838383610f39565b505050565b60095460ff1681565b610736610f35565b6001600160a01b0316610747610bcc565b6001600160a01b03161461076d5760405162461bcd60e51b815260040161066790611d38565b600061077761079b565b9050611a0a610786838361203e565b111561079157600080fd5b6107208383610f95565b60005490565b610720838383610faf565b600b80546107b9906120ad565b80601f01602080910402602001604051908101604052809291908181526020018280546107e5906120ad565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b505050505081565b600a5481565b600061084b83610b34565b82106108695760405162461bcd60e51b815260040161066790611af0565b600061087361079b565b905060008060005b8381101561090c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108ce57805192505b876001600160a01b0316836001600160a01b0316141561090357868414156108fc5750935061092592505050565b6001909301925b5060010161087b565b5060405162461bcd60e51b815260040161066790611f63565b92915050565b610933610f35565b6001600160a01b0316610944610bcc565b6001600160a01b03161461096a5760405162461bcd60e51b815260040161066790611d38565b6000336001600160a01b03164760405161098390611a7e565b60006040518083038185875af1925050503d80600081146109c0576040519150601f19603f3d011682016040523d82523d6000602084013e6109c5565b606091505b50509050806109d357600080fd5b50565b61072083838360405180602001604052806000815250610d60565b60006109fb61079b565b8210610a195760405162461bcd60e51b815260040161066790611bc2565b5090565b611a0a81565b60026008541415610a465760405162461bcd60e51b815260040161066790611fb1565b600260085532610a54610f35565b6001600160a01b031614610a6757600080fd5b600c6000610a73610f35565b6001600160a01b0316815260208101919091526040016000205460ff1615610a9a57600080fd5b60095460ff16610aa957600080fd5b6000610ab361079b565b9050611a0a600a5482610ac6919061203e565b1115610ad157600080fd5b610ae4610adc610f35565b600a54610f95565b6001600c6000610af2610f35565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055506001600855565b6000610b2d8261121c565b5192915050565b60006001600160a01b038216610b5c5760405162461bcd60e51b815260040161066790611ca7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610b89610f35565b6001600160a01b0316610b9a610bcc565b6001600160a01b031614610bc05760405162461bcd60e51b815260040161066790611d38565b610bca60006112a4565b565b6007546001600160a01b031690565b610be3610f35565b6001600160a01b0316610bf4610bcc565b6001600160a01b031614610c1a5760405162461bcd60e51b815260040161066790611d38565b8051610c2d90600b9060208401906116bd565b5050565b6060600280546105bd906120ad565b610c48610f35565b6001600160a01b0316610c59610bcc565b6001600160a01b031614610c7f5760405162461bcd60e51b815260040161066790611d38565b6009805460ff1916911515919091179055565b610c9a610f35565b6001600160a01b0316826001600160a01b03161415610ccb5760405162461bcd60e51b815260040161066790611dbc565b8060066000610cd8610f35565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d1c610f35565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d549190611ad2565b60405180910390a35050565b610d6b848484610faf565b610d77848484846112f6565b610d935760405162461bcd60e51b815260040161066790611e87565b50505050565b6060610da482610f2e565b610dc05760405162461bcd60e51b815260040161066790611d6d565b6000610dca611412565b9050805160001415610deb5760405180602001604052806000815250610e16565b80610df584611421565b604051602001610e06929190611a4f565b6040516020818303038152906040525b9392505050565b610e25610f35565b6001600160a01b0316610e36610bcc565b6001600160a01b031614610e5c5760405162461bcd60e51b815260040161066790611d38565b60ff16600a55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600c6020526000908152604090205460ff1681565b610eaf610f35565b6001600160a01b0316610ec0610bcc565b6001600160a01b031614610ee65760405162461bcd60e51b815260040161066790611d38565b6001600160a01b038116610f0c5760405162461bcd60e51b815260040161066790611b32565b6109d3816112a4565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c2d82826040518060200160405280600081525061153c565b6000610fba8261121c565b9050600081600001516001600160a01b0316610fd4610f35565b6001600160a01b031614806110095750610fec610f35565b6001600160a01b0316610ffe84610640565b6001600160a01b0316145b8061101d5750815161101d90610506610f35565b90508061103c5760405162461bcd60e51b815260040161066790611df3565b846001600160a01b031682600001516001600160a01b0316146110715760405162461bcd60e51b815260040161066790611cf2565b6001600160a01b0384166110975760405162461bcd60e51b815260040161066790611c05565b6110a48585856001610d93565b6110b46000848460000151610f39565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166111c65761116881610f2e565b156111c6578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112158585856001610d93565b5050505050565b61122461173d565b61122d82610f2e565b6112495760405162461bcd60e51b815260040161066790611b78565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561129a5791506105a99050565b506000190161124b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061130a846001600160a01b0316611549565b1561140657836001600160a01b031663150b7a02611326610f35565b8786866040518563ffffffff1660e01b81526004016113489493929190611a95565b602060405180830381600087803b15801561136257600080fd5b505af1925050508015611392575060408051601f3d908101601f1916820190925261138f91810190611988565b60015b6113ec573d8080156113c0576040519150601f19603f3d011682016040523d82523d6000602084013e6113c5565b606091505b5080516113e45760405162461bcd60e51b815260040161066790611e87565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061140a565b5060015b949350505050565b6060600b80546105bd906120ad565b60608161144657506040805180820190915260018152600360fc1b60208201526105a9565b8160005b8115611470578061145a816120e8565b91506114699050600a83612056565b915061144a565b60008167ffffffffffffffff81111561149957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114c3576020820181803683370190505b5090505b841561140a576114d860018361206a565b91506114e5600a86612103565b6114f090603061203e565b60f81b81838151811061151357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611535600a86612056565b94506114c7565b610720838383600161154f565b3b151590565b6000546001600160a01b0385166115785760405162461bcd60e51b815260040161066790611eda565b836115955760405162461bcd60e51b815260040161066790611f1b565b6115a26000868387610d93565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156116ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561169f5761168360008884886112f6565b61169f5760405162461bcd60e51b815260040161066790611e87565b60019182019101611630565b50600090815561121590868387610d93565b8280546116c9906120ad565b90600052602060002090601f0160209004810192826116eb5760008555611731565b82601f1061170457805160ff1916838001178555611731565b82800160010185558215611731579182015b82811115611731578251825591602001919060010190611716565b50610a19929150611754565b604080518082019091526000808252602082015290565b5b80821115610a195760008155600101611755565b600067ffffffffffffffff8084111561178457611784612143565b604051601f8501601f1916810160200182811182821017156117a8576117a8612143565b6040528481529150818385018610156117c057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105a957600080fd5b803580151581146105a957600080fd5b600060208284031215611811578081fd5b610e16826117d9565b6000806040838503121561182c578081fd5b611835836117d9565b9150611843602084016117d9565b90509250929050565b600080600060608486031215611860578081fd5b611869846117d9565b9250611877602085016117d9565b9150604084013590509250925092565b6000806000806080858703121561189c578081fd5b6118a5856117d9565b93506118b3602086016117d9565b925060408501359150606085013567ffffffffffffffff8111156118d5578182fd5b8501601f810187136118e5578182fd5b6118f487823560208401611769565b91505092959194509250565b60008060408385031215611912578182fd5b61191b836117d9565b9150611843602084016117f0565b6000806040838503121561193b578182fd5b611944836117d9565b946020939093013593505050565b600060208284031215611963578081fd5b610e16826117f0565b60006020828403121561197d578081fd5b8135610e1681612159565b600060208284031215611999578081fd5b8151610e1681612159565b6000602082840312156119b5578081fd5b813567ffffffffffffffff8111156119cb578182fd5b8201601f810184136119db578182fd5b61140a84823560208401611769565b6000602082840312156119fb578081fd5b5035919050565b600060208284031215611a13578081fd5b813560ff81168114610e16578182fd5b60008151808452611a3b816020860160208601612081565b601f01601f19169290920160200192915050565b60008351611a61818460208801612081565b835190830190611a75818360208801612081565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac890830184611a23565b9695505050505050565b901515815260200190565b600060208252610e166020830184611a23565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b6000821982111561205157612051612117565b500190565b6000826120655761206561212d565b500490565b60008282101561207c5761207c612117565b500390565b60005b8381101561209c578181015183820152602001612084565b83811115610d935750506000910152565b6002810460018216806120c157607f821691505b602082108114156120e257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fc576120fc612117565b5060010190565b6000826121125761211261212d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109d357600080fdfea264697066735822122090ebe1d7f2e0b404d60102ffecf3ce7c566f9bf05d35d5b690c21ffed676b67064736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806359e13184116100f7578063a1026f8a11610095578063e3178b5d11610064578063e3178b5d146104cb578063e985e9c5146104eb578063f081e2861461050b578063f2fde38b1461052b576101cd565b8063a1026f8a1461044b578063a22cb4651461046b578063b88d4fde1461048b578063c87b56dd146104ab576101cd565b8063715018a6116100d1578063715018a6146103ec5780638da5cb5b1461040157806391068ca61461041657806395d89b4114610436576101cd565b806359e13184146103975780636352211e146103ac57806370a08231146103cc576101cd565b806323b872dd1161016f5780633f73e46a1161013e5780633f73e46a1461033a57806342842e0e146103425780634f6ccce7146103625780635619544f14610382576101cd565b806323b872dd146102d0578063266000d2146102f057806327e860eb146103055780632f745c591461031a576101cd565b8063095ea7b3116101ab578063095ea7b31461025757806312716b9c1461027957806314a545631461028e57806318160ddd146102ae576101cd565b806301ffc9a7146101d257806306fdde0314610208578063081812fc1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461196c565b61054b565b6040516101ff9190611ad2565b60405180910390f35b34801561021457600080fd5b5061021d6105ae565b6040516101ff9190611add565b34801561023657600080fd5b5061024a6102453660046119ea565b610640565b6040516101ff9190611a81565b34801561026357600080fd5b50610277610272366004611929565b61068c565b005b34801561028557600080fd5b506101f2610725565b34801561029a57600080fd5b506102776102a9366004611929565b61072e565b3480156102ba57600080fd5b506102c361079b565b6040516101ff9190612035565b3480156102dc57600080fd5b506102776102eb36600461184c565b6107a1565b3480156102fc57600080fd5b5061021d6107ac565b34801561031157600080fd5b506102c361083a565b34801561032657600080fd5b506102c3610335366004611929565b610840565b61027761092b565b34801561034e57600080fd5b5061027761035d36600461184c565b6109d6565b34801561036e57600080fd5b506102c361037d3660046119ea565b6109f1565b34801561038e57600080fd5b506102c3610a1d565b3480156103a357600080fd5b50610277610a23565b3480156103b857600080fd5b5061024a6103c73660046119ea565b610b22565b3480156103d857600080fd5b506102c36103e7366004611800565b610b34565b3480156103f857600080fd5b50610277610b81565b34801561040d57600080fd5b5061024a610bcc565b34801561042257600080fd5b506102776104313660046119a4565b610bdb565b34801561044257600080fd5b5061021d610c31565b34801561045757600080fd5b50610277610466366004611952565b610c40565b34801561047757600080fd5b50610277610486366004611900565b610c92565b34801561049757600080fd5b506102776104a6366004611887565b610d60565b3480156104b757600080fd5b5061021d6104c63660046119ea565b610d99565b3480156104d757600080fd5b506102776104e6366004611a02565b610e1d565b3480156104f757600080fd5b506101f261050636600461181a565b610e64565b34801561051757600080fd5b506101f2610526366004611800565b610e92565b34801561053757600080fd5b50610277610546366004611800565b610ea7565b60006001600160e01b031982166380ac58cd60e01b148061057c57506001600160e01b03198216635b5e139f60e01b145b8061059757506001600160e01b0319821663780e9d6360e01b145b806105a657506105a682610f15565b90505b919050565b6060600180546105bd906120ad565b80601f01602080910402602001604051908101604052809291908181526020018280546105e9906120ad565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b82610f2e565b6106705760405162461bcd60e51b815260040161066790611fe8565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061069782610b22565b9050806001600160a01b0316836001600160a01b031614156106cb5760405162461bcd60e51b815260040161066790611e45565b806001600160a01b03166106dd610f35565b6001600160a01b031614806106f957506106f981610506610f35565b6107155760405162461bcd60e51b815260040161066790611c4a565b610720838383610f39565b505050565b60095460ff1681565b610736610f35565b6001600160a01b0316610747610bcc565b6001600160a01b03161461076d5760405162461bcd60e51b815260040161066790611d38565b600061077761079b565b9050611a0a610786838361203e565b111561079157600080fd5b6107208383610f95565b60005490565b610720838383610faf565b600b80546107b9906120ad565b80601f01602080910402602001604051908101604052809291908181526020018280546107e5906120ad565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b505050505081565b600a5481565b600061084b83610b34565b82106108695760405162461bcd60e51b815260040161066790611af0565b600061087361079b565b905060008060005b8381101561090c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108ce57805192505b876001600160a01b0316836001600160a01b0316141561090357868414156108fc5750935061092592505050565b6001909301925b5060010161087b565b5060405162461bcd60e51b815260040161066790611f63565b92915050565b610933610f35565b6001600160a01b0316610944610bcc565b6001600160a01b03161461096a5760405162461bcd60e51b815260040161066790611d38565b6000336001600160a01b03164760405161098390611a7e565b60006040518083038185875af1925050503d80600081146109c0576040519150601f19603f3d011682016040523d82523d6000602084013e6109c5565b606091505b50509050806109d357600080fd5b50565b61072083838360405180602001604052806000815250610d60565b60006109fb61079b565b8210610a195760405162461bcd60e51b815260040161066790611bc2565b5090565b611a0a81565b60026008541415610a465760405162461bcd60e51b815260040161066790611fb1565b600260085532610a54610f35565b6001600160a01b031614610a6757600080fd5b600c6000610a73610f35565b6001600160a01b0316815260208101919091526040016000205460ff1615610a9a57600080fd5b60095460ff16610aa957600080fd5b6000610ab361079b565b9050611a0a600a5482610ac6919061203e565b1115610ad157600080fd5b610ae4610adc610f35565b600a54610f95565b6001600c6000610af2610f35565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055506001600855565b6000610b2d8261121c565b5192915050565b60006001600160a01b038216610b5c5760405162461bcd60e51b815260040161066790611ca7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610b89610f35565b6001600160a01b0316610b9a610bcc565b6001600160a01b031614610bc05760405162461bcd60e51b815260040161066790611d38565b610bca60006112a4565b565b6007546001600160a01b031690565b610be3610f35565b6001600160a01b0316610bf4610bcc565b6001600160a01b031614610c1a5760405162461bcd60e51b815260040161066790611d38565b8051610c2d90600b9060208401906116bd565b5050565b6060600280546105bd906120ad565b610c48610f35565b6001600160a01b0316610c59610bcc565b6001600160a01b031614610c7f5760405162461bcd60e51b815260040161066790611d38565b6009805460ff1916911515919091179055565b610c9a610f35565b6001600160a01b0316826001600160a01b03161415610ccb5760405162461bcd60e51b815260040161066790611dbc565b8060066000610cd8610f35565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d1c610f35565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d549190611ad2565b60405180910390a35050565b610d6b848484610faf565b610d77848484846112f6565b610d935760405162461bcd60e51b815260040161066790611e87565b50505050565b6060610da482610f2e565b610dc05760405162461bcd60e51b815260040161066790611d6d565b6000610dca611412565b9050805160001415610deb5760405180602001604052806000815250610e16565b80610df584611421565b604051602001610e06929190611a4f565b6040516020818303038152906040525b9392505050565b610e25610f35565b6001600160a01b0316610e36610bcc565b6001600160a01b031614610e5c5760405162461bcd60e51b815260040161066790611d38565b60ff16600a55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600c6020526000908152604090205460ff1681565b610eaf610f35565b6001600160a01b0316610ec0610bcc565b6001600160a01b031614610ee65760405162461bcd60e51b815260040161066790611d38565b6001600160a01b038116610f0c5760405162461bcd60e51b815260040161066790611b32565b6109d3816112a4565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c2d82826040518060200160405280600081525061153c565b6000610fba8261121c565b9050600081600001516001600160a01b0316610fd4610f35565b6001600160a01b031614806110095750610fec610f35565b6001600160a01b0316610ffe84610640565b6001600160a01b0316145b8061101d5750815161101d90610506610f35565b90508061103c5760405162461bcd60e51b815260040161066790611df3565b846001600160a01b031682600001516001600160a01b0316146110715760405162461bcd60e51b815260040161066790611cf2565b6001600160a01b0384166110975760405162461bcd60e51b815260040161066790611c05565b6110a48585856001610d93565b6110b46000848460000151610f39565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166111c65761116881610f2e565b156111c6578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112158585856001610d93565b5050505050565b61122461173d565b61122d82610f2e565b6112495760405162461bcd60e51b815260040161066790611b78565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561129a5791506105a99050565b506000190161124b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061130a846001600160a01b0316611549565b1561140657836001600160a01b031663150b7a02611326610f35565b8786866040518563ffffffff1660e01b81526004016113489493929190611a95565b602060405180830381600087803b15801561136257600080fd5b505af1925050508015611392575060408051601f3d908101601f1916820190925261138f91810190611988565b60015b6113ec573d8080156113c0576040519150601f19603f3d011682016040523d82523d6000602084013e6113c5565b606091505b5080516113e45760405162461bcd60e51b815260040161066790611e87565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061140a565b5060015b949350505050565b6060600b80546105bd906120ad565b60608161144657506040805180820190915260018152600360fc1b60208201526105a9565b8160005b8115611470578061145a816120e8565b91506114699050600a83612056565b915061144a565b60008167ffffffffffffffff81111561149957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114c3576020820181803683370190505b5090505b841561140a576114d860018361206a565b91506114e5600a86612103565b6114f090603061203e565b60f81b81838151811061151357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611535600a86612056565b94506114c7565b610720838383600161154f565b3b151590565b6000546001600160a01b0385166115785760405162461bcd60e51b815260040161066790611eda565b836115955760405162461bcd60e51b815260040161066790611f1b565b6115a26000868387610d93565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156116ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561169f5761168360008884886112f6565b61169f5760405162461bcd60e51b815260040161066790611e87565b60019182019101611630565b50600090815561121590868387610d93565b8280546116c9906120ad565b90600052602060002090601f0160209004810192826116eb5760008555611731565b82601f1061170457805160ff1916838001178555611731565b82800160010185558215611731579182015b82811115611731578251825591602001919060010190611716565b50610a19929150611754565b604080518082019091526000808252602082015290565b5b80821115610a195760008155600101611755565b600067ffffffffffffffff8084111561178457611784612143565b604051601f8501601f1916810160200182811182821017156117a8576117a8612143565b6040528481529150818385018610156117c057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105a957600080fd5b803580151581146105a957600080fd5b600060208284031215611811578081fd5b610e16826117d9565b6000806040838503121561182c578081fd5b611835836117d9565b9150611843602084016117d9565b90509250929050565b600080600060608486031215611860578081fd5b611869846117d9565b9250611877602085016117d9565b9150604084013590509250925092565b6000806000806080858703121561189c578081fd5b6118a5856117d9565b93506118b3602086016117d9565b925060408501359150606085013567ffffffffffffffff8111156118d5578182fd5b8501601f810187136118e5578182fd5b6118f487823560208401611769565b91505092959194509250565b60008060408385031215611912578182fd5b61191b836117d9565b9150611843602084016117f0565b6000806040838503121561193b578182fd5b611944836117d9565b946020939093013593505050565b600060208284031215611963578081fd5b610e16826117f0565b60006020828403121561197d578081fd5b8135610e1681612159565b600060208284031215611999578081fd5b8151610e1681612159565b6000602082840312156119b5578081fd5b813567ffffffffffffffff8111156119cb578182fd5b8201601f810184136119db578182fd5b61140a84823560208401611769565b6000602082840312156119fb578081fd5b5035919050565b600060208284031215611a13578081fd5b813560ff81168114610e16578182fd5b60008151808452611a3b816020860160208601612081565b601f01601f19169290920160200192915050565b60008351611a61818460208801612081565b835190830190611a75818360208801612081565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac890830184611a23565b9695505050505050565b901515815260200190565b600060208252610e166020830184611a23565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b6000821982111561205157612051612117565b500190565b6000826120655761206561212d565b500490565b60008282101561207c5761207c612117565b500390565b60005b8381101561209c578181015183820152602001612084565b83811115610d935750506000910152565b6002810460018216806120c157607f821691505b602082108114156120e257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fc576120fc612117565b5060010190565b6000826121125761211261212d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109d357600080fdfea264697066735822122090ebe1d7f2e0b404d60102ffecf3ce7c566f9bf05d35d5b690c21ffed676b67064736f6c63430008000033

Deployed Bytecode Sourcemap

41000:1687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23088:372;;;;;;;;;;-1:-1:-1;23088:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24974:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26536:214::-;;;;;;;;;;-1:-1:-1;26536:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26057:413::-;;;;;;;;;;-1:-1:-1;26057:413:0;;;;;:::i;:::-;;:::i;:::-;;41136:27;;;;;;;;;;;;;:::i;41917:259::-;;;;;;;;;;-1:-1:-1;41917:259:0;;;;;:::i;:::-;;:::i;21345:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27412:162::-;;;;;;;;;;-1:-1:-1;27412:162:0;;;;;:::i;:::-;;:::i;41235:18::-;;;;;;;;;;;;;:::i;41183:30::-;;;;;;;;;;;;;:::i;22009:1007::-;;;;;;;;;;-1:-1:-1;22009:1007:0;;;;;:::i;:::-;;:::i;42525:159::-;;;:::i;27645:177::-;;;;;;;;;;-1:-1:-1;27645:177:0;;;;;:::i;:::-;;:::i;21522:187::-;;;;;;;;;;-1:-1:-1;21522:187:0;;;;;:::i;:::-;;:::i;41066:45::-;;;;;;;;;;;;;:::i;41524:385::-;;;;;;;;;;;;;:::i;24783:124::-;;;;;;;;;;-1:-1:-1;24783:124:0;;;;;:::i;:::-;;:::i;23524:221::-;;;;;;;;;;-1:-1:-1;23524:221:0;;;;;:::i;:::-;;:::i;37773:94::-;;;;;;;;;;;;;:::i;37122:87::-;;;;;;;;;;;;;:::i;42413:104::-;;;;;;;;;;-1:-1:-1;42413:104:0;;;;;:::i;:::-;;:::i;25143:::-;;;;;;;;;;;;;:::i;42301:::-;;;;;;;;;;-1:-1:-1;42301:104:0;;;;;:::i;:::-;;:::i;26822:288::-;;;;;;;;;;-1:-1:-1;26822:288:0;;;;;:::i;:::-;;:::i;27893:355::-;;;;;;;;;;-1:-1:-1;27893:355:0;;;;;:::i;:::-;;:::i;25318:335::-;;;;;;;;;;-1:-1:-1;25318:335:0;;;;;:::i;:::-;;:::i;42184:109::-;;;;;;;;;;-1:-1:-1;42184:109:0;;;;;:::i;:::-;;:::i;27181:164::-;;;;;;;;;;-1:-1:-1;27181:164:0;;;;;:::i;:::-;;:::i;41277:44::-;;;;;;;;;;-1:-1:-1;41277:44:0;;;;;:::i;:::-;;:::i;38022:192::-;;;;;;;;;;-1:-1:-1;38022:192:0;;;;;:::i;:::-;;:::i;23088:372::-;23190:4;-1:-1:-1;;;;;;23227:40:0;;-1:-1:-1;;;23227:40:0;;:105;;-1:-1:-1;;;;;;;23284:48:0;;-1:-1:-1;;;23284:48:0;23227:105;:172;;;-1:-1:-1;;;;;;;23349:50:0;;-1:-1:-1;;;23349:50:0;23227:172;:225;;;;23416:36;23440:11;23416:23;:36::i;:::-;23207:245;;23088:372;;;;:::o;24974:100::-;25028:13;25061:5;25054:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24974:100;:::o;26536:214::-;26604:7;26632:16;26640:7;26632;:16::i;:::-;26624:74;;;;-1:-1:-1;;;26624:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26718:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26718:24:0;;26536:214::o;26057:413::-;26130:13;26146:24;26162:7;26146:15;:24::i;:::-;26130:40;;26195:5;-1:-1:-1;;;;;26189:11:0;:2;-1:-1:-1;;;;;26189:11:0;;;26181:58;;;;-1:-1:-1;;;26181:58:0;;;;;;;:::i;:::-;26290:5;-1:-1:-1;;;;;26274:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26274:21:0;;:62;;;;26299:37;26316:5;26323:12;:10;:12::i;26299:37::-;26252:169;;;;-1:-1:-1;;;26252:169:0;;;;;;;:::i;:::-;26434:28;26443:2;26447:7;26456:5;26434:8;:28::i;:::-;26057:413;;;:::o;41136:27::-;;;;;;:::o;41917:259::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;42032:20:::1;42055:13;:11;:13::i;:::-;42032:36:::0;-1:-1:-1;41107:4:0::1;42087:23;42102:8:::0;42032:36;42087:23:::1;:::i;:::-;:41;;42079:50;;;::::0;::::1;;42142:26;42152:5;42159:8;42142:9;:26::i;21345:100::-:0;21398:7;21425:12;21345:100;:::o;27412:162::-;27538:28;27548:4;27554:2;27558:7;27538:9;:28::i;41235:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41183:30::-;;;;:::o;22009:1007::-;22098:7;22134:16;22144:5;22134:9;:16::i;:::-;22126:5;:24;22118:71;;;;-1:-1:-1;;;22118:71:0;;;;;;;:::i;:::-;22200:22;22225:13;:11;:13::i;:::-;22200:38;;22249:19;22279:25;22468:9;22463:466;22483:14;22479:1;:18;22463:466;;;22523:31;22557:14;;;:11;:14;;;;;;;;;22523:48;;;;;;;;;-1:-1:-1;;;;;22523:48:0;;;;;-1:-1:-1;;;22523:48:0;;;;;;;;;;;;22594:28;22590:111;;22667:14;;;-1:-1:-1;22590:111:0;22744:5;-1:-1:-1;;;;;22723:26:0;:17;-1:-1:-1;;;;;22723:26:0;;22719:195;;;22793:5;22778:11;:20;22774:85;;;-1:-1:-1;22834:1:0;-1:-1:-1;22827:8:0;;-1:-1:-1;;;22827:8:0;22774:85;22881:13;;;;;22719:195;-1:-1:-1;22499:3:0;;22463:466;;;;22952:56;;-1:-1:-1;;;22952:56:0;;;;;;;:::i;22009:1007::-;;;;;:::o;42525:159::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;42582:12:::1;42608:10;-1:-1:-1::0;;;;;42600:24:0::1;42632:21;42600:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42581:77;;;42671:7;42663:16;;;::::0;::::1;;37413:1;42525:159::o:0;27645:177::-;27775:39;27792:4;27798:2;27802:7;27775:39;;;;;;;;;;;;:16;:39::i;21522:187::-;21589:7;21625:13;:11;:13::i;:::-;21617:5;:21;21609:69;;;;-1:-1:-1;;;21609:69:0;;;;;;;:::i;:::-;-1:-1:-1;21696:5:0;21522:187::o;41066:45::-;41107:4;41066:45;:::o;41524:385::-;40053:1;40651:7;;:19;;40643:63;;;;-1:-1:-1;;;40643:63:0;;;;;;;:::i;:::-;40053:1;40784:7;:18;41606:9:::1;41590:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;41590:25:0::1;;41582:34;;;::::0;::::1;;41636:12;:26;41649:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;41636:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41636:26:0;;::::1;;41635:27;41627:36;;;::::0;::::1;;41682:7;::::0;::::1;;41674:16;;;::::0;::::1;;41700:20;41723:13;:11;:13::i;:::-;41700:36;;41107:4;41770:11;;41755:12;:26;;;;:::i;:::-;:44;;41747:53;;;::::0;::::1;;41821:36;41831:12;:10;:12::i;:::-;41845:11;;41821:9;:36::i;:::-;41897:4;41868:12;:26;41881:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;41868:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41868:26:0;:33;;-1:-1:-1;;41868:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;40963:7:0;:22;41524:385::o;24783:124::-;24847:7;24874:20;24886:7;24874:11;:20::i;:::-;:25;;24783:124;-1:-1:-1;;24783:124:0:o;23524:221::-;23588:7;-1:-1:-1;;;;;23616:19:0;;23608:75;;;;-1:-1:-1;;;23608:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23709:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23709:27:0;;23524:221::o;37773:94::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;37838:21:::1;37856:1;37838:9;:21::i;:::-;37773:94::o:0;37122:87::-;37195:6;;-1:-1:-1;;;;;37195:6:0;37122:87;:::o;42413:104::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;42497:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42413:104:::0;:::o;25143:::-;25199:13;25232:7;25225:14;;;;;:::i;42301:104::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;42381:7:::1;:16:::0;;-1:-1:-1;;42381:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42301:104::o;26822:288::-;26929:12;:10;:12::i;:::-;-1:-1:-1;;;;;26917:24:0;:8;-1:-1:-1;;;;;26917:24:0;;;26909:63;;;;-1:-1:-1;;;26909:63:0;;;;;;;:::i;:::-;27030:8;26985:18;:32;27004:12;:10;:12::i;:::-;-1:-1:-1;;;;;26985:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26985:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26985:53:0;;;;;;;;;;;27069:12;:10;:12::i;:::-;-1:-1:-1;;;;;27054:48:0;;27093:8;27054:48;;;;;;:::i;:::-;;;;;;;;26822:288;;:::o;27893:355::-;28052:28;28062:4;28068:2;28072:7;28052:9;:28::i;:::-;28113:48;28136:4;28142:2;28146:7;28155:5;28113:22;:48::i;:::-;28091:149;;;;-1:-1:-1;;;28091:149:0;;;;;;;:::i;:::-;27893:355;;;;:::o;25318:335::-;25391:13;25425:16;25433:7;25425;:16::i;:::-;25417:76;;;;-1:-1:-1;;;25417:76:0;;;;;;;:::i;:::-;25506:21;25530:10;:8;:10::i;:::-;25506:34;;25564:7;25558:21;25583:1;25558:26;;:87;;;;;;;;;;;;;;;;;25611:7;25620:18;:7;:16;:18::i;:::-;25594:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25558:87;25551:94;25318:335;-1:-1:-1;;;25318:335:0:o;42184:109::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;42267:18:::1;;:11;:18:::0;42184:109::o;27181:164::-;-1:-1:-1;;;;;27302:25:0;;;27278:4;27302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27181:164::o;41277:44::-;;;;;;;;;;;;;;;:::o;38022:192::-;37353:12;:10;:12::i;:::-;-1:-1:-1;;;;;37342:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37342:23:0;;37334:68;;;;-1:-1:-1;;;37334:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38111:22:0;::::1;38103:73;;;;-1:-1:-1::0;;;38103:73:0::1;;;;;;;:::i;:::-;38187:19;38197:8;38187:9;:19::i;13726:157::-:0;-1:-1:-1;;;;;;13835:40:0;;-1:-1:-1;;;13835:40:0;13726:157;;;:::o;28503:111::-;28560:4;28594:12;-1:-1:-1;28584:22:0;28503:111::o;11202:98::-;11282:10;11202:98;:::o;33423:196::-;33538:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33538:29:0;-1:-1:-1;;;;;33538:29:0;;;;;;;;;33583:28;;33538:24;;33583:28;;;;;;;33423:196;;;:::o;28622:104::-;28691:27;28701:2;28705:8;28691:27;;;;;;;;;;;;:9;:27::i;31303:2002::-;31418:35;31456:20;31468:7;31456:11;:20::i;:::-;31418:58;;31489:22;31531:13;:18;;;-1:-1:-1;;;;;31515:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;31515:34:0;;:87;;;;31590:12;:10;:12::i;:::-;-1:-1:-1;;;;;31566:36:0;:20;31578:7;31566:11;:20::i;:::-;-1:-1:-1;;;;;31566:36:0;;31515:87;:154;;;-1:-1:-1;31636:18:0;;31619:50;;31656:12;:10;:12::i;31619:50::-;31489:181;;31691:17;31683:80;;;;-1:-1:-1;;;31683:80:0;;;;;;;:::i;:::-;31806:4;-1:-1:-1;;;;;31784:26:0;:13;:18;;;-1:-1:-1;;;;;31784:26:0;;31776:77;;;;-1:-1:-1;;;31776:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31872:16:0;;31864:66;;;;-1:-1:-1;;;31864:66:0;;;;;;;:::i;:::-;31943:43;31965:4;31971:2;31975:7;31984:1;31943:21;:43::i;:::-;32051:49;32068:1;32072:7;32081:13;:18;;;32051:8;:49::i;:::-;-1:-1:-1;;;;;32396:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;32396:31:0;;;-1:-1:-1;;;;;32396:31:0;;;-1:-1:-1;;32396:31:0;;;;;;;32442:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32442:29:0;;;;;;;;;;;;;32488:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;32488:30:0;;;;-1:-1:-1;;;;32533:61:0;-1:-1:-1;;;32578:15:0;32533:61;;;;;;32868:11;;;32898:24;;;;;:29;32868:11;;32898:29;32894:295;;32966:20;32974:11;32966:7;:20::i;:::-;32962:212;;;33043:18;;;33011:24;;;:11;:24;;;;;;;;:50;;33126:28;;;;33084:70;;-1:-1:-1;;;33084:70:0;-1:-1:-1;;;;;;;;;33011:50:0;;;-1:-1:-1;;;;;;33011:50:0;;;;;;;33084:70;;;;;;;32962:212;31303:2002;33236:7;33232:2;-1:-1:-1;;;;;33217:27:0;33226:4;-1:-1:-1;;;;;33217:27:0;;;;;;;;;;;33255:42;33276:4;33282:2;33286:7;33295:1;33255:20;:42::i;:::-;31303:2002;;;;;:::o;24184:537::-;24245:21;;:::i;:::-;24287:16;24295:7;24287;:16::i;:::-;24279:71;;;;-1:-1:-1;;;24279:71:0;;;;;;;:::i;:::-;24408:7;24388:245;24455:31;24489:17;;;:11;:17;;;;;;;;;24455:51;;;;;;;;;-1:-1:-1;;;;;24455:51:0;;;;;-1:-1:-1;;;24455:51:0;;;;;;;;;;;;24529:28;24525:93;;24589:9;-1:-1:-1;24582:16:0;;-1:-1:-1;24582:16:0;24525:93;-1:-1:-1;;;24428:6:0;24388:245;;38222:173;38297:6;;;-1:-1:-1;;;;;38314:17:0;;;-1:-1:-1;;;;;;38314:17:0;;;;;;;38347:40;;38297:6;;;38314:17;38297:6;;38347:40;;38278:16;;38347:40;38222:173;;:::o;34184:804::-;34339:4;34360:15;:2;-1:-1:-1;;;;;34360:13:0;;:15::i;:::-;34356:625;;;34412:2;-1:-1:-1;;;;;34396:36:0;;34433:12;:10;:12::i;:::-;34447:4;34453:7;34462:5;34396:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34396:72:0;;;;;;;;-1:-1:-1;;34396:72:0;;;;;;;;;;;;:::i;:::-;;;34392:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34642:13:0;;34638:273;;34685:61;;-1:-1:-1;;;34685:61:0;;;;;;;:::i;34638:273::-;34861:6;34855:13;34846:6;34842:2;34838:15;34831:38;34392:534;-1:-1:-1;;;;;;34519:55:0;-1:-1:-1;;;34519:55:0;;-1:-1:-1;34512:62:0;;34356:625;-1:-1:-1;34965:4:0;34356:625;34184:804;;;;;;:::o;41407:111::-;41473:13;41506:4;41499:11;;;;;:::i;8903:723::-;8959:13;9180:10;9176:53;;-1:-1:-1;9207:10:0;;;;;;;;;;;;-1:-1:-1;;;9207:10:0;;;;;;9176:53;9254:5;9239:12;9295:78;9302:9;;9295:78;;9328:8;;;;:::i;:::-;;-1:-1:-1;9351:10:0;;-1:-1:-1;9359:2:0;9351:10;;:::i;:::-;;;9295:78;;;9383:19;9415:6;9405:17;;;;;;-1:-1:-1;;;9405:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9405:17:0;;9383:39;;9433:154;9440:10;;9433:154;;9467:11;9477:1;9467:11;;:::i;:::-;;-1:-1:-1;9536:10:0;9544:2;9536:5;:10;:::i;:::-;9523:24;;:2;:24;:::i;:::-;9510:39;;9493:6;9500;9493:14;;;;;;-1:-1:-1;;;9493:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9493:56:0;;;;;;;;-1:-1:-1;9564:11:0;9573:2;9564:11;;:::i;:::-;;;9433:154;;29089:163;29212:32;29218:2;29222:8;29232:5;29239:4;29212:5;:32::i;1563:387::-;1886:20;1934:8;;;1563:387::o;29511:1538::-;29650:20;29673:12;-1:-1:-1;;;;;29704:16:0;;29696:62;;;;-1:-1:-1;;;29696:62:0;;;;;;;:::i;:::-;29777:13;29769:66;;;;-1:-1:-1;;;29769:66:0;;;;;;;:::i;:::-;29848:61;29878:1;29882:2;29886:12;29900:8;29848:21;:61::i;:::-;-1:-1:-1;;;;;30187:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;30187:45:0;;-1:-1:-1;;;;;30187:45:0;;;;;;;;30247:50;;;-1:-1:-1;;;30247:50:0;;;;;;;;;;;;;;;30314:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;30314:35:0;;;;-1:-1:-1;;;;30364:66:0;-1:-1:-1;;;30414:15:0;30364:66;;;;;;;30314:25;;30499:415;30519:8;30515:1;:12;30499:415;;;30558:38;;30583:12;;-1:-1:-1;;;;;30558:38:0;;;30575:1;;30558:38;;30575:1;;30558:38;30619:4;30615:249;;;30682:59;30713:1;30717:2;30721:12;30735:5;30682:22;:59::i;:::-;30648:196;;;;-1:-1:-1;;;30648:196:0;;;;;;;:::i;:::-;30884:14;;;;;30529:3;30499:415;;;-1:-1:-1;30930:12:0;:27;;;30981:60;;31014:2;31018:12;31032:8;30981:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:289::-;;4570:2;4558:9;4549:7;4545:23;4541:32;4538:2;;;4591:6;4583;4576:22;4538:2;4635:9;4622:23;4685:4;4678:5;4674:16;4667:5;4664:27;4654:2;;4710:6;4702;4695:22;4754:259;;4835:5;4829:12;4862:6;4857:3;4850:19;4878:63;4934:6;4927:4;4922:3;4918:14;4911:4;4904:5;4900:16;4878:63;:::i;:::-;4995:2;4974:15;-1:-1:-1;;4970:29:1;4961:39;;;;5002:4;4957:50;;4805:208;-1:-1:-1;;4805:208:1:o;5018:470::-;;5235:6;5229:13;5251:53;5297:6;5292:3;5285:4;5277:6;5273:17;5251:53;:::i;:::-;5367:13;;5326:16;;;;5389:57;5367:13;5326:16;5423:4;5411:17;;5389:57;:::i;:::-;5462:20;;5205:283;-1:-1:-1;;;;5205:283:1:o;5493:205::-;5693:3;5684:14::o;5703:203::-;-1:-1:-1;;;;;5867:32:1;;;;5849:51;;5837:2;5822:18;;5804:102::o;5911:490::-;-1:-1:-1;;;;;6180:15:1;;;6162:34;;6232:15;;6227:2;6212:18;;6205:43;6279:2;6264:18;;6257:34;;;6327:3;6322:2;6307:18;;6300:31;;;5911:490;;6348:47;;6375:19;;6367:6;6348:47;:::i;:::-;6340:55;6114:287;-1:-1:-1;;;;;;6114:287:1:o;6406:187::-;6571:14;;6564:22;6546:41;;6534:2;6519:18;;6501:92::o;6598:221::-;;6747:2;6736:9;6729:21;6767:46;6809:2;6798:9;6794:18;6786:6;6767:46;:::i;6824:398::-;7026:2;7008:21;;;7065:2;7045:18;;;7038:30;7104:34;7099:2;7084:18;;7077:62;-1:-1:-1;;;7170:2:1;7155:18;;7148:32;7212:3;7197:19;;6998:224::o;7227:402::-;7429:2;7411:21;;;7468:2;7448:18;;;7441:30;7507:34;7502:2;7487:18;;7480:62;-1:-1:-1;;;7573:2:1;7558:18;;7551:36;7619:3;7604:19;;7401:228::o;7634:406::-;7836:2;7818:21;;;7875:2;7855:18;;;7848:30;7914:34;7909:2;7894:18;;7887:62;-1:-1:-1;;;7980:2:1;7965:18;;7958:40;8030:3;8015:19;;7808:232::o;8045:399::-;8247:2;8229:21;;;8286:2;8266:18;;;8259:30;8325:34;8320:2;8305:18;;8298:62;-1:-1:-1;;;8391:2:1;8376:18;;8369:33;8434:3;8419:19;;8219:225::o;8449:401::-;8651:2;8633:21;;;8690:2;8670:18;;;8663:30;8729:34;8724:2;8709:18;;8702:62;-1:-1:-1;;;8795:2:1;8780:18;;8773:35;8840:3;8825:19;;8623:227::o;8855:421::-;9057:2;9039:21;;;9096:2;9076:18;;;9069:30;9135:34;9130:2;9115:18;;9108:62;9206:27;9201:2;9186:18;;9179:55;9266:3;9251:19;;9029:247::o;9281:407::-;9483:2;9465:21;;;9522:2;9502:18;;;9495:30;9561:34;9556:2;9541:18;;9534:62;-1:-1:-1;;;9627:2:1;9612:18;;9605:41;9678:3;9663:19;;9455:233::o;9693:402::-;9895:2;9877:21;;;9934:2;9914:18;;;9907:30;9973:34;9968:2;9953:18;;9946:62;-1:-1:-1;;;10039:2:1;10024:18;;10017:36;10085:3;10070:19;;9867:228::o;10100:356::-;10302:2;10284:21;;;10321:18;;;10314:30;10380:34;10375:2;10360:18;;10353:62;10447:2;10432:18;;10274:182::o;10461:411::-;10663:2;10645:21;;;10702:2;10682:18;;;10675:30;10741:34;10736:2;10721:18;;10714:62;-1:-1:-1;;;10807:2:1;10792:18;;10785:45;10862:3;10847:19;;10635:237::o;10877:350::-;11079:2;11061:21;;;11118:2;11098:18;;;11091:30;11157:28;11152:2;11137:18;;11130:56;11218:2;11203:18;;11051:176::o;11232:414::-;11434:2;11416:21;;;11473:2;11453:18;;;11446:30;11512:34;11507:2;11492:18;;11485:62;-1:-1:-1;;;11578:2:1;11563:18;;11556:48;11636:3;11621:19;;11406:240::o;11651:398::-;11853:2;11835:21;;;11892:2;11872:18;;;11865:30;11931:34;11926:2;11911:18;;11904:62;-1:-1:-1;;;11997:2:1;11982:18;;11975:32;12039:3;12024:19;;11825:224::o;12054:415::-;12256:2;12238:21;;;12295:2;12275:18;;;12268:30;12334:34;12329:2;12314:18;;12307:62;-1:-1:-1;;;12400:2:1;12385:18;;12378:49;12459:3;12444:19;;12228:241::o;12474:397::-;12676:2;12658:21;;;12715:2;12695:18;;;12688:30;12754:34;12749:2;12734:18;;12727:62;-1:-1:-1;;;12820:2:1;12805:18;;12798:31;12861:3;12846:19;;12648:223::o;12876:404::-;13078:2;13060:21;;;13117:2;13097:18;;;13090:30;13156:34;13151:2;13136:18;;13129:62;-1:-1:-1;;;13222:2:1;13207:18;;13200:38;13270:3;13255:19;;13050:230::o;13285:410::-;13487:2;13469:21;;;13526:2;13506:18;;;13499:30;13565:34;13560:2;13545:18;;13538:62;-1:-1:-1;;;13631:2:1;13616:18;;13609:44;13685:3;13670:19;;13459:236::o;13700:355::-;13902:2;13884:21;;;13941:2;13921:18;;;13914:30;13980:33;13975:2;13960:18;;13953:61;14046:2;14031:18;;13874:181::o;14476:409::-;14678:2;14660:21;;;14717:2;14697:18;;;14690:30;14756:34;14751:2;14736:18;;14729:62;-1:-1:-1;;;14822:2:1;14807:18;;14800:43;14875:3;14860:19;;14650:235::o;14890:177::-;15036:25;;;15024:2;15009:18;;14991:76::o;15072:128::-;;15143:1;15139:6;15136:1;15133:13;15130:2;;;15149:18;;:::i;:::-;-1:-1:-1;15185:9:1;;15120:80::o;15205:120::-;;15271:1;15261:2;;15276:18;;:::i;:::-;-1:-1:-1;15310:9:1;;15251:74::o;15330:125::-;;15398:1;15395;15392:8;15389:2;;;15403:18;;:::i;:::-;-1:-1:-1;15440:9:1;;15379:76::o;15460:258::-;15532:1;15542:113;15556:6;15553:1;15550:13;15542:113;;;15632:11;;;15626:18;15613:11;;;15606:39;15578:2;15571:10;15542:113;;;15673:6;15670:1;15667:13;15664:2;;;-1:-1:-1;;15708:1:1;15690:16;;15683:27;15513:205::o;15723:380::-;15808:1;15798:12;;15855:1;15845:12;;;15866:2;;15920:4;15912:6;15908:17;15898:27;;15866:2;15973;15965:6;15962:14;15942:18;15939:38;15936:2;;;16019:10;16014:3;16010:20;16007:1;16000:31;16054:4;16051:1;16044:15;16082:4;16079:1;16072:15;15936:2;;15778:325;;;:::o;16108:135::-;;-1:-1:-1;;16168:17:1;;16165:2;;;16188:18;;:::i;:::-;-1:-1:-1;16235:1:1;16224:13;;16155:88::o;16248:112::-;;16306:1;16296:2;;16311:18;;:::i;:::-;-1:-1:-1;16345:9:1;;16286:74::o;16365:127::-;16426:10;16421:3;16417:20;16414:1;16407:31;16457:4;16454:1;16447:15;16481:4;16478:1;16471:15;16497:127;16558:10;16553:3;16549:20;16546:1;16539:31;16589:4;16586:1;16579:15;16613:4;16610:1;16603:15;16629:127;16690:10;16685:3;16681:20;16678:1;16671:31;16721:4;16718:1;16711:15;16745:4;16742:1;16735:15;16761:133;-1:-1:-1;;;;;;16837:32:1;;16827:43;;16817:2;;16884:1;16881;16874:12

Swarm Source

ipfs://90ebe1d7f2e0b404d60102ffecf3ce7c566f9bf05d35d5b690c21ffed676b670
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.