ETH Price: $3,363.16 (-1.57%)
Gas: 7 Gwei

Token

ALIENFRENS (ALIENFRENS)
 

Overview

Max Total Supply

10,000 ALIENFRENS

Holders

6,023

Market

Volume (24H)

0.0743 ETH

Min Price (24H)

$73.31 @ 0.021799 ETH

Max Price (24H)

$176.57 @ 0.052500 ETH
Balance
1 ALIENFRENS
0xACdb8af8d64852cadd4E128327BcbD3DC92AFCcB
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Alien Frens is a community driven collection of 10k randomly generated NFTs on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ALIENFRENS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-16
*/

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


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File: 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-ALIENFRENSble 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-ALIENFRENSble 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-ALIENFRENSble Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

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

    uint256 public constant ALIENFRENS_PUBLIC = 10000;
    uint256 public constant ALIENFRENS_MAX = ALIENFRENS_PUBLIC;
    uint256 public constant PURCHASE_LIMIT = 10;
    uint256 public constant PRICE = 20_000_000_000_000_000; // 0.02 ETH
    uint256 public allowListMaxMint = 10;
    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;
    bool public isAllowListActive = false;
    
    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    Counters.Counter private _publicALIENFRENS;

    constructor() ERC721("ALIENFRENS", "ALIENFRENS") {

    }

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

    // owner minting
    function ownerMinting(address to, uint256 numberOfTokens)
        external
        payable
        onlyOwner
    {
        require(
            _publicALIENFRENS.current() < ALIENFRENS_PUBLIC,
            "Purchase would exceed ALIENFRENS_PUBLIC"
        );

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

            if (_publicALIENFRENS.current() < ALIENFRENS_PUBLIC) {
                _publicALIENFRENS.increment();
                _safeMint(to, tokenId);
            }
        }
    }

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

            if (_publicALIENFRENS.current() < ALIENFRENS_PUBLIC) {
                _publicALIENFRENS.increment();
                _allowListClaimed[msg.sender] += 1;
                _safeMint(msg.sender, tokenId);
            }
        }
        
      }

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

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

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

600a600c5560a06040819052600060808190526200002091600d9162000128565b506040805160208101918290526000908190526200004191600e9162000128565b50600f805461ffff191690553480156200005a57600080fd5b50604080518082018252600a80825269414c49454e4652454e5360b01b602080840182815285518087019096529285528401528151919291620000a09160009162000128565b508051620000b690600190602084019062000128565b5050506000620000cb6200012460201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b556200020b565b3390565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600281046001821680620001e357607f821691505b602082108114156200020557634e487b7160e01b600052602260045260246000fd5b50919050565b612d4b806200021b6000396000f3fe60806040526004361061022f5760003560e01c80637a6685f11161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b14610668578063f68a7580146105505761022f565b8063b88d4fde146105a5578063c87b56dd146105c5578063d75e6110146105e5578063e54ee8d8146105fa578063e8a3d4851461060d5761022f565b806395d89b41116100f257806395d89b411461051b578063a22cb46514610530578063a3f7006514610550578063a51312c814610565578063acec338a146105855761022f565b80637a6685f11461049c5780637f44ab2f146104bc5780638d859f3e146104d15780638da5cb5b146104e6578063938e3d7b146104fb5761022f565b80633a065892116101bc5780636352211e116101805780636352211e1461040757806370a0823114610427578063715018a614610447578063718bc4af1461045c5780637263cfe21461047c5761022f565b80633a065892146103725780633ccfd60b1461039257806342842e0e146103a75780634f6ccce7146103c757806355f804b3146103e75761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd1461030857806323b872dd1461031d57806329fc6bae1461033d5780632f745c59146103525761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f36600461202a565b610688565b6040516102619190612bad565b60405180910390f35b34801561027657600080fd5b5061028a61028536600461220c565b6106d9565b60405161026191906123e1565b3480156102a357600080fd5b506102ac610704565b60405161026191906123ec565b3480156102c557600080fd5b506102d96102d436600461228a565b610796565b6040516102619190612390565b3480156102f257600080fd5b5061030661030136600461215a565b6107d9565b005b34801561031457600080fd5b50610254610871565b34801561032957600080fd5b5061030661033836600461207d565b610877565b34801561034957600080fd5b5061028a6108af565b34801561035e57600080fd5b5061025461036d36600461215a565b6108bd565b34801561037e57600080fd5b5061028a61038d36600461202a565b61090f565b34801561039e57600080fd5b5061030661092d565b3480156103b357600080fd5b506103066103c236600461207d565b61099f565b3480156103d357600080fd5b506102546103e236600461228a565b6109ba565b3480156103f357600080fd5b50610306610402366004612244565b610a15565b34801561041357600080fd5b506102d961042236600461228a565b610a67565b34801561043357600080fd5b5061025461044236600461202a565b610a9c565b34801561045357600080fd5b50610306610ae0565b34801561046857600080fd5b506103066104773660046121f2565b610b69565b34801561048857600080fd5b50610306610497366004612183565b610bc2565b3480156104a857600080fd5b506103066104b736600461228a565b610da3565b3480156104c857600080fd5b50610254610de7565b3480156104dd57600080fd5b50610254610ded565b3480156104f257600080fd5b506102d9610df8565b34801561050757600080fd5b50610306610516366004612244565b610e07565b34801561052757600080fd5b506102ac610e59565b34801561053c57600080fd5b5061030661054b366004612131565b610e68565b34801561055c57600080fd5b50610254610f36565b34801561057157600080fd5b50610306610580366004612183565b610f3c565b34801561059157600080fd5b506103066105a03660046121f2565b611059565b3480156105b157600080fd5b506103066105c03660046120b8565b6110ab565b3480156105d157600080fd5b506102ac6105e036600461228a565b6110ea565b3480156105f157600080fd5b50610254611143565b61030661060836600461215a565b611148565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d36600461204b565b611213565b61030661065036600461228a565b611241565b61030661066336600461228a565b611362565b34801561067457600080fd5b5061030661068336600461202a565b61155c565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b090612889565b60405180910390fd5b506001600160a01b0381166000908152601160205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe8261161d565b92915050565b60606000805461071390612c50565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612c50565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a18261165d565b6107bd5760405162461bcd60e51b81526004016106b090612808565b506000908152600460205260409020546001600160a01b031690565b60006107e482610a67565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b090612940565b806001600160a01b031661082a61167a565b6001600160a01b0316148061084657506108468161063d61167a565b6108625760405162461bcd60e51b81526004016106b0906126b3565b61086c838361167e565b505050565b60085490565b61088861088261167a565b826116ec565b6108a45760405162461bcd60e51b81526004016106b0906129b8565b61086c838383611771565b600f54610100900460ff1681565b60006108c883610a9c565b82106108e65760405162461bcd60e51b81526004016106b09061246d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b031660009081526010602052604090205460ff1690565b61093561167a565b6001600160a01b0316610946610df8565b6001600160a01b03161461096c5760405162461bcd60e51b81526004016106b090612854565b6040514790339082156108fc029083906000818181858888f1935050505015801561099b573d6000803e3d6000fd5b5050565b61086c838383604051806020016040528060008152506110ab565b60006109c4610871565b82106109e25760405162461bcd60e51b81526004016106b090612a50565b60088281548110610a0357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a1d61167a565b6001600160a01b0316610a2e610df8565b6001600160a01b031614610a545760405162461bcd60e51b81526004016106b090612854565b805161099b90600e906020840190611efa565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b09061275a565b60006001600160a01b038216610ac45760405162461bcd60e51b81526004016106b090612710565b506001600160a01b031660009081526003602052604090205490565b610ae861167a565b6001600160a01b0316610af9610df8565b6001600160a01b031614610b1f5760405162461bcd60e51b81526004016106b090612854565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610b7161167a565b6001600160a01b0316610b82610df8565b6001600160a01b031614610ba85760405162461bcd60e51b81526004016106b090612854565b600f80549115156101000261ff0019909216919091179055565b610bca61167a565b6001600160a01b0316610bdb610df8565b6001600160a01b031614610c015760405162461bcd60e51b81526004016106b090612854565b60005b8181101561086c576000838383818110610c2e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c43919061202a565b6001600160a01b03161415610c6a5760405162461bcd60e51b81526004016106b0906128c0565b600160106000858585818110610c9057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ca5919061202a565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601181858585818110610cf357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d08919061202a565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610d35576000610d90565b60116000848484818110610d5957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d6e919061202a565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610d9b81612c8b565b915050610c04565b610dab61167a565b6001600160a01b0316610dbc610df8565b6001600160a01b031614610de25760405162461bcd60e51b81526004016106b090612854565b600c55565b600c5481565b66470de4df82000081565b600a546001600160a01b031690565b610e0f61167a565b6001600160a01b0316610e20610df8565b6001600160a01b031614610e465760405162461bcd60e51b81526004016106b090612854565b805161099b90600d906020840190611efa565b60606001805461071390612c50565b610e7061167a565b6001600160a01b0316826001600160a01b03161415610ea15760405162461bcd60e51b81526004016106b0906125cb565b8060056000610eae61167a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ef261167a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2a91906123e1565b60405180910390a35050565b61271081565b610f4461167a565b6001600160a01b0316610f55610df8565b6001600160a01b031614610f7b5760405162461bcd60e51b81526004016106b090612854565b60005b8181101561086c576000838383818110610fa857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fbd919061202a565b6001600160a01b03161415610fe45760405162461bcd60e51b81526004016106b0906128c0565b60006010600085858581811061100a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061101f919061202a565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061105181612c8b565b915050610f7e565b61106161167a565b6001600160a01b0316611072610df8565b6001600160a01b0316146110985760405162461bcd60e51b81526004016106b090612854565b600f805460ff1916911515919091179055565b6110bc6110b661167a565b836116ec565b6110d85760405162461bcd60e51b81526004016106b0906129b8565b6110e48484848461189e565b50505050565b60606110f58261165d565b6111115760405162461bcd60e51b81526004016106b090612602565b600e61111c836118d1565b60405160200161112d9291906122ea565b6040516020818303038152906040529050919050565b600a81565b61115061167a565b6001600160a01b0316611161610df8565b6001600160a01b0316146111875760405162461bcd60e51b81526004016106b090612854565b61271061119460126119ec565b106111b15760405162461bcd60e51b81526004016106b090612a09565b60005b8181101561086c5760006111c860126119ec565b90506127106111d760126119ec565b10156111f1576111e760126119f0565b6111f18482611a0d565b50806111fc81612c8b565b9150506111b4565b6060600d805461071390612c50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6002600b5414156112645760405162461bcd60e51b81526004016106b090612b0a565b6002600b55600f5460ff1661128b5760405162461bcd60e51b81526004016106b0906127d8565b600a8111156112ac5760405162461bcd60e51b81526004016106b090612b41565b6127106112b960126119ec565b106112d65760405162461bcd60e51b81526004016106b090612a09565b346112e88266470de4df820000612bee565b11156113065760405162461bcd60e51b81526004016106b090612630565b60005b8181101561135957600061131d60126119ec565b905061271061132c60126119ec565b10156113465761133c60126119f0565b6113463382611a0d565b508061135181612c8b565b915050611309565b50506001600b55565b6002600b5414156113855760405162461bcd60e51b81526004016106b090612b0a565b6002600b55600a8111156113ab5760405162461bcd60e51b81526004016106b090612981565b600f54610100900460ff166113d25760405162461bcd60e51b81526004016106b0906123ff565b3360009081526010602052604090205460ff166114015760405162461bcd60e51b81526004016106b090612436565b61271061140e60126119ec565b1061142b5760405162461bcd60e51b81526004016106b090612a9c565b600c5481111561144d5760405162461bcd60e51b81526004016106b090612b78565b600c543360009081526011602052604090205461146b908390612bc2565b11156114895760405162461bcd60e51b81526004016106b090612ad3565b3461149b8266470de4df820000612bee565b11156114b95760405162461bcd60e51b81526004016106b090612630565b6127106114c660126119ec565b106114e35760405162461bcd60e51b81526004016106b090612a09565b60005b818110156113595760006114fa60126119ec565b905061271061150960126119ec565b10156115495761151960126119f0565b336000908152601160205260408120805460019290611539908490612bc2565b9091555061154990503382611a0d565b508061155481612c8b565b9150506114e6565b61156461167a565b6001600160a01b0316611575610df8565b6001600160a01b03161461159b5760405162461bcd60e51b81526004016106b090612854565b6001600160a01b0381166115c15760405162461bcd60e51b81526004016106b09061250a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061164e57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe82611a27565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b382610a67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116f78261165d565b6117135760405162461bcd60e51b81526004016106b090612667565b600061171e83610a67565b9050806001600160a01b0316846001600160a01b031614806117595750836001600160a01b031661174e84610796565b6001600160a01b0316145b8061176957506117698185611213565b949350505050565b826001600160a01b031661178482610a67565b6001600160a01b0316146117aa5760405162461bcd60e51b81526004016106b0906128f7565b6001600160a01b0382166117d05760405162461bcd60e51b81526004016106b090612587565b6117db838383611a40565b6117e660008261167e565b6001600160a01b038316600090815260036020526040812080546001929061180f908490612c0d565b90915550506001600160a01b038216600090815260036020526040812080546001929061183d908490612bc2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118a9848484611771565b6118b584848484611ac9565b6110e45760405162461bcd60e51b81526004016106b0906124b8565b6060816118f657506040805180820190915260018152600360fc1b60208201526106d4565b8160005b8115611920578061190a81612c8b565b91506119199050600a83612bda565b91506118fa565b60008167ffffffffffffffff81111561194957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b841561176957611988600183612c0d565b9150611995600a86612ca6565b6119a0906030612bc2565b60f81b8183815181106119c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119e5600a86612bda565b9450611977565b5490565b6001816000016000828254611a059190612bc2565b909155505050565b61099b828260405180602001604052806000815250611be4565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4b83838361086c565b6001600160a01b038316611a6757611a6281611c17565b611a8a565b816001600160a01b0316836001600160a01b031614611a8a57611a8a8382611c5b565b6001600160a01b038216611aa657611aa181611cf8565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611dd1565b6000611add846001600160a01b0316611e15565b15611bd957836001600160a01b031663150b7a02611af961167a565b8786866040518563ffffffff1660e01b8152600401611b1b94939291906123a4565b602060405180830381600087803b158015611b3557600080fd5b505af1925050508015611b65575060408051601f3d908101601f19168201909252611b6291810190612228565b60015b611bbf573d808015611b93576040519150601f19603f3d011682016040523d82523d6000602084013e611b98565b606091505b508051611bb75760405162461bcd60e51b81526004016106b0906124b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611769565b506001949350505050565b611bee8383611e1b565b611bfb6000848484611ac9565b61086c5760405162461bcd60e51b81526004016106b0906124b8565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6884610a9c565b611c729190612c0d565b600083815260076020526040902054909150808214611cc5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0a90600190612c0d565b60008381526009602052604081205460088054939450909284908110611d4057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d6f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ddc83610a9c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611e415760405162461bcd60e51b81526004016106b0906127a3565b611e4a8161165d565b15611e675760405162461bcd60e51b81526004016106b090612550565b611e7360008383611a40565b6001600160a01b0382166000908152600360205260408120805460019290611e9c908490612bc2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f0690612c50565b90600052602060002090601f016020900481019282611f285760008555611f6e565b82601f10611f4157805160ff1916838001178555611f6e565b82800160010185558215611f6e579182015b82811115611f6e578251825591602001919060010190611f53565b50611f7a929150611f7e565b5090565b5b80821115611f7a5760008155600101611f7f565b600067ffffffffffffffff80841115611fae57611fae612ce6565b604051601f8501601f191681016020018281118282101715611fd257611fd2612ce6565b604052848152915081838501861015611fea57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b60006020828403121561203b578081fd5b61204482612003565b9392505050565b6000806040838503121561205d578081fd5b61206683612003565b915061207460208401612003565b90509250929050565b600080600060608486031215612091578081fd5b61209a84612003565b92506120a860208501612003565b9150604084013590509250925092565b600080600080608085870312156120cd578081fd5b6120d685612003565b93506120e460208601612003565b925060408501359150606085013567ffffffffffffffff811115612106578182fd5b8501601f81018713612116578182fd5b61212587823560208401611f93565b91505092959194509250565b60008060408385031215612143578182fd5b61214c83612003565b91506120746020840161201a565b6000806040838503121561216c578182fd5b61217583612003565b946020939093013593505050565b60008060208385031215612195578182fd5b823567ffffffffffffffff808211156121ac578384fd5b818501915085601f8301126121bf578384fd5b8135818111156121cd578485fd5b86602080830285010111156121e0578485fd5b60209290920196919550909350505050565b600060208284031215612203578081fd5b6120448261201a565b60006020828403121561221d578081fd5b813561204481612cfc565b600060208284031215612239578081fd5b815161204481612cfc565b600060208284031215612255578081fd5b813567ffffffffffffffff81111561226b578182fd5b8201601f8101841361227b578182fd5b61176984823560208401611f93565b60006020828403121561229b578081fd5b5035919050565b600081518084526122ba816020860160208601612c24565b601f01601f19169290920160200192915050565b600081516122e0818560208601612c24565b9290920192915050565b825460009081906002810460018083168061230657607f831692505b602080841082141561232657634e487b7160e01b87526022600452602487fd5b81801561233a576001811461234b57612377565b60ff19861689528489019650612377565b6123548b612bb6565b885b8681101561236f5781548b820152908501908301612356565b505084890196505b50505050505061238781856122ce565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d7908301846122a2565b9695505050505050565b901515815260200190565b60006020825261204460208301846122a2565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e00000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f507572636861736520776f756c642065786365656420414c49454e4652454e536040820152665f5055424c494360c81b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e73000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612bd557612bd5612cba565b500190565b600082612be957612be9612cd0565b500490565b6000816000190483118215151615612c0857612c08612cba565b500290565b600082821015612c1f57612c1f612cba565b500390565b60005b83811015612c3f578181015183820152602001612c27565b838111156110e45750506000910152565b600281046001821680612c6457607f821691505b60208210811415612c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9f57612c9f612cba565b5060010190565b600082612cb557612cb5612cd0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612d1257600080fd5b5056fea26469706673582212200aca109fb1a0f08f28277b348ec38cf6d091da8ce1c719000f47c50a0a159c1a64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80637a6685f11161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b14610668578063f68a7580146105505761022f565b8063b88d4fde146105a5578063c87b56dd146105c5578063d75e6110146105e5578063e54ee8d8146105fa578063e8a3d4851461060d5761022f565b806395d89b41116100f257806395d89b411461051b578063a22cb46514610530578063a3f7006514610550578063a51312c814610565578063acec338a146105855761022f565b80637a6685f11461049c5780637f44ab2f146104bc5780638d859f3e146104d15780638da5cb5b146104e6578063938e3d7b146104fb5761022f565b80633a065892116101bc5780636352211e116101805780636352211e1461040757806370a0823114610427578063715018a614610447578063718bc4af1461045c5780637263cfe21461047c5761022f565b80633a065892146103725780633ccfd60b1461039257806342842e0e146103a75780634f6ccce7146103c757806355f804b3146103e75761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd1461030857806323b872dd1461031d57806329fc6bae1461033d5780632f745c59146103525761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f36600461202a565b610688565b6040516102619190612bad565b60405180910390f35b34801561027657600080fd5b5061028a61028536600461220c565b6106d9565b60405161026191906123e1565b3480156102a357600080fd5b506102ac610704565b60405161026191906123ec565b3480156102c557600080fd5b506102d96102d436600461228a565b610796565b6040516102619190612390565b3480156102f257600080fd5b5061030661030136600461215a565b6107d9565b005b34801561031457600080fd5b50610254610871565b34801561032957600080fd5b5061030661033836600461207d565b610877565b34801561034957600080fd5b5061028a6108af565b34801561035e57600080fd5b5061025461036d36600461215a565b6108bd565b34801561037e57600080fd5b5061028a61038d36600461202a565b61090f565b34801561039e57600080fd5b5061030661092d565b3480156103b357600080fd5b506103066103c236600461207d565b61099f565b3480156103d357600080fd5b506102546103e236600461228a565b6109ba565b3480156103f357600080fd5b50610306610402366004612244565b610a15565b34801561041357600080fd5b506102d961042236600461228a565b610a67565b34801561043357600080fd5b5061025461044236600461202a565b610a9c565b34801561045357600080fd5b50610306610ae0565b34801561046857600080fd5b506103066104773660046121f2565b610b69565b34801561048857600080fd5b50610306610497366004612183565b610bc2565b3480156104a857600080fd5b506103066104b736600461228a565b610da3565b3480156104c857600080fd5b50610254610de7565b3480156104dd57600080fd5b50610254610ded565b3480156104f257600080fd5b506102d9610df8565b34801561050757600080fd5b50610306610516366004612244565b610e07565b34801561052757600080fd5b506102ac610e59565b34801561053c57600080fd5b5061030661054b366004612131565b610e68565b34801561055c57600080fd5b50610254610f36565b34801561057157600080fd5b50610306610580366004612183565b610f3c565b34801561059157600080fd5b506103066105a03660046121f2565b611059565b3480156105b157600080fd5b506103066105c03660046120b8565b6110ab565b3480156105d157600080fd5b506102ac6105e036600461228a565b6110ea565b3480156105f157600080fd5b50610254611143565b61030661060836600461215a565b611148565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d36600461204b565b611213565b61030661065036600461228a565b611241565b61030661066336600461228a565b611362565b34801561067457600080fd5b5061030661068336600461202a565b61155c565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b090612889565b60405180910390fd5b506001600160a01b0381166000908152601160205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe8261161d565b92915050565b60606000805461071390612c50565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612c50565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a18261165d565b6107bd5760405162461bcd60e51b81526004016106b090612808565b506000908152600460205260409020546001600160a01b031690565b60006107e482610a67565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b090612940565b806001600160a01b031661082a61167a565b6001600160a01b0316148061084657506108468161063d61167a565b6108625760405162461bcd60e51b81526004016106b0906126b3565b61086c838361167e565b505050565b60085490565b61088861088261167a565b826116ec565b6108a45760405162461bcd60e51b81526004016106b0906129b8565b61086c838383611771565b600f54610100900460ff1681565b60006108c883610a9c565b82106108e65760405162461bcd60e51b81526004016106b09061246d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b031660009081526010602052604090205460ff1690565b61093561167a565b6001600160a01b0316610946610df8565b6001600160a01b03161461096c5760405162461bcd60e51b81526004016106b090612854565b6040514790339082156108fc029083906000818181858888f1935050505015801561099b573d6000803e3d6000fd5b5050565b61086c838383604051806020016040528060008152506110ab565b60006109c4610871565b82106109e25760405162461bcd60e51b81526004016106b090612a50565b60088281548110610a0357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a1d61167a565b6001600160a01b0316610a2e610df8565b6001600160a01b031614610a545760405162461bcd60e51b81526004016106b090612854565b805161099b90600e906020840190611efa565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b09061275a565b60006001600160a01b038216610ac45760405162461bcd60e51b81526004016106b090612710565b506001600160a01b031660009081526003602052604090205490565b610ae861167a565b6001600160a01b0316610af9610df8565b6001600160a01b031614610b1f5760405162461bcd60e51b81526004016106b090612854565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610b7161167a565b6001600160a01b0316610b82610df8565b6001600160a01b031614610ba85760405162461bcd60e51b81526004016106b090612854565b600f80549115156101000261ff0019909216919091179055565b610bca61167a565b6001600160a01b0316610bdb610df8565b6001600160a01b031614610c015760405162461bcd60e51b81526004016106b090612854565b60005b8181101561086c576000838383818110610c2e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c43919061202a565b6001600160a01b03161415610c6a5760405162461bcd60e51b81526004016106b0906128c0565b600160106000858585818110610c9057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ca5919061202a565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601181858585818110610cf357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d08919061202a565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610d35576000610d90565b60116000848484818110610d5957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d6e919061202a565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610d9b81612c8b565b915050610c04565b610dab61167a565b6001600160a01b0316610dbc610df8565b6001600160a01b031614610de25760405162461bcd60e51b81526004016106b090612854565b600c55565b600c5481565b66470de4df82000081565b600a546001600160a01b031690565b610e0f61167a565b6001600160a01b0316610e20610df8565b6001600160a01b031614610e465760405162461bcd60e51b81526004016106b090612854565b805161099b90600d906020840190611efa565b60606001805461071390612c50565b610e7061167a565b6001600160a01b0316826001600160a01b03161415610ea15760405162461bcd60e51b81526004016106b0906125cb565b8060056000610eae61167a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ef261167a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2a91906123e1565b60405180910390a35050565b61271081565b610f4461167a565b6001600160a01b0316610f55610df8565b6001600160a01b031614610f7b5760405162461bcd60e51b81526004016106b090612854565b60005b8181101561086c576000838383818110610fa857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fbd919061202a565b6001600160a01b03161415610fe45760405162461bcd60e51b81526004016106b0906128c0565b60006010600085858581811061100a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061101f919061202a565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061105181612c8b565b915050610f7e565b61106161167a565b6001600160a01b0316611072610df8565b6001600160a01b0316146110985760405162461bcd60e51b81526004016106b090612854565b600f805460ff1916911515919091179055565b6110bc6110b661167a565b836116ec565b6110d85760405162461bcd60e51b81526004016106b0906129b8565b6110e48484848461189e565b50505050565b60606110f58261165d565b6111115760405162461bcd60e51b81526004016106b090612602565b600e61111c836118d1565b60405160200161112d9291906122ea565b6040516020818303038152906040529050919050565b600a81565b61115061167a565b6001600160a01b0316611161610df8565b6001600160a01b0316146111875760405162461bcd60e51b81526004016106b090612854565b61271061119460126119ec565b106111b15760405162461bcd60e51b81526004016106b090612a09565b60005b8181101561086c5760006111c860126119ec565b90506127106111d760126119ec565b10156111f1576111e760126119f0565b6111f18482611a0d565b50806111fc81612c8b565b9150506111b4565b6060600d805461071390612c50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6002600b5414156112645760405162461bcd60e51b81526004016106b090612b0a565b6002600b55600f5460ff1661128b5760405162461bcd60e51b81526004016106b0906127d8565b600a8111156112ac5760405162461bcd60e51b81526004016106b090612b41565b6127106112b960126119ec565b106112d65760405162461bcd60e51b81526004016106b090612a09565b346112e88266470de4df820000612bee565b11156113065760405162461bcd60e51b81526004016106b090612630565b60005b8181101561135957600061131d60126119ec565b905061271061132c60126119ec565b10156113465761133c60126119f0565b6113463382611a0d565b508061135181612c8b565b915050611309565b50506001600b55565b6002600b5414156113855760405162461bcd60e51b81526004016106b090612b0a565b6002600b55600a8111156113ab5760405162461bcd60e51b81526004016106b090612981565b600f54610100900460ff166113d25760405162461bcd60e51b81526004016106b0906123ff565b3360009081526010602052604090205460ff166114015760405162461bcd60e51b81526004016106b090612436565b61271061140e60126119ec565b1061142b5760405162461bcd60e51b81526004016106b090612a9c565b600c5481111561144d5760405162461bcd60e51b81526004016106b090612b78565b600c543360009081526011602052604090205461146b908390612bc2565b11156114895760405162461bcd60e51b81526004016106b090612ad3565b3461149b8266470de4df820000612bee565b11156114b95760405162461bcd60e51b81526004016106b090612630565b6127106114c660126119ec565b106114e35760405162461bcd60e51b81526004016106b090612a09565b60005b818110156113595760006114fa60126119ec565b905061271061150960126119ec565b10156115495761151960126119f0565b336000908152601160205260408120805460019290611539908490612bc2565b9091555061154990503382611a0d565b508061155481612c8b565b9150506114e6565b61156461167a565b6001600160a01b0316611575610df8565b6001600160a01b03161461159b5760405162461bcd60e51b81526004016106b090612854565b6001600160a01b0381166115c15760405162461bcd60e51b81526004016106b09061250a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061164e57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe82611a27565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b382610a67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116f78261165d565b6117135760405162461bcd60e51b81526004016106b090612667565b600061171e83610a67565b9050806001600160a01b0316846001600160a01b031614806117595750836001600160a01b031661174e84610796565b6001600160a01b0316145b8061176957506117698185611213565b949350505050565b826001600160a01b031661178482610a67565b6001600160a01b0316146117aa5760405162461bcd60e51b81526004016106b0906128f7565b6001600160a01b0382166117d05760405162461bcd60e51b81526004016106b090612587565b6117db838383611a40565b6117e660008261167e565b6001600160a01b038316600090815260036020526040812080546001929061180f908490612c0d565b90915550506001600160a01b038216600090815260036020526040812080546001929061183d908490612bc2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118a9848484611771565b6118b584848484611ac9565b6110e45760405162461bcd60e51b81526004016106b0906124b8565b6060816118f657506040805180820190915260018152600360fc1b60208201526106d4565b8160005b8115611920578061190a81612c8b565b91506119199050600a83612bda565b91506118fa565b60008167ffffffffffffffff81111561194957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b841561176957611988600183612c0d565b9150611995600a86612ca6565b6119a0906030612bc2565b60f81b8183815181106119c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119e5600a86612bda565b9450611977565b5490565b6001816000016000828254611a059190612bc2565b909155505050565b61099b828260405180602001604052806000815250611be4565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4b83838361086c565b6001600160a01b038316611a6757611a6281611c17565b611a8a565b816001600160a01b0316836001600160a01b031614611a8a57611a8a8382611c5b565b6001600160a01b038216611aa657611aa181611cf8565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611dd1565b6000611add846001600160a01b0316611e15565b15611bd957836001600160a01b031663150b7a02611af961167a565b8786866040518563ffffffff1660e01b8152600401611b1b94939291906123a4565b602060405180830381600087803b158015611b3557600080fd5b505af1925050508015611b65575060408051601f3d908101601f19168201909252611b6291810190612228565b60015b611bbf573d808015611b93576040519150601f19603f3d011682016040523d82523d6000602084013e611b98565b606091505b508051611bb75760405162461bcd60e51b81526004016106b0906124b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611769565b506001949350505050565b611bee8383611e1b565b611bfb6000848484611ac9565b61086c5760405162461bcd60e51b81526004016106b0906124b8565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6884610a9c565b611c729190612c0d565b600083815260076020526040902054909150808214611cc5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0a90600190612c0d565b60008381526009602052604081205460088054939450909284908110611d4057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d6f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ddc83610a9c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611e415760405162461bcd60e51b81526004016106b0906127a3565b611e4a8161165d565b15611e675760405162461bcd60e51b81526004016106b090612550565b611e7360008383611a40565b6001600160a01b0382166000908152600360205260408120805460019290611e9c908490612bc2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f0690612c50565b90600052602060002090601f016020900481019282611f285760008555611f6e565b82601f10611f4157805160ff1916838001178555611f6e565b82800160010185558215611f6e579182015b82811115611f6e578251825591602001919060010190611f53565b50611f7a929150611f7e565b5090565b5b80821115611f7a5760008155600101611f7f565b600067ffffffffffffffff80841115611fae57611fae612ce6565b604051601f8501601f191681016020018281118282101715611fd257611fd2612ce6565b604052848152915081838501861015611fea57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b60006020828403121561203b578081fd5b61204482612003565b9392505050565b6000806040838503121561205d578081fd5b61206683612003565b915061207460208401612003565b90509250929050565b600080600060608486031215612091578081fd5b61209a84612003565b92506120a860208501612003565b9150604084013590509250925092565b600080600080608085870312156120cd578081fd5b6120d685612003565b93506120e460208601612003565b925060408501359150606085013567ffffffffffffffff811115612106578182fd5b8501601f81018713612116578182fd5b61212587823560208401611f93565b91505092959194509250565b60008060408385031215612143578182fd5b61214c83612003565b91506120746020840161201a565b6000806040838503121561216c578182fd5b61217583612003565b946020939093013593505050565b60008060208385031215612195578182fd5b823567ffffffffffffffff808211156121ac578384fd5b818501915085601f8301126121bf578384fd5b8135818111156121cd578485fd5b86602080830285010111156121e0578485fd5b60209290920196919550909350505050565b600060208284031215612203578081fd5b6120448261201a565b60006020828403121561221d578081fd5b813561204481612cfc565b600060208284031215612239578081fd5b815161204481612cfc565b600060208284031215612255578081fd5b813567ffffffffffffffff81111561226b578182fd5b8201601f8101841361227b578182fd5b61176984823560208401611f93565b60006020828403121561229b578081fd5b5035919050565b600081518084526122ba816020860160208601612c24565b601f01601f19169290920160200192915050565b600081516122e0818560208601612c24565b9290920192915050565b825460009081906002810460018083168061230657607f831692505b602080841082141561232657634e487b7160e01b87526022600452602487fd5b81801561233a576001811461234b57612377565b60ff19861689528489019650612377565b6123548b612bb6565b885b8681101561236f5781548b820152908501908301612356565b505084890196505b50505050505061238781856122ce565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d7908301846122a2565b9695505050505050565b901515815260200190565b60006020825261204460208301846122a2565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e00000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f507572636861736520776f756c642065786365656420414c49454e4652454e536040820152665f5055424c494360c81b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e73000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612bd557612bd5612cba565b500190565b600082612be957612be9612cd0565b500490565b6000816000190483118215151615612c0857612c08612cba565b500290565b600082821015612c1f57612c1f612cba565b500390565b60005b83811015612c3f578181015183820152602001612c27565b838111156110e45750506000910152565b600281046001821680612c6457607f821691505b60208210811415612c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9f57612c9f612cba565b5060010190565b600082612cb557612cb5612cd0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612d1257600080fd5b5056fea26469706673582212200aca109fb1a0f08f28277b348ec38cf6d091da8ce1c719000f47c50a0a159c1a64736f6c63430008000033

Deployed Bytecode Sourcemap

49488:6000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52067:205;;;;;;;;;;-1:-1:-1;52067:205:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39407:300;;;;;;;;;;-1:-1:-1;39407:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25522:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27104:308::-;;;;;;;;;;-1:-1:-1;27104:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26627:411::-;;;;;;;;;;-1:-1:-1;26627:411:0;;;;;:::i;:::-;;:::i;:::-;;40210:113;;;;;;;;;;;;;:::i;28163:376::-;;;;;;;;;;-1:-1:-1;28163:376:0;;;;;:::i;:::-;;:::i;50040:37::-;;;;;;;;;;;;;:::i;39791:343::-;;;;;;;;;;-1:-1:-1;39791:343:0;;;;;:::i;:::-;;:::i;52286:108::-;;;;;;;;;;-1:-1:-1;52286:108:0;;;;;:::i;:::-;;:::i;55338:147::-;;;;;;;;;;;;;:::i;28610:185::-;;;;;;;;;;-1:-1:-1;28610:185:0;;;;;:::i;:::-;;:::i;40400:320::-;;;;;;;;;;-1:-1:-1;40400:320:0;;;;;:::i;:::-;;:::i;50527:96::-;;;;;;;;;;-1:-1:-1;50527:96:0;;;;;:::i;:::-;;:::i;25129:326::-;;;;;;;;;;-1:-1:-1;25129:326:0;;;;;:::i;:::-;;:::i;24772:295::-;;;;;;;;;;-1:-1:-1;24772:295:0;;;;;:::i;:::-;;:::i;48868:148::-;;;;;;;;;;;;;:::i;51237:133::-;;;;;;;;;;-1:-1:-1;51237:133:0;;;;;:::i;:::-;;:::i;51512:532::-;;;;;;;;;;-1:-1:-1;51512:532:0;;;;;:::i;:::-;;:::i;51384:112::-;;;;;;;;;;-1:-1:-1;51384:112:0;;;;;:::i;:::-;;:::i;49881:36::-;;;;;;;;;;;;;:::i;49808:54::-;;;;;;;;;;;;;:::i;48217:87::-;;;;;;;;;;;;;:::i;50420:99::-;;;;;;;;;;-1:-1:-1;50420:99:0;;;;;:::i;:::-;;:::i;25691:104::-;;;;;;;;;;;;;:::i;27484:327::-;;;;;;;;;;-1:-1:-1;27484:327:0;;;;;:::i;:::-;;:::i;49693:58::-;;;;;;;;;;;;;:::i;52408:365::-;;;;;;;;;;-1:-1:-1;52408:365:0;;;;;:::i;:::-;;:::i;50320:92::-;;;;;;;;;;-1:-1:-1;50320:92:0;;;;;:::i;:::-;;:::i;28866:365::-;;;;;;;;;;-1:-1:-1;28866:365:0;;;;;:::i;:::-;;:::i;55054:276::-;;;;;;;;;;-1:-1:-1;55054:276:0;;;;;:::i;:::-;;:::i;49758:43::-;;;;;;;;;;;;;:::i;50653:575::-;;;;;;:::i;:::-;;:::i;54949:97::-;;;;;;;;;;;;;:::i;27882:214::-;;;;;;;;;;-1:-1:-1;27882:214:0;;;;;:::i;:::-;;:::i;54102:839::-;;;;;;:::i;:::-;;:::i;52785:1309::-;;;;;;:::i;:::-;;:::i;49171:281::-;;;;;;;;;;-1:-1:-1;49171:281:0;;;;;:::i;:::-;;:::i;52067:205::-;52133:7;-1:-1:-1;;;;;52160:19:0;;52152:62;;;;-1:-1:-1;;;52152:62:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;52238:24:0;;;;;;:17;:24;;;;;;52067:205;;;;:::o;39407:300::-;39554:4;-1:-1:-1;;;;;;39596:50:0;;-1:-1:-1;;;39596:50:0;;:103;;;39663:36;39687:11;39663:23;:36::i;:::-;39576:123;39407:300;-1:-1:-1;;39407:300:0:o;25522:100::-;25576:13;25609:5;25602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25522:100;:::o;27104:308::-;27225:7;27272:16;27280:7;27272;:16::i;:::-;27250:110;;;;-1:-1:-1;;;27250:110:0;;;;;;;:::i;:::-;-1:-1:-1;27380:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27380:24:0;;27104:308::o;26627:411::-;26708:13;26724:23;26739:7;26724:14;:23::i;:::-;26708:39;;26772:5;-1:-1:-1;;;;;26766:11:0;:2;-1:-1:-1;;;;;26766:11:0;;;26758:57;;;;-1:-1:-1;;;26758:57:0;;;;;;;:::i;:::-;26866:5;-1:-1:-1;;;;;26850:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26850:21:0;;:62;;;;26875:37;26892:5;26899:12;:10;:12::i;26875:37::-;26828:168;;;;-1:-1:-1;;;26828:168:0;;;;;;;:::i;:::-;27009:21;27018:2;27022:7;27009:8;:21::i;:::-;26627:411;;;:::o;40210:113::-;40298:10;:17;40210:113;:::o;28163:376::-;28372:41;28391:12;:10;:12::i;:::-;28405:7;28372:18;:41::i;:::-;28350:140;;;;-1:-1:-1;;;28350:140:0;;;;;;;:::i;:::-;28503:28;28513:4;28519:2;28523:7;28503:9;:28::i;50040:37::-;;;;;;;;;:::o;39791:343::-;39933:7;39988:23;40005:5;39988:16;:23::i;:::-;39980:5;:31;39958:124;;;;-1:-1:-1;;;39958:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40100:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39791:343::o;52286:108::-;-1:-1:-1;;;;;52368:16:0;52344:4;52368:16;;;:10;:16;;;;;;;;;52286:108::o;55338:147::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;55440:37:::1;::::0;55406:21:::1;::::0;55448:10:::1;::::0;55440:37;::::1;;;::::0;55406:21;;55388:15:::1;55440:37:::0;55388:15;55440:37;55406:21;55448:10;55440:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48508:1;55338:147::o:0;28610:185::-;28748:39;28765:4;28771:2;28775:7;28748:39;;;;;;;;;;;;:16;:39::i;40400:320::-;40520:7;40575:30;:28;:30::i;:::-;40567:5;:38;40545:132;;;;-1:-1:-1;;;40545:132:0;;;;;;;:::i;:::-;40695:10;40706:5;40695:17;;;;;;-1:-1:-1;;;40695:17:0;;;;;;;;;;;;;;;;;40688:24;;40400:320;;;:::o;50527:96::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;50596:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;25129:326::-:0;25246:7;25287:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25287:16:0;25336:19;25314:110;;;;-1:-1:-1;;;25314:110:0;;;;;;;:::i;24772:295::-;24889:7;-1:-1:-1;;;;;24936:19:0;;24914:111;;;;-1:-1:-1;;;24914:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25043:16:0;;;;;:9;:16;;;;;;;24772:295::o;48868:148::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;48959:6:::1;::::0;48938:40:::1;::::0;48975:1:::1;::::0;-1:-1:-1;;;;;48959:6:0::1;::::0;48938:40:::1;::::0;48975:1;;48938:40:::1;48989:6;:19:::0;;-1:-1:-1;;;;;;48989:19:0::1;::::0;;48868:148::o;51237:133::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;51322:17:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;51322:38:0;;::::1;::::0;;;::::1;::::0;;51237:133::o;51512:532::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;51601:9:::1;51596:439;51616:20:::0;;::::1;51596:439;;;51688:1;51664:9:::0;;51674:1;51664:12;;::::1;;;-1:-1:-1::0;;;51664:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51664:26:0::1;;;51656:65;;;;-1:-1:-1::0;;;51656:65:0::1;;;;;;;:::i;:::-;51773:4;51746:10;:24;51757:9;;51767:1;51757:12;;;;;-1:-1:-1::0;;;51757:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51746:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51746:24:0;;;:31;;-1:-1:-1;;51746:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;51950:17:::1;-1:-1:-1::0;51968:9:0;;51978:1;51968:12;;::::1;;;-1:-1:-1::0;;;51968:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51950:31:0::1;-1:-1:-1::0;;;;;51950:31:0::1;;;;;;;;;;;;;:35;:73;;52022:1;51950:73;;;51988:17;:31;52006:9;;52016:1;52006:12;;;;;-1:-1:-1::0;;;52006:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51988:31:0::1;-1:-1:-1::0;;;;;51988:31:0::1;;;;;;;;;;;;;51950:73;-1:-1:-1::0;51638:3:0;::::1;::::0;::::1;:::i;:::-;;;;51596:439;;51384:112:::0;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;51460:16:::1;:26:::0;51384:112::o;49881:36::-;;;;:::o;49808:54::-;49840:22;49808:54;:::o;48217:87::-;48290:6;;-1:-1:-1;;;;;48290:6:0;48217:87;:::o;50420:99::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;50493:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;25691:104::-:0;25747:13;25780:7;25773:14;;;;;:::i;27484:327::-;27631:12;:10;:12::i;:::-;-1:-1:-1;;;;;27619:24:0;:8;-1:-1:-1;;;;;27619:24:0;;;27611:62;;;;-1:-1:-1;;;27611:62:0;;;;;;;:::i;:::-;27731:8;27686:18;:32;27705:12;:10;:12::i;:::-;-1:-1:-1;;;;;27686:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27686:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27686:53:0;;;;;;;;;;;27770:12;:10;:12::i;:::-;-1:-1:-1;;;;;27755:48:0;;27794:8;27755:48;;;;;;:::i;:::-;;;;;;;;27484:327;;:::o;49693:58::-;49681:5;49693:58;:::o;52408:365::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;52502:9:::1;52497:267;52517:20:::0;;::::1;52497:267;;;52589:1;52565:9:::0;;52575:1;52565:12;;::::1;;;-1:-1:-1::0;;;52565:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52565:26:0::1;;;52557:65;;;;-1:-1:-1::0;;;52557:65:0::1;;;;;;;:::i;:::-;52747:5;52720:10;:24;52731:9;;52741:1;52731:12;;;;;-1:-1:-1::0;;;52731:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52720:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52720:24:0;:32;;-1:-1:-1;;52720:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52539:3;::::1;::::0;::::1;:::i;:::-;;;;52497:267;;50320:92:::0;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;50384:9:::1;:20:::0;;-1:-1:-1;;50384:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50320:92::o;28866:365::-;29055:41;29074:12;:10;:12::i;:::-;29088:7;29055:18;:41::i;:::-;29033:140;;;;-1:-1:-1;;;29033:140:0;;;;;;;:::i;:::-;29184:39;29198:4;29204:2;29208:7;29217:5;29184:13;:39::i;:::-;28866:365;;;;:::o;55054:276::-;55163:13;55202:16;55210:7;55202;:16::i;:::-;55194:49;;;;-1:-1:-1;;;55194:49:0;;;;;;;:::i;:::-;55287:13;55302:18;:7;:16;:18::i;:::-;55270:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55256:66;;55054:276;;;:::o;49758:43::-;49799:2;49758:43;:::o;50653:575::-;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;49681:5:::1;50803:27;:17;:25;:27::i;:::-;:47;50781:136;;;;-1:-1:-1::0;;;50781:136:0::1;;;;;;;:::i;:::-;50935:9;50930:291;50954:14;50950:1;:18;50930:291;;;50990:15;51008:27;:17;:25;:27::i;:::-;50990:45;;49681:5;51056:27;:17;:25;:27::i;:::-;:47;51052:158;;;51124:29;:17;:27;:29::i;:::-;51172:22;51182:2;51186:7;51172:9;:22::i;:::-;-1:-1:-1::0;50970:3:0;::::1;::::0;::::1;:::i;:::-;;;;50930:291;;54949:97:::0;54993:13;55026:12;55019:19;;;;;:::i;27882:214::-;-1:-1:-1;;;;;28053:25:0;;;28024:4;28053:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27882:214::o;54102:839::-;7464:1;8060:7;;:19;;8052:63;;;;-1:-1:-1;;;8052:63:0;;;;;;;:::i;:::-;7464:1;8193:7;:18;54193:9:::1;::::0;::::1;;54185:44;;;;-1:-1:-1::0;;;54185:44:0::1;;;;;;;:::i;:::-;49799:2;54262:14;:32;;54240:111;;;;-1:-1:-1::0;;;54240:111:0::1;;;;;;;:::i;:::-;49681:5;54384:27;:17;:25;:27::i;:::-;:47;54362:136;;;;-1:-1:-1::0;;;54362:136:0::1;;;;;;;:::i;:::-;54557:9;54531:22;54539:14:::0;49840:22:::1;54531;:::i;:::-;:35;;54509:113;;;;-1:-1:-1::0;;;54509:113:0::1;;;;;;;:::i;:::-;54640:9;54635:299;54659:14;54655:1;:18;54635:299;;;54695:15;54713:27;:17;:25;:27::i;:::-;54695:45;;49681:5;54761:27;:17;:25;:27::i;:::-;:47;54757:166;;;54829:29;:17;:27;:29::i;:::-;54877:30;54887:10;54899:7;54877:9;:30::i;:::-;-1:-1:-1::0;54675:3:0;::::1;::::0;::::1;:::i;:::-;;;;54635:299;;;-1:-1:-1::0;;7420:1:0;8372:7;:22;54102:839::o;52785:1309::-;7464:1;8060:7;;:19;;8052:63;;;;-1:-1:-1;;;8052:63:0;;;;;;;:::i;:::-;7464:1;8193:7;:18;49799:2:::1;52899:32:::0;::::1;;52877:110;;;;-1:-1:-1::0;;;52877:110:0::1;;;;;;;:::i;:::-;53016:17;::::0;::::1;::::0;::::1;;;53008:54;;;;-1:-1:-1::0;;;53008:54:0::1;;;;;;;:::i;:::-;53092:10;53081:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;53073:64;;;;-1:-1:-1::0;;;53073:64:0::1;;;;;;;:::i;:::-;49681:5;53170:27;:17;:25;:27::i;:::-;:47;53148:122;;;;-1:-1:-1::0;;;53148:122:0::1;;;;;;;:::i;:::-;53307:16;;53289:14;:34;;53281:79;;;;-1:-1:-1::0;;;53281:79:0::1;;;;;;;:::i;:::-;53429:16;::::0;53397:10:::1;53379:29;::::0;;;:17:::1;:29;::::0;;;;;:46:::1;::::0;53411:14;;53379:46:::1;:::i;:::-;:66;;53371:107;;;;-1:-1:-1::0;;;53371:107:0::1;;;;;;;:::i;:::-;53523:9;53497:22;53505:14:::0;49840:22:::1;53497;:::i;:::-;:35;;53489:76;;;;-1:-1:-1::0;;;53489:76:0::1;;;;;;;:::i;:::-;49681:5;53598:27;:17;:25;:27::i;:::-;:47;53576:136;;;;-1:-1:-1::0;;;53576:136:0::1;;;;;;;:::i;:::-;53728:9;53723:352;53747:14;53743:1;:18;53723:352;;;53783:15;53801:27;:17;:25;:27::i;:::-;53783:45;;49681:5;53849:27;:17;:25;:27::i;:::-;:47;53845:219;;;53917:29;:17;:27;:29::i;:::-;53983:10;53965:29;::::0;;;:17:::1;:29;::::0;;;;:34;;53998:1:::1;::::0;53965:29;:34:::1;::::0;53998:1;;53965:34:::1;:::i;:::-;::::0;;;-1:-1:-1;54018:30:0::1;::::0;-1:-1:-1;54028:10:0::1;54040:7:::0;54018:9:::1;:30::i;:::-;-1:-1:-1::0;53763:3:0;::::1;::::0;::::1;:::i;:::-;;;;53723:352;;49171:281:::0;48448:12;:10;:12::i;:::-;-1:-1:-1;;;;;48437:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48437:23:0;;48429:68;;;;-1:-1:-1;;;48429:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49274:22:0;::::1;49252:110;;;;-1:-1:-1::0;;;49252:110:0::1;;;;;;;:::i;:::-;49399:6;::::0;49378:38:::1;::::0;-1:-1:-1;;;;;49378:38:0;;::::1;::::0;49399:6:::1;::::0;49378:38:::1;::::0;49399:6:::1;::::0;49378:38:::1;49427:6;:17:::0;;-1:-1:-1;;;;;;49427:17:0::1;-1:-1:-1::0;;;;;49427:17:0;;;::::1;::::0;;;::::1;::::0;;49171:281::o;24353:355::-;24500:4;-1:-1:-1;;;;;;24542:40:0;;-1:-1:-1;;;24542:40:0;;:105;;-1:-1:-1;;;;;;;24599:48:0;;-1:-1:-1;;;24599:48:0;24542:105;:158;;;;24664:36;24688:11;24664:23;:36::i;30778:127::-;30843:4;30867:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30867:16:0;:30;;;30778:127::o;19527:98::-;19607:10;19527:98;:::o;34901:174::-;34976:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34976:29:0;-1:-1:-1;;;;;34976:29:0;;;;;;;;:24;;35030:23;34976:24;35030:14;:23::i;:::-;-1:-1:-1;;;;;35021:46:0;;;;;;;;;;;34901:174;;:::o;31072:452::-;31201:4;31245:16;31253:7;31245;:16::i;:::-;31223:110;;;;-1:-1:-1;;;31223:110:0;;;;;;;:::i;:::-;31344:13;31360:23;31375:7;31360:14;:23::i;:::-;31344:39;;31413:5;-1:-1:-1;;;;;31402:16:0;:7;-1:-1:-1;;;;;31402:16:0;;:64;;;;31459:7;-1:-1:-1;;;;;31435:31:0;:20;31447:7;31435:11;:20::i;:::-;-1:-1:-1;;;;;31435:31:0;;31402:64;:113;;;;31483:32;31500:5;31507:7;31483:16;:32::i;:::-;31394:122;31072:452;-1:-1:-1;;;;31072:452:0:o;34168:615::-;34341:4;-1:-1:-1;;;;;34314:31:0;:23;34329:7;34314:14;:23::i;:::-;-1:-1:-1;;;;;34314:31:0;;34292:122;;;;-1:-1:-1;;;34292:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34433:16:0;;34425:65;;;;-1:-1:-1;;;34425:65:0;;;;;;;:::i;:::-;34503:39;34524:4;34530:2;34534:7;34503:20;:39::i;:::-;34607:29;34624:1;34628:7;34607:8;:29::i;:::-;-1:-1:-1;;;;;34649:15:0;;;;;;:9;:15;;;;;:20;;34668:1;;34649:15;:20;;34668:1;;34649:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34680:13:0;;;;;;:9;:13;;;;;:18;;34697:1;;34680:13;:18;;34697:1;;34680:18;:::i;:::-;;;;-1:-1:-1;;34709:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34709:21:0;-1:-1:-1;;;;;34709:21:0;;;;;;;;;34748:27;;34709:16;;34748:27;;;;;;;34168:615;;;:::o;30113:352::-;30270:28;30280:4;30286:2;30290:7;30270:9;:28::i;:::-;30331:48;30354:4;30360:2;30364:7;30373:5;30331:22;:48::i;:::-;30309:148;;;;-1:-1:-1;;;30309:148:0;;;;;;;:::i;20199:723::-;20255:13;20476:10;20472:53;;-1:-1:-1;20503:10:0;;;;;;;;;;;;-1:-1:-1;;;20503:10:0;;;;;;20472:53;20550:5;20535:12;20591:78;20598:9;;20591:78;;20624:8;;;;:::i;:::-;;-1:-1:-1;20647:10:0;;-1:-1:-1;20655:2:0;20647:10;;:::i;:::-;;;20591:78;;;20679:19;20711:6;20701:17;;;;;;-1:-1:-1;;;20701:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20701:17:0;;20679:39;;20729:154;20736:10;;20729:154;;20763:11;20773:1;20763:11;;:::i;:::-;;-1:-1:-1;20832:10:0;20840:2;20832:5;:10;:::i;:::-;20819:24;;:2;:24;:::i;:::-;20806:39;;20789:6;20796;20789:14;;;;;;-1:-1:-1;;;20789:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20789:56:0;;;;;;;;-1:-1:-1;20860:11:0;20869:2;20860:11;;:::i;:::-;;;20729:154;;46616:114;46708:14;;46616:114::o;46738:117::-;46835:1;46817:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46738:117:0:o;31866:110::-;31942:26;31952:2;31956:7;31942:26;;;;;;;;;;;;:9;:26::i;22799:207::-;-1:-1:-1;;;;;;22958:40:0;;-1:-1:-1;;;22958:40:0;22799:207;;;:::o;41333:589::-;41477:45;41504:4;41510:2;41514:7;41477:26;:45::i;:::-;-1:-1:-1;;;;;41539:18:0;;41535:187;;41574:40;41606:7;41574:31;:40::i;:::-;41535:187;;;41644:2;-1:-1:-1;;;;;41636:10:0;:4;-1:-1:-1;;;;;41636:10:0;;41632:90;;41663:47;41696:4;41702:7;41663:32;:47::i;:::-;-1:-1:-1;;;;;41736:16:0;;41732:183;;41769:45;41806:7;41769:36;:45::i;:::-;41732:183;;;41842:4;-1:-1:-1;;;;;41836:10:0;:2;-1:-1:-1;;;;;41836:10:0;;41832:83;;41863:40;41891:2;41895:7;41863:27;:40::i;35640:1053::-;35795:4;35816:15;:2;-1:-1:-1;;;;;35816:13:0;;:15::i;:::-;35812:874;;;35885:2;-1:-1:-1;;;;;35869:36:0;;35928:12;:10;:12::i;:::-;35963:4;35990:7;36020:5;35869:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35869:175:0;;;;;;;;-1:-1:-1;;35869:175:0;;;;;;;;;;;;:::i;:::-;;;35848:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36231:13:0;;36227:389;;36274:108;;-1:-1:-1;;;36274:108:0;;;;;;;:::i;36227:389::-;36566:6;36560:13;36551:6;36547:2;36543:15;36536:38;35848:783;-1:-1:-1;;;;;;36108:55:0;-1:-1:-1;;;36108:55:0;;-1:-1:-1;36101:62:0;;35812:874;-1:-1:-1;36670:4:0;35640:1053;;;;;;:::o;32203:321::-;32333:18;32339:2;32343:7;32333:5;:18::i;:::-;32384:54;32415:1;32419:2;32423:7;32432:5;32384:22;:54::i;:::-;32362:154;;;;-1:-1:-1;;;32362:154:0;;;;;;;:::i;42645:164::-;42749:10;:17;;42722:24;;;;:15;:24;;;;;:44;;;42777:24;;;;;;;;;;;;42645:164::o;43436:1002::-;43716:22;43766:1;43741:22;43758:4;43741:16;:22::i;:::-;:26;;;;:::i;:::-;43778:18;43799:26;;;:17;:26;;;;;;43716:51;;-1:-1:-1;43932:28:0;;;43928:328;;-1:-1:-1;;;;;43999:18:0;;43977:19;43999:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44050:30;;;;;;:44;;;44167:30;;:17;:30;;;;;:43;;;43928:328;-1:-1:-1;44352:26:0;;;;:17;:26;;;;;;;;44345:33;;;-1:-1:-1;;;;;44396:18:0;;;;;:12;:18;;;;;:34;;;;;;;44389:41;43436:1002::o;44733:1079::-;45011:10;:17;44986:22;;45011:21;;45031:1;;45011:21;:::i;:::-;45043:18;45064:24;;;:15;:24;;;;;;45437:10;:26;;44986:46;;-1:-1:-1;45064:24:0;;44986:46;;45437:26;;;;-1:-1:-1;;;45437:26:0;;;;;;;;;;;;;;;;;45415:48;;45501:11;45476:10;45487;45476:22;;;;;;-1:-1:-1;;;45476:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45581:28;;;:15;:28;;;;;;;:41;;;45753:24;;;;;45746:31;45788:10;:16;;;;;-1:-1:-1;;;45788:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;44733:1079;;;;:::o;42223:221::-;42308:14;42325:20;42342:2;42325:16;:20::i;:::-;-1:-1:-1;;;;;42356:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42401:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42223:221:0:o;10926:444::-;11306:20;11354:8;;;10926:444::o;32860:382::-;-1:-1:-1;;;;;32940:16:0;;32932:61;;;;-1:-1:-1;;;32932:61:0;;;;;;;:::i;:::-;33013:16;33021:7;33013;:16::i;:::-;33012:17;33004:58;;;;-1:-1:-1;;;33004:58:0;;;;;;;:::i;:::-;33075:45;33104:1;33108:2;33112:7;33075:20;:45::i;:::-;-1:-1:-1;;;;;33133:13:0;;;;;;:9;:13;;;;;:18;;33150:1;;33133:13;:18;;33150:1;;33133:18;:::i;:::-;;;;-1:-1:-1;;33162:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33162:21:0;-1:-1:-1;;;;;33162:21:0;;;;;;;;33201:33;;33162:16;;;33201:33;;33162:16;;33201:33;32860:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;:::-;1124:41;1043:128;-1:-1:-1;;;1043:128:1:o;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:187::-;;5477:5;5471:12;5492:52;5537:6;5532:3;5525:4;5518:5;5514:16;5492:52;:::i;:::-;5560:16;;;;;5447:135;-1:-1:-1;;5447:135:1:o;5587:1181::-;5821:13;;5587:1181;;;;5894:1;5879:17;;5915:1;5951:18;;;;5978:2;;6032:4;6024:6;6020:17;6010:27;;5978:2;6058;6106;6098:6;6095:14;6075:18;6072:38;6069:2;;;-1:-1:-1;;;6133:33:1;;6189:4;6186:1;6179:15;6219:4;6140:3;6207:17;6069:2;6250:18;6277:104;;;;6395:1;6390:324;;;;6243:471;;6277:104;-1:-1:-1;;6310:24:1;;6298:37;;6355:16;;;;-1:-1:-1;6277:104:1;;6390:324;6426:39;6458:6;6426:39;:::i;:::-;6487:3;6503:165;6517:6;6514:1;6511:13;6503:165;;;6595:14;;6582:11;;;6575:35;6638:16;;;;6532:10;;6503:165;;;6507:3;;6697:6;6692:3;6688:16;6681:23;;6243:471;;;;;;;6730:32;6758:3;6750:6;6730:32;:::i;:::-;6723:39;5771:997;-1:-1:-1;;;;;5771:997:1:o;6773:203::-;-1:-1:-1;;;;;6937:32:1;;;;6919:51;;6907:2;6892:18;;6874:102::o;6981:490::-;-1:-1:-1;;;;;7250:15:1;;;7232:34;;7302:15;;7297:2;7282:18;;7275:43;7349:2;7334:18;;7327:34;;;7397:3;7392:2;7377:18;;7370:31;;;6981:490;;7418:47;;7445:19;;7437:6;7418:47;:::i;:::-;7410:55;7184:287;-1:-1:-1;;;;;;7184:287:1:o;7476:187::-;7641:14;;7634:22;7616:41;;7604:2;7589:18;;7571:92::o;7668:221::-;;7817:2;7806:9;7799:21;7837:46;7879:2;7868:9;7864:18;7856:6;7837:46;:::i;7894:348::-;8096:2;8078:21;;;8135:2;8115:18;;;8108:30;8174:26;8169:2;8154:18;;8147:54;8233:2;8218:18;;8068:174::o;8247:353::-;8449:2;8431:21;;;8488:2;8468:18;;;8461:30;8527:31;8522:2;8507:18;;8500:59;8591:2;8576:18;;8421:179::o;8605:407::-;8807:2;8789:21;;;8846:2;8826:18;;;8819:30;8885:34;8880:2;8865:18;;8858:62;-1:-1:-1;;;8951:2:1;8936:18;;8929:41;9002:3;8987:19;;8779:233::o;9017:414::-;9219:2;9201:21;;;9258:2;9238:18;;;9231:30;9297:34;9292:2;9277:18;;9270:62;-1:-1:-1;;;9363:2:1;9348:18;;9341:48;9421:3;9406:19;;9191:240::o;9436:402::-;9638:2;9620:21;;;9677:2;9657:18;;;9650:30;9716:34;9711:2;9696:18;;9689:62;-1:-1:-1;;;9782:2:1;9767:18;;9760:36;9828:3;9813:19;;9610:228::o;9843:352::-;10045:2;10027:21;;;10084:2;10064:18;;;10057:30;10123;10118:2;10103:18;;10096:58;10186:2;10171:18;;10017:178::o;10200:400::-;10402:2;10384:21;;;10441:2;10421:18;;;10414:30;10480:34;10475:2;10460:18;;10453:62;-1:-1:-1;;;10546:2:1;10531:18;;10524:34;10590:3;10575:19;;10374:226::o;10605:349::-;10807:2;10789:21;;;10846:2;10826:18;;;10819:30;10885:27;10880:2;10865:18;;10858:55;10945:2;10930:18;;10779:175::o;10959:344::-;11161:2;11143:21;;;11200:2;11180:18;;;11173:30;-1:-1:-1;;;11234:2:1;11219:18;;11212:50;11294:2;11279:18;;11133:170::o;11308:352::-;11510:2;11492:21;;;11549:2;11529:18;;;11522:30;11588;11583:2;11568:18;;11561:58;11651:2;11636:18;;11482:178::o;11665:408::-;11867:2;11849:21;;;11906:2;11886:18;;;11879:30;11945:34;11940:2;11925:18;;11918:62;-1:-1:-1;;;12011:2:1;11996:18;;11989:42;12063:3;12048:19;;11839:234::o;12078:420::-;12280:2;12262:21;;;12319:2;12299:18;;;12292:30;12358:34;12353:2;12338:18;;12331:62;12429:26;12424:2;12409:18;;12402:54;12488:3;12473:19;;12252:246::o;12503:406::-;12705:2;12687:21;;;12744:2;12724:18;;;12717:30;12783:34;12778:2;12763:18;;12756:62;-1:-1:-1;;;12849:2:1;12834:18;;12827:40;12899:3;12884:19;;12677:232::o;12914:405::-;13116:2;13098:21;;;13155:2;13135:18;;;13128:30;13194:34;13189:2;13174:18;;13167:62;-1:-1:-1;;;13260:2:1;13245:18;;13238:39;13309:3;13294:19;;13088:231::o;13324:356::-;13526:2;13508:21;;;13545:18;;;13538:30;13604:34;13599:2;13584:18;;13577:62;13671:2;13656:18;;13498:182::o;13685:346::-;13887:2;13869:21;;;13926:2;13906:18;;;13899:30;-1:-1:-1;;;13960:2:1;13945:18;;13938:52;14022:2;14007:18;;13859:172::o;14036:408::-;14238:2;14220:21;;;14277:2;14257:18;;;14250:30;14316:34;14311:2;14296:18;;14289:62;-1:-1:-1;;;14382:2:1;14367:18;;14360:42;14434:3;14419:19;;14210:234::o;14449:356::-;14651:2;14633:21;;;14670:18;;;14663:30;14729:34;14724:2;14709:18;;14702:62;14796:2;14781:18;;14623:182::o;14810:354::-;15012:2;14994:21;;;15051:2;15031:18;;;15024:30;15090:32;15085:2;15070:18;;15063:60;15155:2;15140:18;;14984:180::o;15169:350::-;15371:2;15353:21;;;15410:2;15390:18;;;15383:30;15449:28;15444:2;15429:18;;15422:56;15510:2;15495:18;;15343:176::o;15524:405::-;15726:2;15708:21;;;15765:2;15745:18;;;15738:30;15804:34;15799:2;15784:18;;15777:62;-1:-1:-1;;;15870:2:1;15855:18;;15848:39;15919:3;15904:19;;15698:231::o;15934:397::-;16136:2;16118:21;;;16175:2;16155:18;;;16148:30;16214:34;16209:2;16194:18;;16187:62;-1:-1:-1;;;16280:2:1;16265:18;;16258:31;16321:3;16306:19;;16108:223::o;16336:352::-;16538:2;16520:21;;;16577:2;16557:18;;;16550:30;16616;16611:2;16596:18;;16589:58;16679:2;16664:18;;16510:178::o;16693:413::-;16895:2;16877:21;;;16934:2;16914:18;;;16907:30;16973:34;16968:2;16953:18;;16946:62;-1:-1:-1;;;17039:2:1;17024:18;;17017:47;17096:3;17081:19;;16867:239::o;17111:403::-;17313:2;17295:21;;;17352:2;17332:18;;;17325:30;17391:34;17386:2;17371:18;;17364:62;-1:-1:-1;;;17457:2:1;17442:18;;17435:37;17504:3;17489:19;;17285:229::o;17519:408::-;17721:2;17703:21;;;17760:2;17740:18;;;17733:30;17799:34;17794:2;17779:18;;17772:62;-1:-1:-1;;;17865:2:1;17850:18;;17843:42;17917:3;17902:19;;17693:234::o;17932:349::-;18134:2;18116:21;;;18173:2;18153:18;;;18146:30;18212:27;18207:2;18192:18;;18185:55;18272:2;18257:18;;18106:175::o;18286:352::-;18488:2;18470:21;;;18527:2;18507:18;;;18500:30;18566;18561:2;18546:18;;18539:58;18629:2;18614:18;;18460:178::o;18643:355::-;18845:2;18827:21;;;18884:2;18864:18;;;18857:30;18923:33;18918:2;18903:18;;18896:61;18989:2;18974:18;;18817:181::o;19003:353::-;19205:2;19187:21;;;19244:2;19224:18;;;19217:30;19283:31;19278:2;19263:18;;19256:59;19347:2;19332:18;;19177:179::o;19361:356::-;19563:2;19545:21;;;19582:18;;;19575:30;19641:34;19636:2;19621:18;;19614:62;19708:2;19693:18;;19535:182::o;19722:177::-;19868:25;;;19856:2;19841:18;;19823:76::o;19904:129::-;;19972:17;;;20022:4;20006:21;;;19962:71::o;20038:128::-;;20109:1;20105:6;20102:1;20099:13;20096:2;;;20115:18;;:::i;:::-;-1:-1:-1;20151:9:1;;20086:80::o;20171:120::-;;20237:1;20227:2;;20242:18;;:::i;:::-;-1:-1:-1;20276:9:1;;20217:74::o;20296:168::-;;20402:1;20398;20394:6;20390:14;20387:1;20384:21;20379:1;20372:9;20365:17;20361:45;20358:2;;;20409:18;;:::i;:::-;-1:-1:-1;20449:9:1;;20348:116::o;20469:125::-;;20537:1;20534;20531:8;20528:2;;;20542:18;;:::i;:::-;-1:-1:-1;20579:9:1;;20518:76::o;20599:258::-;20671:1;20681:113;20695:6;20692:1;20689:13;20681:113;;;20771:11;;;20765:18;20752:11;;;20745:39;20717:2;20710:10;20681:113;;;20812:6;20809:1;20806:13;20803:2;;;-1:-1:-1;;20847:1:1;20829:16;;20822:27;20652:205::o;20862:380::-;20947:1;20937:12;;20994:1;20984:12;;;21005:2;;21059:4;21051:6;21047:17;21037:27;;21005:2;21112;21104:6;21101:14;21081:18;21078:38;21075:2;;;21158:10;21153:3;21149:20;21146:1;21139:31;21193:4;21190:1;21183:15;21221:4;21218:1;21211:15;21075:2;;20917:325;;;:::o;21247:135::-;;-1:-1:-1;;21307:17:1;;21304:2;;;21327:18;;:::i;:::-;-1:-1:-1;21374:1:1;21363:13;;21294:88::o;21387:112::-;;21445:1;21435:2;;21450:18;;:::i;:::-;-1:-1:-1;21484:9:1;;21425:74::o;21504:127::-;21565:10;21560:3;21556:20;21553:1;21546:31;21596:4;21593:1;21586:15;21620:4;21617:1;21610:15;21636:127;21697:10;21692:3;21688:20;21685:1;21678:31;21728:4;21725:1;21718:15;21752:4;21749:1;21742:15;21768:127;21829:10;21824:3;21820:20;21817:1;21810:31;21860:4;21857:1;21850:15;21884:4;21881:1;21874:15;21900:133;-1:-1:-1;;;;;;21976:32:1;;21966:43;;21956:2;;22023:1;22020;22013:12;21956:2;21946:87;:::o

Swarm Source

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