ETH Price: $3,266.06 (-4.23%)
Gas: 17 Gwei

Token

Business Ape Club (BAC)
 

Overview

Max Total Supply

1,696 BAC

Holders

636

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BAC
0xc7619763d778141f19bca4a7f9e0d2dc7ed8b593
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:
BusinessApeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

    address payable private _PaymentAddress = payable(0xE4954435D03a349035F6C0840948E13e4842bcc8);

    uint256 public BAC_MAX = 10000;
    uint256 public WHITELIST_PRICE = 0.1 ether;
    uint256 public GREYLIST_PRICE = 0.1 ether;
    uint256 public PUBLIC_PRICE = 0.3 ether;
    uint256 public PUBLIC_REDUCE_STEP_AMOUNT = 0.05 ether;
    uint256 public PUBLIC_REDUCE_STEP_PERIOD = 24 hours;

    uint256 private WHITELIST_START_HOURS = 48 hours;
    uint256 private WHITELIST_END_HOURS = 24 hours;
    uint256 private GREYLIST_START_HOURS = 24 hours;
    uint256 private GREYLIST_END_HOURS = 0 hours;
    
    uint256 public PURCHASE_LIMIT = 20;

    uint256 public WHITELIST_MINT_LIMIT = 3;
    uint256 public GREYLIST_MINT_LIMIT = 1;
    uint256 public PUBLIC_MINT_LIMIT = BAC_MAX;
    uint256 private FEE_PERCENT = 0;
    
    mapping(address => uint256) _mappingMintCount;

    uint256 private _activeDateTime = 1641384000; // (GMT): Wednesday, January 5, 2022 12:00:00 PM
    uint256 private _revealDateTime = 1641556800; //(GMT): Friday, January 7, 2022 12:00:00 PM
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicBAC;

    constructor() ERC721("Business Ape Club", "BAC") {}

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

    function setDevFee(uint256 devFee) external onlyOwner {
        FEE_PERCENT = devFee;
    }

    function setActiveDateTime(uint256 activeDateTime, uint256 revealDateTime) external onlyOwner {
        _activeDateTime = activeDateTime;
        _revealDateTime = revealDateTime;
    }

    function setWhiteGreyListHours (uint256 whiteListStartHours, uint256 whiteListEndHours, uint256 greyListStartHours, uint256 greyListEndHours) external onlyOwner {
        WHITELIST_START_HOURS = whiteListStartHours;
        WHITELIST_END_HOURS = whiteListEndHours;
        GREYLIST_START_HOURS = greyListStartHours;
        GREYLIST_END_HOURS = greyListEndHours;
    }

    function setMintPrice(uint256 whiteListPrice, uint256 greyListPrice, uint256 publicPrice, uint256 reduceStepAmount, uint256 reduceStepPeriod ) external onlyOwner {
        WHITELIST_PRICE = whiteListPrice;
        GREYLIST_PRICE = greyListPrice;
        PUBLIC_PRICE = publicPrice;
        PUBLIC_REDUCE_STEP_AMOUNT = reduceStepAmount;
        PUBLIC_REDUCE_STEP_PERIOD = reduceStepPeriod;
    }

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

    function setPurchaseLimit(uint256 purchaseLimit, uint256 whiteListMintLimit, uint256 greyListMintLimit, uint256 publicMintLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
        WHITELIST_MINT_LIMIT = whiteListMintLimit;
        GREYLIST_MINT_LIMIT = greyListMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

    function PRICE() public view returns (uint256) {
        if (block.timestamp >= _activeDateTime - WHITELIST_START_HOURS && block.timestamp < _activeDateTime - WHITELIST_END_HOURS) {
            return WHITELIST_PRICE;
        } 
        
        if (block.timestamp >= _activeDateTime - GREYLIST_START_HOURS && block.timestamp < _activeDateTime - GREYLIST_END_HOURS){
            return GREYLIST_PRICE;
        } 
        
        if (block.timestamp >= _activeDateTime && block.timestamp < _activeDateTime + PUBLIC_REDUCE_STEP_PERIOD){
            return PUBLIC_PRICE;
        }

        if (block.timestamp >= _activeDateTime + PUBLIC_REDUCE_STEP_PERIOD && block.timestamp < _activeDateTime + PUBLIC_REDUCE_STEP_PERIOD * 2){
            return PUBLIC_PRICE - PUBLIC_REDUCE_STEP_AMOUNT;
        }
        
        if (block.timestamp >= _activeDateTime + PUBLIC_REDUCE_STEP_PERIOD * 2 ){
            return PUBLIC_PRICE - PUBLIC_REDUCE_STEP_AMOUNT * 2;
        }

        return 100 ether;
    }

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

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

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicBAC.current();

            if (_publicBAC.current() < BAC_MAX) {
                _publicBAC.increment();
                _safeMint(to, tokenId);
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
        require(_publicBAC.current() < BAC_MAX,"Purchase would exceed BAC_MAX");

        if (msg.sender != owner()) {
            _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + numberOfTokens;
            require(PRICE() * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            if (block.timestamp >= _activeDateTime - WHITELIST_START_HOURS && block.timestamp < _activeDateTime - WHITELIST_END_HOURS) {
                require(_mappingMintCount[msg.sender] <= WHITELIST_MINT_LIMIT,"Overflow for WHITELIST_MINT_LIMIT");
            } else if (block.timestamp >= _activeDateTime - GREYLIST_START_HOURS && block.timestamp < _activeDateTime - GREYLIST_END_HOURS){
                require(_mappingMintCount[msg.sender] <= GREYLIST_MINT_LIMIT,"Overflow for GREYLIST_MINT_LIMIT");
            } else {
                require(block.timestamp > _activeDateTime,"Contract is not active");
                require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            }
            
            if (FEE_PERCENT > 0) {
                uint256 feeAmount = (msg.value * FEE_PERCENT) / 100;
                _PaymentAddress.transfer(msg.value - feeAmount);
            } else {
                _PaymentAddress.transfer(msg.value);
            }
        }

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

            if (_publicBAC.current() < BAC_MAX) {
                _publicBAC.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

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

        if (_revealDateTime < 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":"BAC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GREYLIST_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GREYLIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_REDUCE_STEP_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_REDUCE_STEP_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[],"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":"revealDateTime","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":"devFee","type":"uint256"}],"name":"setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"whiteListPrice","type":"uint256"},{"internalType":"uint256","name":"greyListPrice","type":"uint256"},{"internalType":"uint256","name":"publicPrice","type":"uint256"},{"internalType":"uint256","name":"reduceStepAmount","type":"uint256"},{"internalType":"uint256","name":"reduceStepPeriod","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":"whiteListMintLimit","type":"uint256"},{"internalType":"uint256","name":"greyListMintLimit","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":"uint256","name":"whiteListStartHours","type":"uint256"},{"internalType":"uint256","name":"whiteListEndHours","type":"uint256"},{"internalType":"uint256","name":"greyListStartHours","type":"uint256"},{"internalType":"uint256","name":"greyListEndHours","type":"uint256"}],"name":"setWhiteGreyListHours","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"}]

600c80546001600160a01b03191673e4954435d03a349035f6c0840948e13e4842bcc8179055612710600d81905567016345785d8a0000600e819055600f55670429d069189e000060105566b1a2bc2ec500006011556201518060128190556202a30060135560148181556015919091556000601681905560179190915560036018556001601955601a91909155601b8190556361d58840601d556361d82b40601e5560a060408190526080829052620000bd91601f9190620001d0565b5060408051602080820192839052600091829052620000de929091620001d0565b50348015620000ec57600080fd5b506040805180820182526011815270213ab9b4b732b9b99020b8329021b63ab160791b60208083019182528351808501909452600384526242414360e81b9084015281519192916200014191600091620001d0565b50805162000157906001906020840190620001d0565b50505060006200016c620001cc60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002b3565b3390565b828054620001de9062000276565b90600052602060002090601f0160209004810192826200020257600085556200024d565b82601f106200021d57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024d57825182559160200191906001019062000230565b506200025b9291506200025f565b5090565b5b808211156200025b576000815560010162000260565b600181811c908216806200028b57607f821691505b60208210811415620002ad57634e487b7160e01b600052602260045260246000fd5b50919050565b612a6280620002c36000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b88d4fde116100b6578063ca34c4961161007a578063ca34c4961461068c578063d75e6110146106a2578063e68f9fb3146106b8578063e985e9c5146106d8578063efef39a114610721578063f2fde38b1461073457600080fd5b8063b88d4fde14610600578063bceae77b14610620578063bf8bcee414610636578063c05a1a2b14610656578063c87b56dd1461066c57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056d57806395d89b411461058b578063a22cb465146105a0578063a811a37b146105c0578063b8875343146105e057600080fd5b806370a08231146104ed578063715018a61461050d578063790b2f00146105225780638ba4cc3c146105385780638d859f3e1461055857600080fd5b80632f745c59116101d257806355f804b31161019657806355f804b31461044b5780635e1e10041461046b578063611f3f101461048b5780636352211e146104a15780636a843d53146104c15780636ee59c72146104d757600080fd5b80632f745c59146103c05780633ccfd60b146103e057806342842e0e146103f55780634a699501146104155780634f6ccce71461042b57600080fd5b806317b5d8901161021957806317b5d8901461032757806317e7f2951461034757806318160ddd1461036b5780631c75b6b21461038057806323b872dd146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063176d2efe14610307575b600080fd5b34801561026257600080fd5b5061027661027136600461256b565b610754565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061077f565b60405161028291906127c2565b3480156102b957600080fd5b506102cd6102c83660046125ee565b610811565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612541565b6108ab565b005b34801561031357600080fd5b50610305610322366004612629565b6109c1565b34801561033357600080fd5b50610305610342366004612629565b610a14565b34801561035357600080fd5b5061035d600e5481565b604051908152602001610282565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061030561039b3660046125ee565b610a67565b3480156103ac57600080fd5b506103056103bb36600461244d565b610aab565b3480156103cc57600080fd5b5061035d6103db366004612541565b610adc565b3480156103ec57600080fd5b50610305610b72565b34801561040157600080fd5b5061030561041036600461244d565b610be4565b34801561042157600080fd5b5061035d60195481565b34801561043757600080fd5b5061035d6104463660046125ee565b610bff565b34801561045757600080fd5b506103056104663660046125a5565b610c92565b34801561047757600080fd5b506103056104863660046123f8565b610ce4565b34801561049757600080fd5b5061035d60105481565b3480156104ad57600080fd5b506102cd6104bc3660046125ee565b610d45565b3480156104cd57600080fd5b5061035d600f5481565b3480156104e357600080fd5b5061035d600d5481565b3480156104f957600080fd5b5061035d6105083660046123f8565b610dbc565b34801561051957600080fd5b50610305610e43565b34801561052e57600080fd5b5061035d60185481565b34801561054457600080fd5b50610305610553366004612541565b610ecc565b34801561056457600080fd5b5061035d610f5c565b34801561057957600080fd5b50600a546001600160a01b03166102cd565b34801561059757600080fd5b506102a0611098565b3480156105ac57600080fd5b506103056105bb366004612505565b6110a7565b3480156105cc57600080fd5b506103056105db3660046125a5565b61116c565b3480156105ec57600080fd5b506103056105fb366004612607565b6111bd565b34801561060c57600080fd5b5061030561061b366004612489565b611207565b34801561062c57600080fd5b5061035d601a5481565b34801561064257600080fd5b506103056106513660046125ee565b61123f565b34801561066257600080fd5b5061035d60125481565b34801561067857600080fd5b506102a06106873660046125ee565b611283565b34801561069857600080fd5b5061035d60115481565b3480156106ae57600080fd5b5061035d60175481565b3480156106c457600080fd5b506103056106d336600461265b565b6113af565b3480156106e457600080fd5b506102766106f336600461241a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61030561072f3660046125ee565b611405565b34801561074057600080fd5b5061030561074f3660046123f8565b61182f565b60006001600160e01b0319821663780e9d6360e01b148061077957506107798261192f565b92915050565b60606000805461078e9061293b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061293b565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b682610d45565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610886565b336001600160a01b0382161480610940575061094081336106f3565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610886565b6109bc838361197f565b505050565b600a546001600160a01b03163314806109e45750600b546001600160a01b031633145b610a005760405162461bcd60e51b815260040161088690612827565b601393909355601491909155601555601655565b600a546001600160a01b0316331480610a375750600b546001600160a01b031633145b610a535760405162461bcd60e51b815260040161088690612827565b601793909355601891909155601955601a55565b600a546001600160a01b0316331480610a8a5750600b546001600160a01b031633145b610aa65760405162461bcd60e51b815260040161088690612827565b601b55565b610ab533826119ed565b610ad15760405162461bcd60e51b81526004016108869061285c565b6109bc838383611ae4565b6000610ae783610dbc565b8210610b495760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610886565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610b955750600b546001600160a01b031633145b610bb15760405162461bcd60e51b815260040161088690612827565b6040514790339082156108fc029083906000818181858888f19350505050158015610be0573d6000803e3d6000fd5b5050565b6109bc83838360405180602001604052806000815250611207565b6000610c0a60085490565b8210610c6d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610886565b60088281548110610c8057610c806129e7565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cb55750600b546001600160a01b031633145b610cd15760405162461bcd60e51b815260040161088690612827565b8051610be090601f9060208401906122cd565b600a546001600160a01b0316331480610d075750600b546001600160a01b031633145b610d235760405162461bcd60e51b815260040161088690612827565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806107795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610886565b60006001600160a01b038216610e275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610886565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e665750600b546001600160a01b031633145b610e825760405162461bcd60e51b815260040161088690612827565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610eef5750600b546001600160a01b031633145b610f0b5760405162461bcd60e51b815260040161088690612827565b60005b818110156109bc576000610f2160215490565b9050600d54610f2f60215490565b1015610f4957610f3f6021611c8f565b610f498482611cac565b5080610f5481612976565b915050610f0e565b6000601354601d54610f6e91906128f8565b4210158015610f8b5750601454601d54610f8891906128f8565b42105b15610f975750600e5490565b601554601d54610fa791906128f8565b4210158015610fc45750601654601d54610fc191906128f8565b42105b15610fd05750600f5490565b601d544210158015610ff05750601254601d54610fed91906128ad565b42105b15610ffc575060105490565b601254601d5461100c91906128ad565b421015801561103457506012546110249060026128d9565b601d5461103191906128ad565b42105b1561104e5760115460105461104991906128f8565b905090565b60125461105c9060026128d9565b601d5461106991906128ad565b421061108a5760115461107d9060026128d9565b60105461104991906128f8565b5068056bc75e2d6310000090565b60606001805461078e9061293b565b6001600160a01b0382163314156111005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610886565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633148061118f5750600b546001600160a01b031633145b6111ab5760405162461bcd60e51b815260040161088690612827565b8051610be090602090818401906122cd565b600a546001600160a01b03163314806111e05750600b546001600160a01b031633145b6111fc5760405162461bcd60e51b815260040161088690612827565b601d91909155601e55565b61121133836119ed565b61122d5760405162461bcd60e51b81526004016108869061285c565b61123984848484611cc6565b50505050565b600a546001600160a01b03163314806112625750600b546001600160a01b031633145b61127e5760405162461bcd60e51b815260040161088690612827565b600d55565b6000818152600260205260409020546060906001600160a01b03166112e15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610886565b42601e54101561131d57601f6112f683611cf9565b6040516020016113079291906126de565b6040516020818303038152906040529050919050565b6020805461132a9061293b565b80601f01602080910402602001604051908101604052809291908181526020018280546113569061293b565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113d25750600b546001600160a01b031633145b6113ee5760405162461bcd60e51b815260040161088690612827565b600e94909455600f92909255601055601155601255565b6017548111156114625760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610886565b600d54602154106114b55760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204241435f4d41580000006044820152606401610886565b600a546001600160a01b031633146117de57336000908152601c60205260409020546114e29082906128ad565b336000908152601c602052604090205534816114fc610f5c565b61150691906128d9565b11156115545760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610886565b601354601d5461156491906128f8565b42101580156115815750601454601d5461157e91906128f8565b42105b156115f657601854336000908152601c602052604090205411156115f15760405162461bcd60e51b815260206004820152602160248201527f4f766572666c6f7720666f722057484954454c4953545f4d494e545f4c494d496044820152601560fa1b6064820152608401610886565b611734565b601554601d5461160691906128f8565b42101580156116235750601654601d5461162091906128f8565b42105b1561168957601954336000908152601c602052604090205411156115f15760405162461bcd60e51b815260206004820181905260248201527f4f766572666c6f7720666f7220475245594c4953545f4d494e545f4c494d49546044820152606401610886565b601d5442116116d35760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610886565b601a54336000908152601c602052604090205411156117345760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610886565b601b54156117a35760006064601b543461174e91906128d9565b61175891906128c5565b600c549091506001600160a01b03166108fc61177483346128f8565b6040518115909202916000818181858888f1935050505015801561179c573d6000803e3d6000fd5b50506117de565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156117dc573d6000803e3d6000fd5b505b60005b81811015610be05760006117f460215490565b9050600d5461180260215490565b101561181c576118126021611c8f565b61181c3382611cac565b508061182781612976565b9150506117e1565b600a546001600160a01b03163314806118525750600b546001600160a01b031633145b61186e5760405162461bcd60e51b815260040161088690612827565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061196057506001600160e01b03198216635b5e139f60e01b145b8061077957506301ffc9a760e01b6001600160e01b0319831614610779565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b482610d45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610886565b6000611a7183610d45565b9050806001600160a01b0316846001600160a01b03161480611aac5750836001600160a01b0316611aa184610811565b6001600160a01b0316145b80611adc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611af782610d45565b6001600160a01b031614611b5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610886565b6001600160a01b038216611bc15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610886565b611bcc838383611df7565b611bd760008261197f565b6001600160a01b0383166000908152600360205260408120805460019290611c009084906128f8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c2e9084906128ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611ca491906128ad565b909155505050565b610be0828260405180602001604052806000815250611eaf565b611cd1848484611ae4565b611cdd84848484611ee2565b6112395760405162461bcd60e51b8152600401610886906127d5565b606081611d1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d475780611d3181612976565b9150611d409050600a836128c5565b9150611d21565b60008167ffffffffffffffff811115611d6257611d626129fd565b6040519080825280601f01601f191660200182016040528015611d8c576020820181803683370190505b5090505b8415611adc57611da16001836128f8565b9150611dae600a86612991565b611db99060306128ad565b60f81b818381518110611dce57611dce6129e7565b60200101906001600160f81b031916908160001a905350611df0600a866128c5565b9450611d90565b6001600160a01b038316611e5257611e4d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e75565b816001600160a01b0316836001600160a01b031614611e7557611e758382611fef565b6001600160a01b038216611e8c576109bc8161208c565b826001600160a01b0316826001600160a01b0316146109bc576109bc828261213b565b611eb9838361217f565b611ec66000848484611ee2565b6109bc5760405162461bcd60e51b8152600401610886906127d5565b60006001600160a01b0384163b15611fe457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f26903390899088908890600401612785565b602060405180830381600087803b158015611f4057600080fd5b505af1925050508015611f70575060408051601f3d908101601f19168201909252611f6d91810190612588565b60015b611fca573d808015611f9e576040519150601f19603f3d011682016040523d82523d6000602084013e611fa3565b606091505b508051611fc25760405162461bcd60e51b8152600401610886906127d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adc565b506001949350505050565b60006001611ffc84610dbc565b61200691906128f8565b600083815260076020526040902054909150808214612059576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061209e906001906128f8565b600083815260096020526040812054600880549394509092849081106120c6576120c66129e7565b9060005260206000200154905080600883815481106120e7576120e76129e7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061211f5761211f6129d1565b6001900381819060005260206000200160009055905550505050565b600061214683610dbc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610886565b6000818152600260205260409020546001600160a01b03161561223a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610886565b61224660008383611df7565b6001600160a01b038216600090815260036020526040812080546001929061226f9084906128ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122d99061293b565b90600052602060002090601f0160209004810192826122fb5760008555612341565b82601f1061231457805160ff1916838001178555612341565b82800160010185558215612341579182015b82811115612341578251825591602001919060010190612326565b5061234d929150612351565b5090565b5b8082111561234d5760008155600101612352565b600067ffffffffffffffff80841115612381576123816129fd565b604051601f8501601f19908116603f011681019082821181831017156123a9576123a96129fd565b816040528093508581528686860111156123c257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f357600080fd5b919050565b60006020828403121561240a57600080fd5b612413826123dc565b9392505050565b6000806040838503121561242d57600080fd5b612436836123dc565b9150612444602084016123dc565b90509250929050565b60008060006060848603121561246257600080fd5b61246b846123dc565b9250612479602085016123dc565b9150604084013590509250925092565b6000806000806080858703121561249f57600080fd5b6124a8856123dc565b93506124b6602086016123dc565b925060408501359150606085013567ffffffffffffffff8111156124d957600080fd5b8501601f810187136124ea57600080fd5b6124f987823560208401612366565b91505092959194509250565b6000806040838503121561251857600080fd5b612521836123dc565b91506020830135801515811461253657600080fd5b809150509250929050565b6000806040838503121561255457600080fd5b61255d836123dc565b946020939093013593505050565b60006020828403121561257d57600080fd5b813561241381612a13565b60006020828403121561259a57600080fd5b815161241381612a13565b6000602082840312156125b757600080fd5b813567ffffffffffffffff8111156125ce57600080fd5b8201601f810184136125df57600080fd5b611adc84823560208401612366565b60006020828403121561260057600080fd5b5035919050565b6000806040838503121561261a57600080fd5b50508035926020909101359150565b6000806000806080858703121561263f57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600060a0868803121561267357600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526126ae81602086016020860161290f565b601f01601f19169290920160200192915050565b600081516126d481856020860161290f565b9290920192915050565b600080845481600182811c9150808316806126fa57607f831692505b602080841082141561271a57634e487b7160e01b86526022600452602486fd5b81801561272e576001811461273f5761276c565b60ff1986168952848901965061276c565b60008b81526020902060005b868110156127645781548b82015290850190830161274b565b505084890196505b50505050505061277c81856126c2565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b890830184612696565b9695505050505050565b6020815260006124136020830184612696565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c0576128c06129a5565b500190565b6000826128d4576128d46129bb565b500490565b60008160001904831182151516156128f3576128f36129a5565b500290565b60008282101561290a5761290a6129a5565b500390565b60005b8381101561292a578181015183820152602001612912565b838111156112395750506000910152565b600181811c9082168061294f57607f821691505b6020821081141561297057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561298a5761298a6129a5565b5060010190565b6000826129a0576129a06129bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a2957600080fd5b5056fea264697066735822122046d4b7609c977ace762690512926f94564ee68ad2e05956e4adfca47b65ee28f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b88d4fde116100b6578063ca34c4961161007a578063ca34c4961461068c578063d75e6110146106a2578063e68f9fb3146106b8578063e985e9c5146106d8578063efef39a114610721578063f2fde38b1461073457600080fd5b8063b88d4fde14610600578063bceae77b14610620578063bf8bcee414610636578063c05a1a2b14610656578063c87b56dd1461066c57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056d57806395d89b411461058b578063a22cb465146105a0578063a811a37b146105c0578063b8875343146105e057600080fd5b806370a08231146104ed578063715018a61461050d578063790b2f00146105225780638ba4cc3c146105385780638d859f3e1461055857600080fd5b80632f745c59116101d257806355f804b31161019657806355f804b31461044b5780635e1e10041461046b578063611f3f101461048b5780636352211e146104a15780636a843d53146104c15780636ee59c72146104d757600080fd5b80632f745c59146103c05780633ccfd60b146103e057806342842e0e146103f55780634a699501146104155780634f6ccce71461042b57600080fd5b806317b5d8901161021957806317b5d8901461032757806317e7f2951461034757806318160ddd1461036b5780631c75b6b21461038057806323b872dd146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063176d2efe14610307575b600080fd5b34801561026257600080fd5b5061027661027136600461256b565b610754565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061077f565b60405161028291906127c2565b3480156102b957600080fd5b506102cd6102c83660046125ee565b610811565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612541565b6108ab565b005b34801561031357600080fd5b50610305610322366004612629565b6109c1565b34801561033357600080fd5b50610305610342366004612629565b610a14565b34801561035357600080fd5b5061035d600e5481565b604051908152602001610282565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061030561039b3660046125ee565b610a67565b3480156103ac57600080fd5b506103056103bb36600461244d565b610aab565b3480156103cc57600080fd5b5061035d6103db366004612541565b610adc565b3480156103ec57600080fd5b50610305610b72565b34801561040157600080fd5b5061030561041036600461244d565b610be4565b34801561042157600080fd5b5061035d60195481565b34801561043757600080fd5b5061035d6104463660046125ee565b610bff565b34801561045757600080fd5b506103056104663660046125a5565b610c92565b34801561047757600080fd5b506103056104863660046123f8565b610ce4565b34801561049757600080fd5b5061035d60105481565b3480156104ad57600080fd5b506102cd6104bc3660046125ee565b610d45565b3480156104cd57600080fd5b5061035d600f5481565b3480156104e357600080fd5b5061035d600d5481565b3480156104f957600080fd5b5061035d6105083660046123f8565b610dbc565b34801561051957600080fd5b50610305610e43565b34801561052e57600080fd5b5061035d60185481565b34801561054457600080fd5b50610305610553366004612541565b610ecc565b34801561056457600080fd5b5061035d610f5c565b34801561057957600080fd5b50600a546001600160a01b03166102cd565b34801561059757600080fd5b506102a0611098565b3480156105ac57600080fd5b506103056105bb366004612505565b6110a7565b3480156105cc57600080fd5b506103056105db3660046125a5565b61116c565b3480156105ec57600080fd5b506103056105fb366004612607565b6111bd565b34801561060c57600080fd5b5061030561061b366004612489565b611207565b34801561062c57600080fd5b5061035d601a5481565b34801561064257600080fd5b506103056106513660046125ee565b61123f565b34801561066257600080fd5b5061035d60125481565b34801561067857600080fd5b506102a06106873660046125ee565b611283565b34801561069857600080fd5b5061035d60115481565b3480156106ae57600080fd5b5061035d60175481565b3480156106c457600080fd5b506103056106d336600461265b565b6113af565b3480156106e457600080fd5b506102766106f336600461241a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61030561072f3660046125ee565b611405565b34801561074057600080fd5b5061030561074f3660046123f8565b61182f565b60006001600160e01b0319821663780e9d6360e01b148061077957506107798261192f565b92915050565b60606000805461078e9061293b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061293b565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b682610d45565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610886565b336001600160a01b0382161480610940575061094081336106f3565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610886565b6109bc838361197f565b505050565b600a546001600160a01b03163314806109e45750600b546001600160a01b031633145b610a005760405162461bcd60e51b815260040161088690612827565b601393909355601491909155601555601655565b600a546001600160a01b0316331480610a375750600b546001600160a01b031633145b610a535760405162461bcd60e51b815260040161088690612827565b601793909355601891909155601955601a55565b600a546001600160a01b0316331480610a8a5750600b546001600160a01b031633145b610aa65760405162461bcd60e51b815260040161088690612827565b601b55565b610ab533826119ed565b610ad15760405162461bcd60e51b81526004016108869061285c565b6109bc838383611ae4565b6000610ae783610dbc565b8210610b495760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610886565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610b955750600b546001600160a01b031633145b610bb15760405162461bcd60e51b815260040161088690612827565b6040514790339082156108fc029083906000818181858888f19350505050158015610be0573d6000803e3d6000fd5b5050565b6109bc83838360405180602001604052806000815250611207565b6000610c0a60085490565b8210610c6d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610886565b60088281548110610c8057610c806129e7565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cb55750600b546001600160a01b031633145b610cd15760405162461bcd60e51b815260040161088690612827565b8051610be090601f9060208401906122cd565b600a546001600160a01b0316331480610d075750600b546001600160a01b031633145b610d235760405162461bcd60e51b815260040161088690612827565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806107795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610886565b60006001600160a01b038216610e275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610886565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e665750600b546001600160a01b031633145b610e825760405162461bcd60e51b815260040161088690612827565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610eef5750600b546001600160a01b031633145b610f0b5760405162461bcd60e51b815260040161088690612827565b60005b818110156109bc576000610f2160215490565b9050600d54610f2f60215490565b1015610f4957610f3f6021611c8f565b610f498482611cac565b5080610f5481612976565b915050610f0e565b6000601354601d54610f6e91906128f8565b4210158015610f8b5750601454601d54610f8891906128f8565b42105b15610f975750600e5490565b601554601d54610fa791906128f8565b4210158015610fc45750601654601d54610fc191906128f8565b42105b15610fd05750600f5490565b601d544210158015610ff05750601254601d54610fed91906128ad565b42105b15610ffc575060105490565b601254601d5461100c91906128ad565b421015801561103457506012546110249060026128d9565b601d5461103191906128ad565b42105b1561104e5760115460105461104991906128f8565b905090565b60125461105c9060026128d9565b601d5461106991906128ad565b421061108a5760115461107d9060026128d9565b60105461104991906128f8565b5068056bc75e2d6310000090565b60606001805461078e9061293b565b6001600160a01b0382163314156111005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610886565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633148061118f5750600b546001600160a01b031633145b6111ab5760405162461bcd60e51b815260040161088690612827565b8051610be090602090818401906122cd565b600a546001600160a01b03163314806111e05750600b546001600160a01b031633145b6111fc5760405162461bcd60e51b815260040161088690612827565b601d91909155601e55565b61121133836119ed565b61122d5760405162461bcd60e51b81526004016108869061285c565b61123984848484611cc6565b50505050565b600a546001600160a01b03163314806112625750600b546001600160a01b031633145b61127e5760405162461bcd60e51b815260040161088690612827565b600d55565b6000818152600260205260409020546060906001600160a01b03166112e15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610886565b42601e54101561131d57601f6112f683611cf9565b6040516020016113079291906126de565b6040516020818303038152906040529050919050565b6020805461132a9061293b565b80601f01602080910402602001604051908101604052809291908181526020018280546113569061293b565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113d25750600b546001600160a01b031633145b6113ee5760405162461bcd60e51b815260040161088690612827565b600e94909455600f92909255601055601155601255565b6017548111156114625760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610886565b600d54602154106114b55760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204241435f4d41580000006044820152606401610886565b600a546001600160a01b031633146117de57336000908152601c60205260409020546114e29082906128ad565b336000908152601c602052604090205534816114fc610f5c565b61150691906128d9565b11156115545760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610886565b601354601d5461156491906128f8565b42101580156115815750601454601d5461157e91906128f8565b42105b156115f657601854336000908152601c602052604090205411156115f15760405162461bcd60e51b815260206004820152602160248201527f4f766572666c6f7720666f722057484954454c4953545f4d494e545f4c494d496044820152601560fa1b6064820152608401610886565b611734565b601554601d5461160691906128f8565b42101580156116235750601654601d5461162091906128f8565b42105b1561168957601954336000908152601c602052604090205411156115f15760405162461bcd60e51b815260206004820181905260248201527f4f766572666c6f7720666f7220475245594c4953545f4d494e545f4c494d49546044820152606401610886565b601d5442116116d35760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610886565b601a54336000908152601c602052604090205411156117345760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610886565b601b54156117a35760006064601b543461174e91906128d9565b61175891906128c5565b600c549091506001600160a01b03166108fc61177483346128f8565b6040518115909202916000818181858888f1935050505015801561179c573d6000803e3d6000fd5b50506117de565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156117dc573d6000803e3d6000fd5b505b60005b81811015610be05760006117f460215490565b9050600d5461180260215490565b101561181c576118126021611c8f565b61181c3382611cac565b508061182781612976565b9150506117e1565b600a546001600160a01b03163314806118525750600b546001600160a01b031633145b61186e5760405162461bcd60e51b815260040161088690612827565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061196057506001600160e01b03198216635b5e139f60e01b145b8061077957506301ffc9a760e01b6001600160e01b0319831614610779565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b482610d45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610886565b6000611a7183610d45565b9050806001600160a01b0316846001600160a01b03161480611aac5750836001600160a01b0316611aa184610811565b6001600160a01b0316145b80611adc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611af782610d45565b6001600160a01b031614611b5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610886565b6001600160a01b038216611bc15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610886565b611bcc838383611df7565b611bd760008261197f565b6001600160a01b0383166000908152600360205260408120805460019290611c009084906128f8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c2e9084906128ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611ca491906128ad565b909155505050565b610be0828260405180602001604052806000815250611eaf565b611cd1848484611ae4565b611cdd84848484611ee2565b6112395760405162461bcd60e51b8152600401610886906127d5565b606081611d1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d475780611d3181612976565b9150611d409050600a836128c5565b9150611d21565b60008167ffffffffffffffff811115611d6257611d626129fd565b6040519080825280601f01601f191660200182016040528015611d8c576020820181803683370190505b5090505b8415611adc57611da16001836128f8565b9150611dae600a86612991565b611db99060306128ad565b60f81b818381518110611dce57611dce6129e7565b60200101906001600160f81b031916908160001a905350611df0600a866128c5565b9450611d90565b6001600160a01b038316611e5257611e4d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e75565b816001600160a01b0316836001600160a01b031614611e7557611e758382611fef565b6001600160a01b038216611e8c576109bc8161208c565b826001600160a01b0316826001600160a01b0316146109bc576109bc828261213b565b611eb9838361217f565b611ec66000848484611ee2565b6109bc5760405162461bcd60e51b8152600401610886906127d5565b60006001600160a01b0384163b15611fe457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f26903390899088908890600401612785565b602060405180830381600087803b158015611f4057600080fd5b505af1925050508015611f70575060408051601f3d908101601f19168201909252611f6d91810190612588565b60015b611fca573d808015611f9e576040519150601f19603f3d011682016040523d82523d6000602084013e611fa3565b606091505b508051611fc25760405162461bcd60e51b8152600401610886906127d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adc565b506001949350505050565b60006001611ffc84610dbc565b61200691906128f8565b600083815260076020526040902054909150808214612059576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061209e906001906128f8565b600083815260096020526040812054600880549394509092849081106120c6576120c66129e7565b9060005260206000200154905080600883815481106120e7576120e76129e7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061211f5761211f6129d1565b6001900381819060005260206000200160009055905550505050565b600061214683610dbc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610886565b6000818152600260205260409020546001600160a01b03161561223a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610886565b61224660008383611df7565b6001600160a01b038216600090815260036020526040812080546001929061226f9084906128ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122d99061293b565b90600052602060002090601f0160209004810192826122fb5760008555612341565b82601f1061231457805160ff1916838001178555612341565b82800160010185558215612341579182015b82811115612341578251825591602001919060010190612326565b5061234d929150612351565b5090565b5b8082111561234d5760008155600101612352565b600067ffffffffffffffff80841115612381576123816129fd565b604051601f8501601f19908116603f011681019082821181831017156123a9576123a96129fd565b816040528093508581528686860111156123c257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f357600080fd5b919050565b60006020828403121561240a57600080fd5b612413826123dc565b9392505050565b6000806040838503121561242d57600080fd5b612436836123dc565b9150612444602084016123dc565b90509250929050565b60008060006060848603121561246257600080fd5b61246b846123dc565b9250612479602085016123dc565b9150604084013590509250925092565b6000806000806080858703121561249f57600080fd5b6124a8856123dc565b93506124b6602086016123dc565b925060408501359150606085013567ffffffffffffffff8111156124d957600080fd5b8501601f810187136124ea57600080fd5b6124f987823560208401612366565b91505092959194509250565b6000806040838503121561251857600080fd5b612521836123dc565b91506020830135801515811461253657600080fd5b809150509250929050565b6000806040838503121561255457600080fd5b61255d836123dc565b946020939093013593505050565b60006020828403121561257d57600080fd5b813561241381612a13565b60006020828403121561259a57600080fd5b815161241381612a13565b6000602082840312156125b757600080fd5b813567ffffffffffffffff8111156125ce57600080fd5b8201601f810184136125df57600080fd5b611adc84823560208401612366565b60006020828403121561260057600080fd5b5035919050565b6000806040838503121561261a57600080fd5b50508035926020909101359150565b6000806000806080858703121561263f57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600060a0868803121561267357600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526126ae81602086016020860161290f565b601f01601f19169290920160200192915050565b600081516126d481856020860161290f565b9290920192915050565b600080845481600182811c9150808316806126fa57607f831692505b602080841082141561271a57634e487b7160e01b86526022600452602486fd5b81801561272e576001811461273f5761276c565b60ff1986168952848901965061276c565b60008b81526020902060005b868110156127645781548b82015290850190830161274b565b505084890196505b50505050505061277c81856126c2565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b890830184612696565b9695505050505050565b6020815260006124136020830184612696565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c0576128c06129a5565b500190565b6000826128d4576128d46129bb565b500490565b60008160001904831182151516156128f3576128f36129a5565b500290565b60008282101561290a5761290a6129a5565b500390565b60005b8381101561292a578181015183820152602001612912565b838111156112395750506000910152565b600181811c9082168061294f57607f821691505b6020821081141561297057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561298a5761298a6129a5565b5060010190565b6000826129a0576129a06129bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a2957600080fd5b5056fea264697066735822122046d4b7609c977ace762690512926f94564ee68ad2e05956e4adfca47b65ee28f64736f6c63430008070033

Deployed Bytecode Sourcemap

46971:6999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;7642:14:1;;7635:22;7617:41;;7605:2;7590:18;39256:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6940:32:1;;;6922:51;;6910:2;6895:18;24467:308:0;6776:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;48833:373;;;;;;;;;;-1:-1:-1;48833:373:0;;;;;:::i;:::-;;:::i;49726:345::-;;;;;;;;;;-1:-1:-1;49726:345:0;;;;;:::i;:::-;;:::i;47247:42::-;;;;;;;;;;;;;;;;;;;17770:25:1;;;17758:2;17743:18;47247:42:0;17624:177:1;40059:113:0;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;48536:93;;;;;;;;;;-1:-1:-1;48536:93:0;;;;;:::i;:::-;;:::i;25526:376::-;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;53820:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;47818:38::-;;;;;;;;;;;;;;;;40249:320;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;51220:104::-;;;;;;;;;;-1:-1:-1;51220:104:0;;;;;:::i;:::-;;:::i;48398:130::-;;;;;;;;;;-1:-1:-1;48398:130:0;;;;;:::i;:::-;;:::i;47344:39::-;;;;;;;;;;;;;;;;22492:326;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;47296:41::-;;;;;;;;;;;;;;;;47210:30;;;;;;;;;;;;;;;;22135:295;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;47772:39::-;;;;;;;;;;;;;;;;51332:350;;;;;;;;;;-1:-1:-1;51332:350:0;;;;;:::i;:::-;;:::i;50079:1018::-;;;;;;;;;;;;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;51105:107::-;;;;;;;;;;-1:-1:-1;51105:107:0;;;;;:::i;:::-;;:::i;48637:188::-;;;;;;;;;;-1:-1:-1;48637:188:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;47863:42::-;;;;;;;;;;;;;;;;49623:95;;;;;;;;;;-1:-1:-1;49623:95:0;;;;;:::i;:::-;;:::i;47450:51::-;;;;;;;;;;;;;;;;53477:335;;;;;;;;;;-1:-1:-1;53477:335:0;;;;;:::i;:::-;;:::i;47390:53::-;;;;;;;;;;;;;;;;47729:34;;;;;;;;;;;;;;;;49214:401;;;;;;;;;;-1:-1:-1;49214:401: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;51690:1779;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;39256:300::-;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;14645:2:1;24613:110:0;;;14627:21:1;14684:2;14664:18;;;14657:30;14723:34;14703:18;;;14696:62;-1:-1:-1;;;14774:18:1;;;14767:42;14826:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;16593:2:1;24121:57:0;;;16575:21:1;16632:2;16612:18;;;16605:30;16671:34;16651:18;;;16644:62;-1:-1:-1;;;16722:18:1;;;16715:31;16763:19;;24121:57:0;16391: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;;12328:2:1;24191:168:0;;;12310:21:1;12367:2;12347:18;;;12340:30;12406:34;12386:18;;;12379:62;12477:26;12457:18;;;12450:54;12521:19;;24191:168:0;12126:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;48833:373::-;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;:::-;49005:21:::1;:43:::0;;;;49059:19:::1;:39:::0;;;;49109:20:::1;:41:::0;49161:18:::1;:37:::0;48833:373::o;49726:345::-;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;:::-;49885:14:::1;:30:::0;;;;49926:20:::1;:41:::0;;;;49978:19:::1;:39:::0;50028:17:::1;:35:::0;49726:345::o;48536:93::-;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;:::-;48601:11:::1;:20:::0;48536:93::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;;8497:2:1;39807:124:0;;;8479:21:1;8536:2;8516:18;;;8509:30;8575:34;8555:18;;;8548:62;-1:-1:-1;;;8626:18:1;;;8619:41;8677:19;;39807:124:0;8295:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;53820: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;:::-;53922:37:::1;::::0;53888:21:::1;::::0;53930:10:::1;::::0;53922:37;::::1;;;::::0;53888:21;;53870:15:::1;53922:37:::0;53870:15;53922:37;53888:21;53930:10;53922:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53859:108;53820: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;;17413:2:1;40394:132:0;;;17395:21:1;17452:2;17432:18;;;17425:30;17491:34;17471:18;;;17464:62;-1:-1:-1;;;17542:18:1;;;17535:42;17594:19;;40394:132:0;17211:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;51220: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;:::-;51293:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48398: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;:::-;48479:15:::1;:41:::0;;-1:-1:-1;;;;;;48479:41:0::1;-1:-1:-1::0;;;;;48479:41:0;;;::::1;::::0;;;::::1;::::0;;48398: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;;13164:2:1;22677:110:0;;;13146:21:1;13203:2;13183:18;;;13176:30;13242:34;13222:18;;;13215:62;-1:-1:-1;;;13293:18:1;;;13286:39;13342:19;;22677:110:0;12962:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;12753:2:1;22277:111:0;;;12735:21:1;12792:2;12772:18;;;12765:30;12831:34;12811:18;;;12804:62;-1:-1:-1;;;12882:18:1;;;12875:40;12932:19;;22277:111:0;12551: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;51332:350::-;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;:::-;51420:9:::1;51415:260;51439:14;51435:1;:18;51415:260;;;51475:15;51493:20;:10;46557:14:::0;;46465:114;51493:20:::1;51475:38;;51557:7;;51534:20;:10;46557:14:::0;;46465:114;51534:20:::1;:30;51530:134;;;51585:22;:10;:20;:22::i;:::-;51626;51636:2;51640:7;51626:9;:22::i;:::-;-1:-1:-1::0;51455:3:0;::::1;::::0;::::1;:::i;:::-;;;;51415:260;;50079:1018:::0;50117:7;50178:21;;50160:15;;:39;;;;:::i;:::-;50141:15;:58;;:117;;;;;50239:19;;50221:15;;:37;;;;:::i;:::-;50203:15;:55;50141:117;50137:172;;;-1:-1:-1;50282:15:0;;;50079:1018::o;50137:172::-;50371:20;;50353:15;;:38;;;;:::i;:::-;50334:15;:57;;:115;;;;;50431:18;;50413:15;;:36;;;;:::i;:::-;50395:15;:54;50334:115;50330:168;;;-1:-1:-1;50472:14:0;;;50079:1018::o;50330:168::-;50542:15;;50523;:34;;:99;;;;;50597:25;;50579:15;;:43;;;;:::i;:::-;50561:15;:61;50523:99;50519:150;;;-1:-1:-1;50645:12:0;;;50079:1018::o;50519:150::-;50722:25;;50704:15;;:43;;;;:::i;:::-;50685:15;:62;;:131;;;;-1:-1:-1;50787:25:0;;:29;;50815:1;50787:29;:::i;:::-;50769:15;;:47;;;;:::i;:::-;50751:15;:65;50685:131;50681:210;;;50854:25;;50839:12;;:40;;;;:::i;:::-;50832:47;;50079:1018;:::o;50681:210::-;50952:25;;:29;;50980:1;50952:29;:::i;:::-;50934:15;;:47;;;;:::i;:::-;50915:15;:66;50911:150;;51020:25;;:29;;51048:1;51020:29;:::i;:::-;51005:12;;:44;;;;:::i;50911:150::-;-1:-1:-1;51080:9:0;;50079:1018::o;23054:104::-;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;10855:2:1;24974:62:0;;;10837:21:1;10894:2;10874:18;;;10867:30;10933:27;10913:18;;;10906:55;10978:18;;24974:62:0;10653: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;;7617:41:1;;;25049:42:0;;16975:10;25118:48;;7590:18:1;25118:48:0;;;;;;;24847:327;;:::o;51105: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;:::-;51182:22;;::::1;::::0;:10:::1;::::0;:22;;::::1;::::0;::::1;:::i;48637:188::-: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;:::-;48742:15:::1;:32:::0;;;;48785:15:::1;:32:::0;48637:188::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49623:95::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49692:7:::1;:18:::0;49623:95::o;53477:335::-;28206:4;28230:16;;;:7;:16;;;;;;53550:13;;-1:-1:-1;;;;;28230:16:0;53581:49;;;;-1:-1:-1;;;53581:49:0;;11209:2:1;53581:49:0;;;11191:21:1;11248:2;11228:18;;;11221:30;-1:-1:-1;;;11267:18:1;;;11260:50;11327:18;;53581:49:0;11007:344:1;53581:49:0;53665:15;53647;;:33;53643:132;;;53728:13;53743:18;:7;:16;:18::i;:::-;53711:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53697:66;;53477:335;;;:::o;53643:132::-;53794:10;53787:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53477:335;;;:::o;49214:401::-;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;:::-;49387:15:::1;:32:::0;;;;49430:14:::1;:30:::0;;;;49471:12:::1;:26:::0;49508:25:::1;:44:::0;49563:25:::1;:44:::0;49214:401::o;51690:1779::-;51786:14;;51768;:32;;51760:78;;;;-1:-1:-1;;;51760:78:0;;15829:2:1;51760:78:0;;;15811:21:1;15868:2;15848:18;;;15841:30;15907:34;15887:18;;;15880:62;-1:-1:-1;;;15958:18:1;;;15951:32;16000:19;;51760:78:0;15627:398:1;51760:78:0;51880:7;;51857:10;46557:14;51857:30;51849:71;;;;-1:-1:-1;;;51849:71:0;;10092:2:1;51849:71:0;;;10074:21:1;10131:2;10111:18;;;10104:30;10170:31;10150:18;;;10143:59;10219:18;;51849:71:0;9890:353:1;51849:71:0;37092:6;;-1:-1:-1;;;;;37092:6:0;51937:10;:21;51933:1249;;52025:10;52007:29;;;;:17;:29;;;;;;:46;;52039:14;;52007:46;:::i;:::-;51993:10;51975:29;;;;:17;:29;;;;;:78;52104:9;52086:14;52076:7;:5;:7::i;:::-;:24;;;;:::i;:::-;:37;;52068:77;;;;-1:-1:-1;;;52068:77:0;;11558:2:1;52068:77:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636;11616:18;;;11609:58;11684:18;;52068:77:0;11356:352:1;52068:77:0;52203:21;;52185:15;;:39;;;;:::i;:::-;52166:15;:58;;:117;;;;;52264:19;;52246:15;;:37;;;;:::i;:::-;52228:15;:55;52166:117;52162:732;;;52345:20;;52330:10;52312:29;;;;:17;:29;;;;;;:53;;52304:98;;;;-1:-1:-1;;;52304:98:0;;8095:2:1;52304:98:0;;;8077:21:1;8134:2;8114:18;;;8107:30;8173:34;8153:18;;;8146:62;-1:-1:-1;;;8224:18:1;;;8217:31;8265:19;;52304:98:0;7893:397:1;52304:98:0;52162:732;;;52465:20;;52447:15;;:38;;;;:::i;:::-;52428:15;:57;;:115;;;;;52525:18;;52507:15;;:36;;;;:::i;:::-;52489:15;:54;52428:115;52424:470;;;52604:19;;52589:10;52571:29;;;;:17;:29;;;;;;:52;;52563:96;;;;-1:-1:-1;;;52563:96:0;;16232:2:1;52563:96:0;;;16214:21:1;;;16251:18;;;16244:30;16310:34;16290:18;;;16283:62;16362:18;;52563:96:0;16030:356:1;52424:470:0;52726:15;;52708;:33;52700:67;;;;-1:-1:-1;;;52700:67:0;;14294:2:1;52700:67:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:52;14414:18;;52700:67:0;14092:346:1;52700:67:0;52827:17;;52812:10;52794:29;;;;:17;:29;;;;;;:50;;52786:92;;;;-1:-1:-1;;;52786:92:0;;13574:2:1;52786:92:0;;;13556:21:1;13613:2;13593:18;;;13586:30;13652:32;13632:18;;;13625:60;13702:18;;52786:92:0;13372:354:1;52786:92:0;52926:11;;:15;52922:249;;52962:17;53010:3;52995:11;;52983:9;:23;;;;:::i;:::-;52982:31;;;;:::i;:::-;53032:15;;52962:51;;-1:-1:-1;;;;;;53032:15:0;:47;53057:21;52962:51;53057:9;:21;:::i;:::-;53032:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52943:152;52922:249;;;53120:15;;:35;;-1:-1:-1;;;;;53120:15:0;;;;53145:9;53120:35;;;;;:15;:35;:15;:35;53145:9;53120:15;:35;;;;;;;;;;;;;;;;;;;;;52922:249;53199:9;53194:268;53218:14;53214:1;:18;53194:268;;;53254:15;53272:20;:10;46557:14;;46465:114;53272:20;53254:38;;53336:7;;53313:20;:10;46557:14;;46465:114;53313:20;:30;53309:142;;;53364:22;:10;:20;:22::i;:::-;53405:30;53415:10;53427:7;53405:9;:30::i;:::-;-1:-1:-1;53234:3:0;;;;:::i;:::-;;;;53194:268;;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;;9328:2:1;38119:110:0::1;::::0;::::1;9310:21:1::0;9367:2;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;-1:-1:-1;;;9457:18:1;;;9450:36;9503:19;;38119:110:0::1;9126:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;11915:2:1;28586:110:0;;;11897:21:1;11954:2;11934:18;;;11927:30;11993:34;11973:18;;;11966:62;-1:-1:-1;;;12044:18:1;;;12037:42;12096:19;;28586:110:0;11713: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;;15419:2:1;31655:122:0;;;15401:21:1;15458:2;15438:18;;;15431:30;15497:34;15477:18;;;15470:62;-1:-1:-1;;;15548:18:1;;;15541:39;15597:19;;31655:122:0;15217:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;10450:2:1;31788:65:0;;;10432:21:1;10489:2;10469:18;;;10462:30;10528:34;10508:18;;;10501:62;-1:-1:-1;;;10579:18:1;;;10572:34;10623:19;;31788:65:0;10248: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;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;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;;13933:2:1;30295:61:0;;;13915:21:1;;;13952:18;;;13945:30;14011:34;13991:18;;;13984:62;14063:18;;30295:61:0;13731:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;9735:2:1;30367:58:0;;;9717:21:1;9774:2;9754:18;;;9747:30;9813;9793:18;;;9786:58;9861:18;;30367:58:0;9533: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:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:248::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;-1:-1:-1;;4211:23:1;;;4281:2;4266:18;;;4253:32;;-1:-1:-1;4043:248:1:o;4296:385::-;4382:6;4390;4398;4406;4459:3;4447:9;4438:7;4434:23;4430:33;4427:53;;;4476:1;4473;4466:12;4427:53;-1:-1:-1;;4499:23:1;;;4569:2;4554:18;;4541:32;;-1:-1:-1;4620:2:1;4605:18;;4592:32;;4671:2;4656:18;4643:32;;-1:-1:-1;4296:385:1;-1:-1:-1;4296:385:1:o;4686:454::-;4781:6;4789;4797;4805;4813;4866:3;4854:9;4845:7;4841:23;4837:33;4834:53;;;4883:1;4880;4873:12;4834:53;-1:-1:-1;;4906:23:1;;;4976:2;4961:18;;4948:32;;-1:-1:-1;5027:2:1;5012:18;;4999:32;;5078:2;5063:18;;5050:32;;-1:-1:-1;5129:3:1;5114:19;5101:33;;-1:-1:-1;4686:454:1;-1:-1:-1;4686:454:1:o;5145:257::-;5186:3;5224:5;5218:12;5251:6;5246:3;5239:19;5267:63;5323:6;5316:4;5311:3;5307:14;5300:4;5293:5;5289:16;5267:63;:::i;:::-;5384:2;5363:15;-1:-1:-1;;5359:29:1;5350:39;;;;5391:4;5346:50;;5145:257;-1:-1:-1;;5145:257:1:o;5407:185::-;5449:3;5487:5;5481:12;5502:52;5547:6;5542:3;5535:4;5528:5;5524:16;5502:52;:::i;:::-;5570:16;;;;;5407:185;-1:-1:-1;;5407:185:1:o;5597:1174::-;5773:3;5802:1;5835:6;5829:13;5865:3;5887:1;5915:9;5911:2;5907:18;5897:28;;5975:2;5964:9;5960:18;5997;5987:61;;6041:4;6033:6;6029:17;6019:27;;5987:61;6067:2;6115;6107:6;6104:14;6084:18;6081:38;6078:165;;;-1:-1:-1;;;6142:33:1;;6198:4;6195:1;6188:15;6228:4;6149:3;6216:17;6078:165;6259:18;6286:104;;;;6404:1;6399:320;;;;6252:467;;6286:104;-1:-1:-1;;6319:24:1;;6307:37;;6364:16;;;;-1:-1:-1;6286:104:1;;6399:320;17879:1;17872:14;;;17916:4;17903:18;;6494:1;6508:165;6522:6;6519:1;6516:13;6508:165;;;6600:14;;6587:11;;;6580:35;6643:16;;;;6537:10;;6508:165;;;6512:3;;6702:6;6697:3;6693:16;6686:23;;6252:467;;;;;;;6735:30;6761:3;6753:6;6735:30;:::i;:::-;6728:37;5597:1174;-1:-1:-1;;;;;5597:1174:1:o;6984:488::-;-1:-1:-1;;;;;7253:15:1;;;7235:34;;7305:15;;7300:2;7285:18;;7278:43;7352:2;7337:18;;7330:34;;;7400:3;7395:2;7380:18;;7373:31;;;7178:4;;7421:45;;7446:19;;7438:6;7421:45;:::i;:::-;7413:53;6984:488;-1:-1:-1;;;;;;6984:488:1:o;7669:219::-;7818:2;7807:9;7800:21;7781:4;7838:44;7878:2;7867:9;7863:18;7855:6;7838:44;:::i;8707:414::-;8909:2;8891:21;;;8948:2;8928:18;;;8921:30;8987:34;8982:2;8967:18;;8960:62;-1:-1:-1;;;9053:2:1;9038:18;;9031:48;9111:3;9096:19;;8707:414::o;14856:356::-;15058:2;15040:21;;;15077:18;;;15070:30;15136:34;15131:2;15116:18;;15109:62;15203:2;15188:18;;14856:356::o;16793:413::-;16995:2;16977:21;;;17034:2;17014:18;;;17007:30;17073:34;17068:2;17053:18;;17046:62;-1:-1:-1;;;17139:2:1;17124:18;;17117:47;17196:3;17181:19;;16793:413::o;17932:128::-;17972:3;18003:1;17999:6;17996:1;17993:13;17990:39;;;18009:18;;:::i;:::-;-1:-1:-1;18045:9:1;;17932:128::o;18065:120::-;18105:1;18131;18121:35;;18136:18;;:::i;:::-;-1:-1:-1;18170:9:1;;18065:120::o;18190:168::-;18230:7;18296:1;18292;18288:6;18284:14;18281:1;18278:21;18273:1;18266:9;18259:17;18255:45;18252:71;;;18303:18;;:::i;:::-;-1:-1:-1;18343:9:1;;18190:168::o;18363:125::-;18403:4;18431:1;18428;18425:8;18422:34;;;18436:18;;:::i;:::-;-1:-1:-1;18473:9:1;;18363:125::o;18493:258::-;18565:1;18575:113;18589:6;18586:1;18583:13;18575:113;;;18665:11;;;18659:18;18646:11;;;18639:39;18611:2;18604:10;18575:113;;;18706:6;18703:1;18700:13;18697:48;;;-1:-1:-1;;18741:1:1;18723:16;;18716:27;18493:258::o;18756:380::-;18835:1;18831:12;;;;18878;;;18899:61;;18953:4;18945:6;18941:17;18931:27;;18899:61;19006:2;18998:6;18995:14;18975:18;18972:38;18969:161;;;19052:10;19047:3;19043:20;19040:1;19033:31;19087:4;19084:1;19077:15;19115:4;19112:1;19105:15;18969:161;;18756:380;;;:::o;19141:135::-;19180:3;-1:-1:-1;;19201:17:1;;19198:43;;;19221:18;;:::i;:::-;-1:-1:-1;19268:1:1;19257:13;;19141:135::o;19281:112::-;19313:1;19339;19329:35;;19344:18;;:::i;:::-;-1:-1:-1;19378:9:1;;19281:112::o;19398:127::-;19459:10;19454:3;19450:20;19447:1;19440:31;19490:4;19487:1;19480:15;19514:4;19511:1;19504:15;19530:127;19591:10;19586:3;19582:20;19579:1;19572:31;19622:4;19619:1;19612:15;19646:4;19643:1;19636:15;19662:127;19723:10;19718:3;19714:20;19711:1;19704:31;19754:4;19751:1;19744:15;19778:4;19775:1;19768:15;19794:127;19855:10;19850:3;19846:20;19843:1;19836:31;19886:4;19883:1;19876:15;19910:4;19907:1;19900:15;19926:127;19987:10;19982:3;19978:20;19975:1;19968:31;20018:4;20015:1;20008:15;20042:4;20039:1;20032:15;20058:131;-1:-1:-1;;;;;;20132:32:1;;20122:43;;20112:71;;20179:1;20176;20169:12;20112:71;20058:131;:::o

Swarm Source

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