ETH Price: $1,867.32 (-4.24%)
 

Overview

Max Total Supply

8 HH

Holders

4

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
HypeHeros

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-10-15
*/

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

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

/**
 * @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);
}

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

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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) {
        return msg.data;
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}
}

/**
 * @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();
    }
}

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
		
        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract HypeHeros is ERC721, Ownable, ERC721Enumerable, ReentrancyGuard {

    using Strings for uint256;
	
    uint256 public SALE_NFT = 555;
	uint256 public MAX_MINT_PRESALE = 1;
	uint256 public MAX_MINT_SALE = 1;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 1;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 1;
	
	uint256 public PRESALE_PRICE = 1 ether;
	uint256 public SALE_PRICE = 1 ether;
	
	uint256 public SALE_MINTED;
	
    bool public presaleEnable = false;
	bool public saleEnable = false;
	
    string public baseURI;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	
	mapping (address => User) public users;
    constructor() ERC721("Hype Heros", "HH") {}
	
	function mintReservedNFT(address[] calldata _to, uint256[] calldata _count) external onlyOwner nonReentrant{
        require(_to.length == _count.length,"Mismatch between Address and count");
		for(uint i=0; i < _to.length; i++){
		    require(
				SALE_MINTED + _count[i] <= SALE_NFT, 
				"Max limit"
			);
			for (uint256 j = 0; j < _count[i]; j++) {
			    uint256 totalSupply = totalSupply();
				_safeMint(_to[i], totalSupply + 1);
				SALE_MINTED++;
			}
		}
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) external payable nonReentrant{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per txn"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
			uint256 totalSupply = totalSupply();
            _safeMint(msg.sender, totalSupply + 1);
			SALE_MINTED++;
        }
		users[msg.sender].presalemint += _count;
    }
	
	function mintSaleNFT(uint256 _count) external payable nonReentrant{
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per txn"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            uint256 totalSupply = totalSupply();
			_safeMint(msg.sender, totalSupply + 1);
			SALE_MINTED++;
        }
		users[msg.sender].salemint += _count;
    }
	
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
		return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }
	
	function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable){
        super._beforeTokenTransfer(from, to, tokenId);
    }
	
	function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function setSaleStatus(bool status) external onlyOwner {
        require(saleEnable != status);
		saleEnable = status;
    }
	
	function setPreSaleStatus(bool status) external onlyOwner {
	   require(presaleEnable != status);
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateMintLimitPerTransactionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransactionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
}

Contract Security Audit

Contract ABI

API
[{"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":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","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":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","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":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransactionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransactionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261022b600c556001600d819055600e819055600f819055601055670de0b6b3a764000060118190556012556014805461ffff191690553480156200004757600080fd5b50604080518082018252600a81526948797065204865726f7360b01b602080830191825283518085019094526002845261090960f31b908401528151919291620000949160009162000128565b508051620000aa90600190602084019062000128565b505050620000c7620000c1620000d260201b60201c565b620000d6565b6001600b556200020b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600281046001821680620001e357607f821691505b602082108114156200020557634e487b7160e01b600052602260045260246000fd5b50919050565b61307a806200021b6000396000f3fe6080604052600436106102885760003560e01c80637e95eac41161015a578063ac0419fd116100c1578063d897833e1161007a578063d897833e14610725578063e985e9c514610745578063f176baaa14610765578063f2fde38b14610785578063f4397335146107a5578063fe4ca847146107c557610288565b8063ac0419fd1461067b578063ae5cc1721461069b578063b88d4fde146106b0578063c87b56dd146106d0578063ccfb63a4146106f0578063ce22483c1461070557610288565b8063945242c611610113578063945242c6146105dd57806395d89b41146105f0578063995b8ef614610605578063a22cb4651461061a578063a87430ba1461063a578063a95268621461066857610288565b80637e95eac4146105495780637ec0912e1461055e5780637ec18cf61461057e5780637f205a74146105935780638da5cb5b146105a8578063941e79fc146105bd57610288565b80634783f0ef116101fe5780636352211e116101b75780636352211e146104aa57806365fccb52146104ca5780636c0360eb146104ea57806370a08231146104ff578063711cc2ae1461051f578063715018a61461053457610288565b80634783f0ef146103f55780634df08219146104155780634f6ccce71461043557806355f804b3146104555780635e326b921461047557806362dc6e211461049557610288565b806318160ddd1161025057806318160ddd1461035657806323b872dd1461036b5780632eb4a7ab1461038b5780632f745c59146103a05780633ccfd60b146103c057806342842e0e146103d557610288565b806301ffc9a71461028d57806306fdde03146102c3578063081812fc146102e5578063095ea7b3146103125780630990e53414610334575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612549565b6107da565b6040516102ba9190612794565b60405180910390f35b3480156102cf57600080fd5b506102d86107ed565b6040516102ba91906127a8565b3480156102f157600080fd5b50610305610300366004612531565b61087f565b6040516102ba9190612743565b34801561031e57600080fd5b5061033261032d366004612485565b6108cb565b005b34801561034057600080fd5b50610349610963565b6040516102ba919061279f565b34801561036257600080fd5b50610349610969565b34801561037757600080fd5b506103326103863660046123a8565b61096f565b34801561039757600080fd5b506103496109a7565b3480156103ac57600080fd5b506103496103bb366004612485565b6109ad565b3480156103cc57600080fd5b506103326109ff565b3480156103e157600080fd5b506103326103f03660046123a8565b610a71565b34801561040157600080fd5b50610332610410366004612531565b610a8c565b34801561042157600080fd5b506103326104303660046124ae565b610ad0565b34801561044157600080fd5b50610349610450366004612531565b610c83565b34801561046157600080fd5b50610332610470366004612581565b610cde565b34801561048157600080fd5b50610332610490366004612517565b610d30565b3480156104a157600080fd5b50610349610d98565b3480156104b657600080fd5b506103056104c5366004612531565b610d9e565b3480156104d657600080fd5b506103326104e5366004612531565b610dd3565b3480156104f657600080fd5b506102d8610e17565b34801561050b57600080fd5b5061034961051a366004612355565b610ea5565b34801561052b57600080fd5b50610349610ee9565b34801561054057600080fd5b50610332610eef565b34801561055557600080fd5b50610349610f3a565b34801561056a57600080fd5b50610332610579366004612531565b610f40565b34801561058a57600080fd5b506102ad610f84565b34801561059f57600080fd5b50610349610f8d565b3480156105b457600080fd5b50610305610f93565b3480156105c957600080fd5b506103326105d8366004612531565b610fa2565b6103326105eb3660046125c7565b611008565b3480156105fc57600080fd5b506102d8611217565b34801561061157600080fd5b50610349611226565b34801561062657600080fd5b5061033261063536600461245c565b61122c565b34801561064657600080fd5b5061065a610655366004612355565b61123e565b6040516102ba929190612687565b610332610676366004612531565b611257565b34801561068757600080fd5b50610332610696366004612531565b6113e2565b3480156106a757600080fd5b50610349611448565b3480156106bc57600080fd5b506103326106cb3660046123e3565b61144e565b3480156106dc57600080fd5b506102d86106eb366004612531565b61148d565b3480156106fc57600080fd5b506103496114e6565b34801561071157600080fd5b50610332610720366004612531565b6114ec565b34801561073157600080fd5b50610332610740366004612517565b611552565b34801561075157600080fd5b506102ad610760366004612376565b6115c7565b34801561077157600080fd5b50610332610780366004612531565b6115f5565b34801561079157600080fd5b506103326107a0366004612355565b61165b565b3480156107b157600080fd5b506103326107c0366004612531565b6116cc565b3480156107d157600080fd5b506102ad611732565b60006107e582611740565b90505b919050565b6060600080546107fc90612f82565b80601f016020809104026020016040519081016040528092919081815260200182805461082890612f82565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088a82611765565b6108af5760405162461bcd60e51b81526004016108a690612c25565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d682610d9e565b9050806001600160a01b0316836001600160a01b0316141561090a5760405162461bcd60e51b81526004016108a690612d92565b806001600160a01b031661091c611782565b6001600160a01b03161480610938575061093881610760611782565b6109545760405162461bcd60e51b81526004016108a690612a93565b61095e8383611786565b505050565b60135481565b60095490565b61098061097a611782565b826117f4565b61099c5760405162461bcd60e51b81526004016108a690612dd3565b61095e838383611879565b60165481565b60006109b883610ea5565b82106109d65760405162461bcd60e51b81526004016108a6906127bb565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610a07611782565b6001600160a01b0316610a18610f93565b6001600160a01b031614610a3e5760405162461bcd60e51b81526004016108a690612c9a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6d573d6000803e3d6000fd5b5050565b61095e8383836040518060200160405280600081525061144e565b610a94611782565b6001600160a01b0316610aa5610f93565b6001600160a01b031614610acb5760405162461bcd60e51b81526004016108a690612c9a565b601655565b610ad8611782565b6001600160a01b0316610ae9610f93565b6001600160a01b031614610b0f5760405162461bcd60e51b81526004016108a690612c9a565b6002600b541415610b325760405162461bcd60e51b81526004016108a690612eb1565b6002600b55828114610b565760405162461bcd60e51b81526004016108a690612bae565b60005b83811015610c7757600c54838383818110610b8457634e487b7160e01b600052603260045260246000fd5b90506020020135601354610b989190612ef4565b1115610bb65760405162461bcd60e51b81526004016108a690612987565b60005b838383818110610bd957634e487b7160e01b600052603260045260246000fd5b90506020020135811015610c64576000610bf1610969565b9050610c3b878785818110610c1657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c2b9190612355565b610c36836001612ef4565b6119a6565b60138054906000610c4b83612fbd565b9190505550508080610c5c90612fbd565b915050610bb9565b5080610c6f81612fbd565b915050610b59565b50506001600b55505050565b6000610c8d610969565b8210610cab5760405162461bcd60e51b81526004016108a690612e65565b60098281548110610ccc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ce6611782565b6001600160a01b0316610cf7610f93565b6001600160a01b031614610d1d5760405162461bcd60e51b81526004016108a690612c9a565b8051610a6d9060159060208401906121dc565b610d38611782565b6001600160a01b0316610d49610f93565b6001600160a01b031614610d6f5760405162461bcd60e51b81526004016108a690612c9a565b60145460ff1615158115151415610d8557600080fd5b6014805460ff1916911515919091179055565b60115481565b6000818152600260205260408120546001600160a01b0316806107e55760405162461bcd60e51b81526004016108a690612b3a565b610ddb611782565b6001600160a01b0316610dec610f93565b6001600160a01b031614610e125760405162461bcd60e51b81526004016108a690612c9a565b601155565b60158054610e2490612f82565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5090612f82565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b60006001600160a01b038216610ecd5760405162461bcd60e51b81526004016108a690612af0565b506001600160a01b031660009081526003602052604090205490565b60105481565b610ef7611782565b6001600160a01b0316610f08610f93565b6001600160a01b031614610f2e5760405162461bcd60e51b81526004016108a690612c9a565b610f3860006119c0565b565b600d5481565b610f48611782565b6001600160a01b0316610f59610f93565b6001600160a01b031614610f7f5760405162461bcd60e51b81526004016108a690612c9a565b601255565b60145460ff1681565b60125481565b6006546001600160a01b031690565b610faa611782565b6001600160a01b0316610fbb610f93565b6001600160a01b031614610fe15760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156110035760405162461bcd60e51b81526004016108a690612c71565b600d55565b6002600b54141561102b5760405162461bcd60e51b81526004016108a690612eb1565b6002600b5560405160009061104490339060200161266a565b60408051601f19818403018152919052805160209091012060145490915060ff166110815760405162461bcd60e51b81526004016108a690612a22565b600c54846013546110929190612ef4565b11156110b05760405162461bcd60e51b81526004016108a690612b83565b6110f1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611a12565b61110d5760405162461bcd60e51b81526004016108a690612a52565b600d543360009081526017602052604090205461112b908690612ef4565b11156111495760405162461bcd60e51b81526004016108a690612e24565b600f5484111561116b5760405162461bcd60e51b81526004016108a690612950565b836011546111799190612f20565b3410156111985760405162461bcd60e51b81526004016108a690612d67565b60005b848110156111e75760006111ad610969565b90506111be33610c36836001612ef4565b601380549060006111ce83612fbd565b91905055505080806111df90612fbd565b91505061119b565b503360009081526017602052604081208054869290611207908490612ef4565b90915550506001600b5550505050565b6060600180546107fc90612f82565b600c5481565b610a6d611237611782565b8383611acd565b6017602052600090815260409020805460019091015482565b6002600b54141561127a5760405162461bcd60e51b81526004016108a690612eb1565b6002600b55601454610100900460ff166112a65760405162461bcd60e51b81526004016108a6906129aa565b600c54816013546112b79190612ef4565b11156112d55760405162461bcd60e51b81526004016108a690612b83565b600e54336000908152601760205260409020600101546112f6908390612ef4565b11156113145760405162461bcd60e51b81526004016108a690612e24565b6010548111156113365760405162461bcd60e51b81526004016108a690612950565b806012546113449190612f20565b3410156113635760405162461bcd60e51b81526004016108a690612d67565b60005b818110156113b2576000611378610969565b905061138933610c36836001612ef4565b6013805490600061139983612fbd565b91905055505080806113aa90612fbd565b915050611366565b5033600090815260176020526040812060010180548392906113d5908490612ef4565b90915550506001600b5550565b6113ea611782565b6001600160a01b03166113fb610f93565b6001600160a01b0316146114215760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156114435760405162461bcd60e51b81526004016108a690612c71565b600f55565b600e5481565b61145f611459611782565b836117f4565b61147b5760405162461bcd60e51b81526004016108a690612dd3565b61148784848484611b70565b50505050565b606061149882611765565b6114b45760405162461bcd60e51b81526004016108a690612d18565b60156114bf83611ba3565b6040516020016114d0929190612695565b6040516020818303038152906040529050919050565b600f5481565b6114f4611782565b6001600160a01b0316611505610f93565b6001600160a01b03161461152b5760405162461bcd60e51b81526004016108a690612c9a565b80600c54101561154d5760405162461bcd60e51b81526004016108a690612c71565b601055565b61155a611782565b6001600160a01b031661156b610f93565b6001600160a01b0316146115915760405162461bcd60e51b81526004016108a690612c9a565b60145460ff61010090910416151581151514156115ad57600080fd5b601480549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115fd611782565b6001600160a01b031661160e610f93565b6001600160a01b0316146116345760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156116565760405162461bcd60e51b81526004016108a690612c71565b600e55565b611663611782565b6001600160a01b0316611674610f93565b6001600160a01b03161461169a5760405162461bcd60e51b81526004016108a690612c9a565b6001600160a01b0381166116c05760405162461bcd60e51b81526004016108a690612858565b6116c9816119c0565b50565b6116d4611782565b6001600160a01b03166116e5610f93565b6001600160a01b03161461170b5760405162461bcd60e51b81526004016108a690612c9a565b60135481101561172d5760405162461bcd60e51b81526004016108a690612c71565b600c55565b601454610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b14806107e557506107e582611cbe565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117bb82610d9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117ff82611765565b61181b5760405162461bcd60e51b81526004016108a6906129d6565b600061182683610d9e565b9050806001600160a01b0316846001600160a01b031614806118615750836001600160a01b03166118568461087f565b6001600160a01b0316145b80611871575061187181856115c7565b949350505050565b826001600160a01b031661188c82610d9e565b6001600160a01b0316146118b25760405162461bcd60e51b81526004016108a690612ccf565b6001600160a01b0382166118d85760405162461bcd60e51b81526004016108a6906128d5565b6118e3838383611cfe565b6118ee600082611786565b6001600160a01b0383166000908152600360205260408120805460019290611917908490612f3f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611945908490612ef4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a6d828260405180602001604052806000815250611d09565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611ac2576000868281518110611a4257634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611a83578281604051602001611a66929190612687565b604051602081830303815290604052805190602001209250611aaf565b8083604051602001611a96929190612687565b6040516020818303038152906040528051906020012092505b5080611aba81612fbd565b915050611a17565b509092149392505050565b816001600160a01b0316836001600160a01b03161415611aff5760405162461bcd60e51b81526004016108a690612919565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611b63908590612794565b60405180910390a3505050565b611b7b848484611879565b611b8784848484611d3c565b6114875760405162461bcd60e51b81526004016108a690612806565b606081611bc857506040805180820190915260018152600360fc1b60208201526107e8565b8160005b8115611bf25780611bdc81612fbd565b9150611beb9050600a83612f0c565b9150611bcc565b60008167ffffffffffffffff811115611c1b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c45576020820181803683370190505b5090505b841561187157611c5a600183612f3f565b9150611c67600a86612fd8565b611c72906030612ef4565b60f81b818381518110611c9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cb7600a86612f0c565b9450611c49565b60006001600160e01b031982166380ac58cd60e01b1480611cef57506001600160e01b03198216635b5e139f60e01b145b806107e557506107e582611e57565b61095e838383611e70565b611d138383611ef9565b611d206000848484611d3c565b61095e5760405162461bcd60e51b81526004016108a690612806565b6000611d50846001600160a01b0316611fd8565b15611e4c57836001600160a01b031663150b7a02611d6c611782565b8786866040518563ffffffff1660e01b8152600401611d8e9493929190612757565b602060405180830381600087803b158015611da857600080fd5b505af1925050508015611dd8575060408051601f3d908101601f19168201909252611dd591810190612565565b60015b611e32573d808015611e06576040519150601f19603f3d011682016040523d82523d6000602084013e611e0b565b606091505b508051611e2a5760405162461bcd60e51b81526004016108a690612806565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611e7b83838361095e565b6001600160a01b038316611e9757611e9281611fde565b611eba565b816001600160a01b0316836001600160a01b031614611eba57611eba8382612022565b6001600160a01b038216611ed657611ed1816120bf565b61095e565b826001600160a01b0316826001600160a01b03161461095e5761095e8282612198565b6001600160a01b038216611f1f5760405162461bcd60e51b81526004016108a690612bf0565b611f2881611765565b15611f455760405162461bcd60e51b81526004016108a69061289e565b611f5160008383611cfe565b6001600160a01b0382166000908152600360205260408120805460019290611f7a908490612ef4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6000600161202f84610ea5565b6120399190612f3f565b60008381526008602052604090205490915080821461208c576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120d190600190612f3f565b6000838152600a60205260408120546009805493945090928490811061210757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061213657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061217c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006121a383610ea5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121e890612f82565b90600052602060002090601f01602090048101928261220a5760008555612250565b82601f1061222357805160ff1916838001178555612250565b82800160010185558215612250579182015b82811115612250578251825591602001919060010190612235565b5061225c929150612260565b5090565b5b8082111561225c5760008155600101612261565b600067ffffffffffffffff8084111561229057612290613018565b604051601f8501601f1916810160200182811182821017156122b4576122b4613018565b6040528481529150818385018610156122cc57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107e857600080fd5b60008083601f84011261230d578081fd5b50813567ffffffffffffffff811115612324578182fd5b602083019150836020808302850101111561233e57600080fd5b9250929050565b803580151581146107e857600080fd5b600060208284031215612366578081fd5b61236f826122e5565b9392505050565b60008060408385031215612388578081fd5b612391836122e5565b915061239f602084016122e5565b90509250929050565b6000806000606084860312156123bc578081fd5b6123c5846122e5565b92506123d3602085016122e5565b9150604084013590509250925092565b600080600080608085870312156123f8578081fd5b612401856122e5565b935061240f602086016122e5565b925060408501359150606085013567ffffffffffffffff811115612431578182fd5b8501601f81018713612441578182fd5b61245087823560208401612275565b91505092959194509250565b6000806040838503121561246e578182fd5b612477836122e5565b915061239f60208401612345565b60008060408385031215612497578182fd5b6124a0836122e5565b946020939093013593505050565b600080600080604085870312156124c3578384fd5b843567ffffffffffffffff808211156124da578586fd5b6124e6888389016122fc565b909650945060208701359150808211156124fe578384fd5b5061250b878288016122fc565b95989497509550505050565b600060208284031215612528578081fd5b61236f82612345565b600060208284031215612542578081fd5b5035919050565b60006020828403121561255a578081fd5b813561236f8161302e565b600060208284031215612576578081fd5b815161236f8161302e565b600060208284031215612592578081fd5b813567ffffffffffffffff8111156125a8578182fd5b8201601f810184136125b8578182fd5b61187184823560208401612275565b6000806000604084860312156125db578081fd5b83359250602084013567ffffffffffffffff8111156125f8578182fd5b612604868287016122fc565b9497909650939450505050565b60008151808452612629816020860160208601612f56565b601f01601f19169290920160200192915050565b6000815161264f818560208601612f56565b9290920192915050565b64173539b7b760d91b815260050190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b82546000908190600281046001808316806126b157607f831692505b60208084108214156126d157634e487b7160e01b87526022600452602487fd5b8180156126e557600181146126f657612722565b60ff19861689528489019650612722565b6126ff8b612ee8565b885b8681101561271a5781548b820152908501908301612701565b505084890196505b50505050505061273a612735828661263d565b612659565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061278a90830184612611565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261236f6020830184612611565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b60008219821115612f0757612f07612fec565b500190565b600082612f1b57612f1b613002565b500490565b6000816000190483118215151615612f3a57612f3a612fec565b500290565b600082821015612f5157612f51612fec565b500390565b60005b83811015612f71578181015183820152602001612f59565b838111156114875750506000910152565b600281046001821680612f9657607f821691505b60208210811415612fb757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fd157612fd1612fec565b5060010190565b600082612fe757612fe7613002565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116c957600080fdfea26469706673582212209039b9c6d27d2719696ec436cdf5fb7095141d12c9f09a50cf806f7d367b4f4364736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80637e95eac41161015a578063ac0419fd116100c1578063d897833e1161007a578063d897833e14610725578063e985e9c514610745578063f176baaa14610765578063f2fde38b14610785578063f4397335146107a5578063fe4ca847146107c557610288565b8063ac0419fd1461067b578063ae5cc1721461069b578063b88d4fde146106b0578063c87b56dd146106d0578063ccfb63a4146106f0578063ce22483c1461070557610288565b8063945242c611610113578063945242c6146105dd57806395d89b41146105f0578063995b8ef614610605578063a22cb4651461061a578063a87430ba1461063a578063a95268621461066857610288565b80637e95eac4146105495780637ec0912e1461055e5780637ec18cf61461057e5780637f205a74146105935780638da5cb5b146105a8578063941e79fc146105bd57610288565b80634783f0ef116101fe5780636352211e116101b75780636352211e146104aa57806365fccb52146104ca5780636c0360eb146104ea57806370a08231146104ff578063711cc2ae1461051f578063715018a61461053457610288565b80634783f0ef146103f55780634df08219146104155780634f6ccce71461043557806355f804b3146104555780635e326b921461047557806362dc6e211461049557610288565b806318160ddd1161025057806318160ddd1461035657806323b872dd1461036b5780632eb4a7ab1461038b5780632f745c59146103a05780633ccfd60b146103c057806342842e0e146103d557610288565b806301ffc9a71461028d57806306fdde03146102c3578063081812fc146102e5578063095ea7b3146103125780630990e53414610334575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612549565b6107da565b6040516102ba9190612794565b60405180910390f35b3480156102cf57600080fd5b506102d86107ed565b6040516102ba91906127a8565b3480156102f157600080fd5b50610305610300366004612531565b61087f565b6040516102ba9190612743565b34801561031e57600080fd5b5061033261032d366004612485565b6108cb565b005b34801561034057600080fd5b50610349610963565b6040516102ba919061279f565b34801561036257600080fd5b50610349610969565b34801561037757600080fd5b506103326103863660046123a8565b61096f565b34801561039757600080fd5b506103496109a7565b3480156103ac57600080fd5b506103496103bb366004612485565b6109ad565b3480156103cc57600080fd5b506103326109ff565b3480156103e157600080fd5b506103326103f03660046123a8565b610a71565b34801561040157600080fd5b50610332610410366004612531565b610a8c565b34801561042157600080fd5b506103326104303660046124ae565b610ad0565b34801561044157600080fd5b50610349610450366004612531565b610c83565b34801561046157600080fd5b50610332610470366004612581565b610cde565b34801561048157600080fd5b50610332610490366004612517565b610d30565b3480156104a157600080fd5b50610349610d98565b3480156104b657600080fd5b506103056104c5366004612531565b610d9e565b3480156104d657600080fd5b506103326104e5366004612531565b610dd3565b3480156104f657600080fd5b506102d8610e17565b34801561050b57600080fd5b5061034961051a366004612355565b610ea5565b34801561052b57600080fd5b50610349610ee9565b34801561054057600080fd5b50610332610eef565b34801561055557600080fd5b50610349610f3a565b34801561056a57600080fd5b50610332610579366004612531565b610f40565b34801561058a57600080fd5b506102ad610f84565b34801561059f57600080fd5b50610349610f8d565b3480156105b457600080fd5b50610305610f93565b3480156105c957600080fd5b506103326105d8366004612531565b610fa2565b6103326105eb3660046125c7565b611008565b3480156105fc57600080fd5b506102d8611217565b34801561061157600080fd5b50610349611226565b34801561062657600080fd5b5061033261063536600461245c565b61122c565b34801561064657600080fd5b5061065a610655366004612355565b61123e565b6040516102ba929190612687565b610332610676366004612531565b611257565b34801561068757600080fd5b50610332610696366004612531565b6113e2565b3480156106a757600080fd5b50610349611448565b3480156106bc57600080fd5b506103326106cb3660046123e3565b61144e565b3480156106dc57600080fd5b506102d86106eb366004612531565b61148d565b3480156106fc57600080fd5b506103496114e6565b34801561071157600080fd5b50610332610720366004612531565b6114ec565b34801561073157600080fd5b50610332610740366004612517565b611552565b34801561075157600080fd5b506102ad610760366004612376565b6115c7565b34801561077157600080fd5b50610332610780366004612531565b6115f5565b34801561079157600080fd5b506103326107a0366004612355565b61165b565b3480156107b157600080fd5b506103326107c0366004612531565b6116cc565b3480156107d157600080fd5b506102ad611732565b60006107e582611740565b90505b919050565b6060600080546107fc90612f82565b80601f016020809104026020016040519081016040528092919081815260200182805461082890612f82565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088a82611765565b6108af5760405162461bcd60e51b81526004016108a690612c25565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d682610d9e565b9050806001600160a01b0316836001600160a01b0316141561090a5760405162461bcd60e51b81526004016108a690612d92565b806001600160a01b031661091c611782565b6001600160a01b03161480610938575061093881610760611782565b6109545760405162461bcd60e51b81526004016108a690612a93565b61095e8383611786565b505050565b60135481565b60095490565b61098061097a611782565b826117f4565b61099c5760405162461bcd60e51b81526004016108a690612dd3565b61095e838383611879565b60165481565b60006109b883610ea5565b82106109d65760405162461bcd60e51b81526004016108a6906127bb565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610a07611782565b6001600160a01b0316610a18610f93565b6001600160a01b031614610a3e5760405162461bcd60e51b81526004016108a690612c9a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6d573d6000803e3d6000fd5b5050565b61095e8383836040518060200160405280600081525061144e565b610a94611782565b6001600160a01b0316610aa5610f93565b6001600160a01b031614610acb5760405162461bcd60e51b81526004016108a690612c9a565b601655565b610ad8611782565b6001600160a01b0316610ae9610f93565b6001600160a01b031614610b0f5760405162461bcd60e51b81526004016108a690612c9a565b6002600b541415610b325760405162461bcd60e51b81526004016108a690612eb1565b6002600b55828114610b565760405162461bcd60e51b81526004016108a690612bae565b60005b83811015610c7757600c54838383818110610b8457634e487b7160e01b600052603260045260246000fd5b90506020020135601354610b989190612ef4565b1115610bb65760405162461bcd60e51b81526004016108a690612987565b60005b838383818110610bd957634e487b7160e01b600052603260045260246000fd5b90506020020135811015610c64576000610bf1610969565b9050610c3b878785818110610c1657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c2b9190612355565b610c36836001612ef4565b6119a6565b60138054906000610c4b83612fbd565b9190505550508080610c5c90612fbd565b915050610bb9565b5080610c6f81612fbd565b915050610b59565b50506001600b55505050565b6000610c8d610969565b8210610cab5760405162461bcd60e51b81526004016108a690612e65565b60098281548110610ccc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ce6611782565b6001600160a01b0316610cf7610f93565b6001600160a01b031614610d1d5760405162461bcd60e51b81526004016108a690612c9a565b8051610a6d9060159060208401906121dc565b610d38611782565b6001600160a01b0316610d49610f93565b6001600160a01b031614610d6f5760405162461bcd60e51b81526004016108a690612c9a565b60145460ff1615158115151415610d8557600080fd5b6014805460ff1916911515919091179055565b60115481565b6000818152600260205260408120546001600160a01b0316806107e55760405162461bcd60e51b81526004016108a690612b3a565b610ddb611782565b6001600160a01b0316610dec610f93565b6001600160a01b031614610e125760405162461bcd60e51b81526004016108a690612c9a565b601155565b60158054610e2490612f82565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5090612f82565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b60006001600160a01b038216610ecd5760405162461bcd60e51b81526004016108a690612af0565b506001600160a01b031660009081526003602052604090205490565b60105481565b610ef7611782565b6001600160a01b0316610f08610f93565b6001600160a01b031614610f2e5760405162461bcd60e51b81526004016108a690612c9a565b610f3860006119c0565b565b600d5481565b610f48611782565b6001600160a01b0316610f59610f93565b6001600160a01b031614610f7f5760405162461bcd60e51b81526004016108a690612c9a565b601255565b60145460ff1681565b60125481565b6006546001600160a01b031690565b610faa611782565b6001600160a01b0316610fbb610f93565b6001600160a01b031614610fe15760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156110035760405162461bcd60e51b81526004016108a690612c71565b600d55565b6002600b54141561102b5760405162461bcd60e51b81526004016108a690612eb1565b6002600b5560405160009061104490339060200161266a565b60408051601f19818403018152919052805160209091012060145490915060ff166110815760405162461bcd60e51b81526004016108a690612a22565b600c54846013546110929190612ef4565b11156110b05760405162461bcd60e51b81526004016108a690612b83565b6110f1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611a12565b61110d5760405162461bcd60e51b81526004016108a690612a52565b600d543360009081526017602052604090205461112b908690612ef4565b11156111495760405162461bcd60e51b81526004016108a690612e24565b600f5484111561116b5760405162461bcd60e51b81526004016108a690612950565b836011546111799190612f20565b3410156111985760405162461bcd60e51b81526004016108a690612d67565b60005b848110156111e75760006111ad610969565b90506111be33610c36836001612ef4565b601380549060006111ce83612fbd565b91905055505080806111df90612fbd565b91505061119b565b503360009081526017602052604081208054869290611207908490612ef4565b90915550506001600b5550505050565b6060600180546107fc90612f82565b600c5481565b610a6d611237611782565b8383611acd565b6017602052600090815260409020805460019091015482565b6002600b54141561127a5760405162461bcd60e51b81526004016108a690612eb1565b6002600b55601454610100900460ff166112a65760405162461bcd60e51b81526004016108a6906129aa565b600c54816013546112b79190612ef4565b11156112d55760405162461bcd60e51b81526004016108a690612b83565b600e54336000908152601760205260409020600101546112f6908390612ef4565b11156113145760405162461bcd60e51b81526004016108a690612e24565b6010548111156113365760405162461bcd60e51b81526004016108a690612950565b806012546113449190612f20565b3410156113635760405162461bcd60e51b81526004016108a690612d67565b60005b818110156113b2576000611378610969565b905061138933610c36836001612ef4565b6013805490600061139983612fbd565b91905055505080806113aa90612fbd565b915050611366565b5033600090815260176020526040812060010180548392906113d5908490612ef4565b90915550506001600b5550565b6113ea611782565b6001600160a01b03166113fb610f93565b6001600160a01b0316146114215760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156114435760405162461bcd60e51b81526004016108a690612c71565b600f55565b600e5481565b61145f611459611782565b836117f4565b61147b5760405162461bcd60e51b81526004016108a690612dd3565b61148784848484611b70565b50505050565b606061149882611765565b6114b45760405162461bcd60e51b81526004016108a690612d18565b60156114bf83611ba3565b6040516020016114d0929190612695565b6040516020818303038152906040529050919050565b600f5481565b6114f4611782565b6001600160a01b0316611505610f93565b6001600160a01b03161461152b5760405162461bcd60e51b81526004016108a690612c9a565b80600c54101561154d5760405162461bcd60e51b81526004016108a690612c71565b601055565b61155a611782565b6001600160a01b031661156b610f93565b6001600160a01b0316146115915760405162461bcd60e51b81526004016108a690612c9a565b60145460ff61010090910416151581151514156115ad57600080fd5b601480549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115fd611782565b6001600160a01b031661160e610f93565b6001600160a01b0316146116345760405162461bcd60e51b81526004016108a690612c9a565b80600c5410156116565760405162461bcd60e51b81526004016108a690612c71565b600e55565b611663611782565b6001600160a01b0316611674610f93565b6001600160a01b03161461169a5760405162461bcd60e51b81526004016108a690612c9a565b6001600160a01b0381166116c05760405162461bcd60e51b81526004016108a690612858565b6116c9816119c0565b50565b6116d4611782565b6001600160a01b03166116e5610f93565b6001600160a01b03161461170b5760405162461bcd60e51b81526004016108a690612c9a565b60135481101561172d5760405162461bcd60e51b81526004016108a690612c71565b600c55565b601454610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b14806107e557506107e582611cbe565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117bb82610d9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117ff82611765565b61181b5760405162461bcd60e51b81526004016108a6906129d6565b600061182683610d9e565b9050806001600160a01b0316846001600160a01b031614806118615750836001600160a01b03166118568461087f565b6001600160a01b0316145b80611871575061187181856115c7565b949350505050565b826001600160a01b031661188c82610d9e565b6001600160a01b0316146118b25760405162461bcd60e51b81526004016108a690612ccf565b6001600160a01b0382166118d85760405162461bcd60e51b81526004016108a6906128d5565b6118e3838383611cfe565b6118ee600082611786565b6001600160a01b0383166000908152600360205260408120805460019290611917908490612f3f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611945908490612ef4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a6d828260405180602001604052806000815250611d09565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611ac2576000868281518110611a4257634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611a83578281604051602001611a66929190612687565b604051602081830303815290604052805190602001209250611aaf565b8083604051602001611a96929190612687565b6040516020818303038152906040528051906020012092505b5080611aba81612fbd565b915050611a17565b509092149392505050565b816001600160a01b0316836001600160a01b03161415611aff5760405162461bcd60e51b81526004016108a690612919565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611b63908590612794565b60405180910390a3505050565b611b7b848484611879565b611b8784848484611d3c565b6114875760405162461bcd60e51b81526004016108a690612806565b606081611bc857506040805180820190915260018152600360fc1b60208201526107e8565b8160005b8115611bf25780611bdc81612fbd565b9150611beb9050600a83612f0c565b9150611bcc565b60008167ffffffffffffffff811115611c1b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c45576020820181803683370190505b5090505b841561187157611c5a600183612f3f565b9150611c67600a86612fd8565b611c72906030612ef4565b60f81b818381518110611c9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cb7600a86612f0c565b9450611c49565b60006001600160e01b031982166380ac58cd60e01b1480611cef57506001600160e01b03198216635b5e139f60e01b145b806107e557506107e582611e57565b61095e838383611e70565b611d138383611ef9565b611d206000848484611d3c565b61095e5760405162461bcd60e51b81526004016108a690612806565b6000611d50846001600160a01b0316611fd8565b15611e4c57836001600160a01b031663150b7a02611d6c611782565b8786866040518563ffffffff1660e01b8152600401611d8e9493929190612757565b602060405180830381600087803b158015611da857600080fd5b505af1925050508015611dd8575060408051601f3d908101601f19168201909252611dd591810190612565565b60015b611e32573d808015611e06576040519150601f19603f3d011682016040523d82523d6000602084013e611e0b565b606091505b508051611e2a5760405162461bcd60e51b81526004016108a690612806565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611e7b83838361095e565b6001600160a01b038316611e9757611e9281611fde565b611eba565b816001600160a01b0316836001600160a01b031614611eba57611eba8382612022565b6001600160a01b038216611ed657611ed1816120bf565b61095e565b826001600160a01b0316826001600160a01b03161461095e5761095e8282612198565b6001600160a01b038216611f1f5760405162461bcd60e51b81526004016108a690612bf0565b611f2881611765565b15611f455760405162461bcd60e51b81526004016108a69061289e565b611f5160008383611cfe565b6001600160a01b0382166000908152600360205260408120805460019290611f7a908490612ef4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6000600161202f84610ea5565b6120399190612f3f565b60008381526008602052604090205490915080821461208c576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120d190600190612f3f565b6000838152600a60205260408120546009805493945090928490811061210757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061213657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061217c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006121a383610ea5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121e890612f82565b90600052602060002090601f01602090048101928261220a5760008555612250565b82601f1061222357805160ff1916838001178555612250565b82800160010185558215612250579182015b82811115612250578251825591602001919060010190612235565b5061225c929150612260565b5090565b5b8082111561225c5760008155600101612261565b600067ffffffffffffffff8084111561229057612290613018565b604051601f8501601f1916810160200182811182821017156122b4576122b4613018565b6040528481529150818385018610156122cc57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107e857600080fd5b60008083601f84011261230d578081fd5b50813567ffffffffffffffff811115612324578182fd5b602083019150836020808302850101111561233e57600080fd5b9250929050565b803580151581146107e857600080fd5b600060208284031215612366578081fd5b61236f826122e5565b9392505050565b60008060408385031215612388578081fd5b612391836122e5565b915061239f602084016122e5565b90509250929050565b6000806000606084860312156123bc578081fd5b6123c5846122e5565b92506123d3602085016122e5565b9150604084013590509250925092565b600080600080608085870312156123f8578081fd5b612401856122e5565b935061240f602086016122e5565b925060408501359150606085013567ffffffffffffffff811115612431578182fd5b8501601f81018713612441578182fd5b61245087823560208401612275565b91505092959194509250565b6000806040838503121561246e578182fd5b612477836122e5565b915061239f60208401612345565b60008060408385031215612497578182fd5b6124a0836122e5565b946020939093013593505050565b600080600080604085870312156124c3578384fd5b843567ffffffffffffffff808211156124da578586fd5b6124e6888389016122fc565b909650945060208701359150808211156124fe578384fd5b5061250b878288016122fc565b95989497509550505050565b600060208284031215612528578081fd5b61236f82612345565b600060208284031215612542578081fd5b5035919050565b60006020828403121561255a578081fd5b813561236f8161302e565b600060208284031215612576578081fd5b815161236f8161302e565b600060208284031215612592578081fd5b813567ffffffffffffffff8111156125a8578182fd5b8201601f810184136125b8578182fd5b61187184823560208401612275565b6000806000604084860312156125db578081fd5b83359250602084013567ffffffffffffffff8111156125f8578182fd5b612604868287016122fc565b9497909650939450505050565b60008151808452612629816020860160208601612f56565b601f01601f19169290920160200192915050565b6000815161264f818560208601612f56565b9290920192915050565b64173539b7b760d91b815260050190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b82546000908190600281046001808316806126b157607f831692505b60208084108214156126d157634e487b7160e01b87526022600452602487fd5b8180156126e557600181146126f657612722565b60ff19861689528489019650612722565b6126ff8b612ee8565b885b8681101561271a5781548b820152908501908301612701565b505084890196505b50505050505061273a612735828661263d565b612659565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061278a90830184612611565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261236f6020830184612611565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b60008219821115612f0757612f07612fec565b500190565b600082612f1b57612f1b613002565b500490565b6000816000190483118215151615612f3a57612f3a612fec565b500290565b600082821015612f5157612f51612fec565b500390565b60005b83811015612f71578181015183820152602001612f59565b838111156114875750506000910152565b600281046001821680612f9657607f821691505b60208210811415612fb757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fd157612fd1612fec565b5060010190565b600082612fe757612fe7613002565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116c957600080fdfea26469706673582212209039b9c6d27d2719696ec436cdf5fb7095141d12c9f09a50cf806f7d367b4f4364736f6c63430008000033

Deployed Bytecode Sourcemap

46303:5362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49703:171;;;;;;;;;;-1:-1:-1;49703:171:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24048:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25607:221::-;;;;;;;;;;-1:-1:-1;25607:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25130:411::-;;;;;;;;;;-1:-1:-1;25130:411:0;;;;;:::i;:::-;;:::i;:::-;;46729:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36997:113::-;;;;;;;;;;;;;:::i;26357:339::-;;;;;;;;;;-1:-1:-1;26357:339:0;;;;;:::i;:::-;;:::i;46867:25::-;;;;;;;;;;;;;:::i;36665:256::-;;;;;;;;;;-1:-1:-1;36665:256:0;;;;;:::i;:::-;;:::i;49880:145::-;;;;;;;;;;;;;:::i;26767:185::-;;;;;;;;;;-1:-1:-1;26767:185:0;;;;;:::i;:::-;;:::i;51568:94::-;;;;;;;;;;-1:-1:-1;51568:94:0;;;;;:::i;:::-;;:::i;47064:484::-;;;;;;;;;;-1:-1:-1;47064:484:0;;;;;:::i;:::-;;:::i;37187:233::-;;;;;;;;;;-1:-1:-1;37187:233:0;;;;;:::i;:::-;;:::i;50031:104::-;;;;;;;;;;-1:-1:-1;50031:104:0;;;;;:::i;:::-;;:::i;50496:137::-;;;;;;;;;;-1:-1:-1;50496:137:0;;;;;:::i;:::-;;:::i;46645:38::-;;;;;;;;;;;;;:::i;23742:239::-;;;;;;;;;;-1:-1:-1;23742:239:0;;;;;:::i;:::-;;:::i;50249:108::-;;;;;;;;;;-1:-1:-1;50249:108:0;;;;;:::i;:::-;;:::i;46842:21::-;;;;;;;;;;;;;:::i;23472:208::-;;;;;;;;;;-1:-1:-1;23472:208:0;;;;;:::i;:::-;;:::i;46588:50::-;;;;;;;;;;;;;:::i;21059:103::-;;;;;;;;;;;;;:::i;46453:35::-;;;;;;;;;;;;;:::i;50141:102::-;;;;;;;;;;-1:-1:-1;50141:102:0;;;;;:::i;:::-;;:::i;46765:33::-;;;;;;;;;;;;;:::i;46687:35::-;;;;;;;;;;;;;:::i;20408:87::-;;;;;;;;;;;;;:::i;50810:171::-;;;;;;;;;;-1:-1:-1;50810:171:0;;;;;:::i;:::-;;:::i;47554:956::-;;;;;;:::i;:::-;;:::i;24217:104::-;;;;;;;;;;;;;:::i;46420:29::-;;;;;;;;;;;;;:::i;25900:155::-;;;;;;;;;;-1:-1:-1;25900:155:0;;;;;:::i;:::-;;:::i;46970:38::-;;;;;;;;;;-1:-1:-1;46970:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;48516:726::-;;;;;;:::i;:::-;;:::i;51156:203::-;;;;;;;;;;-1:-1:-1;51156:203:0;;;;;:::i;:::-;;:::i;46492:32::-;;;;;;;;;;;;;:::i;27023:328::-;;;;;;;;;;-1:-1:-1;27023:328:0;;;;;:::i;:::-;;:::i;49251:260::-;;;;;;;;;;-1:-1:-1;49251:260:0;;;;;:::i;:::-;;:::i;46531:53::-;;;;;;;;;;;;;:::i;51365:197::-;;;;;;;;;;-1:-1:-1;51365:197:0;;;;;:::i;:::-;;:::i;50363:127::-;;;;;;;;;;-1:-1:-1;50363:127:0;;;;;:::i;:::-;;:::i;26126:164::-;;;;;;;;;;-1:-1:-1;26126:164:0;;;;;:::i;:::-;;:::i;50639:165::-;;;;;;;;;;-1:-1:-1;50639:165:0;;;;;:::i;:::-;;:::i;21317:201::-;;;;;;;;;;-1:-1:-1;21317:201:0;;;;;:::i;:::-;;:::i;50987:163::-;;;;;;;;;;-1:-1:-1;50987:163:0;;;;;:::i;:::-;;:::i;46802:30::-;;;;;;;;;;;;;:::i;49703:171::-;49806:4;49830:36;49854:11;49830:23;:36::i;:::-;49823:43;;49703:171;;;;:::o;24048:100::-;24102:13;24135:5;24128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24048:100;:::o;25607:221::-;25683:7;25711:16;25719:7;25711;:16::i;:::-;25703:73;;;;-1:-1:-1;;;25703:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;25796:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25796:24:0;;25607:221::o;25130:411::-;25211:13;25227:23;25242:7;25227:14;:23::i;:::-;25211:39;;25275:5;-1:-1:-1;;;;;25269:11:0;:2;-1:-1:-1;;;;;25269:11:0;;;25261:57;;;;-1:-1:-1;;;25261:57:0;;;;;;;:::i;:::-;25369:5;-1:-1:-1;;;;;25353:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25353:21:0;;:62;;;;25378:37;25395:5;25402:12;:10;:12::i;25378:37::-;25331:168;;;;-1:-1:-1;;;25331:168:0;;;;;;;:::i;:::-;25512:21;25521:2;25525:7;25512:8;:21::i;:::-;25130:411;;;:::o;46729:26::-;;;;:::o;36997:113::-;37085:10;:17;36997:113;:::o;26357:339::-;26552:41;26571:12;:10;:12::i;:::-;26585:7;26552:18;:41::i;:::-;26544:103;;;;-1:-1:-1;;;26544:103:0;;;;;;;:::i;:::-;26660:28;26670:4;26676:2;26680:7;26660:9;:28::i;46867:25::-;;;;:::o;36665:256::-;36762:7;36798:23;36815:5;36798:16;:23::i;:::-;36790:5;:31;36782:87;;;;-1:-1:-1;;;36782:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;36887:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36665:256::o;49880:145::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;49980:37:::1;::::0;49948:21:::1;::::0;49988:10:::1;::::0;49980:37;::::1;;;::::0;49948:21;;49930:15:::1;49980:37:::0;49930:15;49980:37;49948:21;49988:10;49980:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;20699:1;49880:145::o:0;26767:185::-;26905:39;26922:4;26928:2;26932:7;26905:39;;;;;;;;;;;;:16;:39::i;51568:94::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51637:10:::1;:20:::0;51568:94::o;47064:484::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;44156:1:::1;44754:7;;:19;;44746:63;;;;-1:-1:-1::0;;;44746:63:0::1;;;;;;;:::i;:::-;44156:1;44887:7;:18:::0;47190:27;;::::2;47182:73;;;;-1:-1:-1::0;;;47182:73:0::2;;;;;;;:::i;:::-;47264:6;47260:281;47274:14:::0;;::::2;47260:281;;;47344:8;;47331:6;;47338:1;47331:9;;;;;-1:-1:-1::0;;;47331:9:0::2;;;;;;;;;;;;;;;47317:11;;:23;;;;:::i;:::-;:35;;47303:74;;;;-1:-1:-1::0;;;47303:74:0::2;;;;;;;:::i;:::-;47388:9;47383:153;47407:6;;47414:1;47407:9;;;;;-1:-1:-1::0;;;47407:9:0::2;;;;;;;;;;;;;;;47403:1;:13;47383:153;;;47433:19;47455:13;:11;:13::i;:::-;47433:35;;47475:34;47485:3;;47489:1;47485:6;;;;;-1:-1:-1::0;;;47485:6:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47493:15;:11:::0;47507:1:::2;47493:15;:::i;:::-;47475:9;:34::i;:::-;47516:11;:13:::0;;;:11:::2;:13;::::0;::::2;:::i;:::-;;;;;;47383:153;47418:3;;;;;:::i;:::-;;;;47383:153;;;-1:-1:-1::0;47290:3:0;::::2;::::0;::::2;:::i;:::-;;;;47260:281;;;-1:-1:-1::0;;44112:1:0::1;45066:7;:22:::0;-1:-1:-1;;;47064:484:0:o;37187:233::-;37262:7;37298:30;:28;:30::i;:::-;37290:5;:38;37282:95;;;;-1:-1:-1;;;37282:95:0;;;;;;;:::i;:::-;37395:10;37406:5;37395:17;;;;;;-1:-1:-1;;;37395:17:0;;;;;;;;;;;;;;;;;37388:24;;37187:233;;;:::o;50031:104::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50107:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;50496:137::-:0;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50569:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;50561:32;;;::::0;::::1;;50603:13;:22:::0;;-1:-1:-1;;50603:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50496:137::o;46645:38::-;;;;:::o;23742:239::-;23814:7;23850:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23850:16:0;23885:19;23877:73;;;;-1:-1:-1;;;23877:73:0;;;;;;;:::i;50249:108::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50325:13:::1;:24:::0;50249:108::o;46842:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23472:208::-;23544:7;-1:-1:-1;;;;;23572:19:0;;23564:74;;;;-1:-1:-1;;;23564:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23656:16:0;;;;;:9;:16;;;;;;;23472:208::o;46588:50::-;;;;:::o;21059:103::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;21124:30:::1;21151:1;21124:18;:30::i;:::-;21059:103::o:0;46453:35::-;;;;:::o;50141:102::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50214:10:::1;:21:::0;50141:102::o;46765:33::-;;;;;;:::o;46687:35::-;;;;:::o;20408:87::-;20481:6;;-1:-1:-1;;;;;20481:6:0;20408:87;:::o;50810:171::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50907:8:::1;50895;;:20;;50887:48;;;;-1:-1:-1::0;;;50887:48:0::1;;;;;;;:::i;:::-;50946:16;:27:::0;50810:171::o;47554:956::-;44156:1;44754:7;;:19;;44746:63;;;;-1:-1:-1;;;44746:63:0;;;;;;;:::i;:::-;44156:1;44887:7;:18;47685:28:::1;::::0;47660:12:::1;::::0;47685:28:::1;::::0;47702:10:::1;::::0;47685:28:::1;;;:::i;:::-;;::::0;;-1:-1:-1;;47685:28:0;;::::1;::::0;;;;;;47675:39;;47685:28:::1;47675:39:::0;;::::1;::::0;47732:13:::1;::::0;47675:39;;-1:-1:-1;47732:13:0::1;;47719:62;;;;-1:-1:-1::0;;;47719:62:0::1;;;;;;;:::i;:::-;47829:8;;47819:6;47805:11;;:20;;;;:::i;:::-;:32;;47792:76;;;;-1:-1:-1::0;;;47792:76:0::1;;;;;;;:::i;:::-;47886:49;47905:11;;47886:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47918:10:0::1;::::0;;-1:-1:-1;47930:4:0;;-1:-1:-1;47886:18:0::1;:49::i;:::-;47873:109;;;;-1:-1:-1::0;;;47873:109:0::1;;;;;;;:::i;:::-;48042:16;::::0;48006:10:::1;48000:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;48032:6;;48000:38:::1;:::i;:::-;:58;;47987:117;;;;-1:-1:-1::0;;;47987:117:0::1;;;;;;;:::i;:::-;48132:34;;48122:6;:44;;48109:100;;;;-1:-1:-1::0;;;48109:100:0::1;;;;;;;:::i;:::-;48256:6;48240:13;;:22;;;;:::i;:::-;48227:9;:35;;48214:78;;;;-1:-1:-1::0;;;48214:78:0::1;;;;;;;:::i;:::-;48302:9;48297:162;48321:6;48317:1;:10;48297:162;;;48340:19;48362:13;:11;:13::i;:::-;48340:35:::0;-1:-1:-1;48390:38:0::1;48400:10;48412:15;48340:35:::0;48426:1:::1;48412:15;:::i;48390:38::-;48434:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;48297:162;48329:3;;;;;:::i;:::-;;;;48297:162;;;-1:-1:-1::0;48469:10:0::1;48463:17;::::0;;;:5:::1;:17;::::0;;;;:39;;48496:6;;48463:17;:39:::1;::::0;48496:6;;48463:39:::1;:::i;:::-;::::0;;;-1:-1:-1;;44112:1:0;45066:7;:22;-1:-1:-1;;;;47554:956:0:o;24217:104::-;24273:13;24306:7;24299:14;;;;;:::i;46420:29::-;;;;:::o;25900:155::-;25995:52;26014:12;:10;:12::i;:::-;26028:8;26038;25995:18;:52::i;46970:38::-;;;;;;;;;;;;;;;;;;;:::o;48516:726::-;44156:1;44754:7;;:19;;44746:63;;;;-1:-1:-1;;;44746:63:0;;;;;;;:::i;:::-;44156:1;44887:7;:18;48600:10:::1;::::0;::::1;::::0;::::1;;;48587:55;;;;-1:-1:-1::0;;;48587:55:0::1;;;;;;;:::i;:::-;48690:8;;48680:6;48666:11;;:20;;;;:::i;:::-;:32;;48653:76;;;;-1:-1:-1::0;;;48653:76:0::1;;;;;;;:::i;:::-;48786:13;::::0;48753:10:::1;48747:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;48776:6;;48747:35:::1;:::i;:::-;:52;;48734:111;;;;-1:-1:-1::0;;;48734:111:0::1;;;;;;;:::i;:::-;48873:31;;48863:6;:41;;48850:97;;;;-1:-1:-1::0;;;48850:97:0::1;;;;;;;:::i;:::-;48991:6;48978:10;;:19;;;;:::i;:::-;48965:9;:32;;48952:75;;;;-1:-1:-1::0;;;48952:75:0::1;;;;;;;:::i;:::-;49037:9;49032:162;49056:6;49052:1;:10;49032:162;;;49084:19;49106:13;:11;:13::i;:::-;49084:35:::0;-1:-1:-1;49125:38:0::1;49135:10;49147:15;49084:35:::0;49161:1:::1;49147:15;:::i;49125:38::-;49169:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;49032:162;49064:3;;;;;:::i;:::-;;;;49032:162;;;-1:-1:-1::0;49204:10:0::1;49198:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;:36:::0;;49228:6;;49198:17;:36:::1;::::0;49228:6;;49198:36:::1;:::i;:::-;::::0;;;-1:-1:-1;;44112:1:0;45066:7;:22;-1:-1:-1;48516:726:0:o;51156:203::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51267:8:::1;51255;;:20;;51247:48;;;;-1:-1:-1::0;;;51247:48:0::1;;;;;;;:::i;:::-;51306:34;:45:::0;51156:203::o;46492:32::-;;;;:::o;27023:328::-;27198:41;27217:12;:10;:12::i;:::-;27231:7;27198:18;:41::i;:::-;27190:103;;;;-1:-1:-1;;;27190:103:0;;;;;;;:::i;:::-;27304:39;27318:4;27324:2;27328:7;27337:5;27304:13;:39::i;:::-;27023:328;;;;:::o;49251:260::-;49325:13;49359:17;49367:8;49359:7;:17::i;:::-;49351:77;;;;-1:-1:-1;;;49351:77:0;;;;;;;:::i;:::-;49464:7;49473:19;:8;:17;:19::i;:::-;49447:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49433:70;;49251:260;;;:::o;46531:53::-;;;;:::o;51365:197::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51473:8:::1;51461;;:20;;51453:48;;;;-1:-1:-1::0;;;51453:48:0::1;;;;;;;:::i;:::-;51512:31;:42:::0;51365:197::o;50363:127::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50437:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;50429:29;;;::::0;::::1;;50463:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;50463:19:0;;::::1;::::0;;;::::1;::::0;;50363:127::o;26126:164::-;-1:-1:-1;;;;;26247:25:0;;;26223:4;26247:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26126:164::o;50639:165::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50733:8:::1;50721;;:20;;50713:48;;;;-1:-1:-1::0;;;50713:48:0::1;;;;;;;:::i;:::-;50772:13;:24:::0;50639:165::o;21317:201::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21406:22:0;::::1;21398:73;;;;-1:-1:-1::0;;;21398:73:0::1;;;;;;;:::i;:::-;21482:28;21501:8;21482:18;:28::i;:::-;21317:201:::0;:::o;50987:163::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51080:11:::1;;51067:9;:24;;51059:52;;;;-1:-1:-1::0;;;51059:52:0::1;;;;;;;:::i;:::-;51122:8;:20:::0;50987:163::o;46802:30::-;;;;;;;;;:::o;36357:224::-;36459:4;-1:-1:-1;;;;;;36483:50:0;;-1:-1:-1;;;36483:50:0;;:90;;;36537:36;36561:11;36537:23;:36::i;28861:127::-;28926:4;28950:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28950:16:0;:30;;;28861:127::o;17290:98::-;17370:10;17290:98;:::o;32843:174::-;32918:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32918:29:0;-1:-1:-1;;;;;32918:29:0;;;;;;;;:24;;32972:23;32918:24;32972:14;:23::i;:::-;-1:-1:-1;;;;;32963:46:0;;;;;;;;;;;32843:174;;:::o;29155:348::-;29248:4;29273:16;29281:7;29273;:16::i;:::-;29265:73;;;;-1:-1:-1;;;29265:73:0;;;;;;;:::i;:::-;29349:13;29365:23;29380:7;29365:14;:23::i;:::-;29349:39;;29418:5;-1:-1:-1;;;;;29407:16:0;:7;-1:-1:-1;;;;;29407:16:0;;:51;;;;29451:7;-1:-1:-1;;;;;29427:31:0;:20;29439:7;29427:11;:20::i;:::-;-1:-1:-1;;;;;29427:31:0;;29407:51;:87;;;;29462:32;29479:5;29486:7;29462:16;:32::i;:::-;29399:96;29155:348;-1:-1:-1;;;;29155:348:0:o;32147:578::-;32306:4;-1:-1:-1;;;;;32279:31:0;:23;32294:7;32279:14;:23::i;:::-;-1:-1:-1;;;;;32279:31:0;;32271:85;;;;-1:-1:-1;;;32271:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32375:16:0;;32367:65;;;;-1:-1:-1;;;32367:65:0;;;;;;;:::i;:::-;32445:39;32466:4;32472:2;32476:7;32445:20;:39::i;:::-;32549:29;32566:1;32570:7;32549:8;:29::i;:::-;-1:-1:-1;;;;;32591:15:0;;;;;;:9;:15;;;;;:20;;32610:1;;32591:15;:20;;32610:1;;32591:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32622:13:0;;;;;;:9;:13;;;;;:18;;32639:1;;32622:13;:18;;32639:1;;32622:18;:::i;:::-;;;;-1:-1:-1;;32651:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32651:21:0;-1:-1:-1;;;;;32651:21:0;;;;;;;;;32690:27;;32651:16;;32690:27;;;;;;;32147:578;;;:::o;29845:110::-;29921:26;29931:2;29935:7;29921:26;;;;;;;;;;;;:9;:26::i;21678:191::-;21771:6;;;-1:-1:-1;;;;;21788:17:0;;;-1:-1:-1;;;;;;21788:17:0;;;;;;;21821:40;;21771:6;;;21788:17;21771:6;;21821:40;;21752:16;;21821:40;21678:191;;:::o;45464:832::-;45589:4;45629;45589;45646:525;45670:5;:12;45666:1;:16;45646:525;;;45704:20;45727:5;45733:1;45727:8;;;;;;-1:-1:-1;;;45727:8:0;;;;;;;;;;;;;;;45704:31;;45772:12;45756;:28;45752:408;;45926:12;45940;45909:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45899:55;;;;;;45884:70;;45752:408;;;46116:12;46130;46099:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46089:55;;;;;;46074:70;;45752:408;-1:-1:-1;45684:3:0;;;;:::i;:::-;;;;45646:525;;;-1:-1:-1;46268:20:0;;;;45464:832;-1:-1:-1;;;45464:832:0:o;33159:315::-;33314:8;-1:-1:-1;;;;;33305:17:0;:5;-1:-1:-1;;;;;33305:17:0;;;33297:55;;;;-1:-1:-1;;;33297:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33363:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;33363:46:0;;;;;;;33425:41;;;;;33363:46;;33425:41;:::i;:::-;;;;;;;;33159:315;;;:::o;28233:::-;28390:28;28400:4;28406:2;28410:7;28390:9;:28::i;:::-;28437:48;28460:4;28466:2;28470:7;28479:5;28437:22;:48::i;:::-;28429:111;;;;-1:-1:-1;;;28429:111:0;;;;;;;:::i;17730:723::-;17786:13;18007:10;18003:53;;-1:-1:-1;18034:10:0;;;;;;;;;;;;-1:-1:-1;;;18034:10:0;;;;;;18003:53;18081:5;18066:12;18122:78;18129:9;;18122:78;;18155:8;;;;:::i;:::-;;-1:-1:-1;18178:10:0;;-1:-1:-1;18186:2:0;18178:10;;:::i;:::-;;;18122:78;;;18210:19;18242:6;18232:17;;;;;;-1:-1:-1;;;18232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18232:17:0;;18210:39;;18260:154;18267:10;;18260:154;;18294:11;18304:1;18294:11;;:::i;:::-;;-1:-1:-1;18363:10:0;18371:2;18363:5;:10;:::i;:::-;18350:24;;:2;:24;:::i;:::-;18337:39;;18320:6;18327;18320:14;;;;;;-1:-1:-1;;;18320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18320:56:0;;;;;;;;-1:-1:-1;18391:11:0;18400:2;18391:11;;:::i;:::-;;;18260:154;;23103:305;23205:4;-1:-1:-1;;;;;;23242:40:0;;-1:-1:-1;;;23242:40:0;;:105;;-1:-1:-1;;;;;;;23299:48:0;;-1:-1:-1;;;23299:48:0;23242:105;:158;;;;23364:36;23388:11;23364:23;:36::i;49517:180::-;49644:45;49671:4;49677:2;49681:7;49644:26;:45::i;30182:321::-;30312:18;30318:2;30322:7;30312:5;:18::i;:::-;30363:54;30394:1;30398:2;30402:7;30411:5;30363:22;:54::i;:::-;30341:154;;;;-1:-1:-1;;;30341:154:0;;;;;;;:::i;34039:799::-;34194:4;34215:15;:2;-1:-1:-1;;;;;34215:13:0;;:15::i;:::-;34211:620;;;34267:2;-1:-1:-1;;;;;34251:36:0;;34288:12;:10;:12::i;:::-;34302:4;34308:7;34317:5;34251:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34251:72:0;;;;;;;;-1:-1:-1;;34251:72:0;;;;;;;;;;;;:::i;:::-;;;34247:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34493:13:0;;34489:272;;34536:60;;-1:-1:-1;;;34536:60:0;;;;;;;:::i;34489:272::-;34711:6;34705:13;34696:6;34692:2;34688:15;34681:38;34247:529;-1:-1:-1;;;;;;34374:51:0;-1:-1:-1;;;34374:51:0;;-1:-1:-1;34367:58:0;;34211:620;-1:-1:-1;34815:4:0;34039:799;;;;;;:::o;7092:157::-;-1:-1:-1;;;;;;7201:40:0;;-1:-1:-1;;;7201:40:0;7092:157;;;:::o;38033:589::-;38177:45;38204:4;38210:2;38214:7;38177:26;:45::i;:::-;-1:-1:-1;;;;;38239:18:0;;38235:187;;38274:40;38306:7;38274:31;:40::i;:::-;38235:187;;;38344:2;-1:-1:-1;;;;;38336:10:0;:4;-1:-1:-1;;;;;38336:10:0;;38332:90;;38363:47;38396:4;38402:7;38363:32;:47::i;:::-;-1:-1:-1;;;;;38436:16:0;;38432:183;;38469:45;38506:7;38469:36;:45::i;:::-;38432:183;;;38542:4;-1:-1:-1;;;;;38536:10:0;:2;-1:-1:-1;;;;;38536:10:0;;38532:83;;38563:40;38591:2;38595:7;38563:27;:40::i;30839:382::-;-1:-1:-1;;;;;30919:16:0;;30911:61;;;;-1:-1:-1;;;30911:61:0;;;;;;;:::i;:::-;30992:16;31000:7;30992;:16::i;:::-;30991:17;30983:58;;;;-1:-1:-1;;;30983:58:0;;;;;;;:::i;:::-;31054:45;31083:1;31087:2;31091:7;31054:20;:45::i;:::-;-1:-1:-1;;;;;31112:13:0;;;;;;:9;:13;;;;;:18;;31129:1;;31112:13;:18;;31129:1;;31112:18;:::i;:::-;;;;-1:-1:-1;;31141:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31141:21:0;-1:-1:-1;;;;;31141:21:0;;;;;;;;31180:33;;31141:16;;;31180:33;;31141:16;;31180:33;30839:382;;:::o;9419:387::-;9742:20;9790:8;;;9419:387::o;39345:164::-;39449:10;:17;;39422:24;;;;:15;:24;;;;;:44;;;39477:24;;;;;;;;;;;;39345:164::o;40136:988::-;40402:22;40452:1;40427:22;40444:4;40427:16;:22::i;:::-;:26;;;;:::i;:::-;40464:18;40485:26;;;:17;:26;;;;;;40402:51;;-1:-1:-1;40618:28:0;;;40614:328;;-1:-1:-1;;;;;40685:18:0;;40663:19;40685:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40736:30;;;;;;:44;;;40853:30;;:17;:30;;;;;:43;;;40614:328;-1:-1:-1;41038:26:0;;;;:17;:26;;;;;;;;41031:33;;;-1:-1:-1;;;;;41082:18:0;;;;;:12;:18;;;;;:34;;;;;;;41075:41;40136:988::o;41419:1079::-;41697:10;:17;41672:22;;41697:21;;41717:1;;41697:21;:::i;:::-;41729:18;41750:24;;;:15;:24;;;;;;42123:10;:26;;41672:46;;-1:-1:-1;41750:24:0;;41672:46;;42123:26;;;;-1:-1:-1;;;42123:26:0;;;;;;;;;;;;;;;;;42101:48;;42187:11;42162:10;42173;42162:22;;;;;;-1:-1:-1;;;42162:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42267:28;;;:15;:28;;;;;;;:41;;;42439:24;;;;;42432:31;42474:10;:16;;;;;-1:-1:-1;;;42474:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1079;;;;:::o;38923:221::-;39008:14;39025:20;39042:2;39025:16;:20::i;:::-;-1:-1:-1;;;;;39056:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39101:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38923:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:162::-;1278:20;;1334:13;;1327:21;1317:32;;1307:2;;1363:1;1360;1353:12;1378:198;;1490:2;1478:9;1469:7;1465:23;1461:32;1458:2;;;1511:6;1503;1496:22;1458:2;1539:31;1560:9;1539:31;:::i;:::-;1529:41;1448:128;-1:-1:-1;;;1448:128:1:o;1581:274::-;;;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1759:31;1780:9;1759:31;:::i;:::-;1749:41;;1809:40;1845:2;1834:9;1830:18;1809:40;:::i;:::-;1799:50;;1668:187;;;;;:::o;1860:342::-;;;;2006:2;1994:9;1985:7;1981:23;1977:32;1974:2;;;2027:6;2019;2012:22;1974:2;2055:31;2076:9;2055:31;:::i;:::-;2045:41;;2105:40;2141:2;2130:9;2126:18;2105:40;:::i;:::-;2095:50;;2192:2;2181:9;2177:18;2164:32;2154:42;;1964:238;;;;;:::o;2207:702::-;;;;;2379:3;2367:9;2358:7;2354:23;2350:33;2347:2;;;2401:6;2393;2386:22;2347:2;2429:31;2450:9;2429:31;:::i;:::-;2419:41;;2479:40;2515:2;2504:9;2500:18;2479:40;:::i;:::-;2469:50;;2566:2;2555:9;2551:18;2538:32;2528:42;;2621:2;2610:9;2606:18;2593:32;2648:18;2640:6;2637:30;2634:2;;;2685:6;2677;2670:22;2634:2;2713:22;;2766:4;2758:13;;2754:27;-1:-1:-1;2744:2:1;;2800:6;2792;2785:22;2744:2;2828:75;2895:7;2890:2;2877:16;2872:2;2868;2864:11;2828:75;:::i;:::-;2818:85;;;2337:572;;;;;;;:::o;2914:268::-;;;3040:2;3028:9;3019:7;3015:23;3011:32;3008:2;;;3061:6;3053;3046:22;3008:2;3089:31;3110:9;3089:31;:::i;:::-;3079:41;;3139:37;3172:2;3161:9;3157:18;3139:37;:::i;3187:266::-;;;3316:2;3304:9;3295:7;3291:23;3287:32;3284:2;;;3337:6;3329;3322:22;3284:2;3365:31;3386:9;3365:31;:::i;:::-;3355:41;3443:2;3428:18;;;;3415:32;;-1:-1:-1;;;3274:179:1:o;3458:815::-;;;;;3657:2;3645:9;3636:7;3632:23;3628:32;3625:2;;;3678:6;3670;3663:22;3625:2;3723:9;3710:23;3752:18;3793:2;3785:6;3782:14;3779:2;;;3814:6;3806;3799:22;3779:2;3858:76;3926:7;3917:6;3906:9;3902:22;3858:76;:::i;:::-;3953:8;;-1:-1:-1;3832:102:1;-1:-1:-1;4041:2:1;4026:18;;4013:32;;-1:-1:-1;4057:16:1;;;4054:2;;;4091:6;4083;4076:22;4054:2;;4135:78;4205:7;4194:8;4183:9;4179:24;4135:78;:::i;:::-;3615:658;;;;-1:-1:-1;4232:8:1;-1:-1:-1;;;;3615:658:1:o;4278:192::-;;4387:2;4375:9;4366:7;4362:23;4358:32;4355:2;;;4408:6;4400;4393:22;4355:2;4436:28;4454:9;4436:28;:::i;4475:190::-;;4587:2;4575:9;4566:7;4562:23;4558:32;4555:2;;;4608:6;4600;4593:22;4555:2;-1:-1:-1;4636:23:1;;4545:120;-1:-1:-1;4545:120:1:o;4670:257::-;;4781:2;4769:9;4760:7;4756:23;4752:32;4749:2;;;4802:6;4794;4787:22;4749:2;4846:9;4833:23;4865:32;4891:5;4865:32;:::i;4932:261::-;;5054:2;5042:9;5033:7;5029:23;5025:32;5022:2;;;5075:6;5067;5060:22;5022:2;5112:9;5106:16;5131:32;5157:5;5131:32;:::i;5198:482::-;;5320:2;5308:9;5299:7;5295:23;5291:32;5288:2;;;5341:6;5333;5326:22;5288:2;5386:9;5373:23;5419:18;5411:6;5408:30;5405:2;;;5456:6;5448;5441:22;5405:2;5484:22;;5537:4;5529:13;;5525:27;-1:-1:-1;5515:2:1;;5571:6;5563;5556:22;5515:2;5599:75;5666:7;5661:2;5648:16;5643:2;5639;5635:11;5599:75;:::i;5880:531::-;;;;6044:2;6032:9;6023:7;6019:23;6015:32;6012:2;;;6065:6;6057;6050:22;6012:2;6106:9;6093:23;6083:33;;6167:2;6156:9;6152:18;6139:32;6194:18;6186:6;6183:30;6180:2;;;6231:6;6223;6216:22;6180:2;6275:76;6343:7;6334:6;6323:9;6319:22;6275:76;:::i;:::-;6002:409;;6370:8;;-1:-1:-1;6249:102:1;;-1:-1:-1;;;;6002:409:1:o;6416:259::-;;6497:5;6491:12;6524:6;6519:3;6512:19;6540:63;6596:6;6589:4;6584:3;6580:14;6573:4;6566:5;6562:16;6540:63;:::i;:::-;6657:2;6636:15;-1:-1:-1;;6632:29:1;6623:39;;;;6664:4;6619:50;;6467:208;-1:-1:-1;;6467:208:1:o;6680:187::-;;6762:5;6756:12;6777:52;6822:6;6817:3;6810:4;6803:5;6799:16;6777:52;:::i;:::-;6845:16;;;;;6732:135;-1:-1:-1;;6732:135:1:o;6872:120::-;-1:-1:-1;;;6939:20:1;;6984:1;6975:11;;6929:63::o;6997:229::-;7146:2;7142:15;;;;-1:-1:-1;;7138:53:1;7126:66;;7217:2;7208:12;;7116:110::o;7231:247::-;7388:19;;;7432:2;7423:12;;7416:28;7469:2;7460:12;;7378:100::o;7483:1315::-;7818:13;;7483:1315;;;;7891:1;7876:17;;7912:1;7948:18;;;;7975:2;;8029:4;8021:6;8017:17;8007:27;;7975:2;8055;8103;8095:6;8092:14;8072:18;8069:38;8066:2;;;-1:-1:-1;;;8130:33:1;;8186:4;8183:1;8176:15;8216:4;8137:3;8204:17;8066:2;8247:18;8274:104;;;;8392:1;8387:324;;;;8240:471;;8274:104;-1:-1:-1;;8307:24:1;;8295:37;;8352:16;;;;-1:-1:-1;8274:104:1;;8387:324;8423:39;8455:6;8423:39;:::i;:::-;8484:3;8500:165;8514:6;8511:1;8508:13;8500:165;;;8592:14;;8579:11;;;8572:35;8635:16;;;;8529:10;;8500:165;;;8504:3;;8694:6;8689:3;8685:16;8678:23;;8240:471;;;;;;;8727:65;8759:32;8787:3;8779:6;8759:32;:::i;:::-;8727:65;:::i;:::-;8720:72;7768:1030;-1:-1:-1;;;;;7768:1030:1:o;8803:203::-;-1:-1:-1;;;;;8967:32:1;;;;8949:51;;8937:2;8922:18;;8904:102::o;9011:490::-;-1:-1:-1;;;;;9280:15:1;;;9262:34;;9332:15;;9327:2;9312:18;;9305:43;9379:2;9364:18;;9357:34;;;9427:3;9422:2;9407:18;;9400:31;;;9011:490;;9448:47;;9475:19;;9467:6;9448:47;:::i;:::-;9440:55;9214:287;-1:-1:-1;;;;;;9214:287:1:o;9506:187::-;9671:14;;9664:22;9646:41;;9634:2;9619:18;;9601:92::o;9698:177::-;9844:25;;;9832:2;9817:18;;9799:76::o;9880:221::-;;10029:2;10018:9;10011:21;10049:46;10091:2;10080:9;10076:18;10068:6;10049:46;:::i;10106:407::-;10308:2;10290:21;;;10347:2;10327:18;;;10320:30;10386:34;10381:2;10366:18;;10359:62;-1:-1:-1;;;10452:2:1;10437:18;;10430:41;10503:3;10488:19;;10280:233::o;10518:414::-;10720:2;10702:21;;;10759:2;10739:18;;;10732:30;10798:34;10793:2;10778:18;;10771:62;-1:-1:-1;;;10864:2:1;10849:18;;10842:48;10922:3;10907:19;;10692:240::o;10937:402::-;11139:2;11121:21;;;11178:2;11158:18;;;11151:30;11217:34;11212:2;11197:18;;11190:62;-1:-1:-1;;;11283:2:1;11268:18;;11261:36;11329:3;11314:19;;11111:228::o;11344:352::-;11546:2;11528:21;;;11585:2;11565:18;;;11558:30;11624;11619:2;11604:18;;11597:58;11687:2;11672:18;;11518:178::o;11701:400::-;11903:2;11885:21;;;11942:2;11922:18;;;11915:30;11981:34;11976:2;11961:18;;11954:62;-1:-1:-1;;;12047:2:1;12032:18;;12025:34;12091:3;12076:19;;11875:226::o;12106:349::-;12308:2;12290:21;;;12347:2;12327:18;;;12320:30;12386:27;12381:2;12366:18;;12359:55;12446:2;12431:18;;12280:175::o;12460:354::-;12662:2;12644:21;;;12701:2;12681:18;;;12674:30;12740:32;12735:2;12720:18;;12713:60;12805:2;12790:18;;12634:180::o;12819:332::-;13021:2;13003:21;;;13060:1;13040:18;;;13033:29;-1:-1:-1;;;13093:2:1;13078:18;;13071:39;13142:2;13127:18;;12993:158::o;13156:342::-;13358:2;13340:21;;;13397:2;13377:18;;;13370:30;-1:-1:-1;;;13431:2:1;13416:18;;13409:48;13489:2;13474:18;;13330:168::o;13503:408::-;13705:2;13687:21;;;13744:2;13724:18;;;13717:30;13783:34;13778:2;13763:18;;13756:62;-1:-1:-1;;;13849:2:1;13834:18;;13827:42;13901:3;13886:19;;13677:234::o;13916:346::-;14118:2;14100:21;;;14157:2;14137:18;;;14130:30;-1:-1:-1;;;14191:2:1;14176:18;;14169:52;14253:2;14238:18;;14090:172::o;14267:397::-;14469:2;14451:21;;;14508:2;14488:18;;;14481:30;14547:34;14542:2;14527:18;;14520:62;-1:-1:-1;;;14613:2:1;14598:18;;14591:31;14654:3;14639:19;;14441:223::o;14669:420::-;14871:2;14853:21;;;14910:2;14890:18;;;14883:30;14949:34;14944:2;14929:18;;14922:62;15020:26;15015:2;15000:18;;14993:54;15079:3;15064:19;;14843:246::o;15094:406::-;15296:2;15278:21;;;15335:2;15315:18;;;15308:30;15374:34;15369:2;15354:18;;15347:62;-1:-1:-1;;;15440:2:1;15425:18;;15418:40;15490:3;15475:19;;15268:232::o;15505:405::-;15707:2;15689:21;;;15746:2;15726:18;;;15719:30;15785:34;15780:2;15765:18;;15758:62;-1:-1:-1;;;15851:2:1;15836:18;;15829:39;15900:3;15885:19;;15679:231::o;15915:341::-;16117:2;16099:21;;;16156:2;16136:18;;;16129:30;-1:-1:-1;;;16190:2:1;16175:18;;16168:47;16247:2;16232:18;;16089:167::o;16261:398::-;16463:2;16445:21;;;16502:2;16482:18;;;16475:30;16541:34;16536:2;16521:18;;16514:62;-1:-1:-1;;;16607:2:1;16592:18;;16585:32;16649:3;16634:19;;16435:224::o;16664:356::-;16866:2;16848:21;;;16885:18;;;16878:30;16944:34;16939:2;16924:18;;16917:62;17011:2;16996:18;;16838:182::o;17025:408::-;17227:2;17209:21;;;17266:2;17246:18;;;17239:30;17305:34;17300:2;17285:18;;17278:62;-1:-1:-1;;;17371:2:1;17356:18;;17349:42;17423:3;17408:19;;17199:234::o;17438:339::-;17640:2;17622:21;;;17679:2;17659:18;;;17652:30;-1:-1:-1;;;17713:2:1;17698:18;;17691:45;17768:2;17753:18;;17612:165::o;17782:356::-;17984:2;17966:21;;;18003:18;;;17996:30;18062:34;18057:2;18042:18;;18035:62;18129:2;18114:18;;17956:182::o;18143:405::-;18345:2;18327:21;;;18384:2;18364:18;;;18357:30;18423:34;18418:2;18403:18;;18396:62;-1:-1:-1;;;18489:2:1;18474:18;;18467:39;18538:3;18523:19;;18317:231::o;18553:411::-;18755:2;18737:21;;;18794:2;18774:18;;;18767:30;18833:34;18828:2;18813:18;;18806:62;-1:-1:-1;;;18899:2:1;18884:18;;18877:45;18954:3;18939:19;;18727:237::o;18969:341::-;19171:2;19153:21;;;19210:2;19190:18;;;19183:30;-1:-1:-1;;;19244:2:1;19229:18;;19222:47;19301:2;19286:18;;19143:167::o;19315:397::-;19517:2;19499:21;;;19556:2;19536:18;;;19529:30;19595:34;19590:2;19575:18;;19568:62;-1:-1:-1;;;19661:2:1;19646:18;;19639:31;19702:3;19687:19;;19489:223::o;19717:413::-;19919:2;19901:21;;;19958:2;19938:18;;;19931:30;19997:34;19992:2;19977:18;;19970:62;-1:-1:-1;;;20063:2:1;20048:18;;20041:47;20120:3;20105:19;;19891:239::o;20135:397::-;20337:2;20319:21;;;20376:2;20356:18;;;20349:30;20415:34;20410:2;20395:18;;20388:62;-1:-1:-1;;;20481:2:1;20466:18;;20459:31;20522:3;20507:19;;20309:223::o;20537:408::-;20739:2;20721:21;;;20778:2;20758:18;;;20751:30;20817:34;20812:2;20797:18;;20790:62;-1:-1:-1;;;20883:2:1;20868:18;;20861:42;20935:3;20920:19;;20711:234::o;20950:355::-;21152:2;21134:21;;;21191:2;21171:18;;;21164:30;21230:33;21225:2;21210:18;;21203:61;21296:2;21281:18;;21124:181::o;21745:129::-;;21813:17;;;21863:4;21847:21;;;21803:71::o;21879:128::-;;21950:1;21946:6;21943:1;21940:13;21937:2;;;21956:18;;:::i;:::-;-1:-1:-1;21992:9:1;;21927:80::o;22012:120::-;;22078:1;22068:2;;22083:18;;:::i;:::-;-1:-1:-1;22117:9:1;;22058:74::o;22137:168::-;;22243:1;22239;22235:6;22231:14;22228:1;22225:21;22220:1;22213:9;22206:17;22202:45;22199:2;;;22250:18;;:::i;:::-;-1:-1:-1;22290:9:1;;22189:116::o;22310:125::-;;22378:1;22375;22372:8;22369:2;;;22383:18;;:::i;:::-;-1:-1:-1;22420:9:1;;22359:76::o;22440:258::-;22512:1;22522:113;22536:6;22533:1;22530:13;22522:113;;;22612:11;;;22606:18;22593:11;;;22586:39;22558:2;22551:10;22522:113;;;22653:6;22650:1;22647:13;22644:2;;;-1:-1:-1;;22688:1:1;22670:16;;22663:27;22493:205::o;22703:380::-;22788:1;22778:12;;22835:1;22825:12;;;22846:2;;22900:4;22892:6;22888:17;22878:27;;22846:2;22953;22945:6;22942:14;22922:18;22919:38;22916:2;;;22999:10;22994:3;22990:20;22987:1;22980:31;23034:4;23031:1;23024:15;23062:4;23059:1;23052:15;22916:2;;22758:325;;;:::o;23088:135::-;;-1:-1:-1;;23148:17:1;;23145:2;;;23168:18;;:::i;:::-;-1:-1:-1;23215:1:1;23204:13;;23135:88::o;23228:112::-;;23286:1;23276:2;;23291:18;;:::i;:::-;-1:-1:-1;23325:9:1;;23266:74::o;23345:127::-;23406:10;23401:3;23397:20;23394:1;23387:31;23437:4;23434:1;23427:15;23461:4;23458:1;23451:15;23477:127;23538:10;23533:3;23529:20;23526:1;23519:31;23569:4;23566:1;23559:15;23593:4;23590:1;23583:15;23609:127;23670:10;23665:3;23661:20;23658:1;23651:31;23701:4;23698:1;23691:15;23725:4;23722:1;23715:15;23741:133;-1:-1:-1;;;;;;23817:32:1;;23807:43;;23797:2;;23864:1;23861;23854:12

Swarm Source

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