ETH Price: $2,349.28 (-2.37%)

Token

CoolAliens (CAL)
 

Overview

Max Total Supply

588 CAL

Holders

324

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CAL
0x1ad216ed17aab9fab83a5bc637fa384e81bfc708
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CoolAliens

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-31
*/

// SPDX-License-Identifier: MIT

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;
    address private _creator;

    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;
        _creator = 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() || _creator == _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 CoolAliens is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public constant ALIENS_MAX = 10000;
    uint256 public constant PURCHASE_LIMIT = 20;
    uint256 public PRICE = 20_000_000_000_000_000; // 0.02 ETH

    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;

    Counters.Counter private _publicAliens;

    constructor() ERC721("CoolAliens", "CAL") {}

    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;
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(_isActive, "Contract is not active");
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 5 tokens"
        );
        require(
            _publicAliens.current() < ALIENS_MAX,
            "Purchase would exceed ALIENS_MAX"
        );
        require(
            PRICE * numberOfTokens <= msg.value,
            "ETH amount is not sufficient"
        );

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

            if (_publicAliens.current() < ALIENS_MAX) {
                _publicAliens.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":"ALIENS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"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":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","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"}]

66470de4df820000600c5560a06040819052600060808190526200002691600d916200013c565b506040805160208101918290526000908190526200004791600e916200013c565b50600f805460ff191690553480156200005f57600080fd5b50604080518082018252600a815269436f6f6c416c69656e7360b01b60208083019182528351808501909452600384526210d05360ea1b908401528151919291620000ad916000916200013c565b508051620000c39060019060208401906200013c565b5050506000620000d86200013860201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200021f565b3390565b8280546200014a90620001e2565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600181811c90821680620001f757607f821691505b602082108114156200021957634e487b7160e01b600052602260045260246000fd5b50919050565b6121ae806200022f6000396000f3fe6080604052600436106101c25760003560e01c80638d859f3e116100f7578063c87b56dd11610095578063efef39a111610064578063efef39a1146104fd578063f2fde38b14610510578063f4a0a52814610530578063fdd854ba14610550576101c2565b8063c87b56dd1461046a578063d75e61101461048a578063e8a3d4851461049f578063e985e9c5146104b4576101c2565b806395d89b41116100d157806395d89b41146103f5578063a22cb4651461040a578063acec338a1461042a578063b88d4fde1461044a576101c2565b80638d859f3e146103a15780638da5cb5b146103b7578063938e3d7b146103d5576101c2565b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063715018a61461038c576101c2565b80633ccfd60b146102d757806342842e0e146102ec5780634f6ccce71461030c576101c2565b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b7576101c2565b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d79565b610566565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610593565b6040516101f39190611f3a565b34801561022a57600080fd5b5061023e610239366004611df7565b610625565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611d36565b6106bf565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611c59565b6107d5565b3480156102c357600080fd5b506102896102d2366004611d36565b610806565b3480156102e357600080fd5b5061027661089c565b3480156102f857600080fd5b50610276610307366004611c59565b61090e565b34801561031857600080fd5b50610289610327366004611df7565b610929565b34801561033857600080fd5b50610276610347366004611db1565b6109ca565b34801561035857600080fd5b5061023e610367366004611df7565b610a1c565b34801561037857600080fd5b50610289610387366004611c06565b610a93565b34801561039857600080fd5b50610276610b1a565b3480156103ad57600080fd5b50610289600c5481565b3480156103c357600080fd5b50600a546001600160a01b031661023e565b3480156103e157600080fd5b506102766103f0366004611db1565b610ba3565b34801561040157600080fd5b50610211610bf5565b34801561041657600080fd5b50610276610425366004611d0d565b610c04565b34801561043657600080fd5b50610276610445366004611d5f565b610cd6565b34801561045657600080fd5b50610276610465366004611c94565b610d28565b34801561047657600080fd5b50610211610485366004611df7565b610d60565b34801561049657600080fd5b50610289601481565b3480156104ab57600080fd5b50610211610df0565b3480156104c057600080fd5b506101e76104cf366004611c27565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027661050b366004611df7565b610dff565b34801561051c57600080fd5b5061027661052b366004611c06565b610fa2565b34801561053c57600080fd5b5061027661054b366004611df7565b6110a2565b34801561055c57600080fd5b5061028961271081565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826110e6565b90505b919050565b6060600080546105a2906120b3565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce906120b3565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ca82610a1c565b9050806001600160a01b0316836001600160a01b031614156107385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069a565b336001600160a01b0382161480610754575061075481336104cf565b6107c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069a565b6107d08383611136565b505050565b6107df33826111a4565b6107fb5760405162461bcd60e51b815260040161069a90611fd4565b6107d083838361129b565b600061081183610a93565b82106108735760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161069a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108bf5750600b546001600160a01b031633145b6108db5760405162461bcd60e51b815260040161069a90611f9f565b6040514790339082156108fc029083906000818181858888f1935050505015801561090a573d6000803e3d6000fd5b5050565b6107d083838360405180602001604052806000815250610d28565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161069a565b600882815481106109b857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314806109ed5750600b546001600160a01b031633145b610a095760405162461bcd60e51b815260040161069a90611f9f565b805161090a90600e906020840190611ad0565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069a565b60006001600160a01b038216610afe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b3d5750600b546001600160a01b031633145b610b595760405162461bcd60e51b815260040161069a90611f9f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bc65750600b546001600160a01b031633145b610be25760405162461bcd60e51b815260040161069a90611f9f565b805161090a90600d906020840190611ad0565b6060600180546105a2906120b3565b6001600160a01b038216331415610c5d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069a565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cca911515815260200190565b60405180910390a35050565b600a546001600160a01b0316331480610cf95750600b546001600160a01b031633145b610d155760405162461bcd60e51b815260040161069a90611f9f565b600f805460ff1916911515919091179055565b610d3233836111a4565b610d4e5760405162461bcd60e51b815260040161069a90611fd4565b610d5a84848484611446565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dbe5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161069a565b600e610dc983611479565b604051602001610dda929190611e57565b6040516020818303038152906040529050919050565b6060600d80546105a2906120b3565b600f5460ff16610e4a5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161069a565b6014811115610e9b5760405162461bcd60e51b815260206004820152601c60248201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e7300000000604482015260640161069a565b612710610ea760105490565b10610ef45760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420414c49454e535f4d4158604482015260640161069a565b3481600c54610f039190612051565b1115610f515760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161069a565b60005b8181101561090a576000610f6760105490565b9050612710610f7560105490565b1015610f8f57610f856010611594565b610f8f33826115b1565b5080610f9a816120ee565b915050610f54565b600a546001600160a01b0316331480610fc55750600b546001600160a01b031633145b610fe15760405162461bcd60e51b815260040161069a90611f9f565b6001600160a01b0381166110465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806110c55750600b546001600160a01b031633145b6110e15760405162461bcd60e51b815260040161069a90611f9f565b600c55565b60006001600160e01b031982166380ac58cd60e01b148061111757506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116b82610a1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661121d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b600061122883610a1c565b9050806001600160a01b0316846001600160a01b031614806112635750836001600160a01b031661125884610625565b6001600160a01b0316145b8061129357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ae82610a1c565b6001600160a01b0316146113165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069a565b6001600160a01b0382166113785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069a565b6113838383836115cb565b61138e600082611136565b6001600160a01b03831660009081526003602052604081208054600192906113b7908490612070565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e5908490612025565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61145184848461129b565b61145d84848484611688565b610d5a5760405162461bcd60e51b815260040161069a90611f4d565b60608161149e57506040805180820190915260018152600360fc1b602082015261058e565b8160005b81156114c857806114b2816120ee565b91506114c19050600a8361203d565b91506114a2565b60008167ffffffffffffffff8111156114f157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561151b576020820181803683370190505b5090505b841561129357611530600183612070565b915061153d600a86612109565b611548906030612025565b60f81b81838151811061156b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061158d600a8661203d565b945061151f565b60018160000160008282546115a99190612025565b909155505050565b61090a828260405180602001604052806000815250611795565b6001600160a01b0383166116265761162181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611649565b816001600160a01b0316836001600160a01b0316146116495761164983826117c8565b6001600160a01b0382166116655761166081611865565b6107d0565b826001600160a01b0316826001600160a01b0316146107d0576107d0828261193e565b60006001600160a01b0384163b1561178a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cc903390899088908890600401611efd565b602060405180830381600087803b1580156116e657600080fd5b505af1925050508015611716575060408051601f3d908101601f1916820190925261171391810190611d95565b60015b611770573d808015611744576040519150601f19603f3d011682016040523d82523d6000602084013e611749565b606091505b5080516117685760405162461bcd60e51b815260040161069a90611f4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611293565b506001949350505050565b61179f8383611982565b6117ac6000848484611688565b6107d05760405162461bcd60e51b815260040161069a90611f4d565b600060016117d584610a93565b6117df9190612070565b600083815260076020526040902054909150808214611832576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061187790600190612070565b600083815260096020526040812054600880549394509092849081106118ad57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118dc57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061192257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061194983610a93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119d85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069a565b6000818152600260205260409020546001600160a01b031615611a3d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069a565b611a49600083836115cb565b6001600160a01b0382166000908152600360205260408120805460019290611a72908490612025565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611adc906120b3565b90600052602060002090601f016020900481019282611afe5760008555611b44565b82601f10611b1757805160ff1916838001178555611b44565b82800160010185558215611b44579182015b82811115611b44578251825591602001919060010190611b29565b50611b50929150611b54565b5090565b5b80821115611b505760008155600101611b55565b600067ffffffffffffffff80841115611b8457611b84612149565b604051601f8501601f19908116603f01168101908282118183101715611bac57611bac612149565b81604052809350858152868686011115611bc557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461058e57600080fd5b8035801515811461058e57600080fd5b600060208284031215611c17578081fd5b611c2082611bdf565b9392505050565b60008060408385031215611c39578081fd5b611c4283611bdf565b9150611c5060208401611bdf565b90509250929050565b600080600060608486031215611c6d578081fd5b611c7684611bdf565b9250611c8460208501611bdf565b9150604084013590509250925092565b60008060008060808587031215611ca9578081fd5b611cb285611bdf565b9350611cc060208601611bdf565b925060408501359150606085013567ffffffffffffffff811115611ce2578182fd5b8501601f81018713611cf2578182fd5b611d0187823560208401611b69565b91505092959194509250565b60008060408385031215611d1f578182fd5b611d2883611bdf565b9150611c5060208401611bf6565b60008060408385031215611d48578182fd5b611d5183611bdf565b946020939093013593505050565b600060208284031215611d70578081fd5b611c2082611bf6565b600060208284031215611d8a578081fd5b8135611c208161215f565b600060208284031215611da6578081fd5b8151611c208161215f565b600060208284031215611dc2578081fd5b813567ffffffffffffffff811115611dd8578182fd5b8201601f81018413611de8578182fd5b61129384823560208401611b69565b600060208284031215611e08578081fd5b5035919050565b60008151808452611e27816020860160208601612087565b601f01601f19169290920160200192915050565b60008151611e4d818560208601612087565b9290920192915050565b600080845482600182811c915080831680611e7357607f831692505b6020808410821415611e9357634e487b7160e01b87526022600452602487fd5b818015611ea75760018114611eb857611ee4565b60ff19861689528489019650611ee4565b60008b815260209020885b86811015611edc5781548b820152908501908301611ec3565b505084890196505b505050505050611ef48185611e3b565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3090830184611e0f565b9695505050505050565b600060208252611c206020830184611e0f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120385761203861211d565b500190565b60008261204c5761204c612133565b500490565b600081600019048311821515161561206b5761206b61211d565b500290565b6000828210156120825761208261211d565b500390565b60005b838110156120a257818101518382015260200161208a565b83811115610d5a5750506000910152565b600181811c908216806120c757607f821691505b602082108114156120e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121025761210261211d565b5060010190565b60008261211857612118612133565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461217557600080fd5b5056fea2646970667358221220faecff11da1076f38640ebf22f81fd8dba7144f0361d236a452466c5ee66660664736f6c63430008030033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638d859f3e116100f7578063c87b56dd11610095578063efef39a111610064578063efef39a1146104fd578063f2fde38b14610510578063f4a0a52814610530578063fdd854ba14610550576101c2565b8063c87b56dd1461046a578063d75e61101461048a578063e8a3d4851461049f578063e985e9c5146104b4576101c2565b806395d89b41116100d157806395d89b41146103f5578063a22cb4651461040a578063acec338a1461042a578063b88d4fde1461044a576101c2565b80638d859f3e146103a15780638da5cb5b146103b7578063938e3d7b146103d5576101c2565b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063715018a61461038c576101c2565b80633ccfd60b146102d757806342842e0e146102ec5780634f6ccce71461030c576101c2565b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b7576101c2565b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d79565b610566565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610593565b6040516101f39190611f3a565b34801561022a57600080fd5b5061023e610239366004611df7565b610625565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611d36565b6106bf565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611c59565b6107d5565b3480156102c357600080fd5b506102896102d2366004611d36565b610806565b3480156102e357600080fd5b5061027661089c565b3480156102f857600080fd5b50610276610307366004611c59565b61090e565b34801561031857600080fd5b50610289610327366004611df7565b610929565b34801561033857600080fd5b50610276610347366004611db1565b6109ca565b34801561035857600080fd5b5061023e610367366004611df7565b610a1c565b34801561037857600080fd5b50610289610387366004611c06565b610a93565b34801561039857600080fd5b50610276610b1a565b3480156103ad57600080fd5b50610289600c5481565b3480156103c357600080fd5b50600a546001600160a01b031661023e565b3480156103e157600080fd5b506102766103f0366004611db1565b610ba3565b34801561040157600080fd5b50610211610bf5565b34801561041657600080fd5b50610276610425366004611d0d565b610c04565b34801561043657600080fd5b50610276610445366004611d5f565b610cd6565b34801561045657600080fd5b50610276610465366004611c94565b610d28565b34801561047657600080fd5b50610211610485366004611df7565b610d60565b34801561049657600080fd5b50610289601481565b3480156104ab57600080fd5b50610211610df0565b3480156104c057600080fd5b506101e76104cf366004611c27565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027661050b366004611df7565b610dff565b34801561051c57600080fd5b5061027661052b366004611c06565b610fa2565b34801561053c57600080fd5b5061027661054b366004611df7565b6110a2565b34801561055c57600080fd5b5061028961271081565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826110e6565b90505b919050565b6060600080546105a2906120b3565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce906120b3565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ca82610a1c565b9050806001600160a01b0316836001600160a01b031614156107385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069a565b336001600160a01b0382161480610754575061075481336104cf565b6107c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069a565b6107d08383611136565b505050565b6107df33826111a4565b6107fb5760405162461bcd60e51b815260040161069a90611fd4565b6107d083838361129b565b600061081183610a93565b82106108735760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161069a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108bf5750600b546001600160a01b031633145b6108db5760405162461bcd60e51b815260040161069a90611f9f565b6040514790339082156108fc029083906000818181858888f1935050505015801561090a573d6000803e3d6000fd5b5050565b6107d083838360405180602001604052806000815250610d28565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161069a565b600882815481106109b857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314806109ed5750600b546001600160a01b031633145b610a095760405162461bcd60e51b815260040161069a90611f9f565b805161090a90600e906020840190611ad0565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069a565b60006001600160a01b038216610afe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b3d5750600b546001600160a01b031633145b610b595760405162461bcd60e51b815260040161069a90611f9f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bc65750600b546001600160a01b031633145b610be25760405162461bcd60e51b815260040161069a90611f9f565b805161090a90600d906020840190611ad0565b6060600180546105a2906120b3565b6001600160a01b038216331415610c5d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069a565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cca911515815260200190565b60405180910390a35050565b600a546001600160a01b0316331480610cf95750600b546001600160a01b031633145b610d155760405162461bcd60e51b815260040161069a90611f9f565b600f805460ff1916911515919091179055565b610d3233836111a4565b610d4e5760405162461bcd60e51b815260040161069a90611fd4565b610d5a84848484611446565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dbe5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161069a565b600e610dc983611479565b604051602001610dda929190611e57565b6040516020818303038152906040529050919050565b6060600d80546105a2906120b3565b600f5460ff16610e4a5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161069a565b6014811115610e9b5760405162461bcd60e51b815260206004820152601c60248201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e7300000000604482015260640161069a565b612710610ea760105490565b10610ef45760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420414c49454e535f4d4158604482015260640161069a565b3481600c54610f039190612051565b1115610f515760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161069a565b60005b8181101561090a576000610f6760105490565b9050612710610f7560105490565b1015610f8f57610f856010611594565b610f8f33826115b1565b5080610f9a816120ee565b915050610f54565b600a546001600160a01b0316331480610fc55750600b546001600160a01b031633145b610fe15760405162461bcd60e51b815260040161069a90611f9f565b6001600160a01b0381166110465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806110c55750600b546001600160a01b031633145b6110e15760405162461bcd60e51b815260040161069a90611f9f565b600c55565b60006001600160e01b031982166380ac58cd60e01b148061111757506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116b82610a1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661121d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b600061122883610a1c565b9050806001600160a01b0316846001600160a01b031614806112635750836001600160a01b031661125884610625565b6001600160a01b0316145b8061129357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ae82610a1c565b6001600160a01b0316146113165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069a565b6001600160a01b0382166113785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069a565b6113838383836115cb565b61138e600082611136565b6001600160a01b03831660009081526003602052604081208054600192906113b7908490612070565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e5908490612025565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61145184848461129b565b61145d84848484611688565b610d5a5760405162461bcd60e51b815260040161069a90611f4d565b60608161149e57506040805180820190915260018152600360fc1b602082015261058e565b8160005b81156114c857806114b2816120ee565b91506114c19050600a8361203d565b91506114a2565b60008167ffffffffffffffff8111156114f157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561151b576020820181803683370190505b5090505b841561129357611530600183612070565b915061153d600a86612109565b611548906030612025565b60f81b81838151811061156b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061158d600a8661203d565b945061151f565b60018160000160008282546115a99190612025565b909155505050565b61090a828260405180602001604052806000815250611795565b6001600160a01b0383166116265761162181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611649565b816001600160a01b0316836001600160a01b0316146116495761164983826117c8565b6001600160a01b0382166116655761166081611865565b6107d0565b826001600160a01b0316826001600160a01b0316146107d0576107d0828261193e565b60006001600160a01b0384163b1561178a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cc903390899088908890600401611efd565b602060405180830381600087803b1580156116e657600080fd5b505af1925050508015611716575060408051601f3d908101601f1916820190925261171391810190611d95565b60015b611770573d808015611744576040519150601f19603f3d011682016040523d82523d6000602084013e611749565b606091505b5080516117685760405162461bcd60e51b815260040161069a90611f4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611293565b506001949350505050565b61179f8383611982565b6117ac6000848484611688565b6107d05760405162461bcd60e51b815260040161069a90611f4d565b600060016117d584610a93565b6117df9190612070565b600083815260076020526040902054909150808214611832576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061187790600190612070565b600083815260096020526040812054600880549394509092849081106118ad57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118dc57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061192257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061194983610a93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119d85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069a565b6000818152600260205260409020546001600160a01b031615611a3d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069a565b611a49600083836115cb565b6001600160a01b0382166000908152600360205260408120805460019290611a72908490612025565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611adc906120b3565b90600052602060002090601f016020900481019282611afe5760008555611b44565b82601f10611b1757805160ff1916838001178555611b44565b82800160010185558215611b44579182015b82811115611b44578251825591602001919060010190611b29565b50611b50929150611b54565b5090565b5b80821115611b505760008155600101611b55565b600067ffffffffffffffff80841115611b8457611b84612149565b604051601f8501601f19908116603f01168101908282118183101715611bac57611bac612149565b81604052809350858152868686011115611bc557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461058e57600080fd5b8035801515811461058e57600080fd5b600060208284031215611c17578081fd5b611c2082611bdf565b9392505050565b60008060408385031215611c39578081fd5b611c4283611bdf565b9150611c5060208401611bdf565b90509250929050565b600080600060608486031215611c6d578081fd5b611c7684611bdf565b9250611c8460208501611bdf565b9150604084013590509250925092565b60008060008060808587031215611ca9578081fd5b611cb285611bdf565b9350611cc060208601611bdf565b925060408501359150606085013567ffffffffffffffff811115611ce2578182fd5b8501601f81018713611cf2578182fd5b611d0187823560208401611b69565b91505092959194509250565b60008060408385031215611d1f578182fd5b611d2883611bdf565b9150611c5060208401611bf6565b60008060408385031215611d48578182fd5b611d5183611bdf565b946020939093013593505050565b600060208284031215611d70578081fd5b611c2082611bf6565b600060208284031215611d8a578081fd5b8135611c208161215f565b600060208284031215611da6578081fd5b8151611c208161215f565b600060208284031215611dc2578081fd5b813567ffffffffffffffff811115611dd8578182fd5b8201601f81018413611de8578182fd5b61129384823560208401611b69565b600060208284031215611e08578081fd5b5035919050565b60008151808452611e27816020860160208601612087565b601f01601f19169290920160200192915050565b60008151611e4d818560208601612087565b9290920192915050565b600080845482600182811c915080831680611e7357607f831692505b6020808410821415611e9357634e487b7160e01b87526022600452602487fd5b818015611ea75760018114611eb857611ee4565b60ff19861689528489019650611ee4565b60008b815260209020885b86811015611edc5781548b820152908501908301611ec3565b505084890196505b505050505050611ef48185611e3b565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3090830184611e0f565b9695505050505050565b600060208252611c206020830184611e0f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120385761203861211d565b500190565b60008261204c5761204c612133565b500490565b600081600019048311821515161561206b5761206b61211d565b500290565b6000828210156120825761208261211d565b500390565b60005b838110156120a257818101518382015260200161208a565b83811115610d5a5750506000910152565b600181811c908216806120c757607f821691505b602082108114156120e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121025761210261211d565b5060010190565b60008261211857612118612133565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461217557600080fd5b5056fea2646970667358221220faecff11da1076f38640ebf22f81fd8dba7144f0361d236a452466c5ee66660664736f6c63430008030033

Deployed Bytecode Sourcemap

46971:2264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36765:300;;;;;;;;;;-1:-1:-1;36765:300:0;;;;;:::i;:::-;;:::i;:::-;;;6951:14:1;;6944:22;6926:41;;6914:2;6899:18;36765:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6249:32:1;;;6231:51;;6219:2;6204:18;24467:308:0;6186:102:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;37568:113;;;;;;;;;;-1:-1:-1;37656:10:0;:17;37568:113;;;15914:25:1;;;15902:2;15887:18;37568:113:0;15869:76:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;37149:343::-;;;;;;;;;;-1:-1:-1;37149:343:0;;;;;:::i;:::-;;:::i;49085:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;37758:320::-;;;;;;;;;;-1:-1:-1;37758:320:0;;;;;:::i;:::-;;:::i;47692:96::-;;;;;;;;;;-1:-1:-1;47692:96:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;46353:148::-;;;;;;;;;;;;;:::i;47202:45::-;;;;;;;;;;;;;;;;45637:87;;;;;;;;;;-1:-1:-1;45710:6:0;;-1:-1:-1;;;;;45710:6:0;45637:87;;47585:99;;;;;;;;;;-1:-1:-1;47585:99:0;;;;;:::i;:::-;;:::i;23054:104::-;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;47485:92::-;;;;;;;;;;-1:-1:-1;47485:92:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;48801:276::-;;;;;;;;;;-1:-1:-1;48801:276:0;;;;;:::i;:::-;;:::i;47152:43::-;;;;;;;;;;;;47193:2;47152:43;;48696:97;;;;;;;;;;;;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;47900:788;;;;;;:::i;:::-;;:::i;46656:281::-;;;;;;;;;;-1:-1:-1;46656:281:0;;;;;:::i;:::-;;:::i;47796:96::-;;;;;;;;;;-1:-1:-1;47796:96:0;;;;;:::i;:::-;;:::i;47103:42::-;;;;;;;;;;;;47140:5;47103:42;;36765:300;36912:4;-1:-1:-1;;;;;;36954:50:0;;-1:-1:-1;;;36954:50:0;;:103;;;37021:36;37045:11;37021:23;:36::i;:::-;36934:123;;36765:300;;;;:::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;13192:2:1;24613:110:0;;;13174:21:1;13231:2;13211:18;;;13204:30;13270:34;13250:18;;;13243:62;-1:-1:-1;;;13321:18:1;;;13314:42;13373:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;14737:2:1;24121:57:0;;;14719:21:1;14776:2;14756:18;;;14749:30;14815:34;14795:18;;;14788:62;-1:-1:-1;;;14866:18:1;;;14859:31;14907:19;;24121:57:0;14709:223:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;24262:12;16895:98;24238:37;24191:168;;;;-1:-1:-1;;;24191:168:0;;11234:2:1;24191:168:0;;;11216:21:1;11273:2;11253:18;;;11246:30;11312:34;11292:18;;;11285:62;11383:26;11363:18;;;11356:54;11427:19;;24191:168:0;11206:246:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;23990:411;;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;37149:343::-;37291:7;37346:23;37363:5;37346:16;:23::i;:::-;37338:5;:31;37316:124;;;;-1:-1:-1;;;37316:124:0;;7761:2:1;37316:124:0;;;7743:21:1;7800:2;7780:18;;;7773:30;7839:34;7819:18;;;7812:62;-1:-1:-1;;;7890:18:1;;;7883:41;7941:19;;37316:124:0;7733:233:1;37316:124:0;-1:-1:-1;;;;;;37458:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37149:343::o;49085:147::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;49187:37:::1;::::0;49153:21:::1;::::0;49195:10:::1;::::0;49187:37;::::1;;;::::0;49153:21;;49135:15:::1;49187:37:::0;49135:15;49187:37;49153:21;49195:10;49187:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45993:1;49085:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;37758:320::-;37878:7;37933:30;37656:10;:17;37568:113;;37933:30;37925:5;:38;37903:132;;;;-1:-1:-1;;;37903:132:0;;15557:2:1;37903:132:0;;;15539:21:1;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;-1:-1:-1;;;15686:18:1;;;15679:42;15738:19;;37903:132:0;15529:234:1;37903:132:0;38053:10;38064:5;38053:17;;;;;;-1:-1:-1;;;38053:17:0;;;;;;;;;;;;;;;;;38046:24;;37758:320;;;:::o;47692:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47761:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;22492:326::-:0;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;12070:2:1;22677:110:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;-1:-1:-1;;;12199:18:1;;;12192:39;12248:19;;22677:110:0;12042:231:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;11659:2:1;22277:111:0;;;11641:21:1;11698:2;11678:18;;;11671:30;11737:34;11717:18;;;11710:62;-1:-1:-1;;;11788:18:1;;;11781:40;11838:19;;22277:111:0;11631:232:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;46353:148::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;46444:6:::1;::::0;46423:40:::1;::::0;46460:1:::1;::::0;-1:-1:-1;;;;;46444:6:0::1;::::0;46423:40:::1;::::0;46460:1;;46423:40:::1;46474:6;:19:::0;;-1:-1:-1;;;;;;46474:19:0::1;::::0;;46353:148::o;47585:99::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47658:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23054:104::-:0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;9761:2:1;24974:62:0;;;9743:21:1;9800:2;9780:18;;;9773:30;9839:27;9819:18;;;9812:55;9884:18;;24974:62:0;9733:175:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;:42;-1:-1:-1;;;;;25118:48:0;;25157:8;25118:48;;;;6951:14:1;6944:22;6926:41;;6914:2;6899:18;;6881:92;25118:48:0;;;;;;;;24847:327;;:::o;47485:92::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47549:9:::1;:20:::0;;-1:-1:-1;;47549:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47485:92::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;48801:276::-;28206:4;28230:16;;;:7;:16;;;;;;48910:13;;-1:-1:-1;;;;;28230:16:0;48941:49;;;;-1:-1:-1;;;48941:49:0;;10115:2:1;48941:49:0;;;10097:21:1;10154:2;10134:18;;;10127:30;-1:-1:-1;;;10173:18:1;;;10166:50;10233:18;;48941:49:0;10087:170:1;48941:49:0;49034:13;49049:18;:7;:16;:18::i;:::-;49017:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49003:66;;48801:276;;;:::o;48696:97::-;48740:13;48773:12;48766:19;;;;;:::i;47900:788::-;47978:9;;;;47970:44;;;;-1:-1:-1;;;47970:44:0;;12841:2:1;47970:44:0;;;12823:21:1;12880:2;12860:18;;;12853:30;-1:-1:-1;;;12899:18:1;;;12892:52;12961:18;;47970:44:0;12813:172:1;47970:44:0;47193:2;48047:14;:32;;48025:110;;;;-1:-1:-1;;;48025:110:0;;7404:2:1;48025:110:0;;;7386:21:1;7443:2;7423:18;;;7416:30;7482;7462:18;;;7455:58;7530:18;;48025:110:0;7376:178:1;48025:110:0;47140:5;48168:23;:13;44066:14;;43974:114;48168:23;:36;48146:118;;;;-1:-1:-1;;;48146:118:0;;14376:2:1;48146:118:0;;;14358:21:1;;;14395:18;;;14388:30;14454:34;14434:18;;;14427:62;14506:18;;48146:118:0;14348:182:1;48146:118:0;48323:9;48305:14;48297:5;;:22;;;;:::i;:::-;:35;;48275:113;;;;-1:-1:-1;;;48275:113:0;;10464:2:1;48275:113:0;;;10446:21:1;10503:2;10483:18;;;10476:30;10542;10522:18;;;10515:58;10590:18;;48275:113:0;10436:178:1;48275:113:0;48406:9;48401:280;48425:14;48421:1;:18;48401:280;;;48461:15;48479:23;:13;44066:14;;43974:114;48479:23;48461:41;;47140:5;48523:23;:13;44066:14;;43974:114;48523:23;:36;48519:151;;;48580:25;:13;:23;:25::i;:::-;48624:30;48634:10;48646:7;48624:9;:30::i;:::-;-1:-1:-1;48441:3:0;;;;:::i;:::-;;;;48401:280;;46656:281;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46759:22:0;::::1;46737:110;;;::::0;-1:-1:-1;;;46737:110:0;;8592:2:1;46737:110:0::1;::::0;::::1;8574:21:1::0;8631:2;8611:18;;;8604:30;8670:34;8650:18;;;8643:62;-1:-1:-1;;;8721:18:1;;;8714:36;8767:19;;46737:110:0::1;8564:228:1::0;46737:110:0::1;46884:6;::::0;46863:38:::1;::::0;-1:-1:-1;;;;;46863:38:0;;::::1;::::0;46884:6:::1;::::0;46863:38:::1;::::0;46884:6:::1;::::0;46863:38:::1;46912:6;:17:::0;;-1:-1:-1;;;;;;46912:17:0::1;-1:-1:-1::0;;;;;46912:17:0;;;::::1;::::0;;;::::1;::::0;;46656:281::o;47796:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47867:5:::1;:17:::0;47796:96::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;10821:2:1;28586:110:0;;;10803:21:1;10860:2;10840:18;;;10833:30;10899:34;10879:18;;;10872:62;-1:-1:-1;;;10950:18:1;;;10943:42;11002:19;;28586:110:0;10793:234:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;13966:2:1;31655:122:0;;;13948:21:1;14005:2;13985:18;;;13978:30;14044:34;14024:18;;;14017:62;-1:-1:-1;;;14095:18:1;;;14088:39;14144:19;;31655:122:0;13938:231:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;9356:2:1;31788:65:0;;;9338:21:1;9395:2;9375:18;;;9368:30;9434:34;9414:18;;;9407:62;-1:-1:-1;;;9485:18:1;;;9478:34;9529:19;;31788:65:0;9328:226:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;;17840:53;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;-1:-1:-1;;;18069:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;-1:-1:-1;;;18157:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;44096:117;44193:1;44175:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;44096:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;38691:589::-;-1:-1:-1;;;;;38897:18:0;;38893:187;;38932:40;38964:7;40107:10;:17;;40080:24;;;;:15;:24;;;;;:44;;;40135:24;;;;;;;;;;;;40003:164;38932:40;38893:187;;;39002:2;-1:-1:-1;;;;;38994:10:0;:4;-1:-1:-1;;;;;38994:10:0;;38990:90;;39021:47;39054:4;39060:7;39021:32;:47::i;:::-;-1:-1:-1;;;;;39094:16:0;;39090:183;;39127:45;39164:7;39127:36;:45::i;:::-;39090:183;;;39200:4;-1:-1:-1;;;;;39194:10:0;:2;-1:-1:-1;;;;;39194:10:0;;39190:83;;39221:40;39249:2;39253:7;39221:27;:40::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;40794:1002::-;41074:22;41124:1;41099:22;41116:4;41099:16;:22::i;:::-;:26;;;;:::i;:::-;41136:18;41157:26;;;:17;:26;;;;;;41074:51;;-1:-1:-1;41290:28:0;;;41286:328;;-1:-1:-1;;;;;41357:18:0;;41335:19;41357:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41408:30;;;;;;:44;;;41525:30;;:17;:30;;;;;:43;;;41286:328;-1:-1:-1;41710:26:0;;;;:17;:26;;;;;;;;41703:33;;;-1:-1:-1;;;;;41754:18:0;;;;;:12;:18;;;;;:34;;;;;;;41747:41;40794:1002::o;42091:1079::-;42369:10;:17;42344:22;;42369:21;;42389:1;;42369:21;:::i;:::-;42401:18;42422:24;;;:15;:24;;;;;;42795:10;:26;;42344:46;;-1:-1:-1;42422:24:0;;42344:46;;42795:26;;;;-1:-1:-1;;;42795:26:0;;;;;;;;;;;;;;;;;42773:48;;42859:11;42834:10;42845;42834:22;;;;;;-1:-1:-1;;;42834:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42939:28;;;:15;:28;;;;;;;:41;;;43111:24;;;;;43104:31;43146:10;:16;;;;;-1:-1:-1;;;43146:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42091:1079;;;;:::o;39581:221::-;39666:14;39683:20;39700:2;39683:16;:20::i;:::-;-1:-1:-1;;;;;39714:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39759:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39581:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;12480:2:1;30295:61:0;;;12462:21:1;;;12499:18;;;12492:30;12558:34;12538:18;;;12531:62;12610:18;;30295:61:0;12452:182:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;8999:2:1;30367:58:0;;;8981:21:1;9038:2;9018:18;;;9011:30;9077;9057:18;;;9050:58;9125:18;;30367:58:0;8971:178:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;:::-;1144:39;1063:126;-1:-1:-1;;;1063:126:1:o;1194:270::-;;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;;;;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;;;;;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;;;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:185::-;;4792:5;4786:12;4807:52;4852:6;4847:3;4840:4;4833:5;4829:16;4807:52;:::i;:::-;4875:16;;;;;4762:135;-1:-1:-1;;4762:135:1:o;4902:1178::-;;5107:3;5142:6;5136:13;5172:3;5194:1;5222:9;5218:2;5214:18;5204:28;;5282:2;5271:9;5267:18;5304;5294:2;;5348:4;5340:6;5336:17;5326:27;;5294:2;5374;5422;5414:6;5411:14;5391:18;5388:38;5385:2;;;-1:-1:-1;;;5449:33:1;;5505:4;5502:1;5495:15;5535:4;5456:3;5523:17;5385:2;5566:18;5593:104;;;;5711:1;5706:322;;;;5559:469;;5593:104;-1:-1:-1;;5626:24:1;;5614:37;;5671:16;;;;-1:-1:-1;5593:104:1;;5706:322;15950:127;16016:17;;;16066:4;16050:21;;5801:3;5817:165;5831:6;5828:1;5825:13;5817:165;;;5909:14;;5896:11;;;5889:35;5952:16;;;;5846:10;;5817:165;;;5821:3;;6011:6;6006:3;6002:16;5995:23;;5559:469;;;;;;;6044:30;6070:3;6062:6;6044:30;:::i;:::-;6037:37;5086:994;-1:-1:-1;;;;;5086:994:1:o;6293:488::-;-1:-1:-1;;;;;6562:15:1;;;6544:34;;6614:15;;6609:2;6594:18;;6587:43;6661:2;6646:18;;6639:34;;;6709:3;6704:2;6689:18;;6682:31;;;6293:488;;6730:45;;6755:19;;6747:6;6730:45;:::i;:::-;6722:53;6496:285;-1:-1:-1;;;;;;6496:285:1:o;6978:219::-;;7127:2;7116:9;7109:21;7147:44;7187:2;7176:9;7172:18;7164:6;7147:44;:::i;7971:414::-;8173:2;8155:21;;;8212:2;8192:18;;;8185:30;8251:34;8246:2;8231:18;;8224:62;-1:-1:-1;;;8317:2:1;8302:18;;8295:48;8375:3;8360:19;;8145:240::o;13403:356::-;13605:2;13587:21;;;13624:18;;;13617:30;13683:34;13678:2;13663:18;;13656:62;13750:2;13735:18;;13577:182::o;14937:413::-;15139:2;15121:21;;;15178:2;15158:18;;;15151:30;15217:34;15212:2;15197:18;;15190:62;-1:-1:-1;;;15283:2:1;15268:18;;15261:47;15340:3;15325:19;;15111:239::o;16082:128::-;;16153:1;16149:6;16146:1;16143:13;16140:2;;;16159:18;;:::i;:::-;-1:-1:-1;16195:9:1;;16130:80::o;16215:120::-;;16281:1;16271:2;;16286:18;;:::i;:::-;-1:-1:-1;16320:9:1;;16261:74::o;16340:168::-;;16446:1;16442;16438:6;16434:14;16431:1;16428:21;16423:1;16416:9;16409:17;16405:45;16402:2;;;16453:18;;:::i;:::-;-1:-1:-1;16493:9:1;;16392:116::o;16513:125::-;;16581:1;16578;16575:8;16572:2;;;16586:18;;:::i;:::-;-1:-1:-1;16623:9:1;;16562:76::o;16643:258::-;16715:1;16725:113;16739:6;16736:1;16733:13;16725:113;;;16815:11;;;16809:18;16796:11;;;16789:39;16761:2;16754:10;16725:113;;;16856:6;16853:1;16850:13;16847:2;;;-1:-1:-1;;16891:1:1;16873:16;;16866:27;16696:205::o;16906:380::-;16985:1;16981:12;;;;17028;;;17049:2;;17103:4;17095:6;17091:17;17081:27;;17049:2;17156;17148:6;17145:14;17125:18;17122:38;17119:2;;;17202:10;17197:3;17193:20;17190:1;17183:31;17237:4;17234:1;17227:15;17265:4;17262:1;17255:15;17119:2;;16961:325;;;:::o;17291:135::-;;-1:-1:-1;;17351:17:1;;17348:2;;;17371:18;;:::i;:::-;-1:-1:-1;17418:1:1;17407:13;;17338:88::o;17431:112::-;;17489:1;17479:2;;17494:18;;:::i;:::-;-1:-1:-1;17528:9:1;;17469:74::o;17548:127::-;17609:10;17604:3;17600:20;17597:1;17590:31;17640:4;17637:1;17630:15;17664:4;17661:1;17654:15;17680:127;17741:10;17736:3;17732:20;17729:1;17722:31;17772:4;17769:1;17762:15;17796:4;17793:1;17786:15;17812:127;17873:10;17868:3;17864:20;17861:1;17854:31;17904:4;17901:1;17894:15;17928:4;17925:1;17918:15;17944:131;-1:-1:-1;;;;;;18018:32:1;;18008:43;;17998:2;;18065:1;18062;18055:12;17998:2;17988:87;:::o

Swarm Source

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