ETH Price: $3,303.87 (-3.56%)
Gas: 6 Gwei

Token

Dreamlands (DREAM)
 

Overview

Max Total Supply

10,000 DREAM

Holders

4,102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xace.eth
Balance
1 DREAM
0xd7f4e01b66bedde8aa85300130cc6c7b9823942c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Dreamland. The realm these 1,000 souls were beamed into is exactly as it sounds. A land of dreams. Populated, dictated and derived from imagination; this land is literally everything anyone has ever dreamed of.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Dreamlands

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

// File: Dreamland.sol


/*

,------.  ,------. ,------.  ,---.  ,--.   ,--.,--.     ,---.  ,--.  ,--.,------.   ,---.
|  .-.  \ |  .--. '|  .---' /  O  \ |   `.'   ||  |    /  O  \ |  ,'.|  ||  .-.  \ '   .-'
|  |  \  :|  '--'.'|  `--, |  .-.  ||  |'.'|  ||  |   |  .-.  ||  |' '  ||  |  \  :`.  `-.
|  '--'  /|  |\  \ |  `---.|  | |  ||  |   |  ||  '--.|  | |  ||  | `   ||  '--'  /.-'    |
`-------' `--' '--'`------'`--' `--'`--'   `--'`-----'`--' `--'`--'  `--'`-------' `-----'

https://dreamlandgenesis.com

*/

pragma solidity ^0.8.7;







contract Dreamlands is ERC721Enumerable, Ownable, Pausable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant GIVEAWAY = 110;
    uint256 public constant DEV_AMOUNT = 4 ether;
    address public constant DEV_ADDRESS = 0x1C78a76c0B4a4C2f99ad8D0aBB7a1556Fa55Df59;

    bool public freeStarted = false;
    bool public saleStarted = false;
    bool public whitelistStarted = false;
    bool public lock = false;
    uint256 public devWithdrawnAmount = 0;
    uint256 public currentWave = 0;
    uint256 public maxPublicMint = 3;
    address private _signerAddress;

    string public prefixURI;
    string public commonURI;

    mapping(bytes32 => bool) private _usedHashes;
    mapping(uint256 => string) public tokenURIs;

    // Wave Config
    mapping(uint256 => uint256) public publicPrices;
    mapping(uint256 => uint256) public whitelistPrices;

    mapping(uint256 => uint256) public publicMaxSupply;
    mapping(uint256 => uint256) public whitelistMaxSupply;
    mapping(uint256 => uint256) public freeMaxSupply;


    constructor() ERC721("Dreamlands", "DREAM") {
        for (uint256 i = 1; i <= GIVEAWAY; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }

        publicPrices[1] = 0.055 ether;
        publicPrices[2] = 0.069 ether;
        publicPrices[3] = 0.079 ether;
        publicPrices[4] = 0.089 ether;
        publicPrices[5] = 0.1 ether;

        whitelistPrices[1] = 0.05 ether;
        whitelistPrices[2] = 0.065 ether;
        whitelistPrices[3] = 0.075 ether;
        whitelistPrices[4] = 0.085 ether;
        whitelistPrices[5] = 0.095 ether;

        // Wave 1
        freeMaxSupply[1] = 160;
        whitelistMaxSupply[1] = 760;
        publicMaxSupply[1] = 1100;

        // Wave 2
        freeMaxSupply[2] = 1210;
        whitelistMaxSupply[2] = 1560;
        publicMaxSupply[2] = 2110;

        /// Wave 3
        freeMaxSupply[3] = 2160;
        whitelistMaxSupply[3] = 3160;
        publicMaxSupply[3] = 4110;

        // Wave 4
        freeMaxSupply[4] = 4160;
        whitelistMaxSupply[4] = 5660;
        publicMaxSupply[4] = 7110;

        // Wave 5
        freeMaxSupply[5] = 7160;
        whitelistMaxSupply[5] = 8550;
        publicMaxSupply[5] = 10000;
    }

    modifier onlyOwnerOrDev {
        require(msg.sender == owner() || msg.sender == DEV_ADDRESS, "Ownable: caller is not the owner");
        _;
    }

    function mintWhitelist(
        uint256 _count,
        uint256 _maxCount,
        uint256 _wave,
        bytes memory _sig)
        external
        payable
    {
        require(currentWave > 0 && _wave == currentWave, "WAVE_INCORRECT");
        require(whitelistStarted || freeStarted, "MINT_NOT_STARTED");
        require(_count > 0 && _count <= _maxCount, "COUNT_INVALID");
        require(totalSupply() + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");

        if (whitelistStarted) {
            require(totalSupply() + _count <= whitelistMaxSupply[currentWave], "MAX_SUPPLY_REACHED");
            require(msg.value == (_count * whitelistPrices[currentWave]), "INVALID_ETH_SENT");
        } else {
            require(totalSupply() + _count <= freeMaxSupply[currentWave], "MAX_SUPPLY_REACHED");
            require(msg.value == 0, "MINT_PRICE_SHOULD_BE_FREE");
        }

        bytes32 hash = keccak256(abi.encode(_msgSender(), _maxCount, _wave));
        require(!_usedHashes[hash], "HASH_ALREADY_USED");
        require(matchSigner(hash, _sig), "INVALID_SIGNER");

        _usedHashes[hash] = true;
        for (uint256 i = 1; i <= _count; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function mintPublic(
        uint256 _count
    )
        external
        payable
    {
        require(currentWave > 0, "WAVE_INCORRECT");
        require(saleStarted, "MINT_NOT_STARTED");
        require(_count > 0 && _count <= maxPublicMint, "COUNT_INVALID");
        require(totalSupply() + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        require(totalSupply() + _count <= publicMaxSupply[currentWave], "MAX_SUPPLY_REACHED");
        require(msg.value == (_count * publicPrices[currentWave]), "INVALID_ETH_SENT");

        for (uint256 i = 1; i <= _count; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function matchSigner(bytes32 _hash, bytes memory _signature) private view returns(bool) {
        return _signerAddress == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature);
    }

    function isWhiteList(
        address _sender,
        uint256 _maxCount,
        uint256 _wave,
        bytes calldata _sig
    ) public view returns(bool) {
        bytes32 _hash = keccak256(abi.encode(_sender, _maxCount, _wave));
        if (!matchSigner(_hash, _sig)) {
            return false;
        }
        if (_usedHashes[_hash]) {
            return false;
        }
        return true;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (bytes(tokenURIs[tokenId]).length != 0) {
            return tokenURIs[tokenId];
        }
        if (bytes(commonURI).length != 0) {
            return commonURI;
        }
        return string(abi.encodePacked(prefixURI, tokenId.toString()));
    }

    // ** Admin Fuctions ** //
    function setSaleStarted(bool _hasStarted) external onlyOwnerOrDev {
        saleStarted = _hasStarted;
    }

    function setWhitelistStarted(bool _hasStarted) external onlyOwnerOrDev {
        whitelistStarted = _hasStarted;
    }

    function setFreeStarted(bool _hasStarted) external onlyOwnerOrDev {
        freeStarted = _hasStarted;
    }

    function setSignerAddress(address _signer) external onlyOwnerOrDev {
        require(_signer != address(0), "SIGNER_ADDRESS_ZERO");
        _signerAddress = _signer;
    }

    function lockBaseURI() external onlyOwner {
        require(!lock, "ALREADY_LOCKED");
        lock = true;
    }

    function setPrefixURI(string calldata _uri) external onlyOwnerOrDev {
        require(!lock, "ALREADY_LOCKED");
        prefixURI = _uri;
        commonURI = '';
    }

    function setCommonURI(string calldata _uri) external onlyOwnerOrDev {
        require(!lock, "ALREADY_LOCKED");
        commonURI = _uri;
        prefixURI = '';
    }

    function setTokenURI(string calldata _uri, uint256 _tokenId) external onlyOwnerOrDev {
        require(!lock, "ALREADY_LOCKED");
        tokenURIs[_tokenId] = _uri;
    }

    function setPublicPrices(uint256 _wave, uint256 _price) external onlyOwnerOrDev {
        publicPrices[_wave] = _price;
    }

    function setWhitelistPrices(uint256 _wave, uint256 _price) external onlyOwnerOrDev {
        whitelistPrices[_wave] = _price;
    }

    function setPublicMaxSupply(uint256 _wave, uint256 _supply) external onlyOwnerOrDev {
        publicMaxSupply[_wave] = _supply;
    }

    function setWhitelistMaxSupply(uint256 _wave, uint256 _supply) external onlyOwnerOrDev {
        whitelistMaxSupply[_wave] = _supply;
    }

    function setFreeMaxSupply(uint256 _wave, uint256 _supply) external onlyOwnerOrDev {
        freeMaxSupply[_wave] = _supply;
    }

    function setWave(uint256 _wave) external onlyOwnerOrDev {
        require(_wave >= 1 && _wave <= 5, "WAVE_OUT_OF_BOUNDS");
        currentWave = _wave;
    }

    function setMaxPublicMint(uint256 _maxMint) external onlyOwnerOrDev {
        maxPublicMint = _maxMint;
    }

    function pause() external onlyOwner {
        require(!paused(), "ALREADY_PAUSED");
        _pause();
    }

    function unpause() external onlyOwner {
        require(paused(), "ALREADY_UNPAUSED");
        _unpause();
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "EMPTY_BALANCE");
        require(devWithdrawnAmount >= DEV_AMOUNT, "DEV_WITHDRAWN_FIRST");
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawDev() external {
        require(msg.sender == DEV_ADDRESS, "NOT_DEV_ADDRESS");
        require(devWithdrawnAmount < DEV_AMOUNT, "DEV_WITHDRAWN_AMOUNT_EXCEED");
        uint256 amount = DEV_AMOUNT - devWithdrawnAmount;
        require(amount > 0, "AMOUNT_ZERO");
        amount = Math.min(amount, address(this).balance);
        require(amount > 0, "AMOUNT_ZERO");
        devWithdrawnAmount += amount;
        payable(msg.sender).transfer(amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) override internal virtual {
        require(!paused(), "TRANSFER_PAUSED");
        super._beforeTokenTransfer(from, to, tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEV_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"commonURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentWave","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWithdrawnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_maxCount","type":"uint256"},{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_maxCount","type":"uint256"},{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"mintWhitelist","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"publicMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"publicPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleStarted","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":"_uri","type":"string"}],"name":"setCommonURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setFreeStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setPrefixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setPublicMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"}],"name":"setWave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setWhitelistMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wave","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setWhitelistStarted","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawDev","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805463ffffffff60a81b191690556000600b819055600c556003600d553480156200003057600080fd5b50604080518082018252600a815269447265616d6c616e647360b01b602080830191825283518085019094526005845264445245414d60d81b908401528151919291620000809160009162000c2f565b5080516200009690600190602084019062000c2f565b505050620000b3620000ad620004e860201b60201c565b620004ec565b600a805460ff60a01b1916905560015b606e81116200010357620000ee33620000db60085490565b620000e890600162000d83565b6200053e565b80620000fa8162000df5565b915050620000c3565b5066c3663566a580007f4155c2f711f2cdd34f8262ab8fb9b7020a700fe7b6948222152f7670d1fdf34d5566f52322698080007f0b9d2c0c271bb30544eb78c59bdaebdae2728e5f65814c07768a0abe90ed192355670118aa14d94180007f0d2a6872ef858a7f8ead18dc4f3f2e8d35c853d47e2816cbb9cdd49202554e0c5567013c3107490280007f01413ff7a3b1d5b6c016c061d48e2c7014700c777a29fcd068fff04265813d5d5567016345785d8a00007ff4b2859895858d6aa26d656e4999d552f6a869b74c43bba7d2a941c4d22c35595566b1a2bc2ec500007fb6c61a840592cc84133e4b25bd509abf4659307c57b160799b38490a5aa48f2c5566e6ed27d66680007fa1930aa930426c54c34daad2b9ada7c5d0ef0c96078a3c5bb79f6fa6602c4a7a5567010a741a462780007f63d87a887046e0430be80fdeb014107d7198c879cbf2cddf39a6df195c86cb385567012dfb0cb5e880007f52102136546d97ed3f65ec1070a32935d3048ea12f310d29c378dc9d6555c0d65567015181ff25a980007f116126bec5aaa49b347e966c49378cf0c441de9121e306ea3d824584a9615aa25560a07ff36d6bc9642eb6fb6ee9998b09ce990566df752ab06e11f8de7ab633bbd57b8f556102f87f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf495561044c7f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d556104ba7fc52df653038b2ad477d8d97f1ddd63cfd138847b628ad8a7b89c109c3f8782ca556106187fcaff291fe014adc6b72a172705750b4cabe8f8667664d2924a166caab28856485561083e7f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b556108707fd8b2bced50346359af71f91110b86cdf684b6ab1c6ca64a7583c044d5c24de5c55610c587ff06d282f967055cb1eee17e04aa005b9682a620f4bbcfaee55ba78607a3d87ae5561100e7fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c27556110407f68052a315987b3c92fe6f7df77391bc5a825cabe4950d34f36f8f4e8a6abcb4d5561161c7fec061709de2491458f4c981032059d7d19b0e55f45018bac6b3e660bdc959a5955611bc67f8191f4eb6b8bafbfe9a5389c8d07d7f5fd81137a7ee653fc4358269845ee1d2e556005600052611bf87f70266c3d5b8b2375fded59c72bf5f0d74bbb12fdf645a4c8630629f0191fb317556121667f5696377e725b42a372ecc45f0fbdab5e9555865aef54619ad9381892f667bbf05560156020526127107fbab719002e4be320868650dc7456e9a1d245e4d5dd64765588e2f21529d871d35562000e55565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620005608282604051806020016040528060008152506200056460201b60201c565b5050565b620005708383620005e0565b6200057f600084848462000736565b620005db5760405162461bcd60e51b8152602060048201526032602482015260008051602062005a5083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620006385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620005d2565b6000818152600260205260409020546001600160a01b0316156200069f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620005d2565b620006ad600083836200089f565b6001600160a01b0382166000908152600360205260408120805460019290620006d890849062000d83565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000757846001600160a01b03166200090c60201b62002e2b1760201c565b156200089357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200079190339089908890889060040162000d08565b602060405180830381600087803b158015620007ac57600080fd5b505af1925050508015620007df575060408051601f3d908101601f19168201909252620007dc9181019062000cd5565b60015b62000878573d80801562000810576040519150601f19603f3d011682016040523d82523d6000602084013e62000815565b606091505b508051620008705760405162461bcd60e51b8152602060048201526032602482015260008051602062005a5083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620005d2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000897565b5060015b949350505050565b620008b3600a54600160a01b900460ff1690565b15620008f45760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d4105554d151608a1b6044820152606401620005d2565b620005db8383836200091260201b62002e311760201c565b3b151590565b6200092a838383620005db60201b62000f671760201c565b6001600160a01b03831662000988576200098281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620009ae565b816001600160a01b0316836001600160a01b031614620009ae57620009ae8382620009ee565b6001600160a01b038216620009c857620005db8162000a9b565b826001600160a01b0316826001600160a01b031614620005db57620005db828262000b55565b6000600162000a088462000ba660201b620019f51760201c565b62000a14919062000d9e565b60008381526007602052604090205490915080821462000a68576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000aaf9060019062000d9e565b6000838152600960205260408120546008805493945090928490811062000ada5762000ada62000e3f565b90600052602060002001549050806008838154811062000afe5762000afe62000e3f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b395762000b3962000e29565b6001900381819060005260206000200160009055905550505050565b600062000b6d8362000ba660201b620019f51760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000c135760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620005d2565b506001600160a01b031660009081526003602052604090205490565b82805462000c3d9062000db8565b90600052602060002090601f01602090048101928262000c61576000855562000cac565b82601f1062000c7c57805160ff191683800117855562000cac565b8280016001018555821562000cac579182015b8281111562000cac57825182559160200191906001019062000c8f565b5062000cba92915062000cbe565b5090565b5b8082111562000cba576000815560010162000cbf565b60006020828403121562000ce857600080fd5b81516001600160e01b03198116811462000d0157600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000d575785810182015185820160a00152810162000d39565b8281111562000d6a57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000d995762000d9962000e13565b500190565b60008282101562000db35762000db362000e13565b500390565b600181811c9082168062000dcd57607f821691505b6020821081141562000def57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000e0c5762000e0c62000e13565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b614beb8062000e656000396000f3fe6080604052600436106103a25760003560e01c8063715018a6116101e7578063a854ffba1161010d578063e7872e68116100a0578063f83d08ba1161006f578063f83d08ba14610af3578063f846bc4b14610b29578063fb04486414610b56578063feb6220014610b8357600080fd5b8063e7872e6814610a57578063e985e9c514610a77578063efd0cbf914610ac0578063f2fde38b14610ad357600080fd5b8063c403881e116100dc578063c403881e146109e1578063c87b56dd14610a01578063cabadaa014610a21578063ddc2c17c14610a3757600080fd5b8063a854ffba14610961578063b2c94ee614610981578063b88d4fde146109a1578063ba1f8770146109c157600080fd5b80639084b14f1161018557806397b36dc51161015457806397b36dc5146108f9578063a0c540781461090c578063a22cb46514610921578063a57113991461094157600080fd5b80639084b14f1461089a578063948cd413146108ba57806395d89b41146108cf5780639602e9d5146108e457600080fd5b806386b46694116101c157806386b466941461082457806389844e821461083a5780638d40fb4e146108675780638da5cb5b1461087c57600080fd5b8063715018a6146107cd57806371bcf917146107e25780638456cb591461080f57600080fd5b80633de0baf1116102cc5780635c474f9e1161026a578063653a0fed11610239578063653a0fed14610751578063656cf1ca1461076d5780636c8b703f1461078d57806370a08231146107ad57600080fd5b80635c474f9e1461069a5780635c975abb146106ce578063633f993b146106fe5780636352211e1461073157600080fd5b80634f6ccce7116102a65780634f6ccce71461061d57806353df5c7c1461063d57806355fc9893146106525780635639e8cf1461067257600080fd5b80633de0baf1146105c85780633f4ba83a146105e857806342842e0e146105fd57600080fd5b80631547bc19116103445780632f745c59116103135780632f745c591461054857806332cb6b0c14610568578063339159d31461057e5780633ccfd60b146105b357600080fd5b80631547bc19146104d357806318160ddd146104f357806323b872dd14610508578063270ab52c1461052857600080fd5b8063081812fc11610380578063081812fc14610420578063095ea7b31461045857806309a3beef1461047857806314f7d2f31461049857600080fd5b806301ffc9a7146103a7578063046dc166146103dc57806306fdde03146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004614651565b610b99565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004614488565b610bf5565b005b34801561040a57600080fd5b50610413610d02565b6040516103d3919061490d565b34801561042c57600080fd5b5061044061043b366004614719565b610d94565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b506103fc6104733660046145a4565b610e3a565b34801561048457600080fd5b506103fc6104933660046146cd565b610f6c565b3480156104a457600080fd5b506104c56104b3366004614719565b60156020526000908152604090205481565b6040519081526020016103d3565b3480156104df57600080fd5b506103c76104ee3660046145ce565b611072565b3480156104ff57600080fd5b506008546104c5565b34801561051457600080fd5b506103fc6105233660046144d6565b611130565b34801561053457600080fd5b506103fc610543366004614719565b6111b7565b34801561055457600080fd5b506104c56105633660046145a4565b611234565b34801561057457600080fd5b506104c561271081565b34801561058a57600080fd5b50600a546103c79077010000000000000000000000000000000000000000000000900460ff1681565b3480156105bf57600080fd5b506103fc6112dc565b3480156105d457600080fd5b506103fc6105e3366004614732565b61140f565b3480156105f457600080fd5b506103fc611499565b34801561060957600080fd5b506103fc6106183660046144d6565b611567565b34801561062957600080fd5b506104c5610638366004614719565b611582565b34801561064957600080fd5b506103fc611626565b34801561065e57600080fd5b506103fc61066d36600461468b565b611734565b34801561067e57600080fd5b50610440731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df5981565b3480156106a657600080fd5b50600a546103c790760100000000000000000000000000000000000000000000900460ff1681565b3480156106da57600080fd5b50600a5474010000000000000000000000000000000000000000900460ff166103c7565b34801561070a57600080fd5b50600a546103c7907501000000000000000000000000000000000000000000900460ff1681565b34801561073d57600080fd5b5061044061074c366004614719565b611846565b34801561075d57600080fd5b506104c5673782dace9d90000081565b34801561077957600080fd5b506103fc610788366004614732565b6118d1565b34801561079957600080fd5b506104136107a8366004614719565b61195b565b3480156107b957600080fd5b506104c56107c8366004614488565b6119f5565b3480156107d957600080fd5b506103fc611a8f565b3480156107ee57600080fd5b506104c56107fd366004614719565b60146020526000908152604090205481565b34801561081b57600080fd5b506103fc611af3565b34801561083057600080fd5b506104c5600c5481565b34801561084657600080fd5b506104c5610855366004614719565b60176020526000908152604090205481565b34801561087357600080fd5b50610413611bc0565b34801561088857600080fd5b50600a546001600160a01b0316610440565b3480156108a657600080fd5b506103fc6108b5366004614732565b611bcd565b3480156108c657600080fd5b506104c5606e81565b3480156108db57600080fd5b50610413611c57565b3480156108f057600080fd5b506103fc611c66565b6103fc610907366004614754565b611e30565b34801561091857600080fd5b50610413612339565b34801561092d57600080fd5b506103fc61093c36600461457a565b612346565b34801561094d57600080fd5b506103fc61095c366004614636565b612351565b34801561096d57600080fd5b506103fc61097c366004614636565b612416565b34801561098d57600080fd5b506103fc61099c36600461468b565b6124da565b3480156109ad57600080fd5b506103fc6109bc366004614512565b6125ec565b3480156109cd57600080fd5b506103fc6109dc366004614719565b612674565b3480156109ed57600080fd5b506103fc6109fc366004614732565b61274f565b348015610a0d57600080fd5b50610413610a1c366004614719565b6127d9565b348015610a2d57600080fd5b506104c5600d5481565b348015610a4357600080fd5b506103fc610a52366004614732565b612977565b348015610a6357600080fd5b506103fc610a72366004614636565b612a01565b348015610a8357600080fd5b506103c7610a923660046144a3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103fc610ace366004614719565b612ac4565b348015610adf57600080fd5b506103fc610aee366004614488565b612d4c565b348015610aff57600080fd5b50600a546103c7907801000000000000000000000000000000000000000000000000900460ff1681565b348015610b3557600080fd5b506104c5610b44366004614719565b60166020526000908152604090205481565b348015610b6257600080fd5b506104c5610b71366004614719565b60136020526000908152604090205481565b348015610b8f57600080fd5b506104c5600b5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bef5750610bef82612ee9565b92915050565b600a546001600160a01b0316331480610c21575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b610c725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116610cc85760405162461bcd60e51b815260206004820152601360248201527f5349474e45525f414444524553535f5a45524f000000000000000000000000006044820152606401610c69565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b606060008054610d11906149cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3d906149cc565b8015610d8a5780601f10610d5f57610100808354040283529160200191610d8a565b820191906000526020600020905b815481529060010190602001808311610d6d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e1e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c69565b506000908152600460205260409020546001600160a01b031690565b6000610e4582611846565b9050806001600160a01b0316836001600160a01b03161415610ecf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b336001600160a01b0382161480610eeb5750610eeb8133610a92565b610f5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c69565b610f678383612fcc565b505050565b600a546001600160a01b0316331480610f98575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b610fe45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156110535760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b600081815260126020526040902061106c908484614244565b50505050565b604080516001600160a01b03871660208201529081018590526060810184905260009081906080016040516020818303038152906040528051906020012090506110f28185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061305292505050565b611100576000915050611127565b60008181526011602052604090205460ff1615611121576000915050611127565b60019150505b95945050505050565b61113a33826130cc565b6111ac5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c69565b610f678383836131d4565b600a546001600160a01b03163314806111e3575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b61122f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600d55565b600061123f836119f5565b82106112b35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c69565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600047116113865760405162461bcd60e51b815260206004820152600d60248201527f454d5054595f42414c414e4345000000000000000000000000000000000000006044820152606401610c69565b673782dace9d900000600b5410156113e05760405162461bcd60e51b815260206004820152601360248201527f4445565f57495448445241574e5f4649525354000000000000000000000000006044820152606401610c69565b60405133904780156108fc02916000818181858888f1935050505015801561140c573d6000803e3d6000fd5b50565b600a546001600160a01b031633148061143b575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6114875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526016602052604090912055565b600a546001600160a01b031633146114f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a5474010000000000000000000000000000000000000000900460ff1661155d5760405162461bcd60e51b815260206004820152601060248201527f414c52454144595f554e504155534544000000000000000000000000000000006044820152606401610c69565b6115656133c4565b565b610f67838383604051806020016040528060008152506125ec565b600061158d60085490565b82106116015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c69565b6008828154811061161457611614614b29565b90600052602060002001549050919050565b600a546001600160a01b031633146116805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156116ef5760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b600a80547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167801000000000000000000000000000000000000000000000000179055565b600a546001600160a01b0316331480611760575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6117ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff161561181b5760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b61182760108383614244565b50604080516020810191829052600090819052610f6791600f916142e6565b6000818152600260205260408120546001600160a01b031680610bef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c69565b600a546001600160a01b03163314806118fd575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6119495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526013602052604090912055565b60126020526000908152604090208054611974906149cc565b80601f01602080910402602001604051908101604052809291908181526020018280546119a0906149cc565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b505050505081565b60006001600160a01b038216611a735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c69565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b6115656000613496565b600a546001600160a01b03163314611b4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a5474010000000000000000000000000000000000000000900460ff1615611bb85760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f5041555345440000000000000000000000000000000000006044820152606401610c69565b611565613500565b60108054611974906149cc565b600a546001600160a01b0316331480611bf9575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b611c455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526017602052604090912055565b606060018054610d11906149cc565b33731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df5914611cc95760405162461bcd60e51b815260206004820152600f60248201527f4e4f545f4445565f4144445245535300000000000000000000000000000000006044820152606401610c69565b673782dace9d900000600b5410611d225760405162461bcd60e51b815260206004820152601b60248201527f4445565f57495448445241574e5f414d4f554e545f45584345454400000000006044820152606401610c69565b6000600b54673782dace9d900000611d3a9190614989565b905060008111611d8c5760405162461bcd60e51b815260206004820152600b60248201527f414d4f554e545f5a45524f0000000000000000000000000000000000000000006044820152606401610c69565b611d9681476135d2565b905060008111611de85760405162461bcd60e51b815260206004820152600b60248201527f414d4f554e545f5a45524f0000000000000000000000000000000000000000006044820152606401610c69565b80600b6000828254611dfa9190614920565b9091555050604051339082156108fc029083906000818181858888f19350505050158015611e2c573d6000803e3d6000fd5b5050565b6000600c54118015611e435750600c5482145b611e8f5760405162461bcd60e51b815260206004820152600e60248201527f574156455f494e434f52524543540000000000000000000000000000000000006044820152606401610c69565b600a5477010000000000000000000000000000000000000000000000900460ff1680611ed65750600a547501000000000000000000000000000000000000000000900460ff165b611f225760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f53544152544544000000000000000000000000000000006044820152606401610c69565b600084118015611f325750828411155b611f7e5760405162461bcd60e51b815260206004820152600d60248201527f434f554e545f494e56414c4944000000000000000000000000000000000000006044820152606401610c69565b61271084611f8b60085490565b611f959190614920565b1115611fe35760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600a5477010000000000000000000000000000000000000000000000900460ff16156120ec57600c546000908152601660205260409020548461202560085490565b61202f9190614920565b111561207d5760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c54600090815260146020526040902054612099908561494c565b34146120e75760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f4554485f53454e54000000000000000000000000000000006044820152606401610c69565b6121ae565b600c546000908152601760205260409020548461210860085490565b6121129190614920565b11156121605760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b34156121ae5760405162461bcd60e51b815260206004820152601960248201527f4d494e545f50524943455f53484f554c445f42455f46524545000000000000006044820152606401610c69565b600033604080516001600160a01b039092166020830152810185905260608101849052608001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301206000818152601190935291205490915060ff161561226a5760405162461bcd60e51b815260206004820152601160248201527f484153485f414c52454144595f555345440000000000000000000000000000006044820152606401610c69565b6122748183613052565b6122c05760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152606401610c69565b600081815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091555b8581116123315761231f3361230f60085490565b61231a906001614920565b6135ea565b8061232981614a20565b9150506122fb565b505050505050565b600f8054611974906149cc565b611e2c338383613604565b600a546001600160a01b031633148061237d575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6123c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600a546001600160a01b0316331480612442575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b61248e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a8054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600a546001600160a01b0316331480612506575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6125525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156125c15760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b6125cd600f8383614244565b50604080516020810191829052600090819052610f67916010916142e6565b6125f633836130cc565b6126685760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c69565b61106c848484846136f1565b600a546001600160a01b03163314806126a0575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6126ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600181101580156126fe575060058111155b61274a5760405162461bcd60e51b815260206004820152601260248201527f574156455f4f55545f4f465f424f554e445300000000000000000000000000006044820152606401610c69565b600c55565b600a546001600160a01b031633148061277b575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6127c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526014602052604090912055565b6000818152600260205260409020546060906001600160a01b03166128665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c69565b6000828152601260205260409020805461287f906149cc565b159050612924576000828152601260205260409020805461289f906149cc565b80601f01602080910402602001604051908101604052809291908181526020018280546128cb906149cc565b80156129185780601f106128ed57610100808354040283529160200191612918565b820191906000526020600020905b8154815290600101906020018083116128fb57829003601f168201915b50505050509050919050565b60108054612931906149cc565b159050612945576010805461289f906149cc565b600f6129508361377a565b6040516020016129619291906147fc565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314806129a3575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6129ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526015602052604090912055565b600a546001600160a01b0316331480612a2d575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b612a795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a80549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000600c5411612b165760405162461bcd60e51b815260206004820152600e60248201527f574156455f494e434f52524543540000000000000000000000000000000000006044820152606401610c69565b600a54760100000000000000000000000000000000000000000000900460ff16612b825760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f53544152544544000000000000000000000000000000006044820152606401610c69565b600081118015612b945750600d548111155b612be05760405162461bcd60e51b815260206004820152600d60248201527f434f554e545f494e56414c4944000000000000000000000000000000000000006044820152606401610c69565b61271081612bed60085490565b612bf79190614920565b1115612c455760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c5460009081526015602052604090205481612c6160085490565b612c6b9190614920565b1115612cb95760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c54600090815260136020526040902054612cd5908261494c565b3414612d235760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f4554485f53454e54000000000000000000000000000000006044820152606401610c69565b60015b818111611e2c57612d3a3361230f60085490565b80612d4481614a20565b915050612d26565b600a546001600160a01b03163314612da65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b6001600160a01b038116612e225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c69565b61140c81613496565b3b151590565b6001600160a01b038316612e8c57612e8781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612eaf565b816001600160a01b0316836001600160a01b031614612eaf57612eaf83826138ac565b6001600160a01b038216612ec657610f6781613949565b826001600160a01b0316826001600160a01b031614610f6757610f6782826139f8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612f7c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bef565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061301982611846565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006130b46130ae846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83613a3c565b600e546001600160a01b039182169116149392505050565b6000818152600260205260408120546001600160a01b03166131565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c69565b600061316183611846565b9050806001600160a01b0316846001600160a01b0316148061319c5750836001600160a01b031661319184610d94565b6001600160a01b0316145b806131cc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166131e782611846565b6001600160a01b0316146132635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c69565b6001600160a01b0382166132de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6132e9838383613a60565b6132f4600082612fcc565b6001600160a01b038316600090815260036020526040812080546001929061331d908490614989565b90915550506001600160a01b038216600090815260036020526040812080546001929061334b908490614920565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5474010000000000000000000000000000000000000000900460ff1661342e5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c69565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5474010000000000000000000000000000000000000000900460ff161561356b5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c69565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134793390565b60008183106135e157816135e3565b825b9392505050565b611e2c828260405180602001604052806000815250613ad6565b816001600160a01b0316836001600160a01b031614156136665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c69565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6136fc8484846131d4565b61370884848484613b5f565b61106c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b6060816137ba57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156137e457806137ce81614a20565b91506137dd9050600a83614938565b91506137be565b60008167ffffffffffffffff8111156137ff576137ff614b58565b6040519080825280601f01601f191660200182016040528015613829576020820181803683370190505b5090505b84156131cc5761383e600183614989565b915061384b600a86614a59565b613856906030614920565b60f81b81838151811061386b5761386b614b29565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506138a5600a86614938565b945061382d565b600060016138b9846119f5565b6138c39190614989565b600083815260076020526040902054909150808214613916576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061395b90600190614989565b6000838152600960205260408120546008805493945090928490811061398357613983614b29565b9060005260206000200154905080600883815481106139a4576139a4614b29565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139dc576139dc614afa565b6001900381819060005260206000200160009055905550505050565b6000613a03836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000613a4b8585613d2a565b91509150613a5881613d9a565b509392505050565b600a5474010000000000000000000000000000000000000000900460ff1615613acb5760405162461bcd60e51b815260206004820152600f60248201527f5452414e534645525f50415553454400000000000000000000000000000000006044820152606401610c69565b610f67838383612e31565b613ae08383613f8b565b613aed6000848484613b5f565b610f675760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b60006001600160a01b0384163b15613d1f576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613bbc9033908990889088906004016148d1565b602060405180830381600087803b158015613bd657600080fd5b505af1925050508015613c24575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613c219181019061466e565b60015b613cd4573d808015613c52576040519150601f19603f3d011682016040523d82523d6000602084013e613c57565b606091505b508051613ccc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506131cc565b506001949350505050565b600080825160411415613d615760208301516040840151606085015160001a613d55878285856140f1565b94509450505050613d93565b825160401415613d8b5760208301516040840151613d808683836141fc565b935093505050613d93565b506000905060025b9250929050565b6000816004811115613dae57613dae614acb565b1415613db75750565b6001816004811115613dcb57613dcb614acb565b1415613e195760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c69565b6002816004811115613e2d57613e2d614acb565b1415613e7b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c69565b6003816004811115613e8f57613e8f614acb565b1415613f035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6004816004811115613f1757613f17614acb565b141561140c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6001600160a01b038216613fe15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c69565b6000818152600260205260409020546001600160a01b0316156140465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c69565b61405260008383613a60565b6001600160a01b038216600090815260036020526040812080546001929061407b908490614920565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561412857506000905060036141f3565b8460ff16601b1415801561414057508460ff16601c14155b1561415157506000905060046141f3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156141a5573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166141ec576000600192509250506141f3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01614236878288856140f1565b935093505050935093915050565b828054614250906149cc565b90600052602060002090601f01602090048101928261427257600085556142d6565b82601f106142a9578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556142d6565b828001600101855582156142d6579182015b828111156142d65782358255916020019190600101906142bb565b506142e292915061435a565b5090565b8280546142f2906149cc565b90600052602060002090601f01602090048101928261431457600085556142d6565b82601f1061432d57805160ff19168380011785556142d6565b828001600101855582156142d6579182015b828111156142d657825182559160200191906001019061433f565b5b808211156142e2576000815560010161435b565b80356001600160a01b038116811461438657600080fd5b919050565b8035801515811461438657600080fd5b60008083601f8401126143ad57600080fd5b50813567ffffffffffffffff8111156143c557600080fd5b602083019150836020828501011115613d9357600080fd5b600082601f8301126143ee57600080fd5b813567ffffffffffffffff8082111561440957614409614b58565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561444f5761444f614b58565b8160405283815286602085880101111561446857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561449a57600080fd5b6135e38261436f565b600080604083850312156144b657600080fd5b6144bf8361436f565b91506144cd6020840161436f565b90509250929050565b6000806000606084860312156144eb57600080fd5b6144f48461436f565b92506145026020850161436f565b9150604084013590509250925092565b6000806000806080858703121561452857600080fd5b6145318561436f565b935061453f6020860161436f565b925060408501359150606085013567ffffffffffffffff81111561456257600080fd5b61456e878288016143dd565b91505092959194509250565b6000806040838503121561458d57600080fd5b6145968361436f565b91506144cd6020840161438b565b600080604083850312156145b757600080fd5b6145c08361436f565b946020939093013593505050565b6000806000806000608086880312156145e657600080fd5b6145ef8661436f565b94506020860135935060408601359250606086013567ffffffffffffffff81111561461957600080fd5b6146258882890161439b565b969995985093965092949392505050565b60006020828403121561464857600080fd5b6135e38261438b565b60006020828403121561466357600080fd5b81356135e381614b87565b60006020828403121561468057600080fd5b81516135e381614b87565b6000806020838503121561469e57600080fd5b823567ffffffffffffffff8111156146b557600080fd5b6146c18582860161439b565b90969095509350505050565b6000806000604084860312156146e257600080fd5b833567ffffffffffffffff8111156146f957600080fd5b6147058682870161439b565b909790965060209590950135949350505050565b60006020828403121561472b57600080fd5b5035919050565b6000806040838503121561474557600080fd5b50508035926020909101359150565b6000806000806080858703121561476a57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561456257600080fd5b600081518084526147ae8160208601602086016149a0565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600081516147f28185602086016149a0565b9290920192915050565b600080845481600182811c91508083168061481857607f831692505b6020808410821415614851577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156148655760018114614894576148c1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506148c1565b60008b81526020902060005b868110156148b95781548b8201529085019083016148a0565b505084890196505b50505050505061112781856147e0565b60006001600160a01b038087168352808616602084015250836040830152608060608301526149036080830184614796565b9695505050505050565b6020815260006135e36020830184614796565b6000821982111561493357614933614a6d565b500190565b60008261494757614947614a9c565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498457614984614a6d565b500290565b60008282101561499b5761499b614a6d565b500390565b60005b838110156149bb5781810151838201526020016149a3565b8381111561106c5750506000910152565b600181811c908216806149e057607f821691505b60208210811415614a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5257614a52614a6d565b5060010190565b600082614a6857614a68614a9c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461140c57600080fdfea26469706673582212206afa561d4183ef98e2cdaee9258af138d2a1a5dc5743f30326a420f43bba9a2e64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063715018a6116101e7578063a854ffba1161010d578063e7872e68116100a0578063f83d08ba1161006f578063f83d08ba14610af3578063f846bc4b14610b29578063fb04486414610b56578063feb6220014610b8357600080fd5b8063e7872e6814610a57578063e985e9c514610a77578063efd0cbf914610ac0578063f2fde38b14610ad357600080fd5b8063c403881e116100dc578063c403881e146109e1578063c87b56dd14610a01578063cabadaa014610a21578063ddc2c17c14610a3757600080fd5b8063a854ffba14610961578063b2c94ee614610981578063b88d4fde146109a1578063ba1f8770146109c157600080fd5b80639084b14f1161018557806397b36dc51161015457806397b36dc5146108f9578063a0c540781461090c578063a22cb46514610921578063a57113991461094157600080fd5b80639084b14f1461089a578063948cd413146108ba57806395d89b41146108cf5780639602e9d5146108e457600080fd5b806386b46694116101c157806386b466941461082457806389844e821461083a5780638d40fb4e146108675780638da5cb5b1461087c57600080fd5b8063715018a6146107cd57806371bcf917146107e25780638456cb591461080f57600080fd5b80633de0baf1116102cc5780635c474f9e1161026a578063653a0fed11610239578063653a0fed14610751578063656cf1ca1461076d5780636c8b703f1461078d57806370a08231146107ad57600080fd5b80635c474f9e1461069a5780635c975abb146106ce578063633f993b146106fe5780636352211e1461073157600080fd5b80634f6ccce7116102a65780634f6ccce71461061d57806353df5c7c1461063d57806355fc9893146106525780635639e8cf1461067257600080fd5b80633de0baf1146105c85780633f4ba83a146105e857806342842e0e146105fd57600080fd5b80631547bc19116103445780632f745c59116103135780632f745c591461054857806332cb6b0c14610568578063339159d31461057e5780633ccfd60b146105b357600080fd5b80631547bc19146104d357806318160ddd146104f357806323b872dd14610508578063270ab52c1461052857600080fd5b8063081812fc11610380578063081812fc14610420578063095ea7b31461045857806309a3beef1461047857806314f7d2f31461049857600080fd5b806301ffc9a7146103a7578063046dc166146103dc57806306fdde03146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004614651565b610b99565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004614488565b610bf5565b005b34801561040a57600080fd5b50610413610d02565b6040516103d3919061490d565b34801561042c57600080fd5b5061044061043b366004614719565b610d94565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b506103fc6104733660046145a4565b610e3a565b34801561048457600080fd5b506103fc6104933660046146cd565b610f6c565b3480156104a457600080fd5b506104c56104b3366004614719565b60156020526000908152604090205481565b6040519081526020016103d3565b3480156104df57600080fd5b506103c76104ee3660046145ce565b611072565b3480156104ff57600080fd5b506008546104c5565b34801561051457600080fd5b506103fc6105233660046144d6565b611130565b34801561053457600080fd5b506103fc610543366004614719565b6111b7565b34801561055457600080fd5b506104c56105633660046145a4565b611234565b34801561057457600080fd5b506104c561271081565b34801561058a57600080fd5b50600a546103c79077010000000000000000000000000000000000000000000000900460ff1681565b3480156105bf57600080fd5b506103fc6112dc565b3480156105d457600080fd5b506103fc6105e3366004614732565b61140f565b3480156105f457600080fd5b506103fc611499565b34801561060957600080fd5b506103fc6106183660046144d6565b611567565b34801561062957600080fd5b506104c5610638366004614719565b611582565b34801561064957600080fd5b506103fc611626565b34801561065e57600080fd5b506103fc61066d36600461468b565b611734565b34801561067e57600080fd5b50610440731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df5981565b3480156106a657600080fd5b50600a546103c790760100000000000000000000000000000000000000000000900460ff1681565b3480156106da57600080fd5b50600a5474010000000000000000000000000000000000000000900460ff166103c7565b34801561070a57600080fd5b50600a546103c7907501000000000000000000000000000000000000000000900460ff1681565b34801561073d57600080fd5b5061044061074c366004614719565b611846565b34801561075d57600080fd5b506104c5673782dace9d90000081565b34801561077957600080fd5b506103fc610788366004614732565b6118d1565b34801561079957600080fd5b506104136107a8366004614719565b61195b565b3480156107b957600080fd5b506104c56107c8366004614488565b6119f5565b3480156107d957600080fd5b506103fc611a8f565b3480156107ee57600080fd5b506104c56107fd366004614719565b60146020526000908152604090205481565b34801561081b57600080fd5b506103fc611af3565b34801561083057600080fd5b506104c5600c5481565b34801561084657600080fd5b506104c5610855366004614719565b60176020526000908152604090205481565b34801561087357600080fd5b50610413611bc0565b34801561088857600080fd5b50600a546001600160a01b0316610440565b3480156108a657600080fd5b506103fc6108b5366004614732565b611bcd565b3480156108c657600080fd5b506104c5606e81565b3480156108db57600080fd5b50610413611c57565b3480156108f057600080fd5b506103fc611c66565b6103fc610907366004614754565b611e30565b34801561091857600080fd5b50610413612339565b34801561092d57600080fd5b506103fc61093c36600461457a565b612346565b34801561094d57600080fd5b506103fc61095c366004614636565b612351565b34801561096d57600080fd5b506103fc61097c366004614636565b612416565b34801561098d57600080fd5b506103fc61099c36600461468b565b6124da565b3480156109ad57600080fd5b506103fc6109bc366004614512565b6125ec565b3480156109cd57600080fd5b506103fc6109dc366004614719565b612674565b3480156109ed57600080fd5b506103fc6109fc366004614732565b61274f565b348015610a0d57600080fd5b50610413610a1c366004614719565b6127d9565b348015610a2d57600080fd5b506104c5600d5481565b348015610a4357600080fd5b506103fc610a52366004614732565b612977565b348015610a6357600080fd5b506103fc610a72366004614636565b612a01565b348015610a8357600080fd5b506103c7610a923660046144a3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103fc610ace366004614719565b612ac4565b348015610adf57600080fd5b506103fc610aee366004614488565b612d4c565b348015610aff57600080fd5b50600a546103c7907801000000000000000000000000000000000000000000000000900460ff1681565b348015610b3557600080fd5b506104c5610b44366004614719565b60166020526000908152604090205481565b348015610b6257600080fd5b506104c5610b71366004614719565b60136020526000908152604090205481565b348015610b8f57600080fd5b506104c5600b5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bef5750610bef82612ee9565b92915050565b600a546001600160a01b0316331480610c21575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b610c725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116610cc85760405162461bcd60e51b815260206004820152601360248201527f5349474e45525f414444524553535f5a45524f000000000000000000000000006044820152606401610c69565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b606060008054610d11906149cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3d906149cc565b8015610d8a5780601f10610d5f57610100808354040283529160200191610d8a565b820191906000526020600020905b815481529060010190602001808311610d6d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e1e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c69565b506000908152600460205260409020546001600160a01b031690565b6000610e4582611846565b9050806001600160a01b0316836001600160a01b03161415610ecf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b336001600160a01b0382161480610eeb5750610eeb8133610a92565b610f5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c69565b610f678383612fcc565b505050565b600a546001600160a01b0316331480610f98575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b610fe45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156110535760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b600081815260126020526040902061106c908484614244565b50505050565b604080516001600160a01b03871660208201529081018590526060810184905260009081906080016040516020818303038152906040528051906020012090506110f28185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061305292505050565b611100576000915050611127565b60008181526011602052604090205460ff1615611121576000915050611127565b60019150505b95945050505050565b61113a33826130cc565b6111ac5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c69565b610f678383836131d4565b600a546001600160a01b03163314806111e3575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b61122f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600d55565b600061123f836119f5565b82106112b35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c69565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600047116113865760405162461bcd60e51b815260206004820152600d60248201527f454d5054595f42414c414e4345000000000000000000000000000000000000006044820152606401610c69565b673782dace9d900000600b5410156113e05760405162461bcd60e51b815260206004820152601360248201527f4445565f57495448445241574e5f4649525354000000000000000000000000006044820152606401610c69565b60405133904780156108fc02916000818181858888f1935050505015801561140c573d6000803e3d6000fd5b50565b600a546001600160a01b031633148061143b575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6114875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526016602052604090912055565b600a546001600160a01b031633146114f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a5474010000000000000000000000000000000000000000900460ff1661155d5760405162461bcd60e51b815260206004820152601060248201527f414c52454144595f554e504155534544000000000000000000000000000000006044820152606401610c69565b6115656133c4565b565b610f67838383604051806020016040528060008152506125ec565b600061158d60085490565b82106116015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c69565b6008828154811061161457611614614b29565b90600052602060002001549050919050565b600a546001600160a01b031633146116805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156116ef5760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b600a80547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167801000000000000000000000000000000000000000000000000179055565b600a546001600160a01b0316331480611760575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6117ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff161561181b5760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b61182760108383614244565b50604080516020810191829052600090819052610f6791600f916142e6565b6000818152600260205260408120546001600160a01b031680610bef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c69565b600a546001600160a01b03163314806118fd575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6119495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526013602052604090912055565b60126020526000908152604090208054611974906149cc565b80601f01602080910402602001604051908101604052809291908181526020018280546119a0906149cc565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b505050505081565b60006001600160a01b038216611a735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c69565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b6115656000613496565b600a546001600160a01b03163314611b4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a5474010000000000000000000000000000000000000000900460ff1615611bb85760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f5041555345440000000000000000000000000000000000006044820152606401610c69565b611565613500565b60108054611974906149cc565b600a546001600160a01b0316331480611bf9575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b611c455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526017602052604090912055565b606060018054610d11906149cc565b33731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df5914611cc95760405162461bcd60e51b815260206004820152600f60248201527f4e4f545f4445565f4144445245535300000000000000000000000000000000006044820152606401610c69565b673782dace9d900000600b5410611d225760405162461bcd60e51b815260206004820152601b60248201527f4445565f57495448445241574e5f414d4f554e545f45584345454400000000006044820152606401610c69565b6000600b54673782dace9d900000611d3a9190614989565b905060008111611d8c5760405162461bcd60e51b815260206004820152600b60248201527f414d4f554e545f5a45524f0000000000000000000000000000000000000000006044820152606401610c69565b611d9681476135d2565b905060008111611de85760405162461bcd60e51b815260206004820152600b60248201527f414d4f554e545f5a45524f0000000000000000000000000000000000000000006044820152606401610c69565b80600b6000828254611dfa9190614920565b9091555050604051339082156108fc029083906000818181858888f19350505050158015611e2c573d6000803e3d6000fd5b5050565b6000600c54118015611e435750600c5482145b611e8f5760405162461bcd60e51b815260206004820152600e60248201527f574156455f494e434f52524543540000000000000000000000000000000000006044820152606401610c69565b600a5477010000000000000000000000000000000000000000000000900460ff1680611ed65750600a547501000000000000000000000000000000000000000000900460ff165b611f225760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f53544152544544000000000000000000000000000000006044820152606401610c69565b600084118015611f325750828411155b611f7e5760405162461bcd60e51b815260206004820152600d60248201527f434f554e545f494e56414c4944000000000000000000000000000000000000006044820152606401610c69565b61271084611f8b60085490565b611f959190614920565b1115611fe35760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600a5477010000000000000000000000000000000000000000000000900460ff16156120ec57600c546000908152601660205260409020548461202560085490565b61202f9190614920565b111561207d5760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c54600090815260146020526040902054612099908561494c565b34146120e75760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f4554485f53454e54000000000000000000000000000000006044820152606401610c69565b6121ae565b600c546000908152601760205260409020548461210860085490565b6121129190614920565b11156121605760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b34156121ae5760405162461bcd60e51b815260206004820152601960248201527f4d494e545f50524943455f53484f554c445f42455f46524545000000000000006044820152606401610c69565b600033604080516001600160a01b039092166020830152810185905260608101849052608001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301206000818152601190935291205490915060ff161561226a5760405162461bcd60e51b815260206004820152601160248201527f484153485f414c52454144595f555345440000000000000000000000000000006044820152606401610c69565b6122748183613052565b6122c05760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152606401610c69565b600081815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091555b8581116123315761231f3361230f60085490565b61231a906001614920565b6135ea565b8061232981614a20565b9150506122fb565b505050505050565b600f8054611974906149cc565b611e2c338383613604565b600a546001600160a01b031633148061237d575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6123c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600a546001600160a01b0316331480612442575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b61248e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a8054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600a546001600160a01b0316331480612506575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6125525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a547801000000000000000000000000000000000000000000000000900460ff16156125c15760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4c4f434b45440000000000000000000000000000000000006044820152606401610c69565b6125cd600f8383614244565b50604080516020810191829052600090819052610f67916010916142e6565b6125f633836130cc565b6126685760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c69565b61106c848484846136f1565b600a546001600160a01b03163314806126a0575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6126ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600181101580156126fe575060058111155b61274a5760405162461bcd60e51b815260206004820152601260248201527f574156455f4f55545f4f465f424f554e445300000000000000000000000000006044820152606401610c69565b600c55565b600a546001600160a01b031633148061277b575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6127c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526014602052604090912055565b6000818152600260205260409020546060906001600160a01b03166128665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c69565b6000828152601260205260409020805461287f906149cc565b159050612924576000828152601260205260409020805461289f906149cc565b80601f01602080910402602001604051908101604052809291908181526020018280546128cb906149cc565b80156129185780601f106128ed57610100808354040283529160200191612918565b820191906000526020600020905b8154815290600101906020018083116128fb57829003601f168201915b50505050509050919050565b60108054612931906149cc565b159050612945576010805461289f906149cc565b600f6129508361377a565b6040516020016129619291906147fc565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314806129a3575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b6129ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b60009182526015602052604090912055565b600a546001600160a01b0316331480612a2d575033731c78a76c0b4a4c2f99ad8d0abb7a1556fa55df59145b612a795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b600a80549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000600c5411612b165760405162461bcd60e51b815260206004820152600e60248201527f574156455f494e434f52524543540000000000000000000000000000000000006044820152606401610c69565b600a54760100000000000000000000000000000000000000000000900460ff16612b825760405162461bcd60e51b815260206004820152601060248201527f4d494e545f4e4f545f53544152544544000000000000000000000000000000006044820152606401610c69565b600081118015612b945750600d548111155b612be05760405162461bcd60e51b815260206004820152600d60248201527f434f554e545f494e56414c4944000000000000000000000000000000000000006044820152606401610c69565b61271081612bed60085490565b612bf79190614920565b1115612c455760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c5460009081526015602052604090205481612c6160085490565b612c6b9190614920565b1115612cb95760405162461bcd60e51b815260206004820152601260248201527f4d41585f535550504c595f5245414348454400000000000000000000000000006044820152606401610c69565b600c54600090815260136020526040902054612cd5908261494c565b3414612d235760405162461bcd60e51b815260206004820152601060248201527f494e56414c49445f4554485f53454e54000000000000000000000000000000006044820152606401610c69565b60015b818111611e2c57612d3a3361230f60085490565b80612d4481614a20565b915050612d26565b600a546001600160a01b03163314612da65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c69565b6001600160a01b038116612e225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c69565b61140c81613496565b3b151590565b6001600160a01b038316612e8c57612e8781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612eaf565b816001600160a01b0316836001600160a01b031614612eaf57612eaf83826138ac565b6001600160a01b038216612ec657610f6781613949565b826001600160a01b0316826001600160a01b031614610f6757610f6782826139f8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612f7c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bef565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061301982611846565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006130b46130ae846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b83613a3c565b600e546001600160a01b039182169116149392505050565b6000818152600260205260408120546001600160a01b03166131565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c69565b600061316183611846565b9050806001600160a01b0316846001600160a01b0316148061319c5750836001600160a01b031661319184610d94565b6001600160a01b0316145b806131cc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166131e782611846565b6001600160a01b0316146132635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c69565b6001600160a01b0382166132de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6132e9838383613a60565b6132f4600082612fcc565b6001600160a01b038316600090815260036020526040812080546001929061331d908490614989565b90915550506001600160a01b038216600090815260036020526040812080546001929061334b908490614920565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5474010000000000000000000000000000000000000000900460ff1661342e5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c69565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5474010000000000000000000000000000000000000000900460ff161561356b5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c69565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134793390565b60008183106135e157816135e3565b825b9392505050565b611e2c828260405180602001604052806000815250613ad6565b816001600160a01b0316836001600160a01b031614156136665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c69565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6136fc8484846131d4565b61370884848484613b5f565b61106c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b6060816137ba57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156137e457806137ce81614a20565b91506137dd9050600a83614938565b91506137be565b60008167ffffffffffffffff8111156137ff576137ff614b58565b6040519080825280601f01601f191660200182016040528015613829576020820181803683370190505b5090505b84156131cc5761383e600183614989565b915061384b600a86614a59565b613856906030614920565b60f81b81838151811061386b5761386b614b29565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506138a5600a86614938565b945061382d565b600060016138b9846119f5565b6138c39190614989565b600083815260076020526040902054909150808214613916576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061395b90600190614989565b6000838152600960205260408120546008805493945090928490811061398357613983614b29565b9060005260206000200154905080600883815481106139a4576139a4614b29565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139dc576139dc614afa565b6001900381819060005260206000200160009055905550505050565b6000613a03836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000613a4b8585613d2a565b91509150613a5881613d9a565b509392505050565b600a5474010000000000000000000000000000000000000000900460ff1615613acb5760405162461bcd60e51b815260206004820152600f60248201527f5452414e534645525f50415553454400000000000000000000000000000000006044820152606401610c69565b610f67838383612e31565b613ae08383613f8b565b613aed6000848484613b5f565b610f675760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b60006001600160a01b0384163b15613d1f576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613bbc9033908990889088906004016148d1565b602060405180830381600087803b158015613bd657600080fd5b505af1925050508015613c24575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613c219181019061466e565b60015b613cd4573d808015613c52576040519150601f19603f3d011682016040523d82523d6000602084013e613c57565b606091505b508051613ccc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c69565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506131cc565b506001949350505050565b600080825160411415613d615760208301516040840151606085015160001a613d55878285856140f1565b94509450505050613d93565b825160401415613d8b5760208301516040840151613d808683836141fc565b935093505050613d93565b506000905060025b9250929050565b6000816004811115613dae57613dae614acb565b1415613db75750565b6001816004811115613dcb57613dcb614acb565b1415613e195760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c69565b6002816004811115613e2d57613e2d614acb565b1415613e7b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c69565b6003816004811115613e8f57613e8f614acb565b1415613f035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6004816004811115613f1757613f17614acb565b141561140c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c69565b6001600160a01b038216613fe15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c69565b6000818152600260205260409020546001600160a01b0316156140465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c69565b61405260008383613a60565b6001600160a01b038216600090815260036020526040812080546001929061407b908490614920565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561412857506000905060036141f3565b8460ff16601b1415801561414057508460ff16601c14155b1561415157506000905060046141f3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156141a5573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166141ec576000600192509250506141f3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01614236878288856140f1565b935093505050935093915050565b828054614250906149cc565b90600052602060002090601f01602090048101928261427257600085556142d6565b82601f106142a9578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556142d6565b828001600101855582156142d6579182015b828111156142d65782358255916020019190600101906142bb565b506142e292915061435a565b5090565b8280546142f2906149cc565b90600052602060002090601f01602090048101928261431457600085556142d6565b82601f1061432d57805160ff19168380011785556142d6565b828001600101855582156142d6579182015b828111156142d657825182559160200191906001019061433f565b5b808211156142e2576000815560010161435b565b80356001600160a01b038116811461438657600080fd5b919050565b8035801515811461438657600080fd5b60008083601f8401126143ad57600080fd5b50813567ffffffffffffffff8111156143c557600080fd5b602083019150836020828501011115613d9357600080fd5b600082601f8301126143ee57600080fd5b813567ffffffffffffffff8082111561440957614409614b58565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561444f5761444f614b58565b8160405283815286602085880101111561446857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561449a57600080fd5b6135e38261436f565b600080604083850312156144b657600080fd5b6144bf8361436f565b91506144cd6020840161436f565b90509250929050565b6000806000606084860312156144eb57600080fd5b6144f48461436f565b92506145026020850161436f565b9150604084013590509250925092565b6000806000806080858703121561452857600080fd5b6145318561436f565b935061453f6020860161436f565b925060408501359150606085013567ffffffffffffffff81111561456257600080fd5b61456e878288016143dd565b91505092959194509250565b6000806040838503121561458d57600080fd5b6145968361436f565b91506144cd6020840161438b565b600080604083850312156145b757600080fd5b6145c08361436f565b946020939093013593505050565b6000806000806000608086880312156145e657600080fd5b6145ef8661436f565b94506020860135935060408601359250606086013567ffffffffffffffff81111561461957600080fd5b6146258882890161439b565b969995985093965092949392505050565b60006020828403121561464857600080fd5b6135e38261438b565b60006020828403121561466357600080fd5b81356135e381614b87565b60006020828403121561468057600080fd5b81516135e381614b87565b6000806020838503121561469e57600080fd5b823567ffffffffffffffff8111156146b557600080fd5b6146c18582860161439b565b90969095509350505050565b6000806000604084860312156146e257600080fd5b833567ffffffffffffffff8111156146f957600080fd5b6147058682870161439b565b909790965060209590950135949350505050565b60006020828403121561472b57600080fd5b5035919050565b6000806040838503121561474557600080fd5b50508035926020909101359150565b6000806000806080858703121561476a57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561456257600080fd5b600081518084526147ae8160208601602086016149a0565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600081516147f28185602086016149a0565b9290920192915050565b600080845481600182811c91508083168061481857607f831692505b6020808410821415614851577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156148655760018114614894576148c1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506148c1565b60008b81526020902060005b868110156148b95781548b8201529085019083016148a0565b505084890196505b50505050505061112781856147e0565b60006001600160a01b038087168352808616602084015250836040830152608060608301526149036080830184614796565b9695505050505050565b6020815260006135e36020830184614796565b6000821982111561493357614933614a6d565b500190565b60008261494757614947614a9c565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498457614984614a6d565b500290565b60008282101561499b5761499b614a6d565b500390565b60005b838110156149bb5781810151838201526020016149a3565b8381111561106c5750506000910152565b600181811c908216806149e057607f821691505b60208210811415614a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5257614a52614a6d565b5060010190565b600082614a6857614a68614a9c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461140c57600080fdfea26469706673582212206afa561d4183ef98e2cdaee9258af138d2a1a5dc5743f30326a420f43bba9a2e64736f6c63430008070033

Deployed Bytecode Sourcemap

58188:8997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40619:224;;;;;;;;;;-1:-1:-1;40619:224:0;;;;;:::i;:::-;;:::i;:::-;;;10018:14:1;;10011:22;9993:41;;9981:2;9966:18;40619:224:0;;;;;;;;64116:174;;;;;;;;;;-1:-1:-1;64116:174:0;;;;;:::i;:::-;;:::i;:::-;;28113:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29672:221::-;;;;;;;;;;-1:-1:-1;29672:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8897:55:1;;;8879:74;;8867:2;8852:18;29672:221:0;8733:226:1;29195:411:0;;;;;;;;;;-1:-1:-1;29195:411:0;;;;;:::i;:::-;;:::i;64779:173::-;;;;;;;;;;-1:-1:-1;64779:173:0;;;;;:::i;:::-;;:::i;59129:50::-;;;;;;;;;;-1:-1:-1;59129:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;26803:25:1;;;26791:2;26776:18;59129:50:0;26657:177:1;62836:420:0;;;;;;;;;;-1:-1:-1;62836:420:0;;;;;:::i;:::-;;:::i;41259:113::-;;;;;;;;;;-1:-1:-1;41347:10:0;:17;41259:113;;30422:339;;;;;;;;;;-1:-1:-1;30422:339:0;;;;;:::i;:::-;;:::i;65835:111::-;;;;;;;;;;-1:-1:-1;65835:111:0;;;;;:::i;:::-;;:::i;40927:256::-;;;;;;;;;;-1:-1:-1;40927:256:0;;;;;:::i;:::-;;:::i;58288:42::-;;;;;;;;;;;;58325:5;58288:42;;58598:36;;;;;;;;;;-1:-1:-1;58598:36:0;;;;;;;;;;;66195:246;;;;;;;;;;;;;:::i;65379:141::-;;;;;;;;;;-1:-1:-1;65379:141:0;;;;;:::i;:::-;;:::i;66072:115::-;;;;;;;;;;;;;:::i;30832:185::-;;;;;;;;;;-1:-1:-1;30832:185:0;;;;;:::i;:::-;;:::i;41449:233::-;;;;;;;;;;-1:-1:-1;41449:233:0;;;;;:::i;:::-;;:::i;64298:115::-;;;;;;;;;;;;;:::i;64600:171::-;;;;;;;;;;-1:-1:-1;64600:171:0;;;;;:::i;:::-;;:::i;58433:80::-;;;;;;;;;;;;58471:42;58433:80;;58560:31;;;;;;;;;;-1:-1:-1;58560:31:0;;;;;;;;;;;22466:86;;;;;;;;;;-1:-1:-1;22537:7:0;;;;;;;22466:86;;58522:31;;;;;;;;;;-1:-1:-1;58522:31:0;;;;;;;;;;;27807:239;;;;;;;;;;-1:-1:-1;27807:239:0;;;;;:::i;:::-;;:::i;58382:44::-;;;;;;;;;;;;58419:7;58382:44;;64960:127;;;;;;;;;;-1:-1:-1;64960:127:0;;;;;:::i;:::-;;:::i;58944:43::-;;;;;;;;;;-1:-1:-1;58944:43:0;;;;;:::i;:::-;;:::i;27537:208::-;;;;;;;;;;-1:-1:-1;27537:208:0;;;;;:::i;:::-;;:::i;20517:103::-;;;;;;;;;;;;;:::i;59070:50::-;;;;;;;;;;-1:-1:-1;59070:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;65954:110;;;;;;;;;;;;;:::i;58716:30::-;;;;;;;;;;;;;;;;59246:48;;;;;;;;;;-1:-1:-1;59246:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;58861:23;;;;;;;;;;;;;:::i;19866:87::-;;;;;;;;;;-1:-1:-1;19939:6:0;;-1:-1:-1;;;;;19939:6:0;19866:87;;65528:131;;;;;;;;;;-1:-1:-1;65528:131:0;;;;;:::i;:::-;;:::i;58337:38::-;;;;;;;;;;;;58372:3;58337:38;;28282:104;;;;;;;;;;;;;:::i;66449:480::-;;;;;;;;;;;;;:::i;60706:1254::-;;;;;;:::i;:::-;;:::i;58831:23::-;;;;;;;;;;;;;:::i;29965:155::-;;;;;;;;;;-1:-1:-1;29965:155:0;;;;;:::i;:::-;;:::i;63870:120::-;;;;;;;;;;-1:-1:-1;63870:120:0;;;;;:::i;:::-;;:::i;63752:110::-;;;;;;;;;;-1:-1:-1;63752:110:0;;;;;:::i;:::-;;:::i;64421:171::-;;;;;;;;;;-1:-1:-1;64421:171:0;;;;;:::i;:::-;;:::i;31088:328::-;;;;;;;;;;-1:-1:-1;31088:328:0;;;;;:::i;:::-;;:::i;65667:160::-;;;;;;;;;;-1:-1:-1;65667:160:0;;;;;:::i;:::-;;:::i;65095:133::-;;;;;;;;;;-1:-1:-1;65095:133:0;;;;;:::i;:::-;;:::i;63264:448::-;;;;;;;;;;-1:-1:-1;63264:448:0;;;;;:::i;:::-;;:::i;58753:32::-;;;;;;;;;;;;;;;;65236:135;;;;;;;;;;-1:-1:-1;65236:135:0;;;;;:::i;:::-;;:::i;63998:110::-;;;;;;;;;;-1:-1:-1;63998:110:0;;;;;:::i;:::-;;:::i;30191:164::-;;;;;;;;;;-1:-1:-1;30191:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30312:25:0;;;30288:4;30312:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30191:164;61968:658;;;;;;:::i;:::-;;:::i;20775:201::-;;;;;;;;;;-1:-1:-1;20775:201:0;;;;;:::i;:::-;;:::i;58641:24::-;;;;;;;;;;-1:-1:-1;58641:24:0;;;;;;;;;;;59186:53;;;;;;;;;;-1:-1:-1;59186:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;59016:47;;;;;;;;;;-1:-1:-1;59016:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;58672:37;;;;;;;;;;;;;;;;40619:224;40721:4;40745:50;;;40760:35;40745:50;;:90;;;40799:36;40823:11;40799:23;:36::i;:::-;40738:97;40619:224;-1:-1:-1;;40619:224:0:o;64116:174::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;;;;;;;;;-1:-1:-1;;;;;64202:21:0;::::1;64194:53;;;::::0;-1:-1:-1;;;64194:53:0;;16017:2:1;64194:53:0::1;::::0;::::1;15999:21:1::0;16056:2;16036:18;;;16029:30;16095:21;16075:18;;;16068:49;16134:18;;64194:53:0::1;15815:343:1::0;64194:53:0::1;64258:14;:24:::0;;;::::1;-1:-1:-1::0;;;;;64258:24:0;;;::::1;::::0;;;::::1;::::0;;64116:174::o;28113:100::-;28167:13;28200:5;28193:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28113:100;:::o;29672:221::-;29748:7;33015:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33015:16:0;29768:73;;;;-1:-1:-1;;;29768:73:0;;20581:2:1;29768:73:0;;;20563:21:1;20620:2;20600:18;;;20593:30;20659:34;20639:18;;;20632:62;20730:14;20710:18;;;20703:42;20762:19;;29768:73:0;20379:408:1;29768:73:0;-1:-1:-1;29861:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29861:24:0;;29672:221::o;29195:411::-;29276:13;29292:23;29307:7;29292:14;:23::i;:::-;29276:39;;29340:5;-1:-1:-1;;;;;29334:11:0;:2;-1:-1:-1;;;;;29334:11:0;;;29326:57;;;;-1:-1:-1;;;29326:57:0;;22872:2:1;29326:57:0;;;22854:21:1;22911:2;22891:18;;;22884:30;22950:34;22930:18;;;22923:62;23021:3;23001:18;;;22994:31;23042:19;;29326:57:0;22670:397:1;29326:57:0;18670:10;-1:-1:-1;;;;;29418:21:0;;;;:62;;-1:-1:-1;29443:37:0;29460:5;18670:10;30191:164;:::i;29443:37::-;29396:168;;;;-1:-1:-1;;;29396:168:0;;17872:2:1;29396:168:0;;;17854:21:1;17911:2;17891:18;;;17884:30;17950:34;17930:18;;;17923:62;18021:26;18001:18;;;17994:54;18065:19;;29396:168:0;17670:420:1;29396:168:0;29577:21;29586:2;29590:7;29577:8;:21::i;:::-;29265:341;29195:411;;:::o;64779:173::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;64884:4:::1;::::0;;;::::1;;;64883:5;64875:32;;;::::0;-1:-1:-1;;;64875:32:0;;19118:2:1;64875:32:0::1;::::0;::::1;19100:21:1::0;19157:2;19137:18;;;19130:30;19196:16;19176:18;;;19169:44;19230:18;;64875:32:0::1;18916:338:1::0;64875:32:0::1;64918:19;::::0;;;:9:::1;:19;::::0;;;;:26:::1;::::0;64940:4;;64918:26:::1;:::i;:::-;;64779:173:::0;;;:::o;62836:420::-;63035:37;;;-1:-1:-1;;;;;9700:55:1;;63035:37:0;;;9682:74:1;9772:18;;;9765:34;;;9815:18;;;9808:34;;;62992:4:0;;;;9655:18:1;;63035:37:0;;;;;;;;;;;;63025:48;;;;;;63009:64;;63089:24;63101:5;63108:4;;63089:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63089:11:0;;-1:-1:-1;;;63089:24:0:i;:::-;63084:70;;63137:5;63130:12;;;;;63084:70;63168:18;;;;:11;:18;;;;;;;;63164:63;;;63210:5;63203:12;;;;;63164:63;63244:4;63237:11;;;62836:420;;;;;;;;:::o;30422:339::-;30617:41;18670:10;30650:7;30617:18;:41::i;:::-;30609:103;;;;-1:-1:-1;;;30609:103:0;;24308:2:1;30609:103:0;;;24290:21:1;24347:2;24327:18;;;24320:30;24386:34;24366:18;;;24359:62;24457:19;24437:18;;;24430:47;24494:19;;30609:103:0;24106:413:1;30609:103:0;30725:28;30735:4;30741:2;30745:7;30725:9;:28::i;65835:111::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65914:13:::1;:24:::0;65835:111::o;40927:256::-;41024:7;41060:23;41077:5;41060:16;:23::i;:::-;41052:5;:31;41044:87;;;;-1:-1:-1;;;41044:87:0;;12621:2:1;41044:87:0;;;12603:21:1;12660:2;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12770:13;12750:18;;;12743:41;12801:19;;41044:87:0;12419:407:1;41044:87:0;-1:-1:-1;;;;;;41149:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40927:256::o;66195:246::-;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;66277:1:::1;66253:21;:25;66245:51;;;::::0;-1:-1:-1;;;66245:51:0;;25483:2:1;66245:51:0::1;::::0;::::1;25465:21:1::0;25522:2;25502:18;;;25495:30;25561:15;25541:18;;;25534:43;25594:18;;66245:51:0::1;25281:337:1::0;66245:51:0::1;58419:7;66315:18;;:32;;66307:64;;;::::0;-1:-1:-1;;;66307:64:0;;23617:2:1;66307:64:0::1;::::0;::::1;23599:21:1::0;23656:2;23636:18;;;23629:30;23695:21;23675:18;;;23668:49;23734:18;;66307:64:0::1;23415:343:1::0;66307:64:0::1;66382:51;::::0;66390:10:::1;::::0;66411:21:::1;66382:51:::0;::::1;;;::::0;::::1;::::0;;;66411:21;66390:10;66382:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;66195:246::o:0;65379:141::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65477:25:::1;::::0;;;:18:::1;:25;::::0;;;;;:35;65379:141::o;66072:115::-;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;22537:7;;;;;;;66121:37:::1;;;::::0;-1:-1:-1;;;66121:37:0;;11227:2:1;66121:37:0::1;::::0;::::1;11209:21:1::0;11266:2;11246:18;;;11239:30;11305:18;11285;;;11278:46;11341:18;;66121:37:0::1;11025:340:1::0;66121:37:0::1;66169:10;:8;:10::i;:::-;66072:115::o:0;30832:185::-;30970:39;30987:4;30993:2;30997:7;30970:39;;;;;;;;;;;;:16;:39::i;41449:233::-;41524:7;41560:30;41347:10;:17;;41259:113;41560:30;41552:5;:38;41544:95;;;;-1:-1:-1;;;41544:95:0;;25070:2:1;41544:95:0;;;25052:21:1;25109:2;25089:18;;;25082:30;25148:34;25128:18;;;25121:62;25219:14;25199:18;;;25192:42;25251:19;;41544:95:0;24868:408:1;41544:95:0;41657:10;41668:5;41657:17;;;;;;;;:::i;:::-;;;;;;;;;41650:24;;41449:233;;;:::o;64298:115::-;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;64360:4:::1;::::0;;;::::1;;;64359:5;64351:32;;;::::0;-1:-1:-1;;;64351:32:0;;19118:2:1;64351:32:0::1;::::0;::::1;19100:21:1::0;19157:2;19137:18;;;19130:30;19196:16;19176:18;;;19169:44;19230:18;;64351:32:0::1;18916:338:1::0;64351:32:0::1;64394:4;:11:::0;;;::::1;::::0;::::1;::::0;;64298:115::o;64600:171::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;64688:4:::1;::::0;;;::::1;;;64687:5;64679:32;;;::::0;-1:-1:-1;;;64679:32:0;;19118:2:1;64679:32:0::1;::::0;::::1;19100:21:1::0;19157:2;19137:18;;;19130:30;19196:16;19176:18;;;19169:44;19230:18;;64679:32:0::1;18916:338:1::0;64679:32:0::1;64722:16;:9;64734:4:::0;;64722:16:::1;:::i;:::-;-1:-1:-1::0;64749:14:0::1;::::0;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;64749:14:0;;;;::::1;::::0;:9:::1;::::0;:14:::1;:::i;27807:239::-:0;27879:7;27915:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27915:16:0;27950:19;27942:73;;;;-1:-1:-1;;;27942:73:0;;18708:2:1;27942:73:0;;;18690:21:1;18747:2;18727:18;;;18720:30;18786:34;18766:18;;;18759:62;18857:11;18837:18;;;18830:39;18886:19;;27942:73:0;18506:405:1;64960:127:0;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65051:19:::1;::::0;;;:12:::1;:19;::::0;;;;;:28;64960:127::o;58944:43::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27537:208::-;27609:7;-1:-1:-1;;;;;27637:19:0;;27629:74;;;;-1:-1:-1;;;27629:74:0;;18297:2:1;27629:74:0;;;18279:21:1;18336:2;18316:18;;;18309:30;18375:34;18355:18;;;18348:62;18446:12;18426:18;;;18419:40;18476:19;;27629:74:0;18095:406:1;27629:74:0;-1:-1:-1;;;;;;27721:16:0;;;;;:9;:16;;;;;;;27537:208::o;20517:103::-;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;20582:30:::1;20609:1;20582:18;:30::i;65954:110::-:0;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;22537:7;;;;;;;66009:9:::1;66001:36;;;::::0;-1:-1:-1;;;66001:36:0;;14561:2:1;66001:36:0::1;::::0;::::1;14543:21:1::0;14600:2;14580:18;;;14573:30;14639:16;14619:18;;;14612:44;14673:18;;66001:36:0::1;14359:338:1::0;66001:36:0::1;66048:8;:6;:8::i;58861:23::-:0;;;;;;;:::i;65528:131::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65621:20:::1;::::0;;;:13:::1;:20;::::0;;;;;:30;65528:131::o;28282:104::-;28338:13;28371:7;28364:14;;;;;:::i;66449:480::-;66500:10;58471:42;66500:25;66492:53;;;;-1:-1:-1;;;66492:53:0;;24726:2:1;66492:53:0;;;24708:21:1;24765:2;24745:18;;;24738:30;24804:17;24784:18;;;24777:45;24839:18;;66492:53:0;24524:339:1;66492:53:0;58419:7;66564:18;;:31;66556:71;;;;-1:-1:-1;;;66556:71:0;;19461:2:1;66556:71:0;;;19443:21:1;19500:2;19480:18;;;19473:30;19539:29;19519:18;;;19512:57;19586:18;;66556:71:0;19259:351:1;66556:71:0;66638:14;66668:18;;58419:7;66655:31;;;;:::i;:::-;66638:48;;66714:1;66705:6;:10;66697:34;;;;-1:-1:-1;;;66697:34:0;;11921:2:1;66697:34:0;;;11903:21:1;11960:2;11940:18;;;11933:30;11999:13;11979:18;;;11972:41;12030:18;;66697:34:0;11719:335:1;66697:34:0;66751:39;66760:6;66768:21;66751:8;:39::i;:::-;66742:48;;66818:1;66809:6;:10;66801:34;;;;-1:-1:-1;;;66801:34:0;;11921:2:1;66801:34:0;;;11903:21:1;11960:2;11940:18;;;11933:30;11999:13;11979:18;;;11972:41;12030:18;;66801:34:0;11719:335:1;66801:34:0;66868:6;66846:18;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;66885:36:0;;66893:10;;66885:36;;;;;66914:6;;66885:36;;;;66914:6;66893:10;66885:36;;;;;;;;;;;;;;;;;;;;;66481:448;66449:480::o;60706:1254::-;60908:1;60894:11;;:15;:39;;;;;60922:11;;60913:5;:20;60894:39;60886:66;;;;-1:-1:-1;;;60886:66:0;;23965:2:1;60886:66:0;;;23947:21:1;24004:2;23984:18;;;23977:30;24043:16;24023:18;;;24016:44;24077:18;;60886:66:0;23763:338:1;60886:66:0;60971:16;;;;;;;;:31;;-1:-1:-1;60991:11:0;;;;;;;60971:31;60963:60;;;;-1:-1:-1;;;60963:60:0;;13859:2:1;60963:60:0;;;13841:21:1;13898:2;13878:18;;;13871:30;13937:18;13917;;;13910:46;13973:18;;60963:60:0;13657:340:1;60963:60:0;61051:1;61042:6;:10;:33;;;;;61066:9;61056:6;:19;;61042:33;61034:59;;;;-1:-1:-1;;;61034:59:0;;25825:2:1;61034:59:0;;;25807:21:1;25864:2;25844:18;;;25837:30;25903:15;25883:18;;;25876:43;25936:18;;61034:59:0;25623:337:1;61034:59:0;58325:5;61128:6;61112:13;41347:10;:17;;41259:113;61112:13;:22;;;;:::i;:::-;:36;;61104:67;;;;-1:-1:-1;;;61104:67:0;;26167:2:1;61104:67:0;;;26149:21:1;26206:2;26186:18;;;26179:30;26245:20;26225:18;;;26218:48;26283:18;;61104:67:0;25965:342:1;61104:67:0;61188:16;;;;;;;61184:416;;;61274:11;;61255:31;;;;:18;:31;;;;;;61245:6;61229:13;41347:10;:17;;41259:113;61229:13;:22;;;;:::i;:::-;:57;;61221:88;;;;-1:-1:-1;;;61221:88:0;;26167:2:1;61221:88:0;;;26149:21:1;26206:2;26186:18;;;26179:30;26245:20;26225:18;;;26218:48;26283:18;;61221:88:0;25965:342:1;61221:88:0;61371:11;;61355:28;;;;:15;:28;;;;;;61346:37;;:6;:37;:::i;:::-;61332:9;:52;61324:81;;;;-1:-1:-1;;;61324:81:0;;26514:2:1;61324:81:0;;;26496:21:1;26553:2;26533:18;;;26526:30;26592:18;26572;;;26565:46;26628:18;;61324:81:0;26312:340:1;61324:81:0;61184:416;;;61486:11;;61472:26;;;;:13;:26;;;;;;61462:6;61446:13;41347:10;:17;;41259:113;61446:13;:22;;;;:::i;:::-;:52;;61438:83;;;;-1:-1:-1;;;61438:83:0;;26167:2:1;61438:83:0;;;26149:21:1;26206:2;26186:18;;;26179:30;26245:20;26225:18;;;26218:48;26283:18;;61438:83:0;25965:342:1;61438:83:0;61544:9;:14;61536:52;;;;-1:-1:-1;;;61536:52:0;;15663:2:1;61536:52:0;;;15645:21:1;15702:2;15682:18;;;15675:30;15741:27;15721:18;;;15714:55;15786:18;;61536:52:0;15461:349:1;61536:52:0;61612:12;18670:10;61637:42;;;-1:-1:-1;;;;;9700:55:1;;;61637:42:0;;;9682:74:1;9772:18;;9765:34;;;9815:18;;;9808:34;;;9655:18;;61637:42:0;;;;;;;;;;;;;61627:53;;61637:42;61627:53;;;;61700:17;;;;:11;:17;;;;;;61627:53;;-1:-1:-1;61700:17:0;;61699:18;61691:48;;;;-1:-1:-1;;;61691:48:0;;17181:2:1;61691:48:0;;;17163:21:1;17220:2;17200:18;;;17193:30;17259:19;17239:18;;;17232:47;17296:18;;61691:48:0;16979:341:1;61691:48:0;61758:23;61770:4;61776;61758:11;:23::i;:::-;61750:50;;;;-1:-1:-1;;;61750:50:0;;23274:2:1;61750:50:0;;;23256:21:1;23313:2;23293:18;;;23286:30;23352:16;23332:18;;;23325:44;23386:18;;61750:50:0;23072:338:1;61750:50:0;61813:17;;;;:11;:17;;;;;:24;;;;61833:4;61813:24;;;;;;61848:105;61873:6;61868:1;:11;61848:105;;61901:40;61911:10;61923:13;41347:10;:17;;41259:113;61923:13;:17;;61939:1;61923:17;:::i;:::-;61901:9;:40::i;:::-;61881:3;;;;:::i;:::-;;;;61848:105;;;;60875:1085;60706:1254;;;;:::o;58831:23::-;;;;;;;:::i;29965:155::-;30060:52;18670:10;30093:8;30103;30060:18;:52::i;63870:120::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;63952:16:::1;:30:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;63870:120::o;63752:110::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;63829:11:::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;63752:110::o;64421:171::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;64509:4:::1;::::0;;;::::1;;;64508:5;64500:32;;;::::0;-1:-1:-1;;;64500:32:0;;19118:2:1;64500:32:0::1;::::0;::::1;19100:21:1::0;19157:2;19137:18;;;19130:30;19196:16;19176:18;;;19169:44;19230:18;;64500:32:0::1;18916:338:1::0;64500:32:0::1;64543:16;:9;64555:4:::0;;64543:16:::1;:::i;:::-;-1:-1:-1::0;64570:14:0::1;::::0;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;64570:14:0;;;;::::1;::::0;:9:::1;::::0;:14:::1;:::i;31088:328::-:0;31263:41;18670:10;31296:7;31263:18;:41::i;:::-;31255:103;;;;-1:-1:-1;;;31255:103:0;;24308:2:1;31255:103:0;;;24290:21:1;24347:2;24327:18;;;24320:30;24386:34;24366:18;;;24359:62;24457:19;24437:18;;;24430:47;24494:19;;31255:103:0;24106:413:1;31255:103:0;31369:39;31383:4;31389:2;31393:7;31402:5;31369:13;:39::i;65667:160::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65751:1:::1;65742:5;:10;;:24;;;;;65765:1;65756:5;:10;;65742:24;65734:55;;;::::0;-1:-1:-1;;;65734:55:0;;21699:2:1;65734:55:0::1;::::0;::::1;21681:21:1::0;21738:2;21718:18;;;21711:30;21777:20;21757:18;;;21750:48;21815:18;;65734:55:0::1;21497:342:1::0;65734:55:0::1;65800:11;:19:::0;65667:160::o;65095:133::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65189:22:::1;::::0;;;:15:::1;:22;::::0;;;;;:31;65095:133::o;63264:448::-;32991:4;33015:16;;;:7;:16;;;;;;63337:13;;-1:-1:-1;;;;;33015:16:0;63363:76;;;;-1:-1:-1;;;63363:76:0;;22456:2:1;63363:76:0;;;22438:21:1;22495:2;22475:18;;;22468:30;22534:34;22514:18;;;22507:62;22605:17;22585:18;;;22578:45;22640:19;;63363:76:0;22254:411:1;63363:76:0;63460:18;;;;:9;:18;;;;;63454:32;;;;;:::i;:::-;:37;;-1:-1:-1;63450:95:0;;63515:18;;;;:9;:18;;;;;63508:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63264:448;;;:::o;63450:95::-;63565:9;63559:23;;;;;:::i;:::-;:28;;-1:-1:-1;63555:77:0;;63611:9;63604:16;;;;;:::i;63555:77::-;63673:9;63684:18;:7;:16;:18::i;:::-;63656:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63642:62;;63264:448;;;:::o;65236:135::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;65331:22:::1;::::0;;;:15:::1;:22;::::0;;;;;:32;65236:135::o;63998:110::-;19939:6;;-1:-1:-1;;;;;19939:6:0;60591:10;:21;;:50;;-1:-1:-1;60616:10:0;58471:42;60616:25;60591:50;60583:95;;;;-1:-1:-1;;;60583:95:0;;21338:2:1;60583:95:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;60583:95:0;21136:356:1;60583:95:0;64075:11:::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;63998:110::o;61968:658::-;62093:1;62079:11;;:15;62071:42;;;;-1:-1:-1;;;62071:42:0;;23965:2:1;62071:42:0;;;23947:21:1;24004:2;23984:18;;;23977:30;24043:16;24023:18;;;24016:44;24077:18;;62071:42:0;23763:338:1;62071:42:0;62132:11;;;;;;;62124:40;;;;-1:-1:-1;;;62124:40:0;;13859:2:1;62124:40:0;;;13841:21:1;13898:2;13878:18;;;13871:30;13937:18;13917;;;13910:46;13973:18;;62124:40:0;13657:340:1;62124:40:0;62192:1;62183:6;:10;:37;;;;;62207:13;;62197:6;:23;;62183:37;62175:63;;;;-1:-1:-1;;;62175:63:0;;25825:2:1;62175:63:0;;;25807:21:1;25864:2;25844:18;;;25837:30;25903:15;25883:18;;;25876:43;25936:18;;62175:63:0;25623:337:1;62175:63:0;58325:5;62273:6;62257:13;41347:10;:17;;41259:113;62257:13;:22;;;;:::i;:::-;:36;;62249:67;;;;-1:-1:-1;;;62249:67:0;;26167:2:1;62249:67:0;;;26149:21:1;26206:2;26186:18;;;26179:30;26245:20;26225:18;;;26218:48;26283:18;;62249:67:0;25965:342:1;62249:67:0;62377:11;;62361:28;;;;:15;:28;;;;;;62351:6;62335:13;41347:10;:17;;41259:113;62335:13;:22;;;;:::i;:::-;:54;;62327:85;;;;-1:-1:-1;;;62327:85:0;;26167:2:1;62327:85:0;;;26149:21:1;26206:2;26186:18;;;26179:30;26245:20;26225:18;;;26218:48;26283:18;;62327:85:0;25965:342:1;62327:85:0;62467:11;;62454:25;;;;:12;:25;;;;;;62445:34;;:6;:34;:::i;:::-;62431:9;:49;62423:78;;;;-1:-1:-1;;;62423:78:0;;26514:2:1;62423:78:0;;;26496:21:1;26553:2;26533:18;;;26526:30;26592:18;26572;;;26565:46;26628:18;;62423:78:0;26312:340:1;62423:78:0;62531:1;62514:105;62539:6;62534:1;:11;62514:105;;62567:40;62577:10;62589:13;41347:10;:17;;41259:113;62567:40;62547:3;;;;:::i;:::-;;;;62514:105;;20775:201;19939:6;;-1:-1:-1;;;;;19939:6:0;18670:10;20086:23;20078:68;;;;-1:-1:-1;;;20078:68:0;;21338:2:1;20078:68:0;;;21320:21:1;;;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21468:18;;20078:68:0;21136:356:1;20078:68:0;-1:-1:-1;;;;;20864:22:0;::::1;20856:73;;;::::0;-1:-1:-1;;;20856:73:0;;13452:2:1;20856:73:0::1;::::0;::::1;13434:21:1::0;13491:2;13471:18;;;13464:30;13530:34;13510:18;;;13503:62;13601:8;13581:18;;;13574:36;13627:19;;20856:73:0::1;13250:402:1::0;20856:73:0::1;20940:28;20959:8;20940:18;:28::i;855:387::-:0;1178:20;1226:8;;;855:387::o;42295:589::-;-1:-1:-1;;;;;42501:18:0;;42497:187;;42536:40;42568:7;43711:10;:17;;43684:24;;;;:15;:24;;;;;:44;;;43739:24;;;;;;;;;;;;43607:164;42536:40;42497:187;;;42606:2;-1:-1:-1;;;;;42598:10:0;:4;-1:-1:-1;;;;;42598:10:0;;42594:90;;42625:47;42658:4;42664:7;42625:32;:47::i;:::-;-1:-1:-1;;;;;42698:16:0;;42694:183;;42731:45;42768:7;42731:36;:45::i;42694:183::-;42804:4;-1:-1:-1;;;;;42798:10:0;:2;-1:-1:-1;;;;;42798:10:0;;42794:83;;42825:40;42853:2;42857:7;42825:27;:40::i;27168:305::-;27270:4;27307:40;;;27322:25;27307:40;;:105;;-1:-1:-1;27364:48:0;;;27379:33;27364:48;27307:105;:158;;;-1:-1:-1;11123:25:0;11108:40;;;;27429:36;10999:157;36908:174;36983:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;36983:29:0;;;;;;;;:24;;37037:23;36983:24;37037:14;:23::i;:::-;-1:-1:-1;;;;;37028:46:0;;;;;;;;;;;36908:174;;:::o;62634:194::-;62716:4;62758:62;62772:35;62801:5;55220:58;;8590:66:1;55220:58:0;;;8578:79:1;8673:12;;;8666:28;;;55087:7:0;;8710:12:1;;55220:58:0;;;;;;;;;;;;55210:69;;;;;;55203:76;;55018:269;;;;62772:35;62809:10;62758:13;:62::i;:::-;62740:14;;-1:-1:-1;;;;;62740:80:0;;;:14;;:80;;62634:194;-1:-1:-1;;;62634:194:0:o;33220:348::-;33313:4;33015:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33015:16:0;33330:73;;;;-1:-1:-1;;;33330:73:0;;16768:2:1;33330:73:0;;;16750:21:1;16807:2;16787:18;;;16780:30;16846:34;16826:18;;;16819:62;16917:14;16897:18;;;16890:42;16949:19;;33330:73:0;16566:408:1;33330:73:0;33414:13;33430:23;33445:7;33430:14;:23::i;:::-;33414:39;;33483:5;-1:-1:-1;;;;;33472:16:0;:7;-1:-1:-1;;;;;33472:16:0;;:51;;;;33516:7;-1:-1:-1;;;;;33492:31:0;:20;33504:7;33492:11;:20::i;:::-;-1:-1:-1;;;;;33492:31:0;;33472:51;:87;;;-1:-1:-1;;;;;;30312:25:0;;;30288:4;30312:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33527:32;33464:96;33220:348;-1:-1:-1;;;;33220:348:0:o;36212:578::-;36371:4;-1:-1:-1;;;;;36344:31:0;:23;36359:7;36344:14;:23::i;:::-;-1:-1:-1;;;;;36344:31:0;;36336:85;;;;-1:-1:-1;;;36336:85:0;;22046:2:1;36336:85:0;;;22028:21:1;22085:2;22065:18;;;22058:30;22124:34;22104:18;;;22097:62;22195:11;22175:18;;;22168:39;22224:19;;36336:85:0;21844:405:1;36336:85:0;-1:-1:-1;;;;;36440:16:0;;36432:65;;;;-1:-1:-1;;;36432:65:0;;14904:2:1;36432:65:0;;;14886:21:1;14943:2;14923:18;;;14916:30;14982:34;14962:18;;;14955:62;15053:6;15033:18;;;15026:34;15077:19;;36432:65:0;14702:400:1;36432:65:0;36510:39;36531:4;36537:2;36541:7;36510:20;:39::i;:::-;36614:29;36631:1;36635:7;36614:8;:29::i;:::-;-1:-1:-1;;;;;36656:15:0;;;;;;:9;:15;;;;;:20;;36675:1;;36656:15;:20;;36675:1;;36656:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36687:13:0;;;;;;:9;:13;;;;;:18;;36704:1;;36687:13;:18;;36704:1;;36687:18;:::i;:::-;;;;-1:-1:-1;;36716:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;36716:21:0;;;;;;;;;36755:27;;36716:16;;36755:27;;;;;;;36212:578;;;:::o;23525:120::-;22537:7;;;;;;;23061:41;;;;-1:-1:-1;;;23061:41:0;;11572:2:1;23061:41:0;;;11554:21:1;11611:2;11591:18;;;11584:30;11650:22;11630:18;;;11623:50;11690:18;;23061:41:0;11370:344:1;23061:41:0;23584:7:::1;:15:::0;;;::::1;::::0;;23615:22:::1;18670:10:::0;23624:12:::1;23615:22;::::0;-1:-1:-1;;;;;8897:55:1;;;8879:74;;8867:2;8852:18;23615:22:0::1;;;;;;;23525:120::o:0;21136:191::-;21229:6;;;-1:-1:-1;;;;;21246:17:0;;;;;;;;;;;21279:40;;21229:6;;;21246:17;21229:6;;21279:40;;21210:16;;21279:40;21199:128;21136:191;:::o;23266:118::-;22537:7;;;;;;;22791:9;22783:38;;;;-1:-1:-1;;;22783:38:0;;17527:2:1;22783:38:0;;;17509:21:1;17566:2;17546:18;;;17539:30;17605:18;17585;;;17578:46;17641:18;;22783:38:0;17325:340:1;22783:38:0;23326:7:::1;:14:::0;;;::::1;::::0;::::1;::::0;;23356:20:::1;23363:12;18670:10:::0;;18590:98;56823:106;56881:7;56912:1;56908;:5;:13;;56920:1;56908:13;;;56916:1;56908:13;56901:20;56823:106;-1:-1:-1;;;56823:106:0:o;33910:110::-;33986:26;33996:2;34000:7;33986:26;;;;;;;;;;;;:9;:26::i;37224:315::-;37379:8;-1:-1:-1;;;;;37370:17:0;:5;-1:-1:-1;;;;;37370:17:0;;;37362:55;;;;-1:-1:-1;;;37362:55:0;;15309:2:1;37362:55:0;;;15291:21:1;15348:2;15328:18;;;15321:30;15387:27;15367:18;;;15360:55;15432:18;;37362:55:0;15107:349:1;37362:55:0;-1:-1:-1;;;;;37428:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;37490:41;;9993::1;;;37490::0;;9966:18:1;37490:41:0;;;;;;;37224:315;;;:::o;32298:::-;32455:28;32465:4;32471:2;32475:7;32455:9;:28::i;:::-;32502:48;32525:4;32531:2;32535:7;32544:5;32502:22;:48::i;:::-;32494:111;;;;-1:-1:-1;;;32494:111:0;;13033:2:1;32494:111:0;;;13015:21:1;13072:2;13052:18;;;13045:30;13111:34;13091:18;;;13084:62;13182:20;13162:18;;;13155:48;13220:19;;32494:111:0;12831:414:1;24017:723:0;24073:13;24294:10;24290:53;;-1:-1:-1;;24321:10:0;;;;;;;;;;;;;;;;;;24017:723::o;24290:53::-;24368:5;24353:12;24409:78;24416:9;;24409:78;;24442:8;;;;:::i;:::-;;-1:-1:-1;24465:10:0;;-1:-1:-1;24473:2:0;24465:10;;:::i;:::-;;;24409:78;;;24497:19;24529:6;24519:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24519:17:0;;24497:39;;24547:154;24554:10;;24547:154;;24581:11;24591:1;24581:11;;:::i;:::-;;-1:-1:-1;24650:10:0;24658:2;24650:5;:10;:::i;:::-;24637:24;;:2;:24;:::i;:::-;24624:39;;24607:6;24614;24607:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;24678:11:0;24687:2;24678:11;;:::i;:::-;;;24547:154;;44398:988;44664:22;44714:1;44689:22;44706:4;44689:16;:22::i;:::-;:26;;;;:::i;:::-;44726:18;44747:26;;;:17;:26;;;;;;44664:51;;-1:-1:-1;44880:28:0;;;44876:328;;-1:-1:-1;;;;;44947:18:0;;44925:19;44947:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44998:30;;;;;;:44;;;45115:30;;:17;:30;;;;;:43;;;44876:328;-1:-1:-1;45300:26:0;;;;:17;:26;;;;;;;;45293:33;;;-1:-1:-1;;;;;45344:18:0;;;;;:12;:18;;;;;:34;;;;;;;45337:41;44398:988::o;45681:1079::-;45959:10;:17;45934:22;;45959:21;;45979:1;;45959:21;:::i;:::-;45991:18;46012:24;;;:15;:24;;;;;;46385:10;:26;;45934:46;;-1:-1:-1;46012:24:0;;45934:46;;46385:26;;;;;;:::i;:::-;;;;;;;;;46363:48;;46449:11;46424:10;46435;46424:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46529:28;;;:15;:28;;;;;;;:41;;;46701:24;;;;;46694:31;46736:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45752:1008;;;45681:1079;:::o;43185:221::-;43270:14;43287:20;43304:2;43287:16;:20::i;:::-;-1:-1:-1;;;;;43318:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43363:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43185:221:0:o;51169:231::-;51247:7;51268:17;51287:18;51309:27;51320:4;51326:9;51309:10;:27::i;:::-;51267:69;;;;51347:18;51359:5;51347:11;:18::i;:::-;-1:-1:-1;51383:9:0;51169:231;-1:-1:-1;;;51169:231:0:o;66937:245::-;22537:7;;;;;;;67089:9;67081:37;;;;-1:-1:-1;;;67081:37:0;;20994:2:1;67081:37:0;;;20976:21:1;21033:2;21013:18;;;21006:30;21072:17;21052:18;;;21045:45;21107:18;;67081:37:0;20792:339:1;67081:37:0;67129:45;67156:4;67162:2;67166:7;67129:26;:45::i;34247:321::-;34377:18;34383:2;34387:7;34377:5;:18::i;:::-;34428:54;34459:1;34463:2;34467:7;34476:5;34428:22;:54::i;:::-;34406:154;;;;-1:-1:-1;;;34406:154:0;;13033:2:1;34406:154:0;;;13015:21:1;13072:2;13052:18;;;13045:30;13111:34;13091:18;;;13084:62;13182:20;13162:18;;;13155:48;13220:19;;34406:154:0;12831:414:1;38104:799:0;38259:4;-1:-1:-1;;;;;38280:13:0;;1178:20;1226:8;38276:620;;38316:72;;;;;-1:-1:-1;;;;;38316:36:0;;;;;:72;;18670:10;;38367:4;;38373:7;;38382:5;;38316:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38316:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38312:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38558:13:0;;38554:272;;38601:60;;-1:-1:-1;;;38601:60:0;;13033:2:1;38601:60:0;;;13015:21:1;13072:2;13052:18;;;13045:30;13111:34;13091:18;;;13084:62;13182:20;13162:18;;;13155:48;13220:19;;38601:60:0;12831:414:1;38554:272:0;38776:6;38770:13;38761:6;38757:2;38753:15;38746:38;38312:529;38439:51;;38449:41;38439:51;;-1:-1:-1;38432:58:0;;38276:620;-1:-1:-1;38880:4:0;38104:799;;;;;;:::o;49059:1308::-;49140:7;49149:12;49374:9;:16;49394:2;49374:22;49370:990;;;49670:4;49655:20;;49649:27;49720:4;49705:20;;49699:27;49778:4;49763:20;;49757:27;49413:9;49749:36;49821:25;49832:4;49749:36;49649:27;49699;49821:10;:25::i;:::-;49814:32;;;;;;;;;49370:990;49868:9;:16;49888:2;49868:22;49864:496;;;50143:4;50128:20;;50122:27;50194:4;50179:20;;50173:27;50236:23;50247:4;50122:27;50173;50236:10;:23::i;:::-;50229:30;;;;;;;;49864:496;-1:-1:-1;50308:1:0;;-1:-1:-1;50312:35:0;49864:496;49059:1308;;;;;:::o;47330:643::-;47408:20;47399:5;:29;;;;;;;;:::i;:::-;;47395:571;;;47330:643;:::o;47395:571::-;47506:29;47497:5;:38;;;;;;;;:::i;:::-;;47493:473;;;47552:34;;-1:-1:-1;;;47552:34:0;;10874:2:1;47552:34:0;;;10856:21:1;10913:2;10893:18;;;10886:30;10952:26;10932:18;;;10925:54;10996:18;;47552:34:0;10672:348:1;47493:473:0;47617:35;47608:5;:44;;;;;;;;:::i;:::-;;47604:362;;;47669:41;;-1:-1:-1;;;47669:41:0;;12261:2:1;47669:41:0;;;12243:21:1;12300:2;12280:18;;;12273:30;12339:33;12319:18;;;12312:61;12390:18;;47669:41:0;12059:355:1;47604:362:0;47741:30;47732:5;:39;;;;;;;;:::i;:::-;;47728:238;;;47788:44;;-1:-1:-1;;;47788:44:0;;16365:2:1;47788:44:0;;;16347:21:1;16404:2;16384:18;;;16377:30;16443:34;16423:18;;;16416:62;16514:4;16494:18;;;16487:32;16536:19;;47788:44:0;16163:398:1;47728:238:0;47863:30;47854:5;:39;;;;;;;;:::i;:::-;;47850:116;;;47910:44;;-1:-1:-1;;;47910:44:0;;19817:2:1;47910:44:0;;;19799:21:1;19856:2;19836:18;;;19829:30;19895:34;19875:18;;;19868:62;19966:4;19946:18;;;19939:32;19988:19;;47910:44:0;19615:398:1;34904:382:0;-1:-1:-1;;;;;34984:16:0;;34976:61;;;;-1:-1:-1;;;34976:61:0;;20220:2:1;34976:61:0;;;20202:21:1;;;20239:18;;;20232:30;20298:34;20278:18;;;20271:62;20350:18;;34976:61:0;20018:356:1;34976:61:0;32991:4;33015:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33015:16:0;:30;35048:58;;;;-1:-1:-1;;;35048:58:0;;14204:2:1;35048:58:0;;;14186:21:1;14243:2;14223:18;;;14216:30;14282;14262:18;;;14255:58;14330:18;;35048:58:0;14002:352:1;35048:58:0;35119:45;35148:1;35152:2;35156:7;35119:20;:45::i;:::-;-1:-1:-1;;;;;35177:13:0;;;;;;:9;:13;;;;;:18;;35194:1;;35177:13;:18;;35194:1;;35177:18;:::i;:::-;;;;-1:-1:-1;;35206:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;35206:21:0;;;;;;;;35245:33;;35206:16;;;35245:33;;35206:16;;35245:33;34904:382;;:::o;52668:1632::-;52799:7;;53733:66;53720:79;;53716:163;;;-1:-1:-1;53832:1:0;;-1:-1:-1;53836:30:0;53816:51;;53716:163;53893:1;:7;;53898:2;53893:7;;:18;;;;;53904:1;:7;;53909:2;53904:7;;53893:18;53889:102;;;-1:-1:-1;53944:1:0;;-1:-1:-1;53948:30:0;53928:51;;53889:102;54105:24;;;54088:14;54105:24;;;;;;;;;10272:25:1;;;10345:4;10333:17;;10313:18;;;10306:45;;;;10367:18;;;10360:34;;;10410:18;;;10403:34;;;54105:24:0;;10244:19:1;;54105:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54105:24:0;;;;;;-1:-1:-1;;;;;;;54144:20:0;;54140:103;;54197:1;54201:29;54181:50;;;;;;;54140:103;54263:6;-1:-1:-1;54271:20:0;;-1:-1:-1;52668:1632:0;;;;;;;;:::o;51663:391::-;51777:7;;51886:66;51878:75;;51980:3;51976:12;;;51990:2;51972:21;52021:25;52032:4;51972:21;52041:1;51878:75;52021:10;:25::i;:::-;52014:32;;;;;;51663:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:347;431:8;441:6;495:3;488:4;480:6;476:17;472:27;462:55;;513:1;510;503:12;462:55;-1:-1:-1;536:20:1;;579:18;568:30;;565:50;;;611:1;608;601:12;565:50;648:4;640:6;636:17;624:29;;700:3;693:4;684:6;676;672:19;668:30;665:39;662:59;;;717:1;714;707:12;732:777;774:5;827:3;820:4;812:6;808:17;804:27;794:55;;845:1;842;835:12;794:55;881:6;868:20;907:18;944:2;940;937:10;934:36;;;950:18;;:::i;:::-;1084:2;1078:9;1146:4;1138:13;;989:66;1134:22;;;1158:2;1130:31;1126:40;1114:53;;;1182:18;;;1202:22;;;1179:46;1176:72;;;1228:18;;:::i;:::-;1268:10;1264:2;1257:22;1303:2;1295:6;1288:18;1349:3;1342:4;1337:2;1329:6;1325:15;1321:26;1318:35;1315:55;;;1366:1;1363;1356:12;1315:55;1430:2;1423:4;1415:6;1411:17;1404:4;1396:6;1392:17;1379:54;1477:1;1470:4;1465:2;1457:6;1453:15;1449:26;1442:37;1497:6;1488:15;;;;;;732:777;;;;:::o;1514:186::-;1573:6;1626:2;1614:9;1605:7;1601:23;1597:32;1594:52;;;1642:1;1639;1632:12;1594:52;1665:29;1684:9;1665:29;:::i;1705:260::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;1873:29;1892:9;1873:29;:::i;:::-;1863:39;;1921:38;1955:2;1944:9;1940:18;1921:38;:::i;:::-;1911:48;;1705:260;;;;;:::o;1970:328::-;2047:6;2055;2063;2116:2;2104:9;2095:7;2091:23;2087:32;2084:52;;;2132:1;2129;2122:12;2084:52;2155:29;2174:9;2155:29;:::i;:::-;2145:39;;2203:38;2237:2;2226:9;2222:18;2203:38;:::i;:::-;2193:48;;2288:2;2277:9;2273:18;2260:32;2250:42;;1970:328;;;;;:::o;2303:537::-;2398:6;2406;2414;2422;2475:3;2463:9;2454:7;2450:23;2446:33;2443:53;;;2492:1;2489;2482:12;2443:53;2515:29;2534:9;2515:29;:::i;:::-;2505:39;;2563:38;2597:2;2586:9;2582:18;2563:38;:::i;:::-;2553:48;;2648:2;2637:9;2633:18;2620:32;2610:42;;2703:2;2692:9;2688:18;2675:32;2730:18;2722:6;2719:30;2716:50;;;2762:1;2759;2752:12;2716:50;2785:49;2826:7;2817:6;2806:9;2802:22;2785:49;:::i;:::-;2775:59;;;2303:537;;;;;;;:::o;2845:254::-;2910:6;2918;2971:2;2959:9;2950:7;2946:23;2942:32;2939:52;;;2987:1;2984;2977:12;2939:52;3010:29;3029:9;3010:29;:::i;:::-;3000:39;;3058:35;3089:2;3078:9;3074:18;3058:35;:::i;3104:254::-;3172:6;3180;3233:2;3221:9;3212:7;3208:23;3204:32;3201:52;;;3249:1;3246;3239:12;3201:52;3272:29;3291:9;3272:29;:::i;:::-;3262:39;3348:2;3333:18;;;;3320:32;;-1:-1:-1;;;3104:254:1:o;3363:620::-;3460:6;3468;3476;3484;3492;3545:3;3533:9;3524:7;3520:23;3516:33;3513:53;;;3562:1;3559;3552:12;3513:53;3585:29;3604:9;3585:29;:::i;:::-;3575:39;;3661:2;3650:9;3646:18;3633:32;3623:42;;3712:2;3701:9;3697:18;3684:32;3674:42;;3767:2;3756:9;3752:18;3739:32;3794:18;3786:6;3783:30;3780:50;;;3826:1;3823;3816:12;3780:50;3865:58;3915:7;3906:6;3895:9;3891:22;3865:58;:::i;:::-;3363:620;;;;-1:-1:-1;3363:620:1;;-1:-1:-1;3942:8:1;;3839:84;3363:620;-1:-1:-1;;;3363:620:1:o;3988:180::-;4044:6;4097:2;4085:9;4076:7;4072:23;4068:32;4065:52;;;4113:1;4110;4103:12;4065:52;4136:26;4152:9;4136:26;:::i;4173:245::-;4231:6;4284:2;4272:9;4263:7;4259:23;4255:32;4252:52;;;4300:1;4297;4290:12;4252:52;4339:9;4326:23;4358:30;4382:5;4358:30;:::i;4423:249::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4593:9;4587:16;4612:30;4636:5;4612:30;:::i;4677:410::-;4748:6;4756;4809:2;4797:9;4788:7;4784:23;4780:32;4777:52;;;4825:1;4822;4815:12;4777:52;4865:9;4852:23;4898:18;4890:6;4887:30;4884:50;;;4930:1;4927;4920:12;4884:50;4969:58;5019:7;5010:6;4999:9;4995:22;4969:58;:::i;:::-;5046:8;;4943:84;;-1:-1:-1;4677:410:1;-1:-1:-1;;;;4677:410:1:o;5092:478::-;5172:6;5180;5188;5241:2;5229:9;5220:7;5216:23;5212:32;5209:52;;;5257:1;5254;5247:12;5209:52;5297:9;5284:23;5330:18;5322:6;5319:30;5316:50;;;5362:1;5359;5352:12;5316:50;5401:58;5451:7;5442:6;5431:9;5427:22;5401:58;:::i;:::-;5478:8;;5375:84;;-1:-1:-1;5560:2:1;5545:18;;;;5532:32;;5092:478;-1:-1:-1;;;;5092:478:1:o;5575:180::-;5634:6;5687:2;5675:9;5666:7;5662:23;5658:32;5655:52;;;5703:1;5700;5693:12;5655:52;-1:-1:-1;5726:23:1;;5575:180;-1:-1:-1;5575:180:1:o;5760:248::-;5828:6;5836;5889:2;5877:9;5868:7;5864:23;5860:32;5857:52;;;5905:1;5902;5895:12;5857:52;-1:-1:-1;;5928:23:1;;;5998:2;5983:18;;;5970:32;;-1:-1:-1;5760:248:1:o;6013:525::-;6108:6;6116;6124;6132;6185:3;6173:9;6164:7;6160:23;6156:33;6153:53;;;6202:1;6199;6192:12;6153:53;6238:9;6225:23;6215:33;;6295:2;6284:9;6280:18;6267:32;6257:42;;6346:2;6335:9;6331:18;6318:32;6308:42;;6401:2;6390:9;6386:18;6373:32;6428:18;6420:6;6417:30;6414:50;;;6460:1;6457;6450:12;6543:316;6584:3;6622:5;6616:12;6649:6;6644:3;6637:19;6665:63;6721:6;6714:4;6709:3;6705:14;6698:4;6691:5;6687:16;6665:63;:::i;:::-;6773:2;6761:15;6778:66;6757:88;6748:98;;;;6848:4;6744:109;;6543:316;-1:-1:-1;;6543:316:1:o;6864:185::-;6906:3;6944:5;6938:12;6959:52;7004:6;6999:3;6992:4;6985:5;6981:16;6959:52;:::i;:::-;7027:16;;;;;6864:185;-1:-1:-1;;6864:185:1:o;7054:1289::-;7230:3;7259:1;7292:6;7286:13;7322:3;7344:1;7372:9;7368:2;7364:18;7354:28;;7432:2;7421:9;7417:18;7454;7444:61;;7498:4;7490:6;7486:17;7476:27;;7444:61;7524:2;7572;7564:6;7561:14;7541:18;7538:38;7535:222;;;7611:77;7606:3;7599:90;7712:4;7709:1;7702:15;7742:4;7737:3;7730:17;7535:222;7773:18;7800:162;;;;7976:1;7971:320;;;;7766:525;;7800:162;7848:66;7837:9;7833:82;7828:3;7821:95;7945:6;7940:3;7936:16;7929:23;;7800:162;;7971:320;26912:1;26905:14;;;26949:4;26936:18;;8066:1;8080:165;8094:6;8091:1;8088:13;8080:165;;;8172:14;;8159:11;;;8152:35;8215:16;;;;8109:10;;8080:165;;;8084:3;;8274:6;8269:3;8265:16;8258:23;;7766:525;;;;;;;8307:30;8333:3;8325:6;8307:30;:::i;8964:511::-;9158:4;-1:-1:-1;;;;;9268:2:1;9260:6;9256:15;9245:9;9238:34;9320:2;9312:6;9308:15;9303:2;9292:9;9288:18;9281:43;;9360:6;9355:2;9344:9;9340:18;9333:34;9403:3;9398:2;9387:9;9383:18;9376:31;9424:45;9464:3;9453:9;9449:19;9441:6;9424:45;:::i;:::-;9416:53;8964:511;-1:-1:-1;;;;;;8964:511:1:o;10448:219::-;10597:2;10586:9;10579:21;10560:4;10617:44;10657:2;10646:9;10642:18;10634:6;10617:44;:::i;26965:128::-;27005:3;27036:1;27032:6;27029:1;27026:13;27023:39;;;27042:18;;:::i;:::-;-1:-1:-1;27078:9:1;;26965:128::o;27098:120::-;27138:1;27164;27154:35;;27169:18;;:::i;:::-;-1:-1:-1;27203:9:1;;27098:120::o;27223:228::-;27263:7;27389:1;27321:66;27317:74;27314:1;27311:81;27306:1;27299:9;27292:17;27288:105;27285:131;;;27396:18;;:::i;:::-;-1:-1:-1;27436:9:1;;27223:228::o;27456:125::-;27496:4;27524:1;27521;27518:8;27515:34;;;27529:18;;:::i;:::-;-1:-1:-1;27566:9:1;;27456:125::o;27586:258::-;27658:1;27668:113;27682:6;27679:1;27676:13;27668:113;;;27758:11;;;27752:18;27739:11;;;27732:39;27704:2;27697:10;27668:113;;;27799:6;27796:1;27793:13;27790:48;;;-1:-1:-1;;27834:1:1;27816:16;;27809:27;27586:258::o;27849:437::-;27928:1;27924:12;;;;27971;;;27992:61;;28046:4;28038:6;28034:17;28024:27;;27992:61;28099:2;28091:6;28088:14;28068:18;28065:38;28062:218;;;28136:77;28133:1;28126:88;28237:4;28234:1;28227:15;28265:4;28262:1;28255:15;28062:218;;27849:437;;;:::o;28291:195::-;28330:3;28361:66;28354:5;28351:77;28348:103;;;28431:18;;:::i;:::-;-1:-1:-1;28478:1:1;28467:13;;28291:195::o;28491:112::-;28523:1;28549;28539:35;;28554:18;;:::i;:::-;-1:-1:-1;28588:9:1;;28491:112::o;28608:184::-;28660:77;28657:1;28650:88;28757:4;28754:1;28747:15;28781:4;28778:1;28771:15;28797:184;28849:77;28846:1;28839:88;28946:4;28943:1;28936:15;28970:4;28967:1;28960:15;28986:184;29038:77;29035:1;29028:88;29135:4;29132:1;29125:15;29159:4;29156:1;29149:15;29175:184;29227:77;29224:1;29217:88;29324:4;29321:1;29314:15;29348:4;29345:1;29338:15;29364:184;29416:77;29413:1;29406:88;29513:4;29510:1;29503:15;29537:4;29534:1;29527:15;29553:184;29605:77;29602:1;29595:88;29702:4;29699:1;29692:15;29726:4;29723:1;29716:15;29742:177;29827:66;29820:5;29816:78;29809:5;29806:89;29796:117;;29909:1;29906;29899:12

Swarm Source

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