ETH Price: $3,444.25 (+1.55%)
Gas: 4 Gwei

Token

BearByte (BBYTE)
 

Overview

Max Total Supply

1,457 BBYTE

Holders

917

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BBYTE
0xa1a08453352eaec251a5b15e9f9fb8b3cb327f4b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CharityBear

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-01-22
*/

// 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 CharityBear is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _PaymentAddress = payable(0x1C8FB6C9EEa46Dc78f3CbeA0a3d7013525C9F9D9);

    uint256 private BBYTE_SPECIAL = 15;
    uint256 private BBYTE_PUBLIC = 3318;
    uint256 public BBYTE_MAX = BBYTE_SPECIAL + BBYTE_PUBLIC;
    uint256 private PRESALE_PRICE = 0.07 ether;
    uint256 private PUBLIC_PRICE = 0.07 ether;
    uint256 private REVEAL_DELAY = 0 hours;
    uint256 private PRESALE_HOURS = 0 hours;
    uint256 private PURCHASE_LIMIT = 5;
    uint256 private PRESALE_MINT_LIMIT = 5;
    uint256 private PUBLIC_MINT_LIMIT = 5;
    
    mapping(address => bool) private _mappingWhiteList;

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

    uint256 private _activeDateTime = 1642881600; // (GMT): Saturday, January 22, 2022 8:00:00 PM
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicBBYTE;

    constructor() ERC721("BearByte", "BBYTE") {}

    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 specialLimit, uint256 publicLimit) external onlyOwner {
        BBYTE_SPECIAL = specialLimit;
        BBYTE_PUBLIC = publicLimit;
        BBYTE_MAX = BBYTE_SPECIAL + BBYTE_PUBLIC;
    }

    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 airdropPublic(address[] memory airdropAddress, uint256 numberOfTokens) external onlyOwner {
        for (uint256 k = 0; k < airdropAddress.length; k++) {
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = BBYTE_SPECIAL + _publicBBYTE.current();

                if (_publicBBYTE.current() < BBYTE_PUBLIC) {
                    _publicBBYTE.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 mintSpecial(address to) external onlyOwner {
        for (uint256 i = 0; i < BBYTE_SPECIAL; i++) {
            if (!_exists(i)) _safeMint(to, i);
        }
    }

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

        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 = BBYTE_SPECIAL + _publicBBYTE.current();

            if (_publicBBYTE.current() < BBYTE_PUBLIC) {
                _publicBBYTE.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":"BBYTE_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":"airdropPublic","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":[{"internalType":"address","name":"to","type":"address"}],"name":"mintSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"specialLimit","type":"uint256"},{"internalType":"uint256","name":"publicLimit","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"}]

6080604052600c80546001600160a01b031916731c8fb6c9eea46dc78f3cbea0a3d7013525c9f9d9179055600f600d819055610cf6600e819055620000449162000257565b600f5566f8b0a10e47000060108190556011556000601281905560138190556005601481905560158190556016556018805460ff191660011790556361ec6240601b55604080516020810191829052829052620000a591601c9190620001b1565b50604080516020810191829052600090819052620000c691601d91620001b1565b50348015620000d457600080fd5b506040805180820182526008815267426561724279746560c01b602080830191825283518085019094526005845264424259544560d81b9084015281519192916200012291600091620001b1565b50805162000138906001906020840190620001b1565b50505060006200014d620001ad60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002bb565b3390565b828054620001bf906200027e565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b600082198211156200027957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200029357607f821691505b60208210811415620002b557634e487b7160e01b600052602260045260246000fd5b50919050565b612a8180620002cb6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a811a37b116100a0578063e43f696e1161006f578063e43f696e146105da578063e985e9c5146105fa578063efef39a114610643578063f2fde38b14610656578063f56beff61461067657600080fd5b8063a811a37b1461055a578063b88d4fde1461057a578063bc7e24241461059a578063c87b56dd146105ba57600080fd5b80638d859f3e116100e75780638d859f3e146104d25780638da5cb5b146104e757806395d89b41146105055780639791e3891461051a578063a22cb4651461053a57600080fd5b8063715018a614610467578063731edc441461047c57806383b8c9141461049c578063856de970146104b257600080fd5b80633ccfd60b1161019b5780635e1e10041161016a5780635e1e1004146103ae5780636352211e146103ce57806363fe5cca146103ee5780636f9170f61461040e57806370a082311461044757600080fd5b80633ccfd60b1461033957806342842e0e1461034e5780634f6ccce71461036e57806355f804b31461038e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a7146102095780630442bfa81461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b5061022961022436600461259a565b610696565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004612636565b6106c1565b005b34801561026c57600080fd5b50610275610714565b60405161023591906127b0565b34801561028e57600080fd5b506102a261029d36600461261d565b6107a6565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d53660046124e6565b61082e565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b5061025e610314366004612404565b610944565b34801561032557600080fd5b506102eb6103343660046124e6565b610975565b34801561034557600080fd5b5061025e610a0b565b34801561035a57600080fd5b5061025e610369366004612404565b610a7d565b34801561037a57600080fd5b506102eb61038936600461261d565b610a98565b34801561039a57600080fd5b5061025e6103a93660046125d4565b610b2b565b3480156103ba57600080fd5b5061025e6103c93660046123af565b610b7d565b3480156103da57600080fd5b506102a26103e936600461261d565b610bde565b3480156103fa57600080fd5b5061025e6104093660046123af565b610c55565b34801561041a57600080fd5b506102296104293660046123af565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561045357600080fd5b506102eb6104623660046123af565b610cca565b34801561047357600080fd5b5061025e610d51565b34801561048857600080fd5b5061025e610497366004612555565b610dda565b3480156104a857600080fd5b506102eb600f5481565b3480156104be57600080fd5b5061025e6104cd3660046124e6565b610ebc565b3480156104de57600080fd5b506102eb610f5e565b3480156104f357600080fd5b50600a546001600160a01b03166102a2565b34801561051157600080fd5b50610275610f78565b34801561052657600080fd5b5061025e610535366004612658565b610f87565b34801561054657600080fd5b5061025e6105553660046124bc565b610fd7565b34801561056657600080fd5b5061025e6105753660046125d4565b61109c565b34801561058657600080fd5b5061025e610595366004612440565b6110ee565b3480156105a657600080fd5b5061025e6105b5366004612658565b611126565b3480156105c657600080fd5b506102756105d536600461261d565b611173565b3480156105e657600080fd5b5061025e6105f5366004612510565b61129c565b34801561060657600080fd5b506102296106153660046123d1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025e61065136600461261d565b611342565b34801561066257600080fd5b5061025e6106713660046123af565b61170c565b34801561068257600080fd5b5061025e610691366004612636565b61180c565b60006001600160e01b0319821663780e9d6360e01b14806106bb57506106bb82611866565b92915050565b600a546001600160a01b03163314806106e45750600b546001600160a01b031633145b6107095760405162461bcd60e51b815260040161070090612815565b60405180910390fd5b601091909155601155565b6060600080546107239061295a565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061295a565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826118b6565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b506000908152600460205260409020546001600160a01b031690565b600061083982610bde565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806108c357506108c38133610615565b6109355760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b61093f83836118d3565b505050565b61094e3382611941565b61096a5760405162461bcd60e51b81526004016107009061284a565b61093f838383611a2b565b600061098083610cca565b82106109e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610700565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a2e5750600b546001600160a01b031633145b610a4a5760405162461bcd60e51b815260040161070090612815565b6040514790339082156108fc029083906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b61093f838383604051806020016040528060008152506110ee565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610700565b60088281548110610b1957610b19612a06565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b4e5750600b546001600160a01b031633145b610b6a5760405162461bcd60e51b815260040161070090612815565b8051610a7990601c906020840190612205565b600a546001600160a01b0316331480610ba05750600b546001600160a01b031633145b610bbc5760405162461bcd60e51b815260040161070090612815565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b600a546001600160a01b0316331480610c785750600b546001600160a01b031633145b610c945760405162461bcd60e51b815260040161070090612815565b60005b600d54811015610a7957610caa816118b6565b610cb857610cb88282611bd6565b80610cc281612995565b915050610c97565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610d745750600b546001600160a01b031633145b610d905760405162461bcd60e51b815260040161070090612815565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610dfd5750600b546001600160a01b031633145b610e195760405162461bcd60e51b815260040161070090612815565b60005b825181101561093f5760005b82811015610ea9576000610e3b601e5490565b600d54610e4891906128cc565b9050600e54610e56601e5490565b1015610e9657610e66601e611bf0565b610e6f816118b6565b610e9657610e96858481518110610e8857610e88612a06565b602002602001015182611bd6565b5080610ea181612995565b915050610e28565b5080610eb481612995565b915050610e1c565b600a546001600160a01b0316331480610edf5750600b546001600160a01b031633145b610efb5760405162461bcd60e51b815260040161070090612815565b610f04816118b6565b15610f475760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610700565b610f50816118b6565b610a7957610a798282611bd6565b6000601b54421015610f71575060105490565b5060115490565b6060600180546107239061295a565b600a546001600160a01b0316331480610faa5750600b546001600160a01b031633145b610fc65760405162461bcd60e51b815260040161070090612815565b601b92909255601291909155601355565b6001600160a01b0382163314156110305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110bf5750600b546001600160a01b031633145b6110db5760405162461bcd60e51b815260040161070090612815565b8051610a7990601d906020840190612205565b6110f83383611941565b6111145760405162461bcd60e51b81526004016107009061284a565b61112084848484611c0d565b50505050565b600a546001600160a01b03163314806111495750600b546001600160a01b031633145b6111655760405162461bcd60e51b815260040161070090612815565b601492909255601555601655565b606061117e826118b6565b6111c15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610700565b42601254601b546111d291906128cc565b101561120a57601c6111e383611c40565b6040516020016111f49291906126cc565b6040516020818303038152906040529050919050565b601d80546112179061295a565b80601f01602080910402602001604051908101604052809291908181526020018280546112439061295a565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112bf5750600b546001600160a01b031633145b6112db5760405162461bcd60e51b815260040161070090612815565b60005b825181101561093f5781601760008584815181106112fe576112fe612a06565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061133a81612995565b9150506112de565b600e54601e54106113a05760405162461bcd60e51b815260206004820152602260248201527f507572636861736520776f756c64206578636565642042425954455f5055424c604482015261494360f01b6064820152608401610700565b600a546001600160a01b031633146116a15760145481111561140f5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610700565b3481611419610f5e565b61142391906128f8565b11156114715760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610700565b601b544210156115e85760185460ff161515600114156114ef573360009081526017602052604090205460ff1615156001146114ef5760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c69737400000000006044820152606401610700565b3360009081526019602052604090205461150a9082906128cc565b33600090815260196020526040902055601354601b5461152a9190612917565b42116115825760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b6064820152608401610700565b6015543360009081526019602052604090205411156115e35760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610700565b611666565b336000908152601a60205260409020546116039082906128cc565b336000908152601a6020526040902081905560165410156116665760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610700565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561169f573d6000803e3d6000fd5b505b60005b81811015610a795760006116b7601e5490565b600d546116c491906128cc565b9050600e546116d2601e5490565b10156116f9576116e2601e611bf0565b6116eb816118b6565b6116f9576116f93382611bd6565b508061170481612995565b9150506116a4565b600a546001600160a01b031633148061172f5750600b546001600160a01b031633145b61174b5760405162461bcd60e51b815260040161070090612815565b6001600160a01b0381166117b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633148061182f5750600b546001600160a01b031633145b61184b5760405162461bcd60e51b815260040161070090612815565b600d829055600e81905561185f81836128cc565b600f555050565b60006001600160e01b031982166380ac58cd60e01b148061189757506001600160e01b03198216635b5e139f60e01b145b806106bb57506301ffc9a760e01b6001600160e01b03198316146106bb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061190882610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061194c826118b6565b6119ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b60006119b883610bde565b9050806001600160a01b0316846001600160a01b031614806119f35750836001600160a01b03166119e8846107a6565b6001600160a01b0316145b80611a2357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3e82610bde565b6001600160a01b031614611aa65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b038216611b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b611b13838383611d3e565b611b1e6000826118d3565b6001600160a01b0383166000908152600360205260408120805460019290611b47908490612917565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b759084906128cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a79828260405180602001604052806000815250611df6565b6001816000016000828254611c0591906128cc565b909155505050565b611c18848484611a2b565b611c2484848484611e29565b6111205760405162461bcd60e51b8152600401610700906127c3565b606081611c645750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8e5780611c7881612995565b9150611c879050600a836128e4565b9150611c68565b60008167ffffffffffffffff811115611ca957611ca9612a1c565b6040519080825280601f01601f191660200182016040528015611cd3576020820181803683370190505b5090505b8415611a2357611ce8600183612917565b9150611cf5600a866129b0565b611d009060306128cc565b60f81b818381518110611d1557611d15612a06565b60200101906001600160f81b031916908160001a905350611d37600a866128e4565b9450611cd7565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd35761093f81611fd3565b826001600160a01b0316826001600160a01b03161461093f5761093f8282612082565b611e0083836120c6565b611e0d6000848484611e29565b61093f5760405162461bcd60e51b8152600401610700906127c3565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d903390899088908890600401612773565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125b7565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b8152600401610700906127c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a23565b506001949350505050565b60006001611f4384610cca565b611f4d9190612917565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612917565b6000838152600960205260408120546008805493945090928490811061200d5761200d612a06565b90600052602060002001549050806008838154811061202e5761202e612a06565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612066576120666129f0565b6001900381819060005260206000200160009055905550505050565b600061208d83610cca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661211c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b612125816118b6565b156121725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b61217e60008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121a79084906128cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122119061295a565b90600052602060002090601f0160209004810192826122335760008555612279565b82601f1061224c57805160ff1916838001178555612279565b82800160010185558215612279579182015b8281111561227957825182559160200191906001019061225e565b50612285929150612289565b5090565b5b80821115612285576000815560010161228a565b600067ffffffffffffffff8311156122b8576122b8612a1c565b6122cb601f8401601f191660200161289b565b90508281528383830111156122df57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461230d57600080fd5b919050565b600082601f83011261232357600080fd5b8135602067ffffffffffffffff82111561233f5761233f612a1c565b8160051b61234e82820161289b565b83815282810190868401838801850189101561236957600080fd5b600093505b858410156123935761237f816122f6565b83526001939093019291840191840161236e565b50979650505050505050565b8035801515811461230d57600080fd5b6000602082840312156123c157600080fd5b6123ca826122f6565b9392505050565b600080604083850312156123e457600080fd5b6123ed836122f6565b91506123fb602084016122f6565b90509250929050565b60008060006060848603121561241957600080fd5b612422846122f6565b9250612430602085016122f6565b9150604084013590509250925092565b6000806000806080858703121561245657600080fd5b61245f856122f6565b935061246d602086016122f6565b925060408501359150606085013567ffffffffffffffff81111561249057600080fd5b8501601f810187136124a157600080fd5b6124b08782356020840161229e565b91505092959194509250565b600080604083850312156124cf57600080fd5b6124d8836122f6565b91506123fb6020840161239f565b600080604083850312156124f957600080fd5b612502836122f6565b946020939093013593505050565b6000806040838503121561252357600080fd5b823567ffffffffffffffff81111561253a57600080fd5b61254685828601612312565b9250506123fb6020840161239f565b6000806040838503121561256857600080fd5b823567ffffffffffffffff81111561257f57600080fd5b61258b85828601612312565b95602094909401359450505050565b6000602082840312156125ac57600080fd5b81356123ca81612a32565b6000602082840312156125c957600080fd5b81516123ca81612a32565b6000602082840312156125e657600080fd5b813567ffffffffffffffff8111156125fd57600080fd5b8201601f8101841361260e57600080fd5b611a238482356020840161229e565b60006020828403121561262f57600080fd5b5035919050565b6000806040838503121561264957600080fd5b50508035926020909101359150565b60008060006060848603121561266d57600080fd5b505081359360208301359350604090920135919050565b6000815180845261269c81602086016020860161292e565b601f01601f19169290920160200192915050565b600081516126c281856020860161292e565b9290920192915050565b600080845481600182811c9150808316806126e857607f831692505b602080841082141561270857634e487b7160e01b86526022600452602486fd5b81801561271c576001811461272d5761275a565b60ff1986168952848901965061275a565b60008b81526020902060005b868110156127525781548b820152908501908301612739565b505084890196505b50505050505061276a81856126b0565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a690830184612684565b9695505050505050565b6020815260006123ca6020830184612684565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128c4576128c4612a1c565b604052919050565b600082198211156128df576128df6129c4565b500190565b6000826128f3576128f36129da565b500490565b6000816000190483118215151615612912576129126129c4565b500290565b600082821015612929576129296129c4565b500390565b60005b83811015612949578181015183820152602001612931565b838111156111205750506000910152565b600181811c9082168061296e57607f821691505b6020821081141561298f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129a9576129a96129c4565b5060010190565b6000826129bf576129bf6129da565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a4857600080fd5b5056fea2646970667358221220ed771ccb9d2dca2b85ef942e8358d1d89478663c0b10749b289f779666e5759464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a811a37b116100a0578063e43f696e1161006f578063e43f696e146105da578063e985e9c5146105fa578063efef39a114610643578063f2fde38b14610656578063f56beff61461067657600080fd5b8063a811a37b1461055a578063b88d4fde1461057a578063bc7e24241461059a578063c87b56dd146105ba57600080fd5b80638d859f3e116100e75780638d859f3e146104d25780638da5cb5b146104e757806395d89b41146105055780639791e3891461051a578063a22cb4651461053a57600080fd5b8063715018a614610467578063731edc441461047c57806383b8c9141461049c578063856de970146104b257600080fd5b80633ccfd60b1161019b5780635e1e10041161016a5780635e1e1004146103ae5780636352211e146103ce57806363fe5cca146103ee5780636f9170f61461040e57806370a082311461044757600080fd5b80633ccfd60b1461033957806342842e0e1461034e5780634f6ccce71461036e57806355f804b31461038e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a7146102095780630442bfa81461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b5061022961022436600461259a565b610696565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004612636565b6106c1565b005b34801561026c57600080fd5b50610275610714565b60405161023591906127b0565b34801561028e57600080fd5b506102a261029d36600461261d565b6107a6565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d53660046124e6565b61082e565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b5061025e610314366004612404565b610944565b34801561032557600080fd5b506102eb6103343660046124e6565b610975565b34801561034557600080fd5b5061025e610a0b565b34801561035a57600080fd5b5061025e610369366004612404565b610a7d565b34801561037a57600080fd5b506102eb61038936600461261d565b610a98565b34801561039a57600080fd5b5061025e6103a93660046125d4565b610b2b565b3480156103ba57600080fd5b5061025e6103c93660046123af565b610b7d565b3480156103da57600080fd5b506102a26103e936600461261d565b610bde565b3480156103fa57600080fd5b5061025e6104093660046123af565b610c55565b34801561041a57600080fd5b506102296104293660046123af565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561045357600080fd5b506102eb6104623660046123af565b610cca565b34801561047357600080fd5b5061025e610d51565b34801561048857600080fd5b5061025e610497366004612555565b610dda565b3480156104a857600080fd5b506102eb600f5481565b3480156104be57600080fd5b5061025e6104cd3660046124e6565b610ebc565b3480156104de57600080fd5b506102eb610f5e565b3480156104f357600080fd5b50600a546001600160a01b03166102a2565b34801561051157600080fd5b50610275610f78565b34801561052657600080fd5b5061025e610535366004612658565b610f87565b34801561054657600080fd5b5061025e6105553660046124bc565b610fd7565b34801561056657600080fd5b5061025e6105753660046125d4565b61109c565b34801561058657600080fd5b5061025e610595366004612440565b6110ee565b3480156105a657600080fd5b5061025e6105b5366004612658565b611126565b3480156105c657600080fd5b506102756105d536600461261d565b611173565b3480156105e657600080fd5b5061025e6105f5366004612510565b61129c565b34801561060657600080fd5b506102296106153660046123d1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025e61065136600461261d565b611342565b34801561066257600080fd5b5061025e6106713660046123af565b61170c565b34801561068257600080fd5b5061025e610691366004612636565b61180c565b60006001600160e01b0319821663780e9d6360e01b14806106bb57506106bb82611866565b92915050565b600a546001600160a01b03163314806106e45750600b546001600160a01b031633145b6107095760405162461bcd60e51b815260040161070090612815565b60405180910390fd5b601091909155601155565b6060600080546107239061295a565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061295a565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826118b6565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b506000908152600460205260409020546001600160a01b031690565b600061083982610bde565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806108c357506108c38133610615565b6109355760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b61093f83836118d3565b505050565b61094e3382611941565b61096a5760405162461bcd60e51b81526004016107009061284a565b61093f838383611a2b565b600061098083610cca565b82106109e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610700565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a2e5750600b546001600160a01b031633145b610a4a5760405162461bcd60e51b815260040161070090612815565b6040514790339082156108fc029083906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b61093f838383604051806020016040528060008152506110ee565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610700565b60088281548110610b1957610b19612a06565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b4e5750600b546001600160a01b031633145b610b6a5760405162461bcd60e51b815260040161070090612815565b8051610a7990601c906020840190612205565b600a546001600160a01b0316331480610ba05750600b546001600160a01b031633145b610bbc5760405162461bcd60e51b815260040161070090612815565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b600a546001600160a01b0316331480610c785750600b546001600160a01b031633145b610c945760405162461bcd60e51b815260040161070090612815565b60005b600d54811015610a7957610caa816118b6565b610cb857610cb88282611bd6565b80610cc281612995565b915050610c97565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610d745750600b546001600160a01b031633145b610d905760405162461bcd60e51b815260040161070090612815565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610dfd5750600b546001600160a01b031633145b610e195760405162461bcd60e51b815260040161070090612815565b60005b825181101561093f5760005b82811015610ea9576000610e3b601e5490565b600d54610e4891906128cc565b9050600e54610e56601e5490565b1015610e9657610e66601e611bf0565b610e6f816118b6565b610e9657610e96858481518110610e8857610e88612a06565b602002602001015182611bd6565b5080610ea181612995565b915050610e28565b5080610eb481612995565b915050610e1c565b600a546001600160a01b0316331480610edf5750600b546001600160a01b031633145b610efb5760405162461bcd60e51b815260040161070090612815565b610f04816118b6565b15610f475760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610700565b610f50816118b6565b610a7957610a798282611bd6565b6000601b54421015610f71575060105490565b5060115490565b6060600180546107239061295a565b600a546001600160a01b0316331480610faa5750600b546001600160a01b031633145b610fc65760405162461bcd60e51b815260040161070090612815565b601b92909255601291909155601355565b6001600160a01b0382163314156110305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110bf5750600b546001600160a01b031633145b6110db5760405162461bcd60e51b815260040161070090612815565b8051610a7990601d906020840190612205565b6110f83383611941565b6111145760405162461bcd60e51b81526004016107009061284a565b61112084848484611c0d565b50505050565b600a546001600160a01b03163314806111495750600b546001600160a01b031633145b6111655760405162461bcd60e51b815260040161070090612815565b601492909255601555601655565b606061117e826118b6565b6111c15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610700565b42601254601b546111d291906128cc565b101561120a57601c6111e383611c40565b6040516020016111f49291906126cc565b6040516020818303038152906040529050919050565b601d80546112179061295a565b80601f01602080910402602001604051908101604052809291908181526020018280546112439061295a565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112bf5750600b546001600160a01b031633145b6112db5760405162461bcd60e51b815260040161070090612815565b60005b825181101561093f5781601760008584815181106112fe576112fe612a06565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061133a81612995565b9150506112de565b600e54601e54106113a05760405162461bcd60e51b815260206004820152602260248201527f507572636861736520776f756c64206578636565642042425954455f5055424c604482015261494360f01b6064820152608401610700565b600a546001600160a01b031633146116a15760145481111561140f5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610700565b3481611419610f5e565b61142391906128f8565b11156114715760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610700565b601b544210156115e85760185460ff161515600114156114ef573360009081526017602052604090205460ff1615156001146114ef5760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c69737400000000006044820152606401610700565b3360009081526019602052604090205461150a9082906128cc565b33600090815260196020526040902055601354601b5461152a9190612917565b42116115825760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b6064820152608401610700565b6015543360009081526019602052604090205411156115e35760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610700565b611666565b336000908152601a60205260409020546116039082906128cc565b336000908152601a6020526040902081905560165410156116665760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610700565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561169f573d6000803e3d6000fd5b505b60005b81811015610a795760006116b7601e5490565b600d546116c491906128cc565b9050600e546116d2601e5490565b10156116f9576116e2601e611bf0565b6116eb816118b6565b6116f9576116f93382611bd6565b508061170481612995565b9150506116a4565b600a546001600160a01b031633148061172f5750600b546001600160a01b031633145b61174b5760405162461bcd60e51b815260040161070090612815565b6001600160a01b0381166117b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633148061182f5750600b546001600160a01b031633145b61184b5760405162461bcd60e51b815260040161070090612815565b600d829055600e81905561185f81836128cc565b600f555050565b60006001600160e01b031982166380ac58cd60e01b148061189757506001600160e01b03198216635b5e139f60e01b145b806106bb57506301ffc9a760e01b6001600160e01b03198316146106bb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061190882610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061194c826118b6565b6119ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b60006119b883610bde565b9050806001600160a01b0316846001600160a01b031614806119f35750836001600160a01b03166119e8846107a6565b6001600160a01b0316145b80611a2357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3e82610bde565b6001600160a01b031614611aa65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b038216611b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b611b13838383611d3e565b611b1e6000826118d3565b6001600160a01b0383166000908152600360205260408120805460019290611b47908490612917565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b759084906128cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a79828260405180602001604052806000815250611df6565b6001816000016000828254611c0591906128cc565b909155505050565b611c18848484611a2b565b611c2484848484611e29565b6111205760405162461bcd60e51b8152600401610700906127c3565b606081611c645750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8e5780611c7881612995565b9150611c879050600a836128e4565b9150611c68565b60008167ffffffffffffffff811115611ca957611ca9612a1c565b6040519080825280601f01601f191660200182016040528015611cd3576020820181803683370190505b5090505b8415611a2357611ce8600183612917565b9150611cf5600a866129b0565b611d009060306128cc565b60f81b818381518110611d1557611d15612a06565b60200101906001600160f81b031916908160001a905350611d37600a866128e4565b9450611cd7565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd35761093f81611fd3565b826001600160a01b0316826001600160a01b03161461093f5761093f8282612082565b611e0083836120c6565b611e0d6000848484611e29565b61093f5760405162461bcd60e51b8152600401610700906127c3565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d903390899088908890600401612773565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125b7565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b8152600401610700906127c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a23565b506001949350505050565b60006001611f4384610cca565b611f4d9190612917565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612917565b6000838152600960205260408120546008805493945090928490811061200d5761200d612a06565b90600052602060002001549050806008838154811061202e5761202e612a06565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612066576120666129f0565b6001900381819060005260206000200160009055905550505050565b600061208d83610cca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661211c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b612125816118b6565b156121725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b61217e60008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121a79084906128cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122119061295a565b90600052602060002090601f0160209004810192826122335760008555612279565b82601f1061224c57805160ff1916838001178555612279565b82800160010185558215612279579182015b8281111561227957825182559160200191906001019061225e565b50612285929150612289565b5090565b5b80821115612285576000815560010161228a565b600067ffffffffffffffff8311156122b8576122b8612a1c565b6122cb601f8401601f191660200161289b565b90508281528383830111156122df57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461230d57600080fd5b919050565b600082601f83011261232357600080fd5b8135602067ffffffffffffffff82111561233f5761233f612a1c565b8160051b61234e82820161289b565b83815282810190868401838801850189101561236957600080fd5b600093505b858410156123935761237f816122f6565b83526001939093019291840191840161236e565b50979650505050505050565b8035801515811461230d57600080fd5b6000602082840312156123c157600080fd5b6123ca826122f6565b9392505050565b600080604083850312156123e457600080fd5b6123ed836122f6565b91506123fb602084016122f6565b90509250929050565b60008060006060848603121561241957600080fd5b612422846122f6565b9250612430602085016122f6565b9150604084013590509250925092565b6000806000806080858703121561245657600080fd5b61245f856122f6565b935061246d602086016122f6565b925060408501359150606085013567ffffffffffffffff81111561249057600080fd5b8501601f810187136124a157600080fd5b6124b08782356020840161229e565b91505092959194509250565b600080604083850312156124cf57600080fd5b6124d8836122f6565b91506123fb6020840161239f565b600080604083850312156124f957600080fd5b612502836122f6565b946020939093013593505050565b6000806040838503121561252357600080fd5b823567ffffffffffffffff81111561253a57600080fd5b61254685828601612312565b9250506123fb6020840161239f565b6000806040838503121561256857600080fd5b823567ffffffffffffffff81111561257f57600080fd5b61258b85828601612312565b95602094909401359450505050565b6000602082840312156125ac57600080fd5b81356123ca81612a32565b6000602082840312156125c957600080fd5b81516123ca81612a32565b6000602082840312156125e657600080fd5b813567ffffffffffffffff8111156125fd57600080fd5b8201601f8101841361260e57600080fd5b611a238482356020840161229e565b60006020828403121561262f57600080fd5b5035919050565b6000806040838503121561264957600080fd5b50508035926020909101359150565b60008060006060848603121561266d57600080fd5b505081359360208301359350604090920135919050565b6000815180845261269c81602086016020860161292e565b601f01601f19169290920160200192915050565b600081516126c281856020860161292e565b9290920192915050565b600080845481600182811c9150808316806126e857607f831692505b602080841082141561270857634e487b7160e01b86526022600452602486fd5b81801561271c576001811461272d5761275a565b60ff1986168952848901965061275a565b60008b81526020902060005b868110156127525781548b820152908501908301612739565b505084890196505b50505050505061276a81856126b0565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a690830184612684565b9695505050505050565b6020815260006123ca6020830184612684565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128c4576128c4612a1c565b604052919050565b600082198211156128df576128df6129c4565b500190565b6000826128f3576128f36129da565b500490565b6000816000190483118215151615612912576129126129c4565b500290565b600082821015612929576129296129c4565b500390565b60005b83811015612949578181015183820152602001612931565b838111156111205750506000910152565b600181811c9082168061296e57607f821691505b6020821081141561298f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129a9576129a96129c4565b5060010190565b6000826129bf576129bf6129da565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a4857600080fd5b5056fea2646970667358221220ed771ccb9d2dca2b85ef942e8358d1d89478663c0b10749b289f779666e5759464736f6c63430008070033

Deployed Bytecode Sourcemap

46971:6188: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;;;;;;;;48957:184;;;;;;;;;;-1:-1:-1;48957: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;;;19062:25:1;;;19050:2;19035:18;40059:113:0;18916:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;53009:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;49971:104::-;;;;;;;;;;-1:-1:-1;49971:104:0;;;;;:::i;:::-;;:::i;48205:130::-;;;;;;;;;;-1:-1:-1;48205:130:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;50839:174::-;;;;;;;;;;-1:-1:-1;50839:174:0;;;;;:::i;:::-;;:::i;48836:113::-;;;;;;;;;;-1:-1:-1;48836:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;48918:23:0;48894:4;48918:23;;;:17;:23;;;;;;;;;48836:113;22135:295;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50083:544::-;;;;;;;;;;-1:-1:-1;50083:544:0;;;;;:::i;:::-;;:::i;47289:55::-;;;;;;;;;;;;;;;;50635:196;;;;;;;;;;-1:-1:-1;50635:196:0;;;;;:::i;:::-;;:::i;49645:203::-;;;;;;;;;;;;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;48343:240::-;;;;;;;;;;-1:-1:-1;48343:240:0;;;;;:::i;:::-;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;49856:107::-;;;;;;;;;;-1:-1:-1;49856:107:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49375:262::-;;;;;;;;;;-1:-1:-1;49375:262:0;;;;;:::i;:::-;;:::i;52651:350::-;;;;;;;;;;-1:-1:-1;52651:350:0;;;;;:::i;:::-;;:::i;48591:237::-;;;;;;;;;;-1:-1:-1;48591: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;51021:1622;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;49149:218::-;;;;;;;;;;-1:-1:-1;49149:218: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;48957: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;:::-;;;;;;;;;49060:13:::1;:32:::0;;;;49103:12:::1;:30:::0;48957: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;;15539:2:1;24613:110:0;;;15521:21:1;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;-1:-1:-1;;;15668:18:1;;;15661:42;15720:19;;24613:110:0;15337: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;;17482:2:1;24121:57:0;;;17464:21:1;17521:2;17501:18;;;17494:30;17560:34;17540:18;;;17533:62;-1:-1:-1;;;17611:18:1;;;17604:31;17652:19;;24121:57:0;17280: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;;13573:2:1;24191:168:0;;;13555:21:1;13612:2;13592:18;;;13585:30;13651:34;13631:18;;;13624:62;13722:26;13702:18;;;13695:54;13766:19;;24191:168:0;13371: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;53009: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;:::-;53111:37:::1;::::0;53077:21:::1;::::0;53119:10:::1;::::0;53111:37;::::1;;;::::0;53077:21;;53059:15:::1;53111:37:::0;53059:15;53111:37;53077:21;53119:10;53111:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53048:108;53009: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;;18302:2:1;40394:132:0;;;18284:21:1;18341:2;18321:18;;;18314:30;18380:34;18360:18;;;18353:62;-1:-1:-1;;;18431:18:1;;;18424:42;18483:19;;40394:132:0;18100:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;49971: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;:::-;50044:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48205: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;:::-;48286:15:::1;:41:::0;;-1:-1:-1;;;;;;48286:41:0::1;-1:-1:-1::0;;;;;48286:41:0;;;::::1;::::0;;;::::1;::::0;;48205: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;;14409:2:1;22677:110:0;;;14391:21:1;14448:2;14428:18;;;14421:30;14487:34;14467:18;;;14460:62;-1:-1:-1;;;14538:18:1;;;14531:39;14587:19;;22677:110:0;14207:405:1;50839:174: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;:::-;50907:9:::1;50902:104;50926:13;;50922:1;:17;50902:104;;;50966:10;50974:1;50966:7;:10::i;:::-;50961:33;;50978:16;50988:2;50992:1;50978:9;:16::i;:::-;50941:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50902:104;;22135:295:::0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;13998:2:1;22277:111:0;;;13980:21:1;14037:2;14017:18;;;14010:30;14076:34;14056:18;;;14049:62;-1:-1:-1;;;14127:18:1;;;14120:40;14177:19;;22277:111:0;13796: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;50083:544::-;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;:::-;50198:9:::1;50193:427;50217:14;:21;50213:1;:25;50193:427;;;50265:9;50260:349;50284:14;50280:1;:18;50260:349;;;50324:15;50358:22;:12;46557:14:::0;;46465:114;50358:22:::1;50342:13;;:38;;;;:::i;:::-;50324:56;;50430:12;;50405:22;:12;46557:14:::0;;46465:114;50405:22:::1;:37;50401:193;;;50467:24;:12;:22;:24::i;:::-;50519:16;50527:7;50519;:16::i;:::-;50514:60;;50537:37;50547:14;50562:1;50547:17;;;;;;;;:::i;:::-;;;;;;;50566:7;50537:9;:37::i;:::-;-1:-1:-1::0;50300:3:0;::::1;::::0;::::1;:::i;:::-;;;;50260:349;;;-1:-1:-1::0;50240:3:0;::::1;::::0;::::1;:::i;:::-;;;;50193:427;;50635:196:::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;:::-;50727:16:::1;50735:7;50727;:16::i;:::-;50726:17;50718:49;;;::::0;-1:-1:-1;;;50718:49:0;;10945:2:1;50718: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;;50718:49:0::1;10743:343:1::0;50718:49:0::1;50783:16;50791:7;50783;:16::i;:::-;50778:45;;50801:22;50811:2;50815:7;50801:9;:22::i;49645:203::-:0;49683:7;49725:15;;49707;:33;49703:138;;;-1:-1:-1;49764:13:0;;;49645:203::o;49703:138::-;-1:-1:-1;49817:12:0;;;49645:203::o;23054:104::-;23110:13;23143:7;23136:14;;;;;:::i;48343: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;:::-;48467:15:::1;:32:::0;;;;48510:12:::1;:26:::0;;;;48547:13:::1;:28:::0;48343: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;49856: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;:::-;49933: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;49375: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;:::-;49505:14:::1;:30:::0;;;;49546:18:::1;:37:::0;49594:17:::1;:35:::0;49375:262::o;52651:350::-;52724:13;52763:16;52771:7;52763;:16::i;:::-;52755:49;;;;-1:-1:-1;;;52755:49:0;;12052:2:1;52755:49:0;;;12034:21:1;12091:2;12071:18;;;12064:30;-1:-1:-1;;;12110:18:1;;;12103:50;12170:18;;52755:49:0;11850:344:1;52755:49:0;52854:15;52839:12;;52821:15;;:30;;;;:::i;:::-;:48;52817:147;;;52917:13;52932:18;:7;:16;:18::i;:::-;52900:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52886:66;;52651:350;;;:::o;52817:147::-;52983:10;52976:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52651:350;;;:::o;48591: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;:::-;48697:9:::1;48692:129;48716:16;:23;48712:1;:27;48692:129;;;48802:7;48761:17;:38;48779:16;48796:1;48779:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48761:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48761:38:0;:48;;-1:-1:-1;;48761:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48741:3;::::1;::::0;::::1;:::i;:::-;;;;48692:129;;51021:1622:::0;51124:12;;51099;46557:14;51099:37;51091:83;;;;-1:-1:-1;;;51091:83:0;;18715:2:1;51091:83:0;;;18697:21:1;18754:2;18734:18;;;18727:30;18793:34;18773:18;;;18766:62;-1:-1:-1;;;18844:18:1;;;18837:32;18886:19;;51091:83:0;18513:398:1;51091:83:0;37092:6;;-1:-1:-1;;;;;37092:6:0;51191:10;:21;51187:1119;;51255:14;;51237;:32;;51229:78;;;;-1:-1:-1;;;51229:78:0;;16723:2:1;51229:78:0;;;16705:21:1;16762:2;16742:18;;;16735:30;16801:34;16781:18;;;16774:62;-1:-1:-1;;;16852:18:1;;;16845:32;16894:19;;51229:78:0;16521:398:1;51229:78:0;51358:9;51340:14;51330:7;:5;:7::i;:::-;:24;;;;:::i;:::-;:37;;51322:77;;;;-1:-1:-1;;;51322:77:0;;12401:2:1;51322:77:0;;;12383:21:1;12440:2;12420:18;;;12413:30;12479;12459:18;;;12452:58;12527:18;;51322:77:0;12199:352:1;51322:77:0;51438:15;;51420;:33;51416:827;;;51478:23;;;;:31;;:23;:31;51474:160;;;51560:10;51542:29;;;;:17;:29;;;;;;;;:37;;:29;:37;51534:77;;;;-1:-1:-1;;;51534:77:0;;17126:2:1;51534:77:0;;;17108:21:1;17165:2;17145:18;;;17138:30;17204:29;17184:18;;;17177:57;17251:18;;51534:77:0;16924:351:1;51534:77:0;51716:10;51691:36;;;;:24;:36;;;;;;:53;;51730:14;;51691:53;:::i;:::-;51677:10;51652:36;;;;:24;:36;;;;;:92;51807:13;;51789:15;;:31;;51807:13;51789:31;:::i;:::-;51771:15;:49;51763:96;;;;-1:-1:-1;;;51763:96:0;;13171:2:1;51763:96:0;;;13153:21:1;13210:2;13190:18;;;13183:30;13249:34;13229:18;;;13222:62;-1:-1:-1;;;13300:18:1;;;13293:31;13341:19;;51763:96:0;12969:397:1;51763:96:0;51926:18;;51911:10;51886:36;;;;:24;:36;;;;;;:58;;51878:101;;;;-1:-1:-1;;;51878:101:0;;8990:2:1;51878:101:0;;;8972:21:1;9029:2;9009:18;;;9002:30;9068:33;9048:18;;;9041:61;9119:18;;51878:101:0;8788:355:1;51878:101:0;51416:827;;;52082:10;52058:35;;;;:23;:35;;;;;;:52;;52096:14;;52058:52;:::i;:::-;52044:10;52020:35;;;;:23;:35;;;;;:90;;;52176:17;;-1:-1:-1;52137:56:0;52129:98;;;;-1:-1:-1;;;52129:98:0;;14819:2:1;52129:98:0;;;14801:21:1;14858:2;14838:18;;;14831:30;14897:32;14877:18;;;14870:60;14947:18;;52129:98:0;14617:354:1;52129:98:0;52259:15;;:35;;-1:-1:-1;;;;;52259:15:0;;;;52284:9;52259:35;;;;;:15;:35;:15;:35;52284:9;52259:15;:35;;;;;;;;;;;;;;;;;;;;;51187:1119;52323:9;52318:318;52342:14;52338:1;:18;52318:318;;;52378:15;52412:22;:12;46557:14;;46465:114;52412:22;52396:13;;:38;;;;:::i;:::-;52378:56;;52480:12;;52455:22;:12;46557:14;;46465:114;52455:22;:37;52451:174;;;52513:24;:12;:22;:24::i;:::-;52561:16;52569:7;52561;:16::i;:::-;52556:53;;52579:30;52589:10;52601:7;52579:9;:30::i;:::-;-1:-1:-1;52358:3:0;;;;:::i;:::-;;;;52318:318;;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;49149:218::-;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;:::-;49243:13:::1;:28:::0;;;49282:12:::1;:26:::0;;;49331:28:::1;49297:11:::0;49259:12;49331:28:::1;:::i;:::-;49319:9;:40:::0;-1:-1:-1;;49149:218:0: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;;12758:2:1;28586:110:0;;;12740:21:1;12797:2;12777:18;;;12770:30;12836:34;12816:18;;;12809:62;-1:-1:-1;;;12887:18:1;;;12880:42;12939:19;;28586:110:0;12556: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;;16313:2:1;31655:122:0;;;16295:21:1;16352:2;16332:18;;;16325:30;16391:34;16371:18;;;16364:62;-1:-1:-1;;;16442:18:1;;;16435:39;16491:19;;31655:122:0;16111: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;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;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;;15178:2:1;30295:61:0;;;15160:21:1;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;30295:61:0;14976: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;19451:1;19444:14;;;19488:4;19475: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;15750:356::-;15952:2;15934:21;;;15971:18;;;15964:30;16030:34;16025:2;16010:18;;16003:62;16097:2;16082:18;;15750:356::o;17682:413::-;17884:2;17866:21;;;17923:2;17903:18;;;17896:30;17962:34;17957:2;17942:18;;17935:62;-1:-1:-1;;;18028:2:1;18013:18;;18006:47;18085:3;18070:19;;17682:413::o;19098:275::-;19169:2;19163:9;19234:2;19215:13;;-1:-1:-1;;19211:27:1;19199:40;;19269:18;19254:34;;19290:22;;;19251:62;19248:88;;;19316:18;;:::i;:::-;19352:2;19345:22;19098:275;;-1:-1:-1;19098:275:1:o;19504:128::-;19544:3;19575:1;19571:6;19568:1;19565:13;19562:39;;;19581:18;;:::i;:::-;-1:-1:-1;19617:9:1;;19504:128::o;19637:120::-;19677:1;19703;19693:35;;19708:18;;:::i;:::-;-1:-1:-1;19742:9:1;;19637:120::o;19762:168::-;19802:7;19868:1;19864;19860:6;19856:14;19853:1;19850:21;19845:1;19838:9;19831:17;19827:45;19824:71;;;19875:18;;:::i;:::-;-1:-1:-1;19915:9:1;;19762:168::o;19935:125::-;19975:4;20003:1;20000;19997:8;19994:34;;;20008:18;;:::i;:::-;-1:-1:-1;20045:9:1;;19935:125::o;20065:258::-;20137:1;20147:113;20161:6;20158:1;20155:13;20147:113;;;20237:11;;;20231:18;20218:11;;;20211:39;20183:2;20176:10;20147:113;;;20278:6;20275:1;20272:13;20269:48;;;-1:-1:-1;;20313:1:1;20295:16;;20288:27;20065:258::o;20328:380::-;20407:1;20403:12;;;;20450;;;20471:61;;20525:4;20517:6;20513:17;20503:27;;20471:61;20578:2;20570:6;20567:14;20547:18;20544:38;20541:161;;;20624:10;20619:3;20615:20;20612:1;20605:31;20659:4;20656:1;20649:15;20687:4;20684:1;20677:15;20541:161;;20328:380;;;:::o;20713:135::-;20752:3;-1:-1:-1;;20773:17:1;;20770:43;;;20793:18;;:::i;:::-;-1:-1:-1;20840:1:1;20829:13;;20713:135::o;20853:112::-;20885:1;20911;20901:35;;20916:18;;:::i;:::-;-1:-1:-1;20950:9:1;;20853:112::o;20970:127::-;21031:10;21026:3;21022:20;21019:1;21012:31;21062:4;21059:1;21052:15;21086:4;21083:1;21076:15;21102:127;21163:10;21158:3;21154:20;21151:1;21144:31;21194:4;21191:1;21184:15;21218:4;21215:1;21208:15;21234:127;21295:10;21290:3;21286:20;21283:1;21276:31;21326:4;21323:1;21316:15;21350:4;21347:1;21340:15;21366:127;21427:10;21422:3;21418:20;21415:1;21408:31;21458:4;21455:1;21448:15;21482:4;21479:1;21472:15;21498:127;21559:10;21554:3;21550:20;21547:1;21540:31;21590:4;21587:1;21580:15;21614:4;21611:1;21604:15;21630:131;-1:-1:-1;;;;;;21704:32:1;;21694:43;;21684:71;;21751:1;21748;21741:12;21684:71;21630:131;:::o

Swarm Source

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