ETH Price: $3,408.89 (-0.21%)
Gas: 7 Gwei

Token

STARCATS (STARCATS)
 

Overview

Max Total Supply

1,512 STARCATS

Holders

910

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 STARCATS
0xec27e34b4edfe4fc00f384ad8e59be4251af4b65
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

STARCATS are a collection of 1512 fascinating 3D generated cats with stunning textures, patterns, pendants, all wrapped into an unmistakable iconic look. Follow us on Twitter: https://twitter.com/STARCATSNFT Chat with us on Discord: https://discord.gg/hKkWD34cGK Launched wi...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STARCATS

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 2021-10-11
*/

// SPDX-License-Identifier: MIT


/* 
                          __                                                    __ 
                         |  \                                                  |  \
 ______ ____    ______  _| $$_     ______    _______   ______    ______    ____| $$
|      \    \  /      \|   $$ \   |      \  /       \ /      \  /      \  /      $$
| $$$$$$\$$$$\|  $$$$$$\\$$$$$$    \$$$$$$\|  $$$$$$$|  $$$$$$\|  $$$$$$\|  $$$$$$$
| $$ | $$ | $$| $$    $$ | $$ __  /      $$ \$$    \ | $$    $$| $$    $$| $$  | $$
| $$ | $$ | $$| $$$$$$$$ | $$|  \|  $$$$$$$ _\$$$$$$\| $$$$$$$$| $$$$$$$$| $$__| $$
| $$ | $$ | $$ \$$     \  \$$  $$ \$$    $$|       $$ \$$     \ \$$     \ \$$    $$
 \$$  \$$  \$$  \$$$$$$$   \$$$$   \$$$$$$$ \$$$$$$$   \$$$$$$$  \$$$$$$$  \$$$$$$$
                                                                                  
                     __  __                        __      __                      
                    |  \|  \                      |  \    |  \                     
  _______   ______  | $$| $$  ______    _______  _| $$_    \$$ __     __   ______  
 /       \ /      \ | $$| $$ /      \  /       \|   $$ \  |  \|  \   /  \ /      \ 
|  $$$$$$$|  $$$$$$\| $$| $$|  $$$$$$\|  $$$$$$$ \$$$$$$  | $$ \$$\ /  $$|  $$$$$$\
| $$      | $$  | $$| $$| $$| $$    $$| $$        | $$ __ | $$  \$$\  $$ | $$    $$
| $$_____ | $$__/ $$| $$| $$| $$$$$$$$| $$_____   | $$|  \| $$   \$$ $$  | $$$$$$$$
 \$$     \ \$$    $$| $$| $$ \$$     \ \$$     \   \$$  $$| $$    \$$$    \$$     \
  \$$$$$$$  \$$$$$$  \$$ \$$  \$$$$$$$  \$$$$$$$    \$$$$  \$$     \$      \$$$$$$$


NFT Collective for Artists, Builders & Collectors
https://metaseed.art
 
*/                                                              

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
       bytes calldata data
    ) external;
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Context.sol

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }
    
      

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

contract STARCATS is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public constant STARCATS_PUBLIC = 5000;
    uint256 public constant STARCATS_MAX = STARCATS_PUBLIC;
    uint256 public constant PURCHASE_LIMIT = 5;
    uint256 public allowListMaxMint = 5;
    uint256 public constant PRICE = 50_000_000_000_000_000; // 0.05 ETH
    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;
    bool public isAllowListActive = false;
    
    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    Counters.Counter private _publicSTARCATS;

    constructor() ERC721("STARCATS", "STARCATS") {}

    function setActive(bool isActive) external onlyOwner {
        _isActive = isActive;
    }

    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    // minting
    function minting(address to, uint256 numberOfTokens)
        external
        payable
        onlyOwner 
        {
            // require(
            //     numberOfTokens <= 5000,
            //     "Can only mint up to 5 tokens"
            // );
            require(
                _publicSTARCATS.current() < 5000,
                "Purchase would exceed STARCATS_PUBLIC"
            );
            
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = _publicSTARCATS.current();
    
                if (_publicSTARCATS.current() < STARCATS_PUBLIC) {
                    _publicSTARCATS.increment();
                    _safeMint(to, tokenId);
                }
            }
    }
    
      function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
      }
    
      function setAllowListMaxMint(uint256 maxMint) external onlyOwner {
        allowListMaxMint = maxMint;
      }
      
      function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Can't add the null address");
    
          _allowList[addresses[i]] = true;
          /**
          * @dev We don't want to reset _allowListClaimed count
          * if we try to add someone more than once.
          */
          _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
        }
      }
      
      function allowListClaimedBy(address owner) external view returns (uint256){
        require(owner != address(0), 'Zero address not on Allow List');
    
        return _allowListClaimed[owner];
      }
    
      function onAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
      }
    
      function removeFromAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Can't add the null address");
    
          /// @dev We don't want to reset possible _allowListClaimed numbers.
          _allowList[addresses[i]] = false;
        }
      }
    
    function purchaseAllowList(uint256 numberOfTokens) external payable {
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 5 tokens"
        );
        require(isAllowListActive, 'Allow List is not active');
        require(_allowList[msg.sender], 'You are not on the Allow List');
        require(
            _publicSTARCATS.current() < STARCATS_PUBLIC,
            "Purchase would exceed max"
        );
        require(numberOfTokens <= allowListMaxMint, 'Cannot purchase this many tokens');
        require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Purchase exceeds max allowed');
        require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');
        require(
            _publicSTARCATS.current() < STARCATS_PUBLIC,
            "Purchase would exceed STARCATS_PUBLIC"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicSTARCATS.current();

            if (_publicSTARCATS.current() < STARCATS_PUBLIC) {
                _publicSTARCATS.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
      }

    function purchase(uint256 numberOfTokens) external payable {
        
        require(_isActive, "Contract is not active");
        
        // require(
        //     balanceOf(msg.sender) < 5, 
        //     'Each address may only have 5 STARCATSs'
        // );
        
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 5 tokens"
        );
        require(
            _publicSTARCATS.current() < STARCATS_PUBLIC,
            "Purchase would exceed STARCATS_PUBLIC"
        );
        require(
            PRICE * numberOfTokens <= msg.value,
            "ETH amount is not sufficient"
        );
        

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicSTARCATS.current();

            if (_publicSTARCATS.current() < STARCATS_PUBLIC) {
                _publicSTARCATS.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

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":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARCATS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARCATS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"minting","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6005600b5560a06040819052600060808190526200002091600c9162000121565b506040805160208101918290526000908190526200004191600d9162000121565b50600e805461ffff191690553480156200005a57600080fd5b50604080518082018252600880825267535441524341545360c01b6020808401828152855180870190965292855284015281519192916200009e9160009162000121565b508051620000b490600190602084019062000121565b5050506000620000c96200011d60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000204565b3390565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600281046001821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b612c5c80620002146000396000f3fe60806040526004361061022f5760003560e01c8063718bc4af1161012e578063acec338a116100ab578063e985e9c51161006f578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b14610668578063fdeee7e31461041a5761022f565b8063acec338a14610598578063b88d4fde146105b8578063c87b56dd146105d8578063d75e6110146105f8578063e8a3d4851461060d5761022f565b80638da5cb5b116100f25780638da5cb5b1461050e578063938e3d7b1461052357806395d89b4114610543578063a22cb46514610558578063a51312c8146105785761022f565b8063718bc4af146104845780637263cfe2146104a45780637a6685f1146104c45780637f44ab2f146104e45780638d859f3e146104f95761022f565b80632f745c59116101bc57806355f804b31161018057806355f804b3146103fa5780635e0588781461041a5780636352211e1461042f57806370a082311461044f578063715018a61461046f5761022f565b80632f745c59146103655780633a065892146103855780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da5761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd14610308578063233ebc8b1461031d57806323b872dd1461033057806329fc6bae146103505761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f366004611fab565b610688565b6040516102619190612abe565b60405180910390f35b34801561027657600080fd5b5061028a61028536600461218d565b6106d9565b6040516102619190612362565b3480156102a357600080fd5b506102ac610704565b604051610261919061236d565b3480156102c557600080fd5b506102d96102d436600461220b565b610796565b6040516102619190612311565b3480156102f257600080fd5b506103066103013660046120db565b6107d9565b005b34801561031457600080fd5b50610254610871565b61030661032b3660046120db565b610877565b34801561033c57600080fd5b5061030661034b366004611ffe565b610933565b34801561035c57600080fd5b5061028a61096b565b34801561037157600080fd5b506102546103803660046120db565b610979565b34801561039157600080fd5b5061028a6103a0366004611fab565b6109cb565b3480156103b157600080fd5b506103066109e9565b3480156103c657600080fd5b506103066103d5366004611ffe565b610a5b565b3480156103e657600080fd5b506102546103f536600461220b565b610a76565b34801561040657600080fd5b506103066104153660046121c5565b610ad1565b34801561042657600080fd5b50610254610b23565b34801561043b57600080fd5b506102d961044a36600461220b565b610b29565b34801561045b57600080fd5b5061025461046a366004611fab565b610b5e565b34801561047b57600080fd5b50610306610ba2565b34801561049057600080fd5b5061030661049f366004612173565b610c2b565b3480156104b057600080fd5b506103066104bf366004612104565b610c84565b3480156104d057600080fd5b506103066104df36600461220b565b610e65565b3480156104f057600080fd5b50610254610ea9565b34801561050557600080fd5b50610254610eaf565b34801561051a57600080fd5b506102d9610eba565b34801561052f57600080fd5b5061030661053e3660046121c5565b610ec9565b34801561054f57600080fd5b506102ac610f1b565b34801561056457600080fd5b506103066105733660046120b2565b610f2a565b34801561058457600080fd5b50610306610593366004612104565b610ff8565b3480156105a457600080fd5b506103066105b3366004612173565b611115565b3480156105c457600080fd5b506103066105d3366004612039565b611167565b3480156105e457600080fd5b506102ac6105f336600461220b565b6111a6565b34801561060457600080fd5b506102546111ff565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d366004611fcc565b611213565b61030661065036600461220b565b611241565b61030661066336600461220b565b611331565b34801561067457600080fd5b50610306610683366004611fab565b6114dd565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b090612841565b60405180910390fd5b506001600160a01b0381166000908152601060205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe8261159e565b92915050565b60606000805461071390612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612b61565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826115de565b6107bd5760405162461bcd60e51b81526004016106b0906127c0565b506000908152600460205260409020546001600160a01b031690565b60006107e482610b29565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b0906128f8565b806001600160a01b031661082a6115fb565b6001600160a01b0316148061084657506108468161063d6115fb565b6108625760405162461bcd60e51b81526004016106b09061266b565b61086c83836115ff565b505050565b60085490565b61087f6115fb565b6001600160a01b0316610890610eba565b6001600160a01b0316146108b65760405162461bcd60e51b81526004016106b09061280c565b6113886108c3601161166d565b106108e05760405162461bcd60e51b81526004016106b0906129d6565b60005b8181101561086c5760006108f7601161166d565b9050611388610906601161166d565b1015610920576109166011611671565b610920848261168e565b508061092b81612b9c565b9150506108e3565b61094461093e6115fb565b826116a8565b6109605760405162461bcd60e51b81526004016106b090612939565b61086c83838361172d565b600e54610100900460ff1681565b600061098483610b5e565b82106109a25760405162461bcd60e51b81526004016106b090612425565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152600f602052604090205460ff1690565b6109f16115fb565b6001600160a01b0316610a02610eba565b6001600160a01b031614610a285760405162461bcd60e51b81526004016106b09061280c565b6040514790339082156108fc029083906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b5050565b61086c83838360405180602001604052806000815250611167565b6000610a80610871565b8210610a9e5760405162461bcd60e51b81526004016106b09061298a565b60088281548110610abf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ad96115fb565b6001600160a01b0316610aea610eba565b6001600160a01b031614610b105760405162461bcd60e51b81526004016106b09061280c565b8051610a5790600d906020840190611e7b565b61138881565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b090612712565b60006001600160a01b038216610b865760405162461bcd60e51b81526004016106b0906126c8565b506001600160a01b031660009081526003602052604090205490565b610baa6115fb565b6001600160a01b0316610bbb610eba565b6001600160a01b031614610be15760405162461bcd60e51b81526004016106b09061280c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c336115fb565b6001600160a01b0316610c44610eba565b6001600160a01b031614610c6a5760405162461bcd60e51b81526004016106b09061280c565b600e80549115156101000261ff0019909216919091179055565b610c8c6115fb565b6001600160a01b0316610c9d610eba565b6001600160a01b031614610cc35760405162461bcd60e51b81526004016106b09061280c565b60005b8181101561086c576000838383818110610cf057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d059190611fab565b6001600160a01b03161415610d2c5760405162461bcd60e51b81526004016106b090612878565b6001600f6000858585818110610d5257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d679190611fab565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110610db557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dca9190611fab565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610df7576000610e52565b60106000848484818110610e1b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e309190611fab565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610e5d81612b9c565b915050610cc6565b610e6d6115fb565b6001600160a01b0316610e7e610eba565b6001600160a01b031614610ea45760405162461bcd60e51b81526004016106b09061280c565b600b55565b600b5481565b66b1a2bc2ec5000081565b600a546001600160a01b031690565b610ed16115fb565b6001600160a01b0316610ee2610eba565b6001600160a01b031614610f085760405162461bcd60e51b81526004016106b09061280c565b8051610a5790600c906020840190611e7b565b60606001805461071390612b61565b610f326115fb565b6001600160a01b0316826001600160a01b03161415610f635760405162461bcd60e51b81526004016106b090612583565b8060056000610f706115fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fb46115fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fec9190612362565b60405180910390a35050565b6110006115fb565b6001600160a01b0316611011610eba565b6001600160a01b0316146110375760405162461bcd60e51b81526004016106b09061280c565b60005b8181101561086c57600083838381811061106457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110799190611fab565b6001600160a01b031614156110a05760405162461bcd60e51b81526004016106b090612878565b6000600f60008585858181106110c657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110db9190611fab565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061110d81612b9c565b91505061103a565b61111d6115fb565b6001600160a01b031661112e610eba565b6001600160a01b0316146111545760405162461bcd60e51b81526004016106b09061280c565b600e805460ff1916911515919091179055565b6111786111726115fb565b836116a8565b6111945760405162461bcd60e51b81526004016106b090612939565b6111a08484848461185a565b50505050565b60606111b1826115de565b6111cd5760405162461bcd60e51b81526004016106b0906125ba565b600d6111d88361188d565b6040516020016111e992919061226b565b6040516020818303038152906040529050919050565b600581565b6060600c805461071390612b61565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff166112635760405162461bcd60e51b81526004016106b090612790565b60058111156112845760405162461bcd60e51b81526004016106b0906123ee565b611388611291601161166d565b106112ae5760405162461bcd60e51b81526004016106b0906129d6565b346112c08266b1a2bc2ec50000612aff565b11156112de5760405162461bcd60e51b81526004016106b0906125e8565b60005b81811015610a575760006112f5601161166d565b9050611388611304601161166d565b101561131e576113146011611671565b61131e338261168e565b508061132981612b9c565b9150506112e1565b60058111156113525760405162461bcd60e51b81526004016106b0906123ee565b600e54610100900460ff166113795760405162461bcd60e51b81526004016106b090612380565b336000908152600f602052604090205460ff166113a85760405162461bcd60e51b81526004016106b0906123b7565b6113886113b5601161166d565b106113d25760405162461bcd60e51b81526004016106b090612a1b565b600b548111156113f45760405162461bcd60e51b81526004016106b090612a89565b600b5433600090815260106020526040902054611412908390612ad3565b11156114305760405162461bcd60e51b81526004016106b090612a52565b346114428266b1a2bc2ec50000612aff565b11156114605760405162461bcd60e51b81526004016106b0906125e8565b61138861146d601161166d565b1061148a5760405162461bcd60e51b81526004016106b0906129d6565b60005b81811015610a575760006114a1601161166d565b90506113886114b0601161166d565b10156114ca576114c06011611671565b6114ca338261168e565b50806114d581612b9c565b91505061148d565b6114e56115fb565b6001600160a01b03166114f6610eba565b6001600160a01b03161461151c5760405162461bcd60e51b81526004016106b09061280c565b6001600160a01b0381166115425760405162461bcd60e51b81526004016106b0906124c2565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806115cf57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe826119a8565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061163482610b29565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60018160000160008282546116869190612ad3565b909155505050565b610a578282604051806020016040528060008152506119c1565b60006116b3826115de565b6116cf5760405162461bcd60e51b81526004016106b09061261f565b60006116da83610b29565b9050806001600160a01b0316846001600160a01b031614806117155750836001600160a01b031661170a84610796565b6001600160a01b0316145b8061172557506117258185611213565b949350505050565b826001600160a01b031661174082610b29565b6001600160a01b0316146117665760405162461bcd60e51b81526004016106b0906128af565b6001600160a01b03821661178c5760405162461bcd60e51b81526004016106b09061253f565b6117978383836119f4565b6117a26000826115ff565b6001600160a01b03831660009081526003602052604081208054600192906117cb908490612b1e565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f9908490612ad3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61186584848461172d565b61187184848484611a7d565b6111a05760405162461bcd60e51b81526004016106b090612470565b6060816118b257506040805180820190915260018152600360fc1b60208201526106d4565b8160005b81156118dc57806118c681612b9c565b91506118d59050600a83612aeb565b91506118b6565b60008167ffffffffffffffff81111561190557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561192f576020820181803683370190505b5090505b841561172557611944600183612b1e565b9150611951600a86612bb7565b61195c906030612ad3565b60f81b81838151811061197f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119a1600a86612aeb565b9450611933565b6001600160e01b031981166301ffc9a760e01b14919050565b6119cb8383611b98565b6119d86000848484611a7d565b61086c5760405162461bcd60e51b81526004016106b090612470565b6119ff83838361086c565b6001600160a01b038316611a1b57611a1681611c77565b611a3e565b816001600160a01b0316836001600160a01b031614611a3e57611a3e8382611cbb565b6001600160a01b038216611a5a57611a5581611d58565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611e31565b6000611a91846001600160a01b0316611e75565b15611b8d57836001600160a01b031663150b7a02611aad6115fb565b8786866040518563ffffffff1660e01b8152600401611acf9493929190612325565b602060405180830381600087803b158015611ae957600080fd5b505af1925050508015611b19575060408051601f3d908101601f19168201909252611b16918101906121a9565b60015b611b73573d808015611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b508051611b6b5760405162461bcd60e51b81526004016106b090612470565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611725565b506001949350505050565b6001600160a01b038216611bbe5760405162461bcd60e51b81526004016106b09061275b565b611bc7816115de565b15611be45760405162461bcd60e51b81526004016106b090612508565b611bf0600083836119f4565b6001600160a01b0382166000908152600360205260408120805460019290611c19908490612ad3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611cc884610b5e565b611cd29190612b1e565b600083815260076020526040902054909150808214611d25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6a90600190612b1e565b60008381526009602052604081205460088054939450909284908110611da057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611dcf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e3c83610b5e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611e8790612b61565b90600052602060002090601f016020900481019282611ea95760008555611eef565b82601f10611ec257805160ff1916838001178555611eef565b82800160010185558215611eef579182015b82811115611eef578251825591602001919060010190611ed4565b50611efb929150611eff565b5090565b5b80821115611efb5760008155600101611f00565b600067ffffffffffffffff80841115611f2f57611f2f612bf7565b604051601f8501601f191681016020018281118282101715611f5357611f53612bf7565b604052848152915081838501861015611f6b57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b600060208284031215611fbc578081fd5b611fc582611f84565b9392505050565b60008060408385031215611fde578081fd5b611fe783611f84565b9150611ff560208401611f84565b90509250929050565b600080600060608486031215612012578081fd5b61201b84611f84565b925061202960208501611f84565b9150604084013590509250925092565b6000806000806080858703121561204e578081fd5b61205785611f84565b935061206560208601611f84565b925060408501359150606085013567ffffffffffffffff811115612087578182fd5b8501601f81018713612097578182fd5b6120a687823560208401611f14565b91505092959194509250565b600080604083850312156120c4578182fd5b6120cd83611f84565b9150611ff560208401611f9b565b600080604083850312156120ed578182fd5b6120f683611f84565b946020939093013593505050565b60008060208385031215612116578182fd5b823567ffffffffffffffff8082111561212d578384fd5b818501915085601f830112612140578384fd5b81358181111561214e578485fd5b8660208083028501011115612161578485fd5b60209290920196919550909350505050565b600060208284031215612184578081fd5b611fc582611f9b565b60006020828403121561219e578081fd5b8135611fc581612c0d565b6000602082840312156121ba578081fd5b8151611fc581612c0d565b6000602082840312156121d6578081fd5b813567ffffffffffffffff8111156121ec578182fd5b8201601f810184136121fc578182fd5b61172584823560208401611f14565b60006020828403121561221c578081fd5b5035919050565b6000815180845261223b816020860160208601612b35565b601f01601f19169290920160200192915050565b60008151612261818560208601612b35565b9290920192915050565b825460009081906002810460018083168061228757607f831692505b60208084108214156122a757634e487b7160e01b87526022600452602487fd5b8180156122bb57600181146122cc576122f8565b60ff198616895284890196506122f8565b6122d58b612ac7565b885b868110156122f05781548b8201529085019083016122d7565b505084890196505b505050505050612308818561224f565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235890830184612223565b9695505050505050565b901515815260200190565b600060208252611fc56020830184612223565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e7300000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526025908201527f507572636861736520776f756c64206578636565642053544152434154535f5060408201526455424c494360d81b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612ae657612ae6612bcb565b500190565b600082612afa57612afa612be1565b500490565b6000816000190483118215151615612b1957612b19612bcb565b500290565b600082821015612b3057612b30612bcb565b500390565b60005b83811015612b50578181015183820152602001612b38565b838111156111a05750506000910152565b600281046001821680612b7557607f821691505b60208210811415612b9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb057612bb0612bcb565b5060010190565b600082612bc657612bc6612be1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c2357600080fd5b5056fea2646970667358221220688dceb06538b11b52c07b1a87b4bdf2c0dfbe640701653639515a0be617e0be64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061022f5760003560e01c8063718bc4af1161012e578063acec338a116100ab578063e985e9c51161006f578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b14610668578063fdeee7e31461041a5761022f565b8063acec338a14610598578063b88d4fde146105b8578063c87b56dd146105d8578063d75e6110146105f8578063e8a3d4851461060d5761022f565b80638da5cb5b116100f25780638da5cb5b1461050e578063938e3d7b1461052357806395d89b4114610543578063a22cb46514610558578063a51312c8146105785761022f565b8063718bc4af146104845780637263cfe2146104a45780637a6685f1146104c45780637f44ab2f146104e45780638d859f3e146104f95761022f565b80632f745c59116101bc57806355f804b31161018057806355f804b3146103fa5780635e0588781461041a5780636352211e1461042f57806370a082311461044f578063715018a61461046f5761022f565b80632f745c59146103655780633a065892146103855780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da5761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd14610308578063233ebc8b1461031d57806323b872dd1461033057806329fc6bae146103505761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f366004611fab565b610688565b6040516102619190612abe565b60405180910390f35b34801561027657600080fd5b5061028a61028536600461218d565b6106d9565b6040516102619190612362565b3480156102a357600080fd5b506102ac610704565b604051610261919061236d565b3480156102c557600080fd5b506102d96102d436600461220b565b610796565b6040516102619190612311565b3480156102f257600080fd5b506103066103013660046120db565b6107d9565b005b34801561031457600080fd5b50610254610871565b61030661032b3660046120db565b610877565b34801561033c57600080fd5b5061030661034b366004611ffe565b610933565b34801561035c57600080fd5b5061028a61096b565b34801561037157600080fd5b506102546103803660046120db565b610979565b34801561039157600080fd5b5061028a6103a0366004611fab565b6109cb565b3480156103b157600080fd5b506103066109e9565b3480156103c657600080fd5b506103066103d5366004611ffe565b610a5b565b3480156103e657600080fd5b506102546103f536600461220b565b610a76565b34801561040657600080fd5b506103066104153660046121c5565b610ad1565b34801561042657600080fd5b50610254610b23565b34801561043b57600080fd5b506102d961044a36600461220b565b610b29565b34801561045b57600080fd5b5061025461046a366004611fab565b610b5e565b34801561047b57600080fd5b50610306610ba2565b34801561049057600080fd5b5061030661049f366004612173565b610c2b565b3480156104b057600080fd5b506103066104bf366004612104565b610c84565b3480156104d057600080fd5b506103066104df36600461220b565b610e65565b3480156104f057600080fd5b50610254610ea9565b34801561050557600080fd5b50610254610eaf565b34801561051a57600080fd5b506102d9610eba565b34801561052f57600080fd5b5061030661053e3660046121c5565b610ec9565b34801561054f57600080fd5b506102ac610f1b565b34801561056457600080fd5b506103066105733660046120b2565b610f2a565b34801561058457600080fd5b50610306610593366004612104565b610ff8565b3480156105a457600080fd5b506103066105b3366004612173565b611115565b3480156105c457600080fd5b506103066105d3366004612039565b611167565b3480156105e457600080fd5b506102ac6105f336600461220b565b6111a6565b34801561060457600080fd5b506102546111ff565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d366004611fcc565b611213565b61030661065036600461220b565b611241565b61030661066336600461220b565b611331565b34801561067457600080fd5b50610306610683366004611fab565b6114dd565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b090612841565b60405180910390fd5b506001600160a01b0381166000908152601060205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe8261159e565b92915050565b60606000805461071390612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612b61565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826115de565b6107bd5760405162461bcd60e51b81526004016106b0906127c0565b506000908152600460205260409020546001600160a01b031690565b60006107e482610b29565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b0906128f8565b806001600160a01b031661082a6115fb565b6001600160a01b0316148061084657506108468161063d6115fb565b6108625760405162461bcd60e51b81526004016106b09061266b565b61086c83836115ff565b505050565b60085490565b61087f6115fb565b6001600160a01b0316610890610eba565b6001600160a01b0316146108b65760405162461bcd60e51b81526004016106b09061280c565b6113886108c3601161166d565b106108e05760405162461bcd60e51b81526004016106b0906129d6565b60005b8181101561086c5760006108f7601161166d565b9050611388610906601161166d565b1015610920576109166011611671565b610920848261168e565b508061092b81612b9c565b9150506108e3565b61094461093e6115fb565b826116a8565b6109605760405162461bcd60e51b81526004016106b090612939565b61086c83838361172d565b600e54610100900460ff1681565b600061098483610b5e565b82106109a25760405162461bcd60e51b81526004016106b090612425565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152600f602052604090205460ff1690565b6109f16115fb565b6001600160a01b0316610a02610eba565b6001600160a01b031614610a285760405162461bcd60e51b81526004016106b09061280c565b6040514790339082156108fc029083906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b5050565b61086c83838360405180602001604052806000815250611167565b6000610a80610871565b8210610a9e5760405162461bcd60e51b81526004016106b09061298a565b60088281548110610abf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ad96115fb565b6001600160a01b0316610aea610eba565b6001600160a01b031614610b105760405162461bcd60e51b81526004016106b09061280c565b8051610a5790600d906020840190611e7b565b61138881565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b090612712565b60006001600160a01b038216610b865760405162461bcd60e51b81526004016106b0906126c8565b506001600160a01b031660009081526003602052604090205490565b610baa6115fb565b6001600160a01b0316610bbb610eba565b6001600160a01b031614610be15760405162461bcd60e51b81526004016106b09061280c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c336115fb565b6001600160a01b0316610c44610eba565b6001600160a01b031614610c6a5760405162461bcd60e51b81526004016106b09061280c565b600e80549115156101000261ff0019909216919091179055565b610c8c6115fb565b6001600160a01b0316610c9d610eba565b6001600160a01b031614610cc35760405162461bcd60e51b81526004016106b09061280c565b60005b8181101561086c576000838383818110610cf057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d059190611fab565b6001600160a01b03161415610d2c5760405162461bcd60e51b81526004016106b090612878565b6001600f6000858585818110610d5257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d679190611fab565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110610db557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dca9190611fab565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610df7576000610e52565b60106000848484818110610e1b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e309190611fab565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610e5d81612b9c565b915050610cc6565b610e6d6115fb565b6001600160a01b0316610e7e610eba565b6001600160a01b031614610ea45760405162461bcd60e51b81526004016106b09061280c565b600b55565b600b5481565b66b1a2bc2ec5000081565b600a546001600160a01b031690565b610ed16115fb565b6001600160a01b0316610ee2610eba565b6001600160a01b031614610f085760405162461bcd60e51b81526004016106b09061280c565b8051610a5790600c906020840190611e7b565b60606001805461071390612b61565b610f326115fb565b6001600160a01b0316826001600160a01b03161415610f635760405162461bcd60e51b81526004016106b090612583565b8060056000610f706115fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fb46115fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fec9190612362565b60405180910390a35050565b6110006115fb565b6001600160a01b0316611011610eba565b6001600160a01b0316146110375760405162461bcd60e51b81526004016106b09061280c565b60005b8181101561086c57600083838381811061106457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110799190611fab565b6001600160a01b031614156110a05760405162461bcd60e51b81526004016106b090612878565b6000600f60008585858181106110c657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110db9190611fab565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061110d81612b9c565b91505061103a565b61111d6115fb565b6001600160a01b031661112e610eba565b6001600160a01b0316146111545760405162461bcd60e51b81526004016106b09061280c565b600e805460ff1916911515919091179055565b6111786111726115fb565b836116a8565b6111945760405162461bcd60e51b81526004016106b090612939565b6111a08484848461185a565b50505050565b60606111b1826115de565b6111cd5760405162461bcd60e51b81526004016106b0906125ba565b600d6111d88361188d565b6040516020016111e992919061226b565b6040516020818303038152906040529050919050565b600581565b6060600c805461071390612b61565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff166112635760405162461bcd60e51b81526004016106b090612790565b60058111156112845760405162461bcd60e51b81526004016106b0906123ee565b611388611291601161166d565b106112ae5760405162461bcd60e51b81526004016106b0906129d6565b346112c08266b1a2bc2ec50000612aff565b11156112de5760405162461bcd60e51b81526004016106b0906125e8565b60005b81811015610a575760006112f5601161166d565b9050611388611304601161166d565b101561131e576113146011611671565b61131e338261168e565b508061132981612b9c565b9150506112e1565b60058111156113525760405162461bcd60e51b81526004016106b0906123ee565b600e54610100900460ff166113795760405162461bcd60e51b81526004016106b090612380565b336000908152600f602052604090205460ff166113a85760405162461bcd60e51b81526004016106b0906123b7565b6113886113b5601161166d565b106113d25760405162461bcd60e51b81526004016106b090612a1b565b600b548111156113f45760405162461bcd60e51b81526004016106b090612a89565b600b5433600090815260106020526040902054611412908390612ad3565b11156114305760405162461bcd60e51b81526004016106b090612a52565b346114428266b1a2bc2ec50000612aff565b11156114605760405162461bcd60e51b81526004016106b0906125e8565b61138861146d601161166d565b1061148a5760405162461bcd60e51b81526004016106b0906129d6565b60005b81811015610a575760006114a1601161166d565b90506113886114b0601161166d565b10156114ca576114c06011611671565b6114ca338261168e565b50806114d581612b9c565b91505061148d565b6114e56115fb565b6001600160a01b03166114f6610eba565b6001600160a01b03161461151c5760405162461bcd60e51b81526004016106b09061280c565b6001600160a01b0381166115425760405162461bcd60e51b81526004016106b0906124c2565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806115cf57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe826119a8565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061163482610b29565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60018160000160008282546116869190612ad3565b909155505050565b610a578282604051806020016040528060008152506119c1565b60006116b3826115de565b6116cf5760405162461bcd60e51b81526004016106b09061261f565b60006116da83610b29565b9050806001600160a01b0316846001600160a01b031614806117155750836001600160a01b031661170a84610796565b6001600160a01b0316145b8061172557506117258185611213565b949350505050565b826001600160a01b031661174082610b29565b6001600160a01b0316146117665760405162461bcd60e51b81526004016106b0906128af565b6001600160a01b03821661178c5760405162461bcd60e51b81526004016106b09061253f565b6117978383836119f4565b6117a26000826115ff565b6001600160a01b03831660009081526003602052604081208054600192906117cb908490612b1e565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f9908490612ad3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61186584848461172d565b61187184848484611a7d565b6111a05760405162461bcd60e51b81526004016106b090612470565b6060816118b257506040805180820190915260018152600360fc1b60208201526106d4565b8160005b81156118dc57806118c681612b9c565b91506118d59050600a83612aeb565b91506118b6565b60008167ffffffffffffffff81111561190557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561192f576020820181803683370190505b5090505b841561172557611944600183612b1e565b9150611951600a86612bb7565b61195c906030612ad3565b60f81b81838151811061197f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119a1600a86612aeb565b9450611933565b6001600160e01b031981166301ffc9a760e01b14919050565b6119cb8383611b98565b6119d86000848484611a7d565b61086c5760405162461bcd60e51b81526004016106b090612470565b6119ff83838361086c565b6001600160a01b038316611a1b57611a1681611c77565b611a3e565b816001600160a01b0316836001600160a01b031614611a3e57611a3e8382611cbb565b6001600160a01b038216611a5a57611a5581611d58565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611e31565b6000611a91846001600160a01b0316611e75565b15611b8d57836001600160a01b031663150b7a02611aad6115fb565b8786866040518563ffffffff1660e01b8152600401611acf9493929190612325565b602060405180830381600087803b158015611ae957600080fd5b505af1925050508015611b19575060408051601f3d908101601f19168201909252611b16918101906121a9565b60015b611b73573d808015611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b508051611b6b5760405162461bcd60e51b81526004016106b090612470565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611725565b506001949350505050565b6001600160a01b038216611bbe5760405162461bcd60e51b81526004016106b09061275b565b611bc7816115de565b15611be45760405162461bcd60e51b81526004016106b090612508565b611bf0600083836119f4565b6001600160a01b0382166000908152600360205260408120805460019290611c19908490612ad3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611cc884610b5e565b611cd29190612b1e565b600083815260076020526040902054909150808214611d25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6a90600190612b1e565b60008381526009602052604081205460088054939450909284908110611da057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611dcf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e3c83610b5e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611e8790612b61565b90600052602060002090601f016020900481019282611ea95760008555611eef565b82601f10611ec257805160ff1916838001178555611eef565b82800160010185558215611eef579182015b82811115611eef578251825591602001919060010190611ed4565b50611efb929150611eff565b5090565b5b80821115611efb5760008155600101611f00565b600067ffffffffffffffff80841115611f2f57611f2f612bf7565b604051601f8501601f191681016020018281118282101715611f5357611f53612bf7565b604052848152915081838501861015611f6b57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b600060208284031215611fbc578081fd5b611fc582611f84565b9392505050565b60008060408385031215611fde578081fd5b611fe783611f84565b9150611ff560208401611f84565b90509250929050565b600080600060608486031215612012578081fd5b61201b84611f84565b925061202960208501611f84565b9150604084013590509250925092565b6000806000806080858703121561204e578081fd5b61205785611f84565b935061206560208601611f84565b925060408501359150606085013567ffffffffffffffff811115612087578182fd5b8501601f81018713612097578182fd5b6120a687823560208401611f14565b91505092959194509250565b600080604083850312156120c4578182fd5b6120cd83611f84565b9150611ff560208401611f9b565b600080604083850312156120ed578182fd5b6120f683611f84565b946020939093013593505050565b60008060208385031215612116578182fd5b823567ffffffffffffffff8082111561212d578384fd5b818501915085601f830112612140578384fd5b81358181111561214e578485fd5b8660208083028501011115612161578485fd5b60209290920196919550909350505050565b600060208284031215612184578081fd5b611fc582611f9b565b60006020828403121561219e578081fd5b8135611fc581612c0d565b6000602082840312156121ba578081fd5b8151611fc581612c0d565b6000602082840312156121d6578081fd5b813567ffffffffffffffff8111156121ec578182fd5b8201601f810184136121fc578182fd5b61172584823560208401611f14565b60006020828403121561221c578081fd5b5035919050565b6000815180845261223b816020860160208601612b35565b601f01601f19169290920160200192915050565b60008151612261818560208601612b35565b9290920192915050565b825460009081906002810460018083168061228757607f831692505b60208084108214156122a757634e487b7160e01b87526022600452602487fd5b8180156122bb57600181146122cc576122f8565b60ff198616895284890196506122f8565b6122d58b612ac7565b885b868110156122f05781548b8201529085019083016122d7565b505084890196505b505050505050612308818561224f565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235890830184612223565b9695505050505050565b901515815260200190565b600060208252611fc56020830184612223565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e7300000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526025908201527f507572636861736520776f756c64206578636565642053544152434154535f5060408201526455424c494360d81b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612ae657612ae6612bcb565b500190565b600082612afa57612afa612be1565b500490565b6000816000190483118215151615612b1957612b19612bcb565b500290565b600082821015612b3057612b30612bcb565b500390565b60005b83811015612b50578181015183820152602001612b38565b838111156111a05750506000910152565b600281046001821680612b7557607f821691505b60208210811415612b9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb057612bb0612bcb565b5060010190565b600082612bc657612bc6612be1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c2357600080fd5b5056fea2646970667358221220688dceb06538b11b52c07b1a87b4bdf2c0dfbe640701653639515a0be617e0be64736f6c63430008000033

Deployed Bytecode Sourcemap

48628:6151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51313:205;;;;;;;;;;-1:-1:-1;51313:205:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38547:300;;;;;;;;;;-1:-1:-1;38547:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24653:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26235:308::-;;;;;;;;;;-1:-1:-1;26235:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25758:411::-;;;;;;;;;;-1:-1:-1;25758:411:0;;;;;:::i;:::-;;:::i;:::-;;39350:113;;;;;;;;;;;;;:::i;49745:749::-;;;;;;:::i;:::-;;:::i;27294:376::-;;;;;;;;;;-1:-1:-1;27294:376:0;;;;;:::i;:::-;;:::i;49152:37::-;;;;;;;;;;;;;:::i;38931:343::-;;;;;;;;;;-1:-1:-1;38931:343:0;;;;;:::i;:::-;;:::i;51532:108::-;;;;;;;;;;-1:-1:-1;51532:108:0;;;;;:::i;:::-;;:::i;54629:147::-;;;;;;;;;;;;;:::i;27741:185::-;;;;;;;;;;-1:-1:-1;27741:185:0;;;;;:::i;:::-;;:::i;39540:320::-;;;;;;;;;;-1:-1:-1;39540:320:0;;;;;:::i;:::-;;:::i;49625:96::-;;;;;;;;;;-1:-1:-1;49625:96:0;;;;;:::i;:::-;;:::i;48811:54::-;;;;;;;;;;;;;:::i;24260:326::-;;;;;;;;;;-1:-1:-1;24260:326:0;;;;;:::i;:::-;;:::i;23903:295::-;;;;;;;;;;-1:-1:-1;23903:295:0;;;;;:::i;:::-;;:::i;48008:148::-;;;;;;;;;;;;;:::i;50508:133::-;;;;;;;;;;-1:-1:-1;50508:133:0;;;;;:::i;:::-;;:::i;50783:514::-;;;;;;;;;;-1:-1:-1;50783:514:0;;;;;:::i;:::-;;:::i;50655:112::-;;;;;;;;;;-1:-1:-1;50655:112:0;;;;;:::i;:::-;;:::i;48921:35::-;;;;;;;;;;;;;:::i;48963:54::-;;;;;;;;;;;;;:::i;47357:87::-;;;;;;;;;;;;;:::i;49518:99::-;;;;;;;;;;-1:-1:-1;49518:99:0;;;;;:::i;:::-;;:::i;24822:104::-;;;;;;;;;;;;;:::i;26615:327::-;;;;;;;;;;-1:-1:-1;26615:327:0;;;;;:::i;:::-;;:::i;51654:365::-;;;;;;;;;;-1:-1:-1;51654:365:0;;;;;:::i;:::-;;:::i;49418:92::-;;;;;;;;;;-1:-1:-1;49418:92:0;;;;;:::i;:::-;;:::i;27997:365::-;;;;;;;;;;-1:-1:-1;27997:365:0;;;;;:::i;:::-;;:::i;54345:276::-;;;;;;;;;;-1:-1:-1;54345:276:0;;;;;:::i;:::-;;:::i;48872:42::-;;;;;;;;;;;;;:::i;54240:97::-;;;;;;;;;;;;;:::i;27013:214::-;;;;;;;;;;-1:-1:-1;27013:214:0;;;;;:::i;:::-;;:::i;53244:988::-;;;;;;:::i;:::-;;:::i;52031:1205::-;;;;;;:::i;:::-;;:::i;48311:281::-;;;;;;;;;;-1:-1:-1;48311:281:0;;;;;:::i;:::-;;:::i;51313:205::-;51379:7;-1:-1:-1;;;;;51406:19:0;;51398:62;;;;-1:-1:-1;;;51398:62:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;51484:24:0;;;;;;:17;:24;;;;;;51313:205;;;;:::o;38547:300::-;38694:4;-1:-1:-1;;;;;;38736:50:0;;-1:-1:-1;;;38736:50:0;;:103;;;38803:36;38827:11;38803:23;:36::i;:::-;38716:123;38547:300;-1:-1:-1;;38547:300:0:o;24653:100::-;24707:13;24740:5;24733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24653:100;:::o;26235:308::-;26356:7;26403:16;26411:7;26403;:16::i;:::-;26381:110;;;;-1:-1:-1;;;26381:110:0;;;;;;;:::i;:::-;-1:-1:-1;26511:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26511:24:0;;26235:308::o;25758:411::-;25839:13;25855:23;25870:7;25855:14;:23::i;:::-;25839:39;;25903:5;-1:-1:-1;;;;;25897:11:0;:2;-1:-1:-1;;;;;25897:11:0;;;25889:57;;;;-1:-1:-1;;;25889:57:0;;;;;;;:::i;:::-;25997:5;-1:-1:-1;;;;;25981:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25981:21:0;;:62;;;;26006:37;26023:5;26030:12;:10;:12::i;26006:37::-;25959:168;;;;-1:-1:-1;;;25959:168:0;;;;;;;:::i;:::-;26140:21;26149:2;26153:7;26140:8;:21::i;:::-;25758:411;;;:::o;39350:113::-;39438:10;:17;39350:113;:::o;49745:749::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;50070:4:::1;50042:25;:15;:23;:25::i;:::-;:32;50016:131;;;;-1:-1:-1::0;;;50016:131:0::1;;;;;;;:::i;:::-;50181:9;50176:311;50200:14;50196:1;:18;50176:311;;;50240:15;50258:25;:15;:23;:25::i;:::-;50240:43;;48800:4;50312:25;:15;:23;:25::i;:::-;:43;50308:164;;;50380:27;:15;:25;:27::i;:::-;50430:22;50440:2;50444:7;50430:9;:22::i;:::-;-1:-1:-1::0;50216:3:0;::::1;::::0;::::1;:::i;:::-;;;;50176:311;;27294:376:::0;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27481:140;;;;-1:-1:-1;;;27481:140:0;;;;;;;:::i;:::-;27634:28;27644:4;27650:2;27654:7;27634:9;:28::i;49152:37::-;;;;;;;;;:::o;38931:343::-;39073:7;39128:23;39145:5;39128:16;:23::i;:::-;39120:5;:31;39098:124;;;;-1:-1:-1;;;39098:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39240:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38931:343::o;51532:108::-;-1:-1:-1;;;;;51614:16:0;51590:4;51614:16;;;:10;:16;;;;;;;;;51532:108::o;54629:147::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;54731:37:::1;::::0;54697:21:::1;::::0;54739:10:::1;::::0;54731:37;::::1;;;::::0;54697:21;;54679:15:::1;54731:37:::0;54679:15;54731:37;54697:21;54739:10;54731:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47648:1;54629:147::o:0;27741:185::-;27879:39;27896:4;27902:2;27906:7;27879:39;;;;;;;;;;;;:16;:39::i;39540:320::-;39660:7;39715:30;:28;:30::i;:::-;39707:5;:38;39685:132;;;;-1:-1:-1;;;39685:132:0;;;;;;;:::i;:::-;39835:10;39846:5;39835:17;;;;;;-1:-1:-1;;;39835:17:0;;;;;;;;;;;;;;;;;39828:24;;39540:320;;;:::o;49625:96::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;49694:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;48811:54::-:0;48800:4;48811:54;:::o;24260:326::-;24377:7;24418:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24418:16:0;24467:19;24445:110;;;;-1:-1:-1;;;24445:110:0;;;;;;;:::i;23903:295::-;24020:7;-1:-1:-1;;;;;24067:19:0;;24045:111;;;;-1:-1:-1;;;24045:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24174:16:0;;;;;:9;:16;;;;;;;23903:295::o;48008:148::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;48099:6:::1;::::0;48078:40:::1;::::0;48115:1:::1;::::0;-1:-1:-1;;;;;48099:6:0::1;::::0;48078:40:::1;::::0;48115:1;;48078:40:::1;48129:6;:19:::0;;-1:-1:-1;;;;;;48129:19:0::1;::::0;;48008:148::o;50508:133::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;50593:17:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;50593:38:0;;::::1;::::0;;;::::1;::::0;;50508:133::o;50783:514::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;50872:9:::1;50867:421;50887:20:::0;;::::1;50867:421;;;50959:1;50935:9:::0;;50945:1;50935:12;;::::1;;;-1:-1:-1::0;;;50935:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50935:26:0::1;;;50927:65;;;;-1:-1:-1::0;;;50927:65:0::1;;;;;;;:::i;:::-;51038:4;51011:10;:24;51022:9;;51032:1;51022:12;;;;;-1:-1:-1::0;;;51022:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51011:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51011:24:0;;;:31;;-1:-1:-1;;51011:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;51203:17:::1;-1:-1:-1::0;51221:9:0;;51231:1;51221:12;;::::1;;;-1:-1:-1::0;;;51221:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51203:31:0::1;-1:-1:-1::0;;;;;51203:31:0::1;;;;;;;;;;;;;:35;:73;;51275:1;51203:73;;;51241:17;:31;51259:9;;51269:1;51259:12;;;;;-1:-1:-1::0;;;51259:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51241:31:0::1;-1:-1:-1::0;;;;;51241:31:0::1;;;;;;;;;;;;;51203:73;-1:-1:-1::0;50909:3:0;::::1;::::0;::::1;:::i;:::-;;;;50867:421;;50655:112:::0;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;50731:16:::1;:26:::0;50655:112::o;48921:35::-;;;;:::o;48963:54::-;48995:22;48963:54;:::o;47357:87::-;47430:6;;-1:-1:-1;;;;;47430:6:0;47357:87;:::o;49518:99::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;49591:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;24822:104::-:0;24878:13;24911:7;24904:14;;;;;:::i;26615:327::-;26762:12;:10;:12::i;:::-;-1:-1:-1;;;;;26750:24:0;:8;-1:-1:-1;;;;;26750:24:0;;;26742:62;;;;-1:-1:-1;;;26742:62:0;;;;;;;:::i;:::-;26862:8;26817:18;:32;26836:12;:10;:12::i;:::-;-1:-1:-1;;;;;26817:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26817:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26817:53:0;;;;;;;;;;;26901:12;:10;:12::i;:::-;-1:-1:-1;;;;;26886:48:0;;26925:8;26886:48;;;;;;:::i;:::-;;;;;;;;26615:327;;:::o;51654:365::-;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;51748:9:::1;51743:267;51763:20:::0;;::::1;51743:267;;;51835:1;51811:9:::0;;51821:1;51811:12;;::::1;;;-1:-1:-1::0;;;51811:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51811:26:0::1;;;51803:65;;;;-1:-1:-1::0;;;51803:65:0::1;;;;;;;:::i;:::-;51993:5;51966:10;:24;51977:9;;51987:1;51977:12;;;;;-1:-1:-1::0;;;51977:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51966:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51966:24:0;:32;;-1:-1:-1;;51966:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51785:3;::::1;::::0;::::1;:::i;:::-;;;;51743:267;;49418:92:::0;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;49482:9:::1;:20:::0;;-1:-1:-1;;49482:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49418:92::o;27997:365::-;28186:41;28205:12;:10;:12::i;:::-;28219:7;28186:18;:41::i;:::-;28164:140;;;;-1:-1:-1;;;28164:140:0;;;;;;;:::i;:::-;28315:39;28329:4;28335:2;28339:7;28348:5;28315:13;:39::i;:::-;27997:365;;;;:::o;54345:276::-;54454:13;54493:16;54501:7;54493;:16::i;:::-;54485:49;;;;-1:-1:-1;;;54485:49:0;;;;;;;:::i;:::-;54578:13;54593:18;:7;:16;:18::i;:::-;54561:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54547:66;;54345:276;;;:::o;48872:42::-;48913:1;48872:42;:::o;54240:97::-;54284:13;54317:12;54310:19;;;;;:::i;27013:214::-;-1:-1:-1;;;;;27184:25:0;;;27155:4;27184:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27013:214::o;53244:988::-;53332:9;;;;53324:44;;;;-1:-1:-1;;;53324:44:0;;;;;;;:::i;:::-;48913:1;53558:14;:32;;53536:110;;;;-1:-1:-1;;;53536:110:0;;;;;;;:::i;:::-;48800:4;53679:25;:15;:23;:25::i;:::-;:43;53657:130;;;;-1:-1:-1;;;53657:130:0;;;;;;;:::i;:::-;53846:9;53820:22;53828:14;48995:22;53820;:::i;:::-;:35;;53798:113;;;;-1:-1:-1;;;53798:113:0;;;;;;;:::i;:::-;53939:9;53934:291;53958:14;53954:1;:18;53934:291;;;53994:15;54012:25;:15;:23;:25::i;:::-;53994:43;;48800:4;54058:25;:15;:23;:25::i;:::-;:43;54054:160;;;54122:27;:15;:25;:27::i;:::-;54168:30;54178:10;54190:7;54168:9;:30::i;:::-;-1:-1:-1;53974:3:0;;;;:::i;:::-;;;;53934:291;;52031:1205;48913:1;52132:14;:32;;52110:110;;;;-1:-1:-1;;;52110:110:0;;;;;;;:::i;:::-;52239:17;;;;;;;52231:54;;;;-1:-1:-1;;;52231:54:0;;;;;;;:::i;:::-;52315:10;52304:22;;;;:10;:22;;;;;;;;52296:64;;;;-1:-1:-1;;;52296:64:0;;;;;;;:::i;:::-;48800:4;52393:25;:15;:23;:25::i;:::-;:43;52371:118;;;;-1:-1:-1;;;52371:118:0;;;;;;;:::i;:::-;52526:16;;52508:14;:34;;52500:79;;;;-1:-1:-1;;;52500:79:0;;;;;;;:::i;:::-;52648:16;;52616:10;52598:29;;;;:17;:29;;;;;;:46;;52630:14;;52598:46;:::i;:::-;:66;;52590:107;;;;-1:-1:-1;;;52590:107:0;;;;;;;:::i;:::-;52742:9;52716:22;52724:14;48995:22;52716;:::i;:::-;:35;;52708:76;;;;-1:-1:-1;;;52708:76:0;;;;;;;:::i;:::-;48800:4;52817:25;:15;:23;:25::i;:::-;:43;52795:130;;;;-1:-1:-1;;;52795:130:0;;;;;;;:::i;:::-;52941:9;52936:291;52960:14;52956:1;:18;52936:291;;;52996:15;53014:25;:15;:23;:25::i;:::-;52996:43;;48800:4;53060:25;:15;:23;:25::i;:::-;:43;53056:160;;;53124:27;:15;:25;:27::i;:::-;53170:30;53180:10;53192:7;53170:9;:30::i;:::-;-1:-1:-1;52976:3:0;;;;:::i;:::-;;;;52936:291;;48311:281;47588:12;:10;:12::i;:::-;-1:-1:-1;;;;;47577:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;47577:23:0;;47569:68;;;;-1:-1:-1;;;47569:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48414:22:0;::::1;48392:110;;;;-1:-1:-1::0;;;48392:110:0::1;;;;;;;:::i;:::-;48539:6;::::0;48518:38:::1;::::0;-1:-1:-1;;;;;48518:38:0;;::::1;::::0;48539:6:::1;::::0;48518:38:::1;::::0;48539:6:::1;::::0;48518:38:::1;48567:6;:17:::0;;-1:-1:-1;;;;;;48567:17:0::1;-1:-1:-1::0;;;;;48567:17:0;;;::::1;::::0;;;::::1;::::0;;48311:281::o;23484:355::-;23631:4;-1:-1:-1;;;;;;23673:40:0;;-1:-1:-1;;;23673:40:0;;:105;;-1:-1:-1;;;;;;;23730:48:0;;-1:-1:-1;;;23730:48:0;23673:105;:158;;;;23795:36;23819:11;23795:23;:36::i;29909:127::-;29974:4;29998:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29998:16:0;:30;;;29909:127::o;18663:98::-;18743:10;18663:98;:::o;34046:174::-;34121:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34121:29:0;-1:-1:-1;;;;;34121:29:0;;;;;;;;:24;;34175:23;34121:24;34175:14;:23::i;:::-;-1:-1:-1;;;;;34166:46:0;;;;;;;;;;;34046:174;;:::o;45756:114::-;45848:14;;45756:114::o;45878:117::-;45975:1;45957:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;45878:117:0:o;30997:110::-;31073:26;31083:2;31087:7;31073:26;;;;;;;;;;;;:9;:26::i;30203:452::-;30332:4;30376:16;30384:7;30376;:16::i;:::-;30354:110;;;;-1:-1:-1;;;30354:110:0;;;;;;;:::i;:::-;30475:13;30491:23;30506:7;30491:14;:23::i;:::-;30475:39;;30544:5;-1:-1:-1;;;;;30533:16:0;:7;-1:-1:-1;;;;;30533:16:0;;:64;;;;30590:7;-1:-1:-1;;;;;30566:31:0;:20;30578:7;30566:11;:20::i;:::-;-1:-1:-1;;;;;30566:31:0;;30533:64;:113;;;;30614:32;30631:5;30638:7;30614:16;:32::i;:::-;30525:122;30203:452;-1:-1:-1;;;;30203:452:0:o;33313:615::-;33486:4;-1:-1:-1;;;;;33459:31:0;:23;33474:7;33459:14;:23::i;:::-;-1:-1:-1;;;;;33459:31:0;;33437:122;;;;-1:-1:-1;;;33437:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33578:16:0;;33570:65;;;;-1:-1:-1;;;33570:65:0;;;;;;;:::i;:::-;33648:39;33669:4;33675:2;33679:7;33648:20;:39::i;:::-;33752:29;33769:1;33773:7;33752:8;:29::i;:::-;-1:-1:-1;;;;;33794:15:0;;;;;;:9;:15;;;;;:20;;33813:1;;33794:15;:20;;33813:1;;33794:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33825:13:0;;;;;;:9;:13;;;;;:18;;33842:1;;33825:13;:18;;33842:1;;33825:18;:::i;:::-;;;;-1:-1:-1;;33854:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33854:21:0;-1:-1:-1;;;;;33854:21:0;;;;;;;;;33893:27;;33854:16;;33893:27;;;;;;;33313:615;;;:::o;29244:352::-;29401:28;29411:4;29417:2;29421:7;29401:9;:28::i;:::-;29462:48;29485:4;29491:2;29495:7;29504:5;29462:22;:48::i;:::-;29440:148;;;;-1:-1:-1;;;29440:148:0;;;;;;;:::i;19335:723::-;19391:13;19612:10;19608:53;;-1:-1:-1;19639:10:0;;;;;;;;;;;;-1:-1:-1;;;19639:10:0;;;;;;19608:53;19686:5;19671:12;19727:78;19734:9;;19727:78;;19760:8;;;;:::i;:::-;;-1:-1:-1;19783:10:0;;-1:-1:-1;19791:2:0;19783:10;;:::i;:::-;;;19727:78;;;19815:19;19847:6;19837:17;;;;;;-1:-1:-1;;;19837:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19837:17:0;;19815:39;;19865:154;19872:10;;19865:154;;19899:11;19909:1;19899:11;;:::i;:::-;;-1:-1:-1;19968:10:0;19976:2;19968:5;:10;:::i;:::-;19955:24;;:2;:24;:::i;:::-;19942:39;;19925:6;19932;19925:14;;;;;;-1:-1:-1;;;19925:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19925:56:0;;;;;;;;-1:-1:-1;19996:11:0;20005:2;19996:11;;:::i;:::-;;;19865:154;;21935:207;-1:-1:-1;;;;;;22094:40:0;;-1:-1:-1;;;22094:40:0;21935:207;;;:::o;31334:321::-;31464:18;31470:2;31474:7;31464:5;:18::i;:::-;31515:54;31546:1;31550:2;31554:7;31563:5;31515:22;:54::i;:::-;31493:154;;;;-1:-1:-1;;;31493:154:0;;;;;;;:::i;40473:589::-;40617:45;40644:4;40650:2;40654:7;40617:26;:45::i;:::-;-1:-1:-1;;;;;40679:18:0;;40675:187;;40714:40;40746:7;40714:31;:40::i;:::-;40675:187;;;40784:2;-1:-1:-1;;;;;40776:10:0;:4;-1:-1:-1;;;;;40776:10:0;;40772:90;;40803:47;40836:4;40842:7;40803:32;:47::i;:::-;-1:-1:-1;;;;;40876:16:0;;40872:183;;40909:45;40946:7;40909:36;:45::i;:::-;40872:183;;;40982:4;-1:-1:-1;;;;;40976:10:0;:2;-1:-1:-1;;;;;40976:10:0;;40972:83;;41003:40;41031:2;41035:7;41003:27;:40::i;34785:1053::-;34940:4;34961:15;:2;-1:-1:-1;;;;;34961:13:0;;:15::i;:::-;34957:874;;;35030:2;-1:-1:-1;;;;;35014:36:0;;35073:12;:10;:12::i;:::-;35108:4;35135:7;35165:5;35014:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35014:175:0;;;;;;;;-1:-1:-1;;35014:175:0;;;;;;;;;;;;:::i;:::-;;;34993:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35376:13:0;;35372:389;;35419:108;;-1:-1:-1;;;35419:108:0;;;;;;;:::i;35372:389::-;35711:6;35705:13;35696:6;35692:2;35688:15;35681:38;34993:783;-1:-1:-1;;;;;;35253:55:0;-1:-1:-1;;;35253:55:0;;-1:-1:-1;35246:62:0;;34957:874;-1:-1:-1;35815:4:0;34785:1053;;;;;;:::o;31991:382::-;-1:-1:-1;;;;;32071:16:0;;32063:61;;;;-1:-1:-1;;;32063:61:0;;;;;;;:::i;:::-;32144:16;32152:7;32144;:16::i;:::-;32143:17;32135:58;;;;-1:-1:-1;;;32135:58:0;;;;;;;:::i;:::-;32206:45;32235:1;32239:2;32243:7;32206:20;:45::i;:::-;-1:-1:-1;;;;;32264:13:0;;;;;;:9;:13;;;;;:18;;32281:1;;32264:13;:18;;32281:1;;32264:18;:::i;:::-;;;;-1:-1:-1;;32293:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32293:21:0;-1:-1:-1;;;;;32293:21:0;;;;;;;;32332:33;;32293:16;;;32332:33;;32293:16;;32332:33;31991:382;;:::o;41785:164::-;41889:10;:17;;41862:24;;;;:15;:24;;;;;:44;;;41917:24;;;;;;;;;;;;41785:164::o;42576:1002::-;42856:22;42906:1;42881:22;42898:4;42881:16;:22::i;:::-;:26;;;;:::i;:::-;42918:18;42939:26;;;:17;:26;;;;;;42856:51;;-1:-1:-1;43072:28:0;;;43068:328;;-1:-1:-1;;;;;43139:18:0;;43117:19;43139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43190:30;;;;;;:44;;;43307:30;;:17;:30;;;;;:43;;;43068:328;-1:-1:-1;43492:26:0;;;;:17;:26;;;;;;;;43485:33;;;-1:-1:-1;;;;;43536:18:0;;;;;:12;:18;;;;;:34;;;;;;;43529:41;42576:1002::o;43873:1079::-;44151:10;:17;44126:22;;44151:21;;44171:1;;44151:21;:::i;:::-;44183:18;44204:24;;;:15;:24;;;;;;44577:10;:26;;44126:46;;-1:-1:-1;44204:24:0;;44126:46;;44577:26;;;;-1:-1:-1;;;44577:26:0;;;;;;;;;;;;;;;;;44555:48;;44641:11;44616:10;44627;44616:22;;;;;;-1:-1:-1;;;44616:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44721:28;;;:15;:28;;;;;;;:41;;;44893:24;;;;;44886:31;44928:10;:16;;;;;-1:-1:-1;;;44928:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43873:1079;;;;:::o;41363:221::-;41448:14;41465:20;41482:2;41465:16;:20::i;:::-;-1:-1:-1;;;;;41496:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41541:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41363:221:0:o;10062:444::-;10442:20;10490:8;;;10062:444::o;-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;:::-;1124:41;1043:128;-1:-1:-1;;;1043:128:1:o;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:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:187::-;;5477:5;5471:12;5492:52;5537:6;5532:3;5525:4;5518:5;5514:16;5492:52;:::i;:::-;5560:16;;;;;5447:135;-1:-1:-1;;5447:135:1:o;5587:1181::-;5821:13;;5587:1181;;;;5894:1;5879:17;;5915:1;5951:18;;;;5978:2;;6032:4;6024:6;6020:17;6010:27;;5978:2;6058;6106;6098:6;6095:14;6075:18;6072:38;6069:2;;;-1:-1:-1;;;6133:33:1;;6189:4;6186:1;6179:15;6219:4;6140:3;6207:17;6069:2;6250:18;6277:104;;;;6395:1;6390:324;;;;6243:471;;6277:104;-1:-1:-1;;6310:24:1;;6298:37;;6355:16;;;;-1:-1:-1;6277:104:1;;6390:324;6426:39;6458:6;6426:39;:::i;:::-;6487:3;6503:165;6517:6;6514:1;6511:13;6503:165;;;6595:14;;6582:11;;;6575:35;6638:16;;;;6532:10;;6503:165;;;6507:3;;6697:6;6692:3;6688:16;6681:23;;6243:471;;;;;;;6730:32;6758:3;6750:6;6730:32;:::i;:::-;6723:39;5771:997;-1:-1:-1;;;;;5771:997:1:o;6773:203::-;-1:-1:-1;;;;;6937:32:1;;;;6919:51;;6907:2;6892:18;;6874:102::o;6981:490::-;-1:-1:-1;;;;;7250:15:1;;;7232:34;;7302:15;;7297:2;7282:18;;7275:43;7349:2;7334:18;;7327:34;;;7397:3;7392:2;7377:18;;7370:31;;;6981:490;;7418:47;;7445:19;;7437:6;7418:47;:::i;:::-;7410:55;7184:287;-1:-1:-1;;;;;;7184:287:1:o;7476:187::-;7641:14;;7634:22;7616:41;;7604:2;7589:18;;7571:92::o;7668:221::-;;7817:2;7806:9;7799:21;7837:46;7879:2;7868:9;7864:18;7856:6;7837:46;:::i;7894:348::-;8096:2;8078:21;;;8135:2;8115:18;;;8108:30;8174:26;8169:2;8154:18;;8147:54;8233:2;8218:18;;8068:174::o;8247:353::-;8449:2;8431:21;;;8488:2;8468:18;;;8461:30;8527:31;8522:2;8507:18;;8500:59;8591:2;8576:18;;8421:179::o;8605:352::-;8807:2;8789:21;;;8846:2;8826:18;;;8819:30;8885;8880:2;8865:18;;8858:58;8948:2;8933:18;;8779:178::o;8962:407::-;9164:2;9146:21;;;9203:2;9183:18;;;9176:30;9242:34;9237:2;9222:18;;9215:62;-1:-1:-1;;;9308:2:1;9293:18;;9286:41;9359:3;9344:19;;9136:233::o;9374:414::-;9576:2;9558:21;;;9615:2;9595:18;;;9588:30;9654:34;9649:2;9634:18;;9627:62;-1:-1:-1;;;9720:2:1;9705:18;;9698:48;9778:3;9763:19;;9548:240::o;9793:402::-;9995:2;9977:21;;;10034:2;10014:18;;;10007:30;10073:34;10068:2;10053:18;;10046:62;-1:-1:-1;;;10139:2:1;10124:18;;10117:36;10185:3;10170:19;;9967:228::o;10200:352::-;10402:2;10384:21;;;10441:2;10421:18;;;10414:30;10480;10475:2;10460:18;;10453:58;10543:2;10528:18;;10374:178::o;10557:400::-;10759:2;10741:21;;;10798:2;10778:18;;;10771:30;10837:34;10832:2;10817:18;;10810:62;-1:-1:-1;;;10903:2:1;10888:18;;10881:34;10947:3;10932:19;;10731:226::o;10962:349::-;11164:2;11146:21;;;11203:2;11183:18;;;11176:30;11242:27;11237:2;11222:18;;11215:55;11302:2;11287:18;;11136:175::o;11316:344::-;11518:2;11500:21;;;11557:2;11537:18;;;11530:30;-1:-1:-1;;;11591:2:1;11576:18;;11569:50;11651:2;11636:18;;11490:170::o;11665:352::-;11867:2;11849:21;;;11906:2;11886:18;;;11879:30;11945;11940:2;11925:18;;11918:58;12008:2;11993:18;;11839:178::o;12022:408::-;12224:2;12206:21;;;12263:2;12243:18;;;12236:30;12302:34;12297:2;12282:18;;12275:62;-1:-1:-1;;;12368:2:1;12353:18;;12346:42;12420:3;12405:19;;12196:234::o;12435:420::-;12637:2;12619:21;;;12676:2;12656:18;;;12649:30;12715:34;12710:2;12695:18;;12688:62;12786:26;12781:2;12766:18;;12759:54;12845:3;12830:19;;12609:246::o;12860:406::-;13062:2;13044:21;;;13101:2;13081:18;;;13074:30;13140:34;13135:2;13120:18;;13113:62;-1:-1:-1;;;13206:2:1;13191:18;;13184:40;13256:3;13241:19;;13034:232::o;13271:405::-;13473:2;13455:21;;;13512:2;13492:18;;;13485:30;13551:34;13546:2;13531:18;;13524:62;-1:-1:-1;;;13617:2:1;13602:18;;13595:39;13666:3;13651:19;;13445:231::o;13681:356::-;13883:2;13865:21;;;13902:18;;;13895:30;13961:34;13956:2;13941:18;;13934:62;14028:2;14013:18;;13855:182::o;14042:346::-;14244:2;14226:21;;;14283:2;14263:18;;;14256:30;-1:-1:-1;;;14317:2:1;14302:18;;14295:52;14379:2;14364:18;;14216:172::o;14393:408::-;14595:2;14577:21;;;14634:2;14614:18;;;14607:30;14673:34;14668:2;14653:18;;14646:62;-1:-1:-1;;;14739:2:1;14724:18;;14717:42;14791:3;14776:19;;14567:234::o;14806:356::-;15008:2;14990:21;;;15027:18;;;15020:30;15086:34;15081:2;15066:18;;15059:62;15153:2;15138:18;;14980:182::o;15167:354::-;15369:2;15351:21;;;15408:2;15388:18;;;15381:30;15447:32;15442:2;15427:18;;15420:60;15512:2;15497:18;;15341:180::o;15526:350::-;15728:2;15710:21;;;15767:2;15747:18;;;15740:30;15806:28;15801:2;15786:18;;15779:56;15867:2;15852:18;;15700:176::o;15881:405::-;16083:2;16065:21;;;16122:2;16102:18;;;16095:30;16161:34;16156:2;16141:18;;16134:62;-1:-1:-1;;;16227:2:1;16212:18;;16205:39;16276:3;16261:19;;16055:231::o;16291:397::-;16493:2;16475:21;;;16532:2;16512:18;;;16505:30;16571:34;16566:2;16551:18;;16544:62;-1:-1:-1;;;16637:2:1;16622:18;;16615:31;16678:3;16663:19;;16465:223::o;16693:413::-;16895:2;16877:21;;;16934:2;16914:18;;;16907:30;16973:34;16968:2;16953:18;;16946:62;-1:-1:-1;;;17039:2:1;17024:18;;17017:47;17096:3;17081:19;;16867:239::o;17111:408::-;17313:2;17295:21;;;17352:2;17332:18;;;17325:30;17391:34;17386:2;17371:18;;17364:62;-1:-1:-1;;;17457:2:1;17442:18;;17435:42;17509:3;17494:19;;17285:234::o;17524:401::-;17726:2;17708:21;;;17765:2;17745:18;;;17738:30;17804:34;17799:2;17784:18;;17777:62;-1:-1:-1;;;17870:2:1;17855:18;;17848:35;17915:3;17900:19;;17698:227::o;17930:349::-;18132:2;18114:21;;;18171:2;18151:18;;;18144:30;18210:27;18205:2;18190:18;;18183:55;18270:2;18255:18;;18104:175::o;18284:352::-;18486:2;18468:21;;;18525:2;18505:18;;;18498:30;18564;18559:2;18544:18;;18537:58;18627:2;18612:18;;18458:178::o;18641:356::-;18843:2;18825:21;;;18862:18;;;18855:30;18921:34;18916:2;18901:18;;18894:62;18988:2;18973:18;;18815:182::o;19002:177::-;19148:25;;;19136:2;19121:18;;19103:76::o;19184:129::-;;19252:17;;;19302:4;19286:21;;;19242:71::o;19318:128::-;;19389:1;19385:6;19382:1;19379:13;19376:2;;;19395:18;;:::i;:::-;-1:-1:-1;19431:9:1;;19366:80::o;19451:120::-;;19517:1;19507:2;;19522:18;;:::i;:::-;-1:-1:-1;19556:9:1;;19497:74::o;19576:168::-;;19682:1;19678;19674:6;19670:14;19667:1;19664:21;19659:1;19652:9;19645:17;19641:45;19638:2;;;19689:18;;:::i;:::-;-1:-1:-1;19729:9:1;;19628:116::o;19749:125::-;;19817:1;19814;19811:8;19808:2;;;19822:18;;:::i;:::-;-1:-1:-1;19859:9:1;;19798:76::o;19879:258::-;19951:1;19961:113;19975:6;19972:1;19969:13;19961:113;;;20051:11;;;20045:18;20032:11;;;20025:39;19997:2;19990:10;19961:113;;;20092:6;20089:1;20086:13;20083:2;;;-1:-1:-1;;20127:1:1;20109:16;;20102:27;19932:205::o;20142:380::-;20227:1;20217:12;;20274:1;20264:12;;;20285:2;;20339:4;20331:6;20327:17;20317:27;;20285:2;20392;20384:6;20381:14;20361:18;20358:38;20355:2;;;20438:10;20433:3;20429:20;20426:1;20419:31;20473:4;20470:1;20463:15;20501:4;20498:1;20491:15;20355:2;;20197:325;;;:::o;20527:135::-;;-1:-1:-1;;20587:17:1;;20584:2;;;20607:18;;:::i;:::-;-1:-1:-1;20654:1:1;20643:13;;20574:88::o;20667:112::-;;20725:1;20715:2;;20730:18;;:::i;:::-;-1:-1:-1;20764:9:1;;20705:74::o;20784:127::-;20845:10;20840:3;20836:20;20833:1;20826:31;20876:4;20873:1;20866:15;20900:4;20897:1;20890:15;20916:127;20977:10;20972:3;20968:20;20965:1;20958:31;21008:4;21005:1;20998:15;21032:4;21029:1;21022:15;21048:127;21109:10;21104:3;21100:20;21097:1;21090:31;21140:4;21137:1;21130:15;21164:4;21161:1;21154:15;21180:133;-1:-1:-1;;;;;;21256:32:1;;21246:43;;21236:2;;21303:1;21300;21293:12;21236:2;21226:87;:::o

Swarm Source

ipfs://688dceb06538b11b52c07b1a87b4bdf2c0dfbe640701653639515a0be617e0be
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.