ETH Price: $3,447.81 (+1.66%)
Gas: 4 Gwei

Token

BORED CLIFFS (BCC)
 

Overview

Max Total Supply

1,000 BCC

Holders

552

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BCC
0xd9f0e1500805a3c6cdbb72b0bc968bae8995de46
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bored Cliffs, A representation of your support for clifford inu during its infancy.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredCliffs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-01
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    address payable private _PaymentAddress = payable(0x81ed317154E4C6E829B0358F59C5578719E95ccB);

    uint256 public BCC_MAX = 1000;
    uint256 private PRESALE_PRICE = 0 ether;
    uint256 private PUBLIC_PRICE = 0.2 ether;
    uint256 private REVEAL_DELAY = 0 hours;
    uint256 private PRESALE_HOURS = 24 hours;
    uint256 private PURCHASE_LIMIT = 1;
    uint256 private PRESALE_MINT_LIMIT = 1;
    uint256 private PUBLIC_MINT_LIMIT = BCC_MAX;
    
    mapping(address => bool) private _mappingWhiteList;

    bool private _enableOnChainWhiteList = true;
    mapping(address => uint256) private _mappingPresaleMintCount;
    mapping(address => uint256) private _mappingPublicMintCount;

    uint256 private _activeDateTime;
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicBCC;

    constructor() ERC721("BORED CLIFFS", "BCC") {}

    function setPaymentAddress(address paymentAddress) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
    }

    function setActiveDateTime(uint256 activeDateTime, uint256 presaleHours, uint256 revealDelay) external onlyOwner {
        _activeDateTime = activeDateTime;
        REVEAL_DELAY = revealDelay;
        PRESALE_HOURS = presaleHours;
    }

    function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner {
        for (uint256 i = 0; i < whiteListAddress.length; i++) {
            _mappingWhiteList[whiteListAddress[i]] = bEnable;
        }
    }

    function isWhiteListed(address addr) public view returns (bool) {
        return _mappingWhiteList[addr];
    }

    function setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner {
        PRESALE_PRICE = presaleMintPrice;
        PUBLIC_PRICE = publicMintPrice;
    }

    function setMaxLimit(uint256 maxLimit) external onlyOwner {
        BCC_MAX = maxLimit;
    }

    function setPurchaseLimit(uint256 purchaseLimit, uint256 presaleMintLimit, uint256 publicMintLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
        PRESALE_MINT_LIMIT = presaleMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

    function PRICE() public view returns (uint256) {
        if (block.timestamp < _activeDateTime) {
            return PRESALE_PRICE;
        } else {
            return PUBLIC_PRICE;
        }
    }

    function setRevealURI(string memory revealURI) external onlyOwner {
        _revealURI = revealURI;
    }

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

    function airdrop(address[] memory airdropAddress, uint256 numberOfTokens) external onlyOwner {
        for (uint256 k = 0; k < airdropAddress.length; k++) {
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = _publicBCC.current();

                if (_publicBCC.current() < BCC_MAX) {
                    _publicBCC.increment();
                    if (!_exists(tokenId)) _safeMint(airdropAddress[k], tokenId);
                }
            }
        }
    }

    function airdropSpecial(address to, uint256 tokenId) external onlyOwner {
        require(!_exists(tokenId), "Token already exist");
        if (!_exists(tokenId)) _safeMint(to, tokenId);
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(_publicBCC.current() < BCC_MAX,"Purchase would exceed BCC_MAX");

        if (msg.sender != owner()) {
            require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
            require(PRICE() * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            if (block.timestamp < _activeDateTime) {
                if (_enableOnChainWhiteList == true) {
                    require(_mappingWhiteList[msg.sender] == true, "Not registered to WhiteList");   
                }
                _mappingPresaleMintCount[msg.sender] = _mappingPresaleMintCount[msg.sender] + numberOfTokens;
                require(block.timestamp > _activeDateTime - PRESALE_HOURS , "Mint is not activated for presale");
                require(_mappingPresaleMintCount[msg.sender] <= PRESALE_MINT_LIMIT,"Overflow for PRESALE_MINT_LIMIT");
            } else {
                _mappingPublicMintCount[msg.sender] = _mappingPublicMintCount[msg.sender] + numberOfTokens;
                require(_mappingPublicMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            }

            _PaymentAddress.transfer(msg.value);
        }

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

            if (_publicBCC.current() < BCC_MAX) {
                _publicBCC.increment();
                if (!_exists(tokenId)) _safeMint(msg.sender, tokenId);
            }
        }
    }

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

        if (_activeDateTime + REVEAL_DELAY < block.timestamp) {
            return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
        }

        return _revealURI;
    }

    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":"BCC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropAddress","type":"address[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airdropSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"activeDateTime","type":"uint256"},{"internalType":"uint256","name":"presaleHours","type":"uint256"},{"internalType":"uint256","name":"revealDelay","type":"uint256"}],"name":"setActiveDateTime","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","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"}]

600c80546001600160a01b0319167381ed317154e4c6e829b0358f59c5578719e95ccb1790556103e8600d8190556000600e8190556702c68af0bb140000600f556010819055620151806011556001601281905560138190556014929092556016805460ff191690921790915560a0604081905260808290526200008791601a919062000195565b50604080516020810191829052600090819052620000a891601b9162000195565b50348015620000b657600080fd5b50604080518082018252600c81526b424f52454420434c4946465360a01b60208083019182528351808501909452600384526242434360e81b908401528151919291620001069160009162000195565b5080516200011c90600190602084019062000195565b5050506000620001316200019160201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000278565b3390565b828054620001a3906200023b565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b600181811c908216806200025057607f821691505b602082108114156200027257634e487b7160e01b600052602260045260246000fd5b50919050565b6129a680620002886000396000f3fe6080604052600436106101f95760003560e01c8063856de9701161010d578063bad33f43116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e43f696e146105cf578063e985e9c5146105ef578063efef39a114610638578063f2fde38b1461064b57600080fd5b8063bad33f4314610539578063bc7e24241461054f578063bf8bcee41461056f578063c204642c1461058f57600080fd5b80639791e389116100dc5780639791e389146104b9578063a22cb465146104d9578063a811a37b146104f9578063b88d4fde1461051957600080fd5b8063856de970146104515780638d859f3e146104715780638da5cb5b1461048657806395d89b41146104a457600080fd5b80633ccfd60b116101905780635e1e10041161015f5780635e1e1004146103a35780636352211e146103c35780636f9170f6146103e357806370a082311461041c578063715018a61461043c57600080fd5b80633ccfd60b1461032e57806342842e0e146103435780634f6ccce71461036357806355f804b31461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe5780630442bfa81461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046124bf565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461255b565b610696565b005b34801561026157600080fd5b5061026a6106e9565b60405161022a91906126d5565b34801561028357600080fd5b50610297610292366004612542565b61077b565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca36600461240b565b610803565b3480156102db57600080fd5b506008545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004612329565b610919565b34801561031a57600080fd5b506102e061032936600461240b565b61094a565b34801561033a57600080fd5b506102536109e0565b34801561034f57600080fd5b5061025361035e366004612329565b610a52565b34801561036f57600080fd5b506102e061037e366004612542565b610a6d565b34801561038f57600080fd5b5061025361039e3660046124f9565b610b00565b3480156103af57600080fd5b506102536103be3660046122d4565b610b52565b3480156103cf57600080fd5b506102976103de366004612542565b610bb3565b3480156103ef57600080fd5b5061021e6103fe3660046122d4565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042857600080fd5b506102e06104373660046122d4565b610c2a565b34801561044857600080fd5b50610253610cb1565b34801561045d57600080fd5b5061025361046c36600461240b565b610d3a565b34801561047d57600080fd5b506102e0610ddc565b34801561049257600080fd5b50600a546001600160a01b0316610297565b3480156104b057600080fd5b5061026a610df6565b3480156104c557600080fd5b506102536104d436600461257d565b610e05565b3480156104e557600080fd5b506102536104f43660046123e1565b610e55565b34801561050557600080fd5b506102536105143660046124f9565b610f1a565b34801561052557600080fd5b50610253610534366004612365565b610f6c565b34801561054557600080fd5b506102e0600d5481565b34801561055b57600080fd5b5061025361056a36600461257d565b610fa4565b34801561057b57600080fd5b5061025361058a366004612542565b610ff1565b34801561059b57600080fd5b506102536105aa36600461247a565b611035565b3480156105bb57600080fd5b5061026a6105ca366004612542565b61110a565b3480156105db57600080fd5b506102536105ea366004612435565b611233565b3480156105fb57600080fd5b5061021e61060a3660046122f6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610253610646366004612542565b6112d9565b34801561065757600080fd5b506102536106663660046122d4565b61168b565b60006001600160e01b0319821663780e9d6360e01b148061069057506106908261178b565b92915050565b600a546001600160a01b03163314806106b95750600b546001600160a01b031633145b6106de5760405162461bcd60e51b81526004016106d59061273a565b60405180910390fd5b600e91909155600f55565b6060600080546106f89061287f565b80601f01602080910402602001604051908101604052809291908181526020018280546107249061287f565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b6000610786826117db565b6107e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b506000908152600460205260409020546001600160a01b031690565b600061080e82610bb3565b9050806001600160a01b0316836001600160a01b0316141561087c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d5565b336001600160a01b03821614806108985750610898813361060a565b61090a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d5565b61091483836117f8565b505050565b6109233382611866565b61093f5760405162461bcd60e51b81526004016106d59061276f565b610914838383611950565b600061095583610c2a565b82106109b75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a035750600b546001600160a01b031633145b610a1f5760405162461bcd60e51b81526004016106d59061273a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a4e573d6000803e3d6000fd5b5050565b61091483838360405180602001604052806000815250610f6c565b6000610a7860085490565b8210610adb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d5565b60088281548110610aee57610aee61292b565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b235750600b546001600160a01b031633145b610b3f5760405162461bcd60e51b81526004016106d59061273a565b8051610a4e90601a90602084019061212a565b600a546001600160a01b0316331480610b755750600b546001600160a01b031633145b610b915760405162461bcd60e51b81526004016106d59061273a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d5565b60006001600160a01b038216610c955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610cd45750600b546001600160a01b031633145b610cf05760405162461bcd60e51b81526004016106d59061273a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610d5d5750600b546001600160a01b031633145b610d795760405162461bcd60e51b81526004016106d59061273a565b610d82816117db565b15610dc55760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b60448201526064016106d5565b610dce816117db565b610a4e57610a4e8282611afb565b6000601954421015610def5750600e5490565b50600f5490565b6060600180546106f89061287f565b600a546001600160a01b0316331480610e285750600b546001600160a01b031633145b610e445760405162461bcd60e51b81526004016106d59061273a565b601992909255601091909155601155565b6001600160a01b038216331415610eae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610f3d5750600b546001600160a01b031633145b610f595760405162461bcd60e51b81526004016106d59061273a565b8051610a4e90601b90602084019061212a565b610f763383611866565b610f925760405162461bcd60e51b81526004016106d59061276f565b610f9e84848484611b15565b50505050565b600a546001600160a01b0316331480610fc75750600b546001600160a01b031633145b610fe35760405162461bcd60e51b81526004016106d59061273a565b601292909255601355601455565b600a546001600160a01b03163314806110145750600b546001600160a01b031633145b6110305760405162461bcd60e51b81526004016106d59061273a565b600d55565b600a546001600160a01b03163314806110585750600b546001600160a01b031633145b6110745760405162461bcd60e51b81526004016106d59061273a565b60005b82518110156109145760005b828110156110f7576000611096601c5490565b9050600d546110a4601c5490565b10156110e4576110b4601c611b48565b6110bd816117db565b6110e4576110e48584815181106110d6576110d661292b565b602002602001015182611afb565b50806110ef816128ba565b915050611083565b5080611102816128ba565b915050611077565b6060611115826117db565b6111585760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d5565b4260105460195461116991906127f1565b10156111a157601a61117a83611b65565b60405160200161118b9291906125f1565b6040516020818303038152906040529050919050565b601b80546111ae9061287f565b80601f01602080910402602001604051908101604052809291908181526020018280546111da9061287f565b80156112275780601f106111fc57610100808354040283529160200191611227565b820191906000526020600020905b81548152906001019060200180831161120a57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112565750600b546001600160a01b031633145b6112725760405162461bcd60e51b81526004016106d59061273a565b60005b82518110156109145781601560008584815181106112955761129561292b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112d1816128ba565b915050611275565b600d54601c541061132c5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204243435f4d415800000060448201526064016106d5565b600a546001600160a01b0316331461162d5760125481111561139b5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b60648201526084016106d5565b34816113a5610ddc565b6113af919061281d565b11156113fd5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106d5565b6019544210156115745760165460ff1615156001141561147b573360009081526015602052604090205460ff16151560011461147b5760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c697374000000000060448201526064016106d5565b336000908152601760205260409020546114969082906127f1565b336000908152601760205260409020556011546019546114b6919061283c565b421161150e5760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b60648201526084016106d5565b60135433600090815260176020526040902054111561156f5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d49540060448201526064016106d5565b6115f2565b3360009081526018602052604090205461158f9082906127f1565b33600090815260186020526040902081905560145410156115f25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954000060448201526064016106d5565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561162b573d6000803e3d6000fd5b505b60005b81811015610a4e576000611643601c5490565b9050600d54611651601c5490565b101561167857611661601c611b48565b61166a816117db565b611678576116783382611afb565b5080611683816128ba565b915050611630565b600a546001600160a01b03163314806116ae5750600b546001600160a01b031633145b6116ca5760405162461bcd60e51b81526004016106d59061273a565b6001600160a01b03811661172f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d5565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806117bc57506001600160e01b03198216635b5e139f60e01b145b8061069057506301ffc9a760e01b6001600160e01b0319831614610690565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182d82610bb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611871826117db565b6118d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b60006118dd83610bb3565b9050806001600160a01b0316846001600160a01b031614806119185750836001600160a01b031661190d8461077b565b6001600160a01b0316145b8061194857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196382610bb3565b6001600160a01b0316146119cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d5565b6001600160a01b038216611a2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d5565b611a38838383611c63565b611a436000826117f8565b6001600160a01b0383166000908152600360205260408120805460019290611a6c90849061283c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a9a9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a4e828260405180602001604052806000815250611d1b565b611b20848484611950565b611b2c84848484611d4e565b610f9e5760405162461bcd60e51b81526004016106d5906126e8565b6001816000016000828254611b5d91906127f1565b909155505050565b606081611b895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb35780611b9d816128ba565b9150611bac9050600a83612809565b9150611b8d565b60008167ffffffffffffffff811115611bce57611bce612941565b6040519080825280601f01601f191660200182016040528015611bf8576020820181803683370190505b5090505b841561194857611c0d60018361283c565b9150611c1a600a866128d5565b611c259060306127f1565b60f81b818381518110611c3a57611c3a61292b565b60200101906001600160f81b031916908160001a905350611c5c600a86612809565b9450611bfc565b6001600160a01b038316611cbe57611cb981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ce1565b816001600160a01b0316836001600160a01b031614611ce157611ce18382611e5b565b6001600160a01b038216611cf85761091481611ef8565b826001600160a01b0316826001600160a01b031614610914576109148282611fa7565b611d258383611feb565b611d326000848484611d4e565b6109145760405162461bcd60e51b81526004016106d5906126e8565b60006001600160a01b0384163b15611e5057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d92903390899088908890600401612698565b602060405180830381600087803b158015611dac57600080fd5b505af1925050508015611ddc575060408051601f3d908101601f19168201909252611dd9918101906124dc565b60015b611e36573d808015611e0a576040519150601f19603f3d011682016040523d82523d6000602084013e611e0f565b606091505b508051611e2e5760405162461bcd60e51b81526004016106d5906126e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611948565b506001949350505050565b60006001611e6884610c2a565b611e72919061283c565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a9060019061283c565b60008381526009602052604081205460088054939450909284908110611f3257611f3261292b565b906000526020600020015490508060088381548110611f5357611f5361292b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b612915565b6001900381819060005260206000200160009055905550505050565b6000611fb283610c2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d5565b61204a816117db565b156120975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d5565b6120a360008383611c63565b6001600160a01b03821660009081526003602052604081208054600192906120cc9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121369061287f565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b506121aa9291506121ae565b5090565b5b808211156121aa57600081556001016121af565b600067ffffffffffffffff8311156121dd576121dd612941565b6121f0601f8401601f19166020016127c0565b905082815283838301111561220457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223257600080fd5b919050565b600082601f83011261224857600080fd5b8135602067ffffffffffffffff82111561226457612264612941565b8160051b6122738282016127c0565b83815282810190868401838801850189101561228e57600080fd5b600093505b858410156122b8576122a48161221b565b835260019390930192918401918401612293565b50979650505050505050565b8035801515811461223257600080fd5b6000602082840312156122e657600080fd5b6122ef8261221b565b9392505050565b6000806040838503121561230957600080fd5b6123128361221b565b91506123206020840161221b565b90509250929050565b60008060006060848603121561233e57600080fd5b6123478461221b565b92506123556020850161221b565b9150604084013590509250925092565b6000806000806080858703121561237b57600080fd5b6123848561221b565b93506123926020860161221b565b925060408501359150606085013567ffffffffffffffff8111156123b557600080fd5b8501601f810187136123c657600080fd5b6123d5878235602084016121c3565b91505092959194509250565b600080604083850312156123f457600080fd5b6123fd8361221b565b9150612320602084016122c4565b6000806040838503121561241e57600080fd5b6124278361221b565b946020939093013593505050565b6000806040838503121561244857600080fd5b823567ffffffffffffffff81111561245f57600080fd5b61246b85828601612237565b925050612320602084016122c4565b6000806040838503121561248d57600080fd5b823567ffffffffffffffff8111156124a457600080fd5b6124b085828601612237565b95602094909401359450505050565b6000602082840312156124d157600080fd5b81356122ef81612957565b6000602082840312156124ee57600080fd5b81516122ef81612957565b60006020828403121561250b57600080fd5b813567ffffffffffffffff81111561252257600080fd5b8201601f8101841361253357600080fd5b611948848235602084016121c3565b60006020828403121561255457600080fd5b5035919050565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60008060006060848603121561259257600080fd5b505081359360208301359350604090920135919050565b600081518084526125c1816020860160208601612853565b601f01601f19169290920160200192915050565b600081516125e7818560208601612853565b9290920192915050565b600080845481600182811c91508083168061260d57607f831692505b602080841082141561262d57634e487b7160e01b86526022600452602486fd5b81801561264157600181146126525761267f565b60ff1986168952848901965061267f565b60008b81526020902060005b868110156126775781548b82015290850190830161265e565b505084890196505b50505050505061268f81856125d5565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126cb908301846125a9565b9695505050505050565b6020815260006122ef60208301846125a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127e9576127e9612941565b604052919050565b60008219821115612804576128046128e9565b500190565b600082612818576128186128ff565b500490565b6000816000190483118215151615612837576128376128e9565b500290565b60008282101561284e5761284e6128e9565b500390565b60005b8381101561286e578181015183820152602001612856565b83811115610f9e5750506000910152565b600181811c9082168061289357607f821691505b602082108114156128b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128ce576128ce6128e9565b5060010190565b6000826128e4576128e46128ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461296d57600080fd5b5056fea264697066735822122077969a9835be681d2cd5f047da3a9ed69161e1e0d3565d14fd64dc76afa3051364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063856de9701161010d578063bad33f43116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e43f696e146105cf578063e985e9c5146105ef578063efef39a114610638578063f2fde38b1461064b57600080fd5b8063bad33f4314610539578063bc7e24241461054f578063bf8bcee41461056f578063c204642c1461058f57600080fd5b80639791e389116100dc5780639791e389146104b9578063a22cb465146104d9578063a811a37b146104f9578063b88d4fde1461051957600080fd5b8063856de970146104515780638d859f3e146104715780638da5cb5b1461048657806395d89b41146104a457600080fd5b80633ccfd60b116101905780635e1e10041161015f5780635e1e1004146103a35780636352211e146103c35780636f9170f6146103e357806370a082311461041c578063715018a61461043c57600080fd5b80633ccfd60b1461032e57806342842e0e146103435780634f6ccce71461036357806355f804b31461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe5780630442bfa81461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046124bf565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461255b565b610696565b005b34801561026157600080fd5b5061026a6106e9565b60405161022a91906126d5565b34801561028357600080fd5b50610297610292366004612542565b61077b565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca36600461240b565b610803565b3480156102db57600080fd5b506008545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004612329565b610919565b34801561031a57600080fd5b506102e061032936600461240b565b61094a565b34801561033a57600080fd5b506102536109e0565b34801561034f57600080fd5b5061025361035e366004612329565b610a52565b34801561036f57600080fd5b506102e061037e366004612542565b610a6d565b34801561038f57600080fd5b5061025361039e3660046124f9565b610b00565b3480156103af57600080fd5b506102536103be3660046122d4565b610b52565b3480156103cf57600080fd5b506102976103de366004612542565b610bb3565b3480156103ef57600080fd5b5061021e6103fe3660046122d4565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042857600080fd5b506102e06104373660046122d4565b610c2a565b34801561044857600080fd5b50610253610cb1565b34801561045d57600080fd5b5061025361046c36600461240b565b610d3a565b34801561047d57600080fd5b506102e0610ddc565b34801561049257600080fd5b50600a546001600160a01b0316610297565b3480156104b057600080fd5b5061026a610df6565b3480156104c557600080fd5b506102536104d436600461257d565b610e05565b3480156104e557600080fd5b506102536104f43660046123e1565b610e55565b34801561050557600080fd5b506102536105143660046124f9565b610f1a565b34801561052557600080fd5b50610253610534366004612365565b610f6c565b34801561054557600080fd5b506102e0600d5481565b34801561055b57600080fd5b5061025361056a36600461257d565b610fa4565b34801561057b57600080fd5b5061025361058a366004612542565b610ff1565b34801561059b57600080fd5b506102536105aa36600461247a565b611035565b3480156105bb57600080fd5b5061026a6105ca366004612542565b61110a565b3480156105db57600080fd5b506102536105ea366004612435565b611233565b3480156105fb57600080fd5b5061021e61060a3660046122f6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610253610646366004612542565b6112d9565b34801561065757600080fd5b506102536106663660046122d4565b61168b565b60006001600160e01b0319821663780e9d6360e01b148061069057506106908261178b565b92915050565b600a546001600160a01b03163314806106b95750600b546001600160a01b031633145b6106de5760405162461bcd60e51b81526004016106d59061273a565b60405180910390fd5b600e91909155600f55565b6060600080546106f89061287f565b80601f01602080910402602001604051908101604052809291908181526020018280546107249061287f565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b6000610786826117db565b6107e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b506000908152600460205260409020546001600160a01b031690565b600061080e82610bb3565b9050806001600160a01b0316836001600160a01b0316141561087c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d5565b336001600160a01b03821614806108985750610898813361060a565b61090a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d5565b61091483836117f8565b505050565b6109233382611866565b61093f5760405162461bcd60e51b81526004016106d59061276f565b610914838383611950565b600061095583610c2a565b82106109b75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a035750600b546001600160a01b031633145b610a1f5760405162461bcd60e51b81526004016106d59061273a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a4e573d6000803e3d6000fd5b5050565b61091483838360405180602001604052806000815250610f6c565b6000610a7860085490565b8210610adb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d5565b60088281548110610aee57610aee61292b565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b235750600b546001600160a01b031633145b610b3f5760405162461bcd60e51b81526004016106d59061273a565b8051610a4e90601a90602084019061212a565b600a546001600160a01b0316331480610b755750600b546001600160a01b031633145b610b915760405162461bcd60e51b81526004016106d59061273a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d5565b60006001600160a01b038216610c955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610cd45750600b546001600160a01b031633145b610cf05760405162461bcd60e51b81526004016106d59061273a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610d5d5750600b546001600160a01b031633145b610d795760405162461bcd60e51b81526004016106d59061273a565b610d82816117db565b15610dc55760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b60448201526064016106d5565b610dce816117db565b610a4e57610a4e8282611afb565b6000601954421015610def5750600e5490565b50600f5490565b6060600180546106f89061287f565b600a546001600160a01b0316331480610e285750600b546001600160a01b031633145b610e445760405162461bcd60e51b81526004016106d59061273a565b601992909255601091909155601155565b6001600160a01b038216331415610eae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610f3d5750600b546001600160a01b031633145b610f595760405162461bcd60e51b81526004016106d59061273a565b8051610a4e90601b90602084019061212a565b610f763383611866565b610f925760405162461bcd60e51b81526004016106d59061276f565b610f9e84848484611b15565b50505050565b600a546001600160a01b0316331480610fc75750600b546001600160a01b031633145b610fe35760405162461bcd60e51b81526004016106d59061273a565b601292909255601355601455565b600a546001600160a01b03163314806110145750600b546001600160a01b031633145b6110305760405162461bcd60e51b81526004016106d59061273a565b600d55565b600a546001600160a01b03163314806110585750600b546001600160a01b031633145b6110745760405162461bcd60e51b81526004016106d59061273a565b60005b82518110156109145760005b828110156110f7576000611096601c5490565b9050600d546110a4601c5490565b10156110e4576110b4601c611b48565b6110bd816117db565b6110e4576110e48584815181106110d6576110d661292b565b602002602001015182611afb565b50806110ef816128ba565b915050611083565b5080611102816128ba565b915050611077565b6060611115826117db565b6111585760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d5565b4260105460195461116991906127f1565b10156111a157601a61117a83611b65565b60405160200161118b9291906125f1565b6040516020818303038152906040529050919050565b601b80546111ae9061287f565b80601f01602080910402602001604051908101604052809291908181526020018280546111da9061287f565b80156112275780601f106111fc57610100808354040283529160200191611227565b820191906000526020600020905b81548152906001019060200180831161120a57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112565750600b546001600160a01b031633145b6112725760405162461bcd60e51b81526004016106d59061273a565b60005b82518110156109145781601560008584815181106112955761129561292b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112d1816128ba565b915050611275565b600d54601c541061132c5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204243435f4d415800000060448201526064016106d5565b600a546001600160a01b0316331461162d5760125481111561139b5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b60648201526084016106d5565b34816113a5610ddc565b6113af919061281d565b11156113fd5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106d5565b6019544210156115745760165460ff1615156001141561147b573360009081526015602052604090205460ff16151560011461147b5760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c697374000000000060448201526064016106d5565b336000908152601760205260409020546114969082906127f1565b336000908152601760205260409020556011546019546114b6919061283c565b421161150e5760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b60648201526084016106d5565b60135433600090815260176020526040902054111561156f5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d49540060448201526064016106d5565b6115f2565b3360009081526018602052604090205461158f9082906127f1565b33600090815260186020526040902081905560145410156115f25760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954000060448201526064016106d5565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561162b573d6000803e3d6000fd5b505b60005b81811015610a4e576000611643601c5490565b9050600d54611651601c5490565b101561167857611661601c611b48565b61166a816117db565b611678576116783382611afb565b5080611683816128ba565b915050611630565b600a546001600160a01b03163314806116ae5750600b546001600160a01b031633145b6116ca5760405162461bcd60e51b81526004016106d59061273a565b6001600160a01b03811661172f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d5565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806117bc57506001600160e01b03198216635b5e139f60e01b145b8061069057506301ffc9a760e01b6001600160e01b0319831614610690565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182d82610bb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611871826117db565b6118d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b60006118dd83610bb3565b9050806001600160a01b0316846001600160a01b031614806119185750836001600160a01b031661190d8461077b565b6001600160a01b0316145b8061194857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196382610bb3565b6001600160a01b0316146119cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d5565b6001600160a01b038216611a2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d5565b611a38838383611c63565b611a436000826117f8565b6001600160a01b0383166000908152600360205260408120805460019290611a6c90849061283c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a9a9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a4e828260405180602001604052806000815250611d1b565b611b20848484611950565b611b2c84848484611d4e565b610f9e5760405162461bcd60e51b81526004016106d5906126e8565b6001816000016000828254611b5d91906127f1565b909155505050565b606081611b895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb35780611b9d816128ba565b9150611bac9050600a83612809565b9150611b8d565b60008167ffffffffffffffff811115611bce57611bce612941565b6040519080825280601f01601f191660200182016040528015611bf8576020820181803683370190505b5090505b841561194857611c0d60018361283c565b9150611c1a600a866128d5565b611c259060306127f1565b60f81b818381518110611c3a57611c3a61292b565b60200101906001600160f81b031916908160001a905350611c5c600a86612809565b9450611bfc565b6001600160a01b038316611cbe57611cb981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ce1565b816001600160a01b0316836001600160a01b031614611ce157611ce18382611e5b565b6001600160a01b038216611cf85761091481611ef8565b826001600160a01b0316826001600160a01b031614610914576109148282611fa7565b611d258383611feb565b611d326000848484611d4e565b6109145760405162461bcd60e51b81526004016106d5906126e8565b60006001600160a01b0384163b15611e5057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d92903390899088908890600401612698565b602060405180830381600087803b158015611dac57600080fd5b505af1925050508015611ddc575060408051601f3d908101601f19168201909252611dd9918101906124dc565b60015b611e36573d808015611e0a576040519150601f19603f3d011682016040523d82523d6000602084013e611e0f565b606091505b508051611e2e5760405162461bcd60e51b81526004016106d5906126e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611948565b506001949350505050565b60006001611e6884610c2a565b611e72919061283c565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a9060019061283c565b60008381526009602052604081205460088054939450909284908110611f3257611f3261292b565b906000526020600020015490508060088381548110611f5357611f5361292b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b612915565b6001900381819060005260206000200160009055905550505050565b6000611fb283610c2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d5565b61204a816117db565b156120975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d5565b6120a360008383611c63565b6001600160a01b03821660009081526003602052604081208054600192906120cc9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121369061287f565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b506121aa9291506121ae565b5090565b5b808211156121aa57600081556001016121af565b600067ffffffffffffffff8311156121dd576121dd612941565b6121f0601f8401601f19166020016127c0565b905082815283838301111561220457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223257600080fd5b919050565b600082601f83011261224857600080fd5b8135602067ffffffffffffffff82111561226457612264612941565b8160051b6122738282016127c0565b83815282810190868401838801850189101561228e57600080fd5b600093505b858410156122b8576122a48161221b565b835260019390930192918401918401612293565b50979650505050505050565b8035801515811461223257600080fd5b6000602082840312156122e657600080fd5b6122ef8261221b565b9392505050565b6000806040838503121561230957600080fd5b6123128361221b565b91506123206020840161221b565b90509250929050565b60008060006060848603121561233e57600080fd5b6123478461221b565b92506123556020850161221b565b9150604084013590509250925092565b6000806000806080858703121561237b57600080fd5b6123848561221b565b93506123926020860161221b565b925060408501359150606085013567ffffffffffffffff8111156123b557600080fd5b8501601f810187136123c657600080fd5b6123d5878235602084016121c3565b91505092959194509250565b600080604083850312156123f457600080fd5b6123fd8361221b565b9150612320602084016122c4565b6000806040838503121561241e57600080fd5b6124278361221b565b946020939093013593505050565b6000806040838503121561244857600080fd5b823567ffffffffffffffff81111561245f57600080fd5b61246b85828601612237565b925050612320602084016122c4565b6000806040838503121561248d57600080fd5b823567ffffffffffffffff8111156124a457600080fd5b6124b085828601612237565b95602094909401359450505050565b6000602082840312156124d157600080fd5b81356122ef81612957565b6000602082840312156124ee57600080fd5b81516122ef81612957565b60006020828403121561250b57600080fd5b813567ffffffffffffffff81111561252257600080fd5b8201601f8101841361253357600080fd5b611948848235602084016121c3565b60006020828403121561255457600080fd5b5035919050565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60008060006060848603121561259257600080fd5b505081359360208301359350604090920135919050565b600081518084526125c1816020860160208601612853565b601f01601f19169290920160200192915050565b600081516125e7818560208601612853565b9290920192915050565b600080845481600182811c91508083168061260d57607f831692505b602080841082141561262d57634e487b7160e01b86526022600452602486fd5b81801561264157600181146126525761267f565b60ff1986168952848901965061267f565b60008b81526020902060005b868110156126775781548b82015290850190830161265e565b505084890196505b50505050505061268f81856125d5565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126cb908301846125a9565b9695505050505050565b6020815260006122ef60208301846125a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127e9576127e9612941565b604052919050565b60008219821115612804576128046128e9565b500190565b600082612818576128186128ff565b500490565b6000816000190483118215151615612837576128376128e9565b500290565b60008282101561284e5761284e6128e9565b500390565b60005b8381101561286e578181015183820152602001612856565b83811115610f9e5750506000910152565b600181811c9082168061289357607f821691505b602082108114156128b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128ce576128ce6128e9565b5060010190565b6000826128e4576128e46128ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461296d57600080fd5b5056fea264697066735822122077969a9835be681d2cd5f047da3a9ed69161e1e0d3565d14fd64dc76afa3051364736f6c63430008070033

Deployed Bytecode Sourcemap

46971:5644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;8537:14:1;;8530:22;8512:41;;8500:2;8485:18;39256:300:0;;;;;;;;48790:184;;;;;;;;;;-1:-1:-1;48790:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7835:32:1;;;7817:51;;7805:2;7790:18;24467:308:0;7671:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;40059:113::-;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;19017:25:1;;;19005:2;18990:18;40059:113:0;18871:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;52465:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;49681:104::-;;;;;;;;;;-1:-1:-1;49681:104:0;;;;;:::i;:::-;;:::i;48038:130::-;;;;;;;;;;-1:-1:-1;48038:130:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;48669:113::-;;;;;;;;;;-1:-1:-1;48669:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;48751:23:0;48727:4;48751:23;;;:17;:23;;;;;;;;;48669:113;22135:295;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50312:196::-;;;;;;;;;;-1:-1:-1;50312:196:0;;;;;:::i;:::-;;:::i;49355:203::-;;;;;;;;;;;;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;48176:240::-;;;;;;;;;;-1:-1:-1;48176:240:0;;;;;:::i;:::-;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;49566:107::-;;;;;;;;;;-1:-1:-1;49566:107:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;47206:29::-;;;;;;;;;;;;;;;;49085:262;;;;;;;;;;-1:-1:-1;49085:262:0;;;;;:::i;:::-;;:::i;48982:95::-;;;;;;;;;;-1:-1:-1;48982:95:0;;;;;:::i;:::-;;:::i;49793:511::-;;;;;;;;;;-1:-1:-1;49793:511:0;;;;;:::i;:::-;;:::i;52107:350::-;;;;;;;;;;-1:-1:-1;52107:350:0;;;;;:::i;:::-;;:::i;48424:237::-;;;;;;;;;;-1:-1:-1;48424:237:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;50516:1583;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;39256:300::-;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;48790:184::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;;;;;;;;;48893:13:::1;:32:::0;;;;48936:12:::1;:30:::0;48790:184::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;24635:16;24643:7;24635;:16::i;:::-;24613:110;;;;-1:-1:-1;;;24613:110:0;;15897:2:1;24613:110:0;;;15879:21:1;15936:2;15916:18;;;15909:30;15975:34;15955:18;;;15948:62;-1:-1:-1;;;16026:18:1;;;16019:42;16078:19;;24613:110:0;15695:408:1;24613:110:0;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;17840:2:1;24121:57:0;;;17822:21:1;17879:2;17859:18;;;17852:30;17918:34;17898:18;;;17891:62;-1:-1:-1;;;17969:18:1;;;17962:31;18010:19;;24121:57:0;17638:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;13931:2:1;24191:168:0;;;13913:21:1;13970:2;13950:18;;;13943:30;14009:34;13989:18;;;13982:62;14080:26;14060:18;;;14053:54;14124:19;;24191:168:0;13729:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;9350:2:1;39807:124:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;-1:-1:-1;;;9479:18:1;;;9472:41;9530:19;;39807:124:0;9148:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;52465:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;52567:37:::1;::::0;52533:21:::1;::::0;52575:10:::1;::::0;52567:37;::::1;;;::::0;52533:21;;52515:15:::1;52567:37:::0;52515:15;52567:37;52533:21;52575:10;52567:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52504:108;52465:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;18660:2:1;40394:132:0;;;18642:21:1;18699:2;18679:18;;;18672:30;18738:34;18718:18;;;18711:62;-1:-1:-1;;;18789:18:1;;;18782:42;18841:19;;40394:132:0;18458:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;49681:104::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49754:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48038:130::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48119:15:::1;:41:::0;;-1:-1:-1;;;;;;48119:41:0::1;-1:-1:-1::0;;;;;48119:41:0;;;::::1;::::0;;;::::1;::::0;;48038:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;14767:2:1;22677:110:0;;;14749:21:1;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:1;;;14889:39;14945:19;;22677:110:0;14565:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;14356:2:1;22277:111:0;;;14338:21:1;14395:2;14375:18;;;14368:30;14434:34;14414:18;;;14407:62;-1:-1:-1;;;14485:18:1;;;14478:40;14535:19;;22277:111:0;14154:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;50312:196::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50404:16:::1;50412:7;50404;:16::i;:::-;50403:17;50395:49;;;::::0;-1:-1:-1;;;50395:49:0;;10945:2:1;50395:49:0::1;::::0;::::1;10927:21:1::0;10984:2;10964:18;;;10957:30;-1:-1:-1;;;11003:18:1;;;10996:49;11062:18;;50395:49:0::1;10743:343:1::0;50395:49:0::1;50460:16;50468:7;50460;:16::i;:::-;50455:45;;50478:22;50488:2;50492:7;50478:9;:22::i;49355:203::-:0;49393:7;49435:15;;49417;:33;49413:138;;;-1:-1:-1;49474:13:0;;;49355:203::o;49413:138::-;-1:-1:-1;49527:12:0;;;49355:203::o;23054:104::-;23110:13;23143:7;23136:14;;;;;:::i;48176:240::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48300:15:::1;:32:::0;;;;48343:12:::1;:26:::0;;;;48380:13:::1;:28:::0;48176:240::o;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;11698:2:1;24974:62:0;;;11680:21:1;11737:2;11717:18;;;11710:30;11776:27;11756:18;;;11749:55;11821:18;;24974:62:0;11496:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;8512:41:1;;;25049:42:0;;16975:10;25118:48;;8485:18:1;25118:48:0;;;;;;;24847:327;;:::o;49566:107::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49643:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26229:365::-:0;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49085:262::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49215:14:::1;:30:::0;;;;49256:18:::1;:37:::0;49304:17:::1;:35:::0;49085:262::o;48982:95::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49051:7:::1;:18:::0;48982:95::o;49793:511::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49902:9:::1;49897:400;49921:14;:21;49917:1;:25;49897:400;;;49969:9;49964:322;49988:14;49984:1;:18;49964:322;;;50028:15;50046:20;:10;46557:14:::0;;46465:114;50046:20:::1;50028:38;;50114:7;;50091:20;:10;46557:14:::0;;46465:114;50091:20:::1;:30;50087:184;;;50146:22;:10;:20;:22::i;:::-;50196:16;50204:7;50196;:16::i;:::-;50191:60;;50214:37;50224:14;50239:1;50224:17;;;;;;;;:::i;:::-;;;;;;;50243:7;50214:9;:37::i;:::-;-1:-1:-1::0;50004:3:0;::::1;::::0;::::1;:::i;:::-;;;;49964:322;;;-1:-1:-1::0;49944:3:0;::::1;::::0;::::1;:::i;:::-;;;;49897:400;;52107:350:::0;52180:13;52219:16;52227:7;52219;:16::i;:::-;52211:49;;;;-1:-1:-1;;;52211:49:0;;12410:2:1;52211:49:0;;;12392:21:1;12449:2;12429:18;;;12422:30;-1:-1:-1;;;12468:18:1;;;12461:50;12528:18;;52211:49:0;12208:344:1;52211:49:0;52310:15;52295:12;;52277:15;;:30;;;;:::i;:::-;:48;52273:147;;;52373:13;52388:18;:7;:16;:18::i;:::-;52356:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52342:66;;52107:350;;;:::o;52273:147::-;52439:10;52432:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52107:350;;;:::o;48424:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48530:9:::1;48525:129;48549:16;:23;48545:1;:27;48525:129;;;48635:7;48594:17;:38;48612:16;48629:1;48612:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48594:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48594:38:0;:48;;-1:-1:-1;;48594:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48574:3;::::1;::::0;::::1;:::i;:::-;;;;48525:129;;50516:1583:::0;50617:7;;50594:10;46557:14;50594:30;50586:71;;;;-1:-1:-1;;;50586:71:0;;12052:2:1;50586:71:0;;;12034:21:1;12091:2;12071:18;;;12064:30;12130:31;12110:18;;;12103:59;12179:18;;50586:71:0;11850:353:1;50586:71:0;37092:6;;-1:-1:-1;;;;;37092:6:0;50674:10;:21;50670:1119;;50738:14;;50720;:32;;50712:78;;;;-1:-1:-1;;;50712:78:0;;17081:2:1;50712:78:0;;;17063:21:1;17120:2;17100:18;;;17093:30;17159:34;17139:18;;;17132:62;-1:-1:-1;;;17210:18:1;;;17203:32;17252:19;;50712:78:0;16879:398:1;50712:78:0;50841:9;50823:14;50813:7;:5;:7::i;:::-;:24;;;;:::i;:::-;:37;;50805:77;;;;-1:-1:-1;;;50805:77:0;;12759:2:1;50805:77:0;;;12741:21:1;12798:2;12778:18;;;12771:30;12837;12817:18;;;12810:58;12885:18;;50805:77:0;12557:352:1;50805:77:0;50921:15;;50903;:33;50899:827;;;50961:23;;;;:31;;:23;:31;50957:160;;;51043:10;51025:29;;;;:17;:29;;;;;;;;:37;;:29;:37;51017:77;;;;-1:-1:-1;;;51017:77:0;;17484:2:1;51017:77:0;;;17466:21:1;17523:2;17503:18;;;17496:30;17562:29;17542:18;;;17535:57;17609:18;;51017:77:0;17282:351:1;51017:77:0;51199:10;51174:36;;;;:24;:36;;;;;;:53;;51213:14;;51174:53;:::i;:::-;51160:10;51135:36;;;;:24;:36;;;;;:92;51290:13;;51272:15;;:31;;51290:13;51272:31;:::i;:::-;51254:15;:49;51246:96;;;;-1:-1:-1;;;51246:96:0;;13529:2:1;51246:96:0;;;13511:21:1;13568:2;13548:18;;;13541:30;13607:34;13587:18;;;13580:62;-1:-1:-1;;;13658:18:1;;;13651:31;13699:19;;51246:96:0;13327:397:1;51246:96:0;51409:18;;51394:10;51369:36;;;;:24;:36;;;;;;:58;;51361:101;;;;-1:-1:-1;;;51361:101:0;;8990:2:1;51361:101:0;;;8972:21:1;9029:2;9009:18;;;9002:30;9068:33;9048:18;;;9041:61;9119:18;;51361:101:0;8788:355:1;51361:101:0;50899:827;;;51565:10;51541:35;;;;:23;:35;;;;;;:52;;51579:14;;51541:52;:::i;:::-;51527:10;51503:35;;;;:23;:35;;;;;:90;;;51659:17;;-1:-1:-1;51620:56:0;51612:98;;;;-1:-1:-1;;;51612:98:0;;15177:2:1;51612:98:0;;;15159:21:1;15216:2;15196:18;;;15189:30;15255:32;15235:18;;;15228:60;15305:18;;51612:98:0;14975:354:1;51612:98:0;51742:15;;:35;;-1:-1:-1;;;;;51742:15:0;;;;51767:9;51742:35;;;;;:15;:35;:15;:35;51767:9;51742:15;:35;;;;;;;;;;;;;;;;;;;;;50670:1119;51806:9;51801:291;51825:14;51821:1;:18;51801:291;;;51861:15;51879:20;:10;46557:14;;46465:114;51879:20;51861:38;;51943:7;;51920:20;:10;46557:14;;46465:114;51920:20;:30;51916:165;;;51971:22;:10;:20;:22::i;:::-;52017:16;52025:7;52017;:16::i;:::-;52012:53;;52035:30;52045:10;52057:7;52035:9;:30::i;:::-;-1:-1:-1;51841:3:0;;;;:::i;:::-;;;;51801:291;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;10181:2:1;38119:110:0::1;::::0;::::1;10163:21:1::0;10220:2;10200:18;;;10193:30;10259:34;10239:18;;;10232:62;-1:-1:-1;;;10310:18:1;;;10303:36;10356:19;;38119:110:0::1;9979:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;28141:127;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;;;28141:127::o;32264:174::-;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28608:16;28616:7;28608;:16::i;:::-;28586:110;;;;-1:-1:-1;;;28586:110:0;;13116:2:1;28586:110:0;;;13098:21:1;13155:2;13135:18;;;13128:30;13194:34;13174:18;;;13167:62;-1:-1:-1;;;13245:18:1;;;13238:42;13297:19;;28586:110:0;12914:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;16671:2:1;31655:122:0;;;16653:21:1;16710:2;16690:18;;;16683:30;16749:34;16729:18;;;16722:62;-1:-1:-1;;;16800:18:1;;;16793:39;16849:19;;31655:122:0;16469:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;11293:2:1;31788:65:0;;;11275:21:1;11332:2;11312:18;;;11305:30;11371:34;11351:18;;;11344:62;-1:-1:-1;;;11422:18:1;;;11415:34;11466:19;;31788:65:0;11091:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;15536:2:1;30295:61:0;;;15518:21:1;;;15555:18;;;15548:30;15614:34;15594:18;;;15587:62;15666:18;;30295:61:0;15334:356:1;30295:61:0;30376:16;30384:7;30376;:16::i;:::-;30375:17;30367:58;;;;-1:-1:-1;;;30367:58:0;;10588:2:1;30367:58:0;;;10570:21:1;10627:2;10607:18;;;10600:30;10666;10646:18;;;10639:58;10714:18;;30367:58:0;10386:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:729::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:169;1148:2;1145:1;1142:9;1134:169;;;1205:23;1224:3;1205:23;:::i;:::-;1193:36;;1166:1;1159:9;;;;;1249:12;;;;1281;;1134:169;;;-1:-1:-1;1321:5:1;603:729;-1:-1:-1;;;;;;;603:729:1:o;1337:160::-;1402:20;;1458:13;;1451:21;1441:32;;1431:60;;1487:1;1484;1477:12;1502:186;1561:6;1614:2;1602:9;1593:7;1589:23;1585:32;1582:52;;;1630:1;1627;1620:12;1582:52;1653:29;1672:9;1653:29;:::i;:::-;1643:39;1502:186;-1:-1:-1;;;1502:186:1:o;1693:260::-;1761:6;1769;1822:2;1810:9;1801:7;1797:23;1793:32;1790:52;;;1838:1;1835;1828:12;1790:52;1861:29;1880:9;1861:29;:::i;:::-;1851:39;;1909:38;1943:2;1932:9;1928:18;1909:38;:::i;:::-;1899:48;;1693:260;;;;;:::o;1958:328::-;2035:6;2043;2051;2104:2;2092:9;2083:7;2079:23;2075:32;2072:52;;;2120:1;2117;2110:12;2072:52;2143:29;2162:9;2143:29;:::i;:::-;2133:39;;2191:38;2225:2;2214:9;2210:18;2191:38;:::i;:::-;2181:48;;2276:2;2265:9;2261:18;2248:32;2238:42;;1958:328;;;;;:::o;2291:666::-;2386:6;2394;2402;2410;2463:3;2451:9;2442:7;2438:23;2434:33;2431:53;;;2480:1;2477;2470:12;2431:53;2503:29;2522:9;2503:29;:::i;:::-;2493:39;;2551:38;2585:2;2574:9;2570:18;2551:38;:::i;:::-;2541:48;;2636:2;2625:9;2621:18;2608:32;2598:42;;2691:2;2680:9;2676:18;2663:32;2718:18;2710:6;2707:30;2704:50;;;2750:1;2747;2740:12;2704:50;2773:22;;2826:4;2818:13;;2814:27;-1:-1:-1;2804:55:1;;2855:1;2852;2845:12;2804:55;2878:73;2943:7;2938:2;2925:16;2920:2;2916;2912:11;2878:73;:::i;:::-;2868:83;;;2291:666;;;;;;;:::o;2962:254::-;3027:6;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:35;3206:2;3195:9;3191:18;3175:35;:::i;3221:254::-;3289:6;3297;3350:2;3338:9;3329:7;3325:23;3321:32;3318:52;;;3366:1;3363;3356:12;3318:52;3389:29;3408:9;3389:29;:::i;:::-;3379:39;3465:2;3450:18;;;;3437:32;;-1:-1:-1;;;3221:254:1:o;3480:416::-;3570:6;3578;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;3687:9;3674:23;3720:18;3712:6;3709:30;3706:50;;;3752:1;3749;3742:12;3706:50;3775:61;3828:7;3819:6;3808:9;3804:22;3775:61;:::i;:::-;3765:71;;;3855:35;3886:2;3875:9;3871:18;3855:35;:::i;3901:416::-;3994:6;4002;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;4111:9;4098:23;4144:18;4136:6;4133:30;4130:50;;;4176:1;4173;4166:12;4130:50;4199:61;4252:7;4243:6;4232:9;4228:22;4199:61;:::i;:::-;4189:71;4307:2;4292:18;;;;4279:32;;-1:-1:-1;;;;3901:416:1:o;4322:245::-;4380:6;4433:2;4421:9;4412:7;4408:23;4404:32;4401:52;;;4449:1;4446;4439:12;4401:52;4488:9;4475:23;4507:30;4531:5;4507:30;:::i;4572:249::-;4641:6;4694:2;4682:9;4673:7;4669:23;4665:32;4662:52;;;4710:1;4707;4700:12;4662:52;4742:9;4736:16;4761:30;4785:5;4761:30;:::i;4826:450::-;4895:6;4948:2;4936:9;4927:7;4923:23;4919:32;4916:52;;;4964:1;4961;4954:12;4916:52;5004:9;4991:23;5037:18;5029:6;5026:30;5023:50;;;5069:1;5066;5059:12;5023:50;5092:22;;5145:4;5137:13;;5133:27;-1:-1:-1;5123:55:1;;5174:1;5171;5164:12;5123:55;5197:73;5262:7;5257:2;5244:16;5239:2;5235;5231:11;5197:73;:::i;5281:180::-;5340:6;5393:2;5381:9;5372:7;5368:23;5364:32;5361:52;;;5409:1;5406;5399:12;5361:52;-1:-1:-1;5432:23:1;;5281:180;-1:-1:-1;5281:180:1:o;5466:248::-;5534:6;5542;5595:2;5583:9;5574:7;5570:23;5566:32;5563:52;;;5611:1;5608;5601:12;5563:52;-1:-1:-1;;5634:23:1;;;5704:2;5689:18;;;5676:32;;-1:-1:-1;5466:248:1:o;5719:316::-;5796:6;5804;5812;5865:2;5853:9;5844:7;5840:23;5836:32;5833:52;;;5881:1;5878;5871:12;5833:52;-1:-1:-1;;5904:23:1;;;5974:2;5959:18;;5946:32;;-1:-1:-1;6025:2:1;6010:18;;;5997:32;;5719:316;-1:-1:-1;5719:316:1:o;6040:257::-;6081:3;6119:5;6113:12;6146:6;6141:3;6134:19;6162:63;6218:6;6211:4;6206:3;6202:14;6195:4;6188:5;6184:16;6162:63;:::i;:::-;6279:2;6258:15;-1:-1:-1;;6254:29:1;6245:39;;;;6286:4;6241:50;;6040:257;-1:-1:-1;;6040:257:1:o;6302:185::-;6344:3;6382:5;6376:12;6397:52;6442:6;6437:3;6430:4;6423:5;6419:16;6397:52;:::i;:::-;6465:16;;;;;6302:185;-1:-1:-1;;6302:185:1:o;6492:1174::-;6668:3;6697:1;6730:6;6724:13;6760:3;6782:1;6810:9;6806:2;6802:18;6792:28;;6870:2;6859:9;6855:18;6892;6882:61;;6936:4;6928:6;6924:17;6914:27;;6882:61;6962:2;7010;7002:6;6999:14;6979:18;6976:38;6973:165;;;-1:-1:-1;;;7037:33:1;;7093:4;7090:1;7083:15;7123:4;7044:3;7111:17;6973:165;7154:18;7181:104;;;;7299:1;7294:320;;;;7147:467;;7181:104;-1:-1:-1;;7214:24:1;;7202:37;;7259:16;;;;-1:-1:-1;7181:104:1;;7294:320;19406:1;19399:14;;;19443:4;19430:18;;7389:1;7403:165;7417:6;7414:1;7411:13;7403:165;;;7495:14;;7482:11;;;7475:35;7538:16;;;;7432:10;;7403:165;;;7407:3;;7597:6;7592:3;7588:16;7581:23;;7147:467;;;;;;;7630:30;7656:3;7648:6;7630:30;:::i;:::-;7623:37;6492:1174;-1:-1:-1;;;;;6492:1174:1:o;7879:488::-;-1:-1:-1;;;;;8148:15:1;;;8130:34;;8200:15;;8195:2;8180:18;;8173:43;8247:2;8232:18;;8225:34;;;8295:3;8290:2;8275:18;;8268:31;;;8073:4;;8316:45;;8341:19;;8333:6;8316:45;:::i;:::-;8308:53;7879:488;-1:-1:-1;;;;;;7879:488:1:o;8564:219::-;8713:2;8702:9;8695:21;8676:4;8733:44;8773:2;8762:9;8758:18;8750:6;8733:44;:::i;9560:414::-;9762:2;9744:21;;;9801:2;9781:18;;;9774:30;9840:34;9835:2;9820:18;;9813:62;-1:-1:-1;;;9906:2:1;9891:18;;9884:48;9964:3;9949:19;;9560:414::o;16108:356::-;16310:2;16292:21;;;16329:18;;;16322:30;16388:34;16383:2;16368:18;;16361:62;16455:2;16440:18;;16108:356::o;18040:413::-;18242:2;18224:21;;;18281:2;18261:18;;;18254:30;18320:34;18315:2;18300:18;;18293:62;-1:-1:-1;;;18386:2:1;18371:18;;18364:47;18443:3;18428:19;;18040:413::o;19053:275::-;19124:2;19118:9;19189:2;19170:13;;-1:-1:-1;;19166:27:1;19154:40;;19224:18;19209:34;;19245:22;;;19206:62;19203:88;;;19271:18;;:::i;:::-;19307:2;19300:22;19053:275;;-1:-1:-1;19053:275:1:o;19459:128::-;19499:3;19530:1;19526:6;19523:1;19520:13;19517:39;;;19536:18;;:::i;:::-;-1:-1:-1;19572:9:1;;19459:128::o;19592:120::-;19632:1;19658;19648:35;;19663:18;;:::i;:::-;-1:-1:-1;19697:9:1;;19592:120::o;19717:168::-;19757:7;19823:1;19819;19815:6;19811:14;19808:1;19805:21;19800:1;19793:9;19786:17;19782:45;19779:71;;;19830:18;;:::i;:::-;-1:-1:-1;19870:9:1;;19717:168::o;19890:125::-;19930:4;19958:1;19955;19952:8;19949:34;;;19963:18;;:::i;:::-;-1:-1:-1;20000:9:1;;19890:125::o;20020:258::-;20092:1;20102:113;20116:6;20113:1;20110:13;20102:113;;;20192:11;;;20186:18;20173:11;;;20166:39;20138:2;20131:10;20102:113;;;20233:6;20230:1;20227:13;20224:48;;;-1:-1:-1;;20268:1:1;20250:16;;20243:27;20020:258::o;20283:380::-;20362:1;20358:12;;;;20405;;;20426:61;;20480:4;20472:6;20468:17;20458:27;;20426:61;20533:2;20525:6;20522:14;20502:18;20499:38;20496:161;;;20579:10;20574:3;20570:20;20567:1;20560:31;20614:4;20611:1;20604:15;20642:4;20639:1;20632:15;20496:161;;20283:380;;;:::o;20668:135::-;20707:3;-1:-1:-1;;20728:17:1;;20725:43;;;20748:18;;:::i;:::-;-1:-1:-1;20795:1:1;20784:13;;20668:135::o;20808:112::-;20840:1;20866;20856:35;;20871:18;;:::i;:::-;-1:-1:-1;20905:9:1;;20808:112::o;20925:127::-;20986:10;20981:3;20977:20;20974:1;20967:31;21017:4;21014:1;21007:15;21041:4;21038:1;21031:15;21057:127;21118:10;21113:3;21109:20;21106:1;21099:31;21149:4;21146:1;21139:15;21173:4;21170:1;21163:15;21189:127;21250:10;21245:3;21241:20;21238:1;21231:31;21281:4;21278:1;21271:15;21305:4;21302:1;21295:15;21321:127;21382:10;21377:3;21373:20;21370:1;21363:31;21413:4;21410:1;21403:15;21437:4;21434:1;21427:15;21453:127;21514:10;21509:3;21505:20;21502:1;21495:31;21545:4;21542:1;21535:15;21569:4;21566:1;21559:15;21585:131;-1:-1:-1;;;;;;21659:32:1;;21649:43;;21639:71;;21706:1;21703;21696:12;21639:71;21585:131;:::o

Swarm Source

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