ETH Price: $3,119.19 (-1.52%)
 

Overview

Max Total Supply

201 BBD

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
32 BBD
0x2ccc2221618084c6d6b59f12845349ee2042856c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Brainbuddy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-14
*/

/*
.______   .______          ___       __  .__   __.    .______    __    __   _______   _______  ____    ____ 
|   _  \  |   _  \        /   \     |  | |  \ |  |    |   _  \  |  |  |  | |       \ |       \ \   \  /   / 
|  |_)  | |  |_)  |      /  ^  \    |  | |   \|  |    |  |_)  | |  |  |  | |  .--.  ||  .--.  | \   \/   /  
|   _  <  |      /      /  /_\  \   |  | |  . `  |    |   _  <  |  |  |  | |  |  |  ||  |  |  |  \_    _/   
|  |_)  | |  |\  \----./  _____  \  |  | |  |\   |    |  |_)  | |  `--'  | |  '--'  ||  '--'  |    |  |     
|______/  | _| `._____/__/     \__\ |__| |__| \__|    |______/   \______/  |_______/ |_______/     |__|     
                                                                                                            

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/utils/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/utils/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/math/[email protected]


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/security/[email protected]


// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


interface ILOBE {
    function burn(address from, uint256 amount) external;
    function mint(address to, uint256 amount) external;
}

interface IStakingToken {
    function update(address from, address to) external;
}

// File contracts/Brainbuddy.sol

pragma solidity ^0.8.4;






contract Brainbuddy is ERC721Enumerable, ReentrancyGuard, Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;

    struct BrainBuddyInfo {
        string name;
        string description;
    }

    mapping(uint256 => BrainBuddyInfo) public buddyInfo;

    uint256 public RESERVE_NFT = 100;     // Expected to use last 50 tokenIDs.
    uint256 public LOBE_Mint_NFT = 2500;
    uint256 public ETH_Mint_NFT = 7400;
    uint256 public constant MAX_NFT = 10000;

    uint256 public LOBE_PRICE = 3000 ether;
    uint256 public ETH_PRICE = 0.02 ether;
    uint256 public VIP_ETH_PRICE = 0.01 ether;
    uint256 public UPDATE_NAME_PRICE = 2000 ether;
    uint256 public UPDATE_DESCRIPTION_PRICE = 2000 ether;

    uint256 public PURCHASE_LIMIT = 50;

    uint256 public totalLOBEMinted;
    uint256 public totalETHMinted;
    uint256 public totalReserveClaimed;
    uint256 public publicTotalSupply;

    string public baseURI;
    string public blindURI;

    bool public isPublicSaleActive;
    bool public isReveal;

    ILOBE public LOBEContract;
    IStakingToken public stakingTokenContract;

    mapping(address => uint256) public publicSaleClaimed;

    mapping(address => uint256[]) public giveaway;

    mapping(address => bool) public isVIP;

    address public communityTreasuryWallet;
    address public LOBELiquidityWallet;

    event UpdateName(uint256 indexed tokenId, string name);
    event UpdateDescription(uint256 indexed tokenId, string description);

    constructor(address _community, address _liquidity, address _LOBE) ERC721("BrainBuddies", "BBD") {
        communityTreasuryWallet = _community;
        LOBELiquidityWallet = _liquidity;
        LOBEContract = ILOBE(_LOBE);
    }    

    // Function to start main sale
    function changePublicSaleStatus(bool _status) external onlyOwner {
        isPublicSaleActive = _status;
    }    

    // Function to reveal all NFTs
    function changeRevealStatus(bool _status) external onlyOwner {
        isReveal = _status;
    }  

    // Function to change LOBE mint price
    function changeLOBEPrice(uint256 amount) external onlyOwner {
        LOBE_PRICE = amount;
    }   

    // Function to change ETH mint price
    function changeETHPrice(uint256 amount) external onlyOwner {
        ETH_PRICE = amount;
    }    

    // Function to change VIP ETH mint price
    function changeVIPETHPrice(uint256 amount) external onlyOwner {
        VIP_ETH_PRICE = amount;
    } 

    // Function to change UPDATE name and description price
    function changeUpdateNameAndDescriptionPrice(uint256 _name, uint256 _description) external onlyOwner {
        UPDATE_NAME_PRICE = _name;
        UPDATE_DESCRIPTION_PRICE = _description;
    } 

    // Function to change max mint per wallet
    function changePurchaseLimit(uint256 amount) external onlyOwner {
        PURCHASE_LIMIT = amount;
    }   

    // Function to change LOBE mint to giveway
    function changeLOBEToGiveway(uint256 amount) external onlyOwner {
        require(totalLOBEMinted.add(amount) <= LOBE_Mint_NFT, "Amount exceed available.");
        LOBE_Mint_NFT = LOBE_Mint_NFT.sub(amount);
        RESERVE_NFT = RESERVE_NFT.add(amount);
    } 

    // Function to change ETH mint to giveway
    function changeETHToGiveway(uint256 amount) external onlyOwner {
        require(totalETHMinted.add(amount) <= ETH_Mint_NFT, "Amount exceed available.");
        ETH_Mint_NFT = ETH_Mint_NFT.sub(amount);
        RESERVE_NFT = RESERVE_NFT.add(amount);
    } 
    
    // Function VIP access to to addresses
    function giveVIPAccess(address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            isVIP[_addresses[i]] = true;
        }
    }

    // Function to set giveaway users
    function setGiveawayUsers(address[] memory _to, uint256[] memory _tokenIds) external onlyOwner {
        require(_to.length == _tokenIds.length, "array size mismatch");
        for(uint256 i = 0; i < _to.length; i++) {
            require(ownerOf(_tokenIds[i]) == address(0), "Already used tokenID has been set!");
            giveaway[_to[i]].push(_tokenIds[i]);
        }
    }

    // Function to set $LOBE and future staking token address
    function setContractAddresses(address _lobe, address _stakingToken) external onlyOwner {
        LOBEContract = ILOBE(_lobe);
        stakingTokenContract = IStakingToken(_stakingToken);
    }
    
    // Function to set Base and Blind URI
    function setURIs(string memory _blindURI, string memory _URI) external onlyOwner {
        blindURI = _blindURI;
        baseURI = _URI;        
    }

    // Function to update name
    function updateName(uint256 tokenId, string calldata name) external  {
        require(ownerOf(tokenId) == msg.sender, "Caller must be token owner");
        require(address(LOBEContract) != address(0), "No token contract set");

        bytes memory n = bytes(name);
        require(n.length > 0 && n.length < 25, "Invalid name length");
        require(
        sha256(n) != sha256(bytes(buddyInfo[tokenId].name)),
        "New name is same as current name"
        );

        LOBEContract.burn(msg.sender, UPDATE_NAME_PRICE);
        LOBEContract.mint(LOBELiquidityWallet, UPDATE_NAME_PRICE.div(100).mul(30));
        buddyInfo[tokenId].name = name;
        emit UpdateName(tokenId, name);
    }

    // Function to update description
    function updateDescription(uint256 tokenId, string calldata description) external  {
        require(ownerOf(tokenId) == msg.sender, "Caller must be token owner");
        require(address(LOBEContract) != address(0), "No token contract set");

        bytes memory d = bytes(description);
        require(d.length > 0 && d.length < 280, "Invalid description length");
        require(
            sha256(bytes(d)) != sha256(bytes(buddyInfo[tokenId].description)),
            "New description is same as current description"
        );

        LOBEContract.burn(msg.sender, UPDATE_DESCRIPTION_PRICE);
        LOBEContract.mint(LOBELiquidityWallet, UPDATE_DESCRIPTION_PRICE.div(100).mul(30));
        buddyInfo[tokenId].description = description;
        emit UpdateDescription(tokenId, description);
    }

    //Function to withdraw collected amount during minting by the owner
    function withdraw(address _to, uint256 _amount) external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance >= _amount, "Balance should atleast equal to amount");
        payable(_to).transfer(_amount);
    }    

    // Function to mint using LOBE
    function mintWithLOBE(uint256 _numOfTokens) public whenNotPaused nonReentrant {
        require(address(LOBEContract) != address(0), "No token contract set");
        require(isPublicSaleActive==true, "Sale Not Active");        
        require(totalLOBEMinted.add(_numOfTokens) <= LOBE_Mint_NFT, "Purchase would exceed max LOBE mint NFTs");
        LOBEContract.burn(msg.sender, _numOfTokens.mul(LOBE_PRICE));
        LOBEContract.mint(LOBELiquidityWallet, _numOfTokens.mul(LOBE_PRICE).div(100).mul(30));
        for(uint256 i = 0; i < _numOfTokens; i++) {
            _mint(msg.sender, publicTotalSupply);
            publicTotalSupply = publicTotalSupply.add(1);
        }
        totalLOBEMinted = totalLOBEMinted.add(_numOfTokens);        
    }

    // Function to mint using ETH
    function mintWithETH(uint256 _numOfTokens) public payable whenNotPaused nonReentrant {
        require(isPublicSaleActive==true, "Sale Not Active");
        require(publicSaleClaimed[msg.sender].add(_numOfTokens) <= PURCHASE_LIMIT, 
            "Above Sale Purchase Limit");
        require(totalETHMinted.add(_numOfTokens) <= ETH_Mint_NFT, "Purchase would exceed max ETH mint NFTs");
        if (isVIP[msg.sender]){
            require(VIP_ETH_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");
        } else {
            require(ETH_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");
        }
        for(uint256 i = 0; i < _numOfTokens; i++) {
            _mint(msg.sender, publicTotalSupply);
            publicTotalSupply = publicTotalSupply.add(1);
        }
        totalETHMinted = totalETHMinted.add(_numOfTokens);
        publicSaleClaimed[msg.sender] = publicSaleClaimed[msg.sender].add(_numOfTokens);
    }

    // Function to claim giveaway
    function claimGiveaway() external whenNotPaused nonReentrant {
        for(uint256 i=0; i < giveaway[msg.sender].length; i++) {            
            _safeMint(msg.sender, giveaway[msg.sender][i]);
            totalReserveClaimed = totalReserveClaimed.add(1);
        }
    }

    // Function to airdrop unclaimed
    function airdropNFT(address _to, uint256[] memory _tokenIds) external onlyOwner {
        for(uint256 i=0; i < _tokenIds.length; i++) {            
            _safeMint(_to, _tokenIds[i]);
            totalReserveClaimed = totalReserveClaimed.add(1);
        }
    }
    
    // Function to get token URI of given token ID
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!isReveal) {
            return string(abi.encodePacked(blindURI, _tokenId.toString()));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }    

    // Function to list own NFTs 
    function listMyNFTs(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {
            return new uint256[](0);
    	}
    	else {
    		uint256[] memory tokensId = new uint256[](tokenCount);
            for(uint256 i = 0; i < tokenCount; i++){
                tokensId[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokensId;
    	}        
    }

    // Function to get ETH mint price
    function getETHmintPrice() public view returns(uint256) {
        return isVIP[msg.sender] ? VIP_ETH_PRICE : ETH_PRICE;
    }

    // Function to pause 
    function pause() external onlyOwner {
        _pause();
    }

    // Function to unpause 
    function unpause() external onlyOwner {
        _unpause();
    }

    function transferFrom(address from, address to, uint256 tokenId)
        public        
        override(ERC721)
        nonReentrant
    {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        if (address(stakingTokenContract) != address(0)) {
            stakingTokenContract.update(from, to);
        }

        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(ERC721)
        nonReentrant
    {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        if (address(stakingTokenContract) != address(0)) {
            stakingTokenContract.update(from, to);
        }

        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_community","type":"address"},{"internalType":"address","name":"_liquidity","type":"address"},{"internalType":"address","name":"_LOBE","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"UpdateDescription","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"UpdateName","type":"event"},{"inputs":[],"name":"ETH_Mint_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBEContract","outputs":[{"internalType":"contract ILOBE","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBELiquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBE_Mint_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_DESCRIPTION_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_NAME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIP_ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"airdropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buddyInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeETHPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeETHToGiveway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeLOBEPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeLOBEToGiveway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changePurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_name","type":"uint256"},{"internalType":"uint256","name":"_description","type":"uint256"}],"name":"changeUpdateNameAndDescriptionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeVIPETHPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityTreasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giveVIPAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"giveaway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isVIP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"listMyNFTs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintWithLOBE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTotalSupply","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lobe","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"}],"name":"setContractAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"setGiveawayUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingTokenContract","outputs":[{"internalType":"contract IStakingToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalETHMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLOBEMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"},{"internalType":"string","name":"description","type":"string"}],"name":"updateDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"updateName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600d556109c4600e55611ce8600f5568a2a15d09519be0000060105566470de4df820000601155662386f26fc10000601255686c6b935b8bbd400000601355686c6b935b8bbd40000060145560326015553480156200006457600080fd5b50604051620046d2380380620046d2833981016040819052620000879162000276565b604080518082018252600c81526b427261696e4275646469657360a01b60208083019182528351808501909452600384526210909160ea1b908401528151919291620000d691600091620001b3565b508051620000ec906001906020840190620001b3565b50506001600a5550620000ff3362000161565b600b805460ff60a01b19169055602180546001600160a01b039485166001600160a01b031991821617909155602280549385169390911692909217909155601c805491909216620100000262010000600160b01b0319909116179055620002fd565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c190620002c0565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b80516001600160a01b03811681146200027157600080fd5b919050565b6000806000606084860312156200028c57600080fd5b620002978462000259565b9250620002a76020850162000259565b9150620002b76040850162000259565b90509250925092565b600181811c90821680620002d557607f821691505b60208210811415620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b6143c5806200030d6000396000f3fe6080604052600436106104055760003560e01c806370a0823111610213578063bf5f559711610123578063e8254174116100ab578063f2fde38b1161007a578063f2fde38b14610bbb578063f3fef3a314610bdb578063f4201c3c14610bfb578063f72e2d0d14610c2a578063fae4c7f914610c4a57600080fd5b8063e825417414610b27578063e985e9c514610b47578063eff9553714610b90578063f14cdf6e14610ba557600080fd5b8063d28a1f1d116100f2578063d28a1f1d14610a81578063d3bfe07714610a97578063d3c553ad14610ac4578063d75e611014610af1578063e365eca614610b0757600080fd5b8063bf5f559714610a0b578063bfecf89514610a2b578063c87b56dd14610a41578063cd931e4014610a6157600080fd5b8063949028a7116101a6578063a29fb1fd11610175578063a29fb1fd14610967578063ac32be6014610987578063b19ec5e2146109b5578063b88d4fde146109d5578063b985add8146109f557600080fd5b8063949028a7146108fc57806395d89b411461091c57806398e9018414610931578063a22cb4651461094757600080fd5b8063881b884a116101e2578063881b884a146108925780638832bc29146108b25780638d007f69146108c85780638da5cb5b146108de57600080fd5b806370a0823114610822578063715018a61461084257806373da60ad146108575780638456cb591461087d57600080fd5b806340146353116103195780635ad71002116102a15780635f36fa26116102705780635f36fa26146107ab5780636352211e146107c15780636aa605f6146107e15780636c0360eb146107f75780636fdaddf11461080c57600080fd5b80635ad71002146107415780635c7b9f89146107615780635c975abb146107775780635db623581461079657600080fd5b80634f6ccce7116102e85780634f6ccce7146106ab578063530e3b52146106cb57806353e76f2c146106eb578063560c155f1461070b578063586892191461072157600080fd5b8063401463531461063657806342842e0e146106565780634af9bc10146106765780634d78a0f71461068b57600080fd5b8063185c6a6e1161039c5780632c3b372e1161036b5780632c3b372e146105b85780632ee75a40146105cb5780632f745c59146105e1578063376ea8e3146106015780633f4ba83a1461062157600080fd5b8063185c6a6e1461053e5780631ae563501461055e5780631e84c4131461057e57806323b872dd1461059857600080fd5b8063095ea7b3116103d8578063095ea7b3146104c757806314dee4b3146104e9578063173ac3df1461050957806318160ddd1461052957600080fd5b806301ffc9a71461040a578063050225ea1461043f57806306fdde031461046d578063081812fc1461048f575b600080fd5b34801561041657600080fd5b5061042a610425366004613d0e565b610c69565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b5061045f61045a366004613c21565b610c94565b604051908152602001610436565b34801561047957600080fd5b50610482610cc5565b604051610436919061401b565b34801561049b57600080fd5b506104af6104aa366004613da2565b610d57565b6040516001600160a01b039091168152602001610436565b3480156104d357600080fd5b506104e76104e2366004613c21565b610df1565b005b3480156104f557600080fd5b506104e7610504366004613dbb565b610f07565b34801561051557600080fd5b50601d546104af906001600160a01b031681565b34801561053557600080fd5b5060085461045f565b34801561054a57600080fd5b506021546104af906001600160a01b031681565b34801561056a57600080fd5b506104e7610579366004613ba9565b6112ac565b34801561058a57600080fd5b50601c5461042a9060ff1681565b3480156105a457600080fd5b506104e76105b3366004613af1565b611328565b6104e76105c6366004613da2565b611405565b3480156105d757600080fd5b5061045f60135481565b3480156105ed57600080fd5b5061045f6105fc366004613c21565b6116ac565b34801561060d57600080fd5b506104e761061c366004613c4b565b611742565b34801561062d57600080fd5b506104e76117d8565b34801561064257600080fd5b506104e7610651366004613da2565b61180c565b34801561066257600080fd5b506104e7610671366004613af1565b61183b565b34801561068257600080fd5b506104e7611856565b34801561069757600080fd5b506104e76106a6366004613e37565b611924565b3480156106b757600080fd5b5061045f6106c6366004613da2565b611959565b3480156106d757600080fd5b506104e76106e6366004613da2565b6119ec565b3480156106f757600080fd5b506104e7610706366004613dbb565b611a1b565b34801561071757600080fd5b5061045f600e5481565b34801561072d57600080fd5b506104e761073c366004613cda565b611d80565b34801561074d57600080fd5b506104e761075c366004613da2565b611dbd565b34801561076d57600080fd5b5061045f60125481565b34801561078357600080fd5b50600b54600160a01b900460ff1661042a565b3480156107a257600080fd5b5061045f611e63565b3480156107b757600080fd5b5061045f60185481565b3480156107cd57600080fd5b506104af6107dc366004613da2565b611e87565b3480156107ed57600080fd5b5061045f60165481565b34801561080357600080fd5b50610482611efe565b34801561081857600080fd5b5061045f61271081565b34801561082e57600080fd5b5061045f61083d366004613aa3565b611f8c565b34801561084e57600080fd5b506104e7612013565b34801561086357600080fd5b50601c546104af906201000090046001600160a01b031681565b34801561088957600080fd5b506104e7612047565b34801561089e57600080fd5b506104e76108ad366004613c80565b612079565b3480156108be57600080fd5b5061045f60115481565b3480156108d457600080fd5b5061045f600d5481565b3480156108ea57600080fd5b50600b546001600160a01b03166104af565b34801561090857600080fd5b506104e7610917366004613cda565b612205565b34801561092857600080fd5b50610482612249565b34801561093d57600080fd5b5061045f60145481565b34801561095357600080fd5b506104e7610962366004613bf7565b612258565b34801561097357600080fd5b506104e7610982366004613da2565b612263565b34801561099357600080fd5b506109a76109a2366004613da2565b612292565b60405161043692919061402e565b3480156109c157600080fd5b506104e76109d0366004613da2565b6123be565b3480156109e157600080fd5b506104e76109f0366004613b2d565b6123ed565b348015610a0157600080fd5b5061045f60195481565b348015610a1757600080fd5b506104e7610a26366004613da2565b6124cc565b348015610a3757600080fd5b5061045f600f5481565b348015610a4d57600080fd5b50610482610a5c366004613da2565b612790565b348015610a6d57600080fd5b506104e7610a7c366004613abe565b612860565b348015610a8d57600080fd5b5061045f60175481565b348015610aa357600080fd5b50610ab7610ab2366004613aa3565b6128c4565b6040516104369190613fa8565b348015610ad057600080fd5b5061045f610adf366004613aa3565b601e6020526000908152604090205481565b348015610afd57600080fd5b5061045f60155481565b348015610b1357600080fd5b506104e7610b22366004613da2565b612983565b348015610b3357600080fd5b506104e7610b42366004613d48565b612a23565b348015610b5357600080fd5b5061042a610b62366004613abe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b9c57600080fd5b50610482612a74565b348015610bb157600080fd5b5061045f60105481565b348015610bc757600080fd5b506104e7610bd6366004613aa3565b612a81565b348015610be757600080fd5b506104e7610bf6366004613c21565b612b1c565b348015610c0757600080fd5b5061042a610c16366004613aa3565b602080526000908152604090205460ff1681565b348015610c3657600080fd5b506022546104af906001600160a01b031681565b348015610c5657600080fd5b50601c5461042a90610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610c8e5750610c8e82612be2565b92915050565b601f6020528160005260406000208181548110610cb057600080fd5b90600052602060002001600091509150505481565b606060008054610cd4906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d00906142a7565b8015610d4d5780601f10610d2257610100808354040283529160200191610d4d565b820191906000526020600020905b815481529060010190602001808311610d3057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610dd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610dfc82611e87565b9050806001600160a01b0316836001600160a01b03161415610e6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610dcc565b336001600160a01b0382161480610e865750610e868133610b62565b610ef85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dcc565b610f028383612c32565b505050565b33610f1184611e87565b6001600160a01b031614610f675760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610dcc565b601c546201000090046001600160a01b0316610f955760405162461bcd60e51b8152600401610dcc906140d8565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590610fe257506101188151105b61102e5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465736372697074696f6e206c656e6774680000000000006044820152606401610dcc565b6002600c60008681526020019081526020016000206001016040516110539190613f3a565b602060405180830381855afa158015611070573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110939190613cf5565b6002826040516110a39190613f1e565b602060405180830381855afa1580156110c0573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110e39190613cf5565b14156111485760405162461bcd60e51b815260206004820152602e60248201527f4e6577206465736372697074696f6e2069732073616d6520617320637572726560448201526d373a103232b9b1b934b83a34b7b760911b6064820152608401610dcc565b601c54601454604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b15801561119d57600080fd5b505af11580156111b1573d6000803e3d6000fd5b5050601c546022546014546001600160a01b0362010000909304831694506340c10f1993509116906111f190601e906111eb906064612ca0565b90612cb3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561123757600080fd5b505af115801561124b573d6000803e3d6000fd5b5050506000858152600c6020526040902061126b9150600101848461381e565b50837fa5eb4fe2f21ddb28c752c9927387264d67ce06b0ce619ad8b4b06d8dfe948347848460405161129e929190613fec565b60405180910390a250505050565b600b546001600160a01b031633146112d65760405162461bcd60e51b8152600401610dcc90614107565b60005b8151811015610f0257611305838383815181106112f8576112f861434d565b6020026020010151612cbf565b601854611313906001612cd9565b60185580611320816142dc565b9150506112d9565b6002600a54141561134b5760405162461bcd60e51b8152600401610dcc9061418d565b6002600a5561135b335b82612ce5565b6113775760405162461bcd60e51b8152600401610dcc9061413c565b601d546001600160a01b0316156113f057601d5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b1580156113d757600080fd5b505af11580156113eb573d6000803e3d6000fd5b505050505b6113fb838383612ddc565b50506001600a5550565b600b54600160a01b900460ff161561142f5760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156114525760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55601c5460ff1615156001146114a05760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610dcc565b601554336000908152601e60205260409020546114bd9083612cd9565b111561150b5760405162461bcd60e51b815260206004820152601960248201527f41626f76652053616c65205075726368617365204c696d6974000000000000006044820152606401610dcc565b600f5460175461151b9083612cd9565b11156115795760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d617820455448206d696044820152666e74204e46547360c81b6064820152608401610dcc565b33600090815260208052604090205460ff16156115e257601254349061159f9083612cb3565b146115dd5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610dcc565b61162f565b60115434906115f19083612cb3565b1461162f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610dcc565b60005b818110156116695761164633601954612e0c565b601954611654906001612cd9565b60195580611661816142dc565b915050611632565b506017546116779082612cd9565b601755336000908152601e60205260409020546116949082612cd9565b336000908152601e6020526040902055506001600a55565b60006116b783611f8c565b82106117195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610dcc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610dcc90614107565b60005b81518110156117d4576001602060008484815181106117905761179061434d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117cc816142dc565b91505061176f565b5050565b600b546001600160a01b031633146118025760405162461bcd60e51b8152600401610dcc90614107565b61180a612f5a565b565b600b546001600160a01b031633146118365760405162461bcd60e51b8152600401610dcc90614107565b601555565b610f02838383604051806020016040528060008152506123ed565b600b54600160a01b900460ff16156118805760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156118a35760405162461bcd60e51b8152600401610dcc9061418d565b6002600a5560005b336000908152601f602052604090205481101561191c57336000818152601f6020526040902080546118f9929190849081106118e9576118e961434d565b9060005260206000200154612cbf565b601854611907906001612cd9565b60185580611914816142dc565b9150506118ab565b506001600a55565b600b546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610dcc90614107565b601391909155601455565b600061196460085490565b82106119c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610dcc565b600882815481106119da576119da61434d565b90600052602060002001549050919050565b600b546001600160a01b03163314611a165760405162461bcd60e51b8152600401610dcc90614107565b601155565b33611a2584611e87565b6001600160a01b031614611a7b5760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610dcc565b601c546201000090046001600160a01b0316611aa95760405162461bcd60e51b8152600401610dcc906140d8565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590611af5575060198151105b611b375760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610dcc565b6000848152600c6020526040908190209051600291611b5591613f3a565b602060405180830381855afa158015611b72573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611b959190613cf5565b600282604051611ba59190613f1e565b602060405180830381855afa158015611bc2573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611be59190613cf5565b1415611c335760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610dcc565b601c54601354604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611c8857600080fd5b505af1158015611c9c573d6000803e3d6000fd5b5050601c546022546013546001600160a01b0362010000909304831694506340c10f199350911690611cd690601e906111eb906064612ca0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b5050506000858152600c60205260409020611d4d9150848461381e565b50837fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab134848460405161129e929190613fec565b600b546001600160a01b03163314611daa5760405162461bcd60e51b8152600401610dcc90614107565b601c805460ff1916911515919091179055565b600b546001600160a01b03163314611de75760405162461bcd60e51b8152600401610dcc90614107565b600f54601754611df79083612cd9565b1115611e405760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610dcc565b600f54611e4d9082612ff7565b600f55600d54611e5d9082612cd9565b600d5550565b33600090815260208052604081205460ff16611e80575060115490565b5060125490565b6000818152600260205260408120546001600160a01b031680610c8e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610dcc565b601a8054611f0b906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f37906142a7565b8015611f845780601f10611f5957610100808354040283529160200191611f84565b820191906000526020600020905b815481529060010190602001808311611f6757829003601f168201915b505050505081565b60006001600160a01b038216611ff75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610dcc565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461203d5760405162461bcd60e51b8152600401610dcc90614107565b61180a6000613003565b600b546001600160a01b031633146120715760405162461bcd60e51b8152600401610dcc90614107565b61180a613055565b600b546001600160a01b031633146120a35760405162461bcd60e51b8152600401610dcc90614107565b80518251146120ea5760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610dcc565b60005b8251811015610f025760006001600160a01b03166121238383815181106121165761211661434d565b6020026020010151611e87565b6001600160a01b0316146121845760405162461bcd60e51b815260206004820152602260248201527f416c7265616479207573656420746f6b656e494420686173206265656e207365604482015261742160f01b6064820152608401610dcc565b601f600084838151811061219a5761219a61434d565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208282815181106121d4576121d461434d565b60209081029190910181015182546001810184556000938452919092200155806121fd816142dc565b9150506120ed565b600b546001600160a01b0316331461222f5760405162461bcd60e51b8152600401610dcc90614107565b601c80549115156101000261ff0019909216919091179055565b606060018054610cd4906142a7565b6117d43383836130ba565b600b546001600160a01b0316331461228d5760405162461bcd60e51b8152600401610dcc90614107565b601255565b600c602052600090815260409020805481906122ad906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546122d9906142a7565b80156123265780601f106122fb57610100808354040283529160200191612326565b820191906000526020600020905b81548152906001019060200180831161230957829003601f168201915b50505050509080600101805461233b906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612367906142a7565b80156123b45780601f10612389576101008083540402835291602001916123b4565b820191906000526020600020905b81548152906001019060200180831161239757829003601f168201915b5050505050905082565b600b546001600160a01b031633146123e85760405162461bcd60e51b8152600401610dcc90614107565b601055565b6002600a5414156124105760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55612420335b83612ce5565b61243c5760405162461bcd60e51b8152600401610dcc9061413c565b601d546001600160a01b0316156124b557601d5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561249c57600080fd5b505af11580156124b0573d6000803e3d6000fd5b505050505b6124c184848484613189565b50506001600a555050565b600b54600160a01b900460ff16156124f65760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156125195760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55601c546201000090046001600160a01b031661254c5760405162461bcd60e51b8152600401610dcc906140d8565b601c5460ff1615156001146125955760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610dcc565b600e546016546125a59083612cd9565b11156126045760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178204c4f4245206d604482015267696e74204e46547360c01b6064820152608401610dcc565b601c60029054906101000a90046001600160a01b03166001600160a01b0316639dc29fac3361263e60105485612cb390919063ffffffff16565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561268457600080fd5b505af1158015612698573d6000803e3d6000fd5b5050601c546022546010546001600160a01b0362010000909304831694506340c10f1993509116906126df90601e906111eb906064906126d9908990612cb3565b90612ca0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561272557600080fd5b505af1158015612739573d6000803e3d6000fd5b5050505060005b818110156127775761275433601954612e0c565b601954612762906001612cd9565b6019558061276f816142dc565b915050612740565b506016546127859082612cd9565b601655506001600a55565b6000818152600260205260409020546060906001600160a01b031661280f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dcc565b601c54610100900460ff1661285057601b612829836131ba565b60405160200161283a929190613f46565b6040516020818303038152906040529050919050565b601a612829836131ba565b919050565b600b546001600160a01b0316331461288a5760405162461bcd60e51b8152600401610dcc90614107565b601c805462010000600160b01b031916620100006001600160a01b0394851602179055601d80546001600160a01b03191691909216179055565b606060006128d183611f8c565b9050806128f25760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561290d5761290d614363565b604051908082528060200260200182016040528015612936578160200160208202803683370190505b50905060005b828110156128ea5761294e85826116ac565b8282815181106129605761296061434d565b602090810291909101015280612975816142dc565b91505061293c565b50919050565b600b546001600160a01b031633146129ad5760405162461bcd60e51b8152600401610dcc90614107565b600e546016546129bd9083612cd9565b1115612a065760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610dcc565b600e54612a139082612ff7565b600e55600d54611e5d9082612cd9565b600b546001600160a01b03163314612a4d5760405162461bcd60e51b8152600401610dcc90614107565b8151612a6090601b9060208501906138a2565b508051610f0290601a9060208401906138a2565b601b8054611f0b906142a7565b600b546001600160a01b03163314612aab5760405162461bcd60e51b8152600401610dcc90614107565b6001600160a01b038116612b105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dcc565b612b1981613003565b50565b600b546001600160a01b03163314612b465760405162461bcd60e51b8152600401610dcc90614107565b4781811015612ba65760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610dcc565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015612bdc573d6000803e3d6000fd5b50505050565b60006001600160e01b031982166380ac58cd60e01b1480612c1357506001600160e01b03198216635b5e139f60e01b145b80610c8e57506301ffc9a760e01b6001600160e01b0319831614610c8e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c6782611e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cac8284614231565b9392505050565b6000612cac8284614245565b6117d48282604051806020016040528060008152506132b8565b6000612cac8284614219565b6000818152600260205260408120546001600160a01b0316612d5e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dcc565b6000612d6983611e87565b9050806001600160a01b0316846001600160a01b03161480612da45750836001600160a01b0316612d9984610d57565b6001600160a01b0316145b80612dd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b612de533611355565b612e015760405162461bcd60e51b8152600401610dcc9061413c565b610f028383836132eb565b6001600160a01b038216612e625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dcc565b6000818152600260205260409020546001600160a01b031615612ec75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610dcc565b612ed360008383613496565b6001600160a01b0382166000908152600360205260408120805460019290612efc908490614219565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b54600160a01b900460ff16612faa5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610dcc565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612cac8284614264565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff161561307f5760405162461bcd60e51b8152600401610dcc906140ae565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612fda3390565b816001600160a01b0316836001600160a01b0316141561311c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dcc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6131923361241a565b6131ae5760405162461bcd60e51b8152600401610dcc9061413c565b612bdc8484848461354e565b6060816131de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561320857806131f2816142dc565b91506132019050600a83614231565b91506131e2565b60008167ffffffffffffffff81111561322357613223614363565b6040519080825280601f01601f19166020018201604052801561324d576020820181803683370190505b5090505b8415612dd457613262600183614264565b915061326f600a866142f7565b61327a906030614219565b60f81b81838151811061328f5761328f61434d565b60200101906001600160f81b031916908160001a9053506132b1600a86614231565b9450613251565b6132c28383612e0c565b6132cf6000848484613581565b610f025760405162461bcd60e51b8152600401610dcc9061405c565b826001600160a01b03166132fe82611e87565b6001600160a01b0316146133665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610dcc565b6001600160a01b0382166133c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610dcc565b6133d3838383613496565b6133de600082612c32565b6001600160a01b0383166000908152600360205260408120805460019290613407908490614264565b90915550506001600160a01b0382166000908152600360205260408120805460019290613435908490614219565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166134f1576134ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613514565b816001600160a01b0316836001600160a01b03161461351457613514838261368e565b6001600160a01b03821661352b57610f028161372b565b826001600160a01b0316826001600160a01b031614610f0257610f0282826137da565b6135598484846132eb565b61356584848484613581565b612bdc5760405162461bcd60e51b8152600401610dcc9061405c565b60006001600160a01b0384163b1561368357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135c5903390899088908890600401613f6b565b602060405180830381600087803b1580156135df57600080fd5b505af192505050801561360f575060408051601f3d908101601f1916820190925261360c91810190613d2b565b60015b613669573d80801561363d576040519150601f19603f3d011682016040523d82523d6000602084013e613642565b606091505b5080516136615760405162461bcd60e51b8152600401610dcc9061405c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dd4565b506001949350505050565b6000600161369b84611f8c565b6136a59190614264565b6000838152600760205260409020549091508082146136f8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061373d90600190614264565b600083815260096020526040812054600880549394509092849081106137655761376561434d565b9060005260206000200154905080600883815481106137865761378661434d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137be576137be614337565b6001900381819060005260206000200160009055905550505050565b60006137e583611f8c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461382a906142a7565b90600052602060002090601f01602090048101928261384c5760008555613892565b82601f106138655782800160ff19823516178555613892565b82800160010185558215613892579182015b82811115613892578235825591602001919060010190613877565b5061389e929150613916565b5090565b8280546138ae906142a7565b90600052602060002090601f0160209004810192826138d05760008555613892565b82601f106138e957805160ff1916838001178555613892565b82800160010185558215613892579182015b828111156138925782518255916020019190600101906138fb565b5b8082111561389e5760008155600101613917565b600067ffffffffffffffff83111561394557613945614363565b613958601f8401601f19166020016141c4565b905082815283838301111561396c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461285b57600080fd5b600082601f8301126139ab57600080fd5b813560206139c06139bb836141f5565b6141c4565b80838252828201915082860187848660051b89010111156139e057600080fd5b60005b85811015613a06576139f482613983565b845292840192908401906001016139e3565b5090979650505050505050565b600082601f830112613a2457600080fd5b81356020613a346139bb836141f5565b80838252828201915082860187848660051b8901011115613a5457600080fd5b60005b85811015613a0657813584529284019290840190600101613a57565b8035801515811461285b57600080fd5b600082601f830112613a9457600080fd5b612cac8383356020850161392b565b600060208284031215613ab557600080fd5b612cac82613983565b60008060408385031215613ad157600080fd5b613ada83613983565b9150613ae860208401613983565b90509250929050565b600080600060608486031215613b0657600080fd5b613b0f84613983565b9250613b1d60208501613983565b9150604084013590509250925092565b60008060008060808587031215613b4357600080fd5b613b4c85613983565b9350613b5a60208601613983565b925060408501359150606085013567ffffffffffffffff811115613b7d57600080fd5b8501601f81018713613b8e57600080fd5b613b9d8782356020840161392b565b91505092959194509250565b60008060408385031215613bbc57600080fd5b613bc583613983565b9150602083013567ffffffffffffffff811115613be157600080fd5b613bed85828601613a13565b9150509250929050565b60008060408385031215613c0a57600080fd5b613c1383613983565b9150613ae860208401613a73565b60008060408385031215613c3457600080fd5b613c3d83613983565b946020939093013593505050565b600060208284031215613c5d57600080fd5b813567ffffffffffffffff811115613c7457600080fd5b612dd48482850161399a565b60008060408385031215613c9357600080fd5b823567ffffffffffffffff80821115613cab57600080fd5b613cb78683870161399a565b93506020850135915080821115613ccd57600080fd5b50613bed85828601613a13565b600060208284031215613cec57600080fd5b612cac82613a73565b600060208284031215613d0757600080fd5b5051919050565b600060208284031215613d2057600080fd5b8135612cac81614379565b600060208284031215613d3d57600080fd5b8151612cac81614379565b60008060408385031215613d5b57600080fd5b823567ffffffffffffffff80821115613d7357600080fd5b613d7f86838701613a83565b93506020850135915080821115613d9557600080fd5b50613bed85828601613a83565b600060208284031215613db457600080fd5b5035919050565b600080600060408486031215613dd057600080fd5b83359250602084013567ffffffffffffffff80821115613def57600080fd5b818601915086601f830112613e0357600080fd5b813581811115613e1257600080fd5b876020828501011115613e2457600080fd5b6020830194508093505050509250925092565b60008060408385031215613e4a57600080fd5b50508035926020909101359150565b60008151808452613e7181602086016020860161427b565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680613e9f57607f831692505b6020808410821415613ec157634e487b7160e01b600052602260045260246000fd5b818015613ed55760018114613ee657613f12565b60ff19861689528489019650613f12565b876000528160002060005b86811015613f0a5781548b820152908501908301613ef1565b505084890196505b50505050505092915050565b60008251613f3081846020870161427b565b9190910192915050565b6000612cac8284613e85565b6000613f528285613e85565b8351613f6281836020880161427b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613f9e90830184613e59565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613fe057835183529284019291840191600101613fc4565b50909695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612cac6020830184613e59565b6040815260006140416040830185613e59565b82810360208401526140538185613e59565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b602080825260159082015274139bc81d1bdad95b8818dbdb9d1c9858dd081cd95d605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156141ed576141ed614363565b604052919050565b600067ffffffffffffffff82111561420f5761420f614363565b5060051b60200190565b6000821982111561422c5761422c61430b565b500190565b60008261424057614240614321565b500490565b600081600019048311821515161561425f5761425f61430b565b500290565b6000828210156142765761427661430b565b500390565b60005b8381101561429657818101518382015260200161427e565b83811115612bdc5750506000910152565b600181811c908216806142bb57607f821691505b6020821081141561297d57634e487b7160e01b600052602260045260246000fd5b60006000198214156142f0576142f061430b565b5060010190565b60008261430657614306614321565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b1957600080fdfea26469706673582212200a393d8162913a02afd0b1a7799e099b033b2d88d09bd064c689e7e37c86161a64736f6c63430008070033000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a90000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6000000000000000000000000991f09114a025398b448de8511a7e816320d36b1

Deployed Bytecode

0x6080604052600436106104055760003560e01c806370a0823111610213578063bf5f559711610123578063e8254174116100ab578063f2fde38b1161007a578063f2fde38b14610bbb578063f3fef3a314610bdb578063f4201c3c14610bfb578063f72e2d0d14610c2a578063fae4c7f914610c4a57600080fd5b8063e825417414610b27578063e985e9c514610b47578063eff9553714610b90578063f14cdf6e14610ba557600080fd5b8063d28a1f1d116100f2578063d28a1f1d14610a81578063d3bfe07714610a97578063d3c553ad14610ac4578063d75e611014610af1578063e365eca614610b0757600080fd5b8063bf5f559714610a0b578063bfecf89514610a2b578063c87b56dd14610a41578063cd931e4014610a6157600080fd5b8063949028a7116101a6578063a29fb1fd11610175578063a29fb1fd14610967578063ac32be6014610987578063b19ec5e2146109b5578063b88d4fde146109d5578063b985add8146109f557600080fd5b8063949028a7146108fc57806395d89b411461091c57806398e9018414610931578063a22cb4651461094757600080fd5b8063881b884a116101e2578063881b884a146108925780638832bc29146108b25780638d007f69146108c85780638da5cb5b146108de57600080fd5b806370a0823114610822578063715018a61461084257806373da60ad146108575780638456cb591461087d57600080fd5b806340146353116103195780635ad71002116102a15780635f36fa26116102705780635f36fa26146107ab5780636352211e146107c15780636aa605f6146107e15780636c0360eb146107f75780636fdaddf11461080c57600080fd5b80635ad71002146107415780635c7b9f89146107615780635c975abb146107775780635db623581461079657600080fd5b80634f6ccce7116102e85780634f6ccce7146106ab578063530e3b52146106cb57806353e76f2c146106eb578063560c155f1461070b578063586892191461072157600080fd5b8063401463531461063657806342842e0e146106565780634af9bc10146106765780634d78a0f71461068b57600080fd5b8063185c6a6e1161039c5780632c3b372e1161036b5780632c3b372e146105b85780632ee75a40146105cb5780632f745c59146105e1578063376ea8e3146106015780633f4ba83a1461062157600080fd5b8063185c6a6e1461053e5780631ae563501461055e5780631e84c4131461057e57806323b872dd1461059857600080fd5b8063095ea7b3116103d8578063095ea7b3146104c757806314dee4b3146104e9578063173ac3df1461050957806318160ddd1461052957600080fd5b806301ffc9a71461040a578063050225ea1461043f57806306fdde031461046d578063081812fc1461048f575b600080fd5b34801561041657600080fd5b5061042a610425366004613d0e565b610c69565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b5061045f61045a366004613c21565b610c94565b604051908152602001610436565b34801561047957600080fd5b50610482610cc5565b604051610436919061401b565b34801561049b57600080fd5b506104af6104aa366004613da2565b610d57565b6040516001600160a01b039091168152602001610436565b3480156104d357600080fd5b506104e76104e2366004613c21565b610df1565b005b3480156104f557600080fd5b506104e7610504366004613dbb565b610f07565b34801561051557600080fd5b50601d546104af906001600160a01b031681565b34801561053557600080fd5b5060085461045f565b34801561054a57600080fd5b506021546104af906001600160a01b031681565b34801561056a57600080fd5b506104e7610579366004613ba9565b6112ac565b34801561058a57600080fd5b50601c5461042a9060ff1681565b3480156105a457600080fd5b506104e76105b3366004613af1565b611328565b6104e76105c6366004613da2565b611405565b3480156105d757600080fd5b5061045f60135481565b3480156105ed57600080fd5b5061045f6105fc366004613c21565b6116ac565b34801561060d57600080fd5b506104e761061c366004613c4b565b611742565b34801561062d57600080fd5b506104e76117d8565b34801561064257600080fd5b506104e7610651366004613da2565b61180c565b34801561066257600080fd5b506104e7610671366004613af1565b61183b565b34801561068257600080fd5b506104e7611856565b34801561069757600080fd5b506104e76106a6366004613e37565b611924565b3480156106b757600080fd5b5061045f6106c6366004613da2565b611959565b3480156106d757600080fd5b506104e76106e6366004613da2565b6119ec565b3480156106f757600080fd5b506104e7610706366004613dbb565b611a1b565b34801561071757600080fd5b5061045f600e5481565b34801561072d57600080fd5b506104e761073c366004613cda565b611d80565b34801561074d57600080fd5b506104e761075c366004613da2565b611dbd565b34801561076d57600080fd5b5061045f60125481565b34801561078357600080fd5b50600b54600160a01b900460ff1661042a565b3480156107a257600080fd5b5061045f611e63565b3480156107b757600080fd5b5061045f60185481565b3480156107cd57600080fd5b506104af6107dc366004613da2565b611e87565b3480156107ed57600080fd5b5061045f60165481565b34801561080357600080fd5b50610482611efe565b34801561081857600080fd5b5061045f61271081565b34801561082e57600080fd5b5061045f61083d366004613aa3565b611f8c565b34801561084e57600080fd5b506104e7612013565b34801561086357600080fd5b50601c546104af906201000090046001600160a01b031681565b34801561088957600080fd5b506104e7612047565b34801561089e57600080fd5b506104e76108ad366004613c80565b612079565b3480156108be57600080fd5b5061045f60115481565b3480156108d457600080fd5b5061045f600d5481565b3480156108ea57600080fd5b50600b546001600160a01b03166104af565b34801561090857600080fd5b506104e7610917366004613cda565b612205565b34801561092857600080fd5b50610482612249565b34801561093d57600080fd5b5061045f60145481565b34801561095357600080fd5b506104e7610962366004613bf7565b612258565b34801561097357600080fd5b506104e7610982366004613da2565b612263565b34801561099357600080fd5b506109a76109a2366004613da2565b612292565b60405161043692919061402e565b3480156109c157600080fd5b506104e76109d0366004613da2565b6123be565b3480156109e157600080fd5b506104e76109f0366004613b2d565b6123ed565b348015610a0157600080fd5b5061045f60195481565b348015610a1757600080fd5b506104e7610a26366004613da2565b6124cc565b348015610a3757600080fd5b5061045f600f5481565b348015610a4d57600080fd5b50610482610a5c366004613da2565b612790565b348015610a6d57600080fd5b506104e7610a7c366004613abe565b612860565b348015610a8d57600080fd5b5061045f60175481565b348015610aa357600080fd5b50610ab7610ab2366004613aa3565b6128c4565b6040516104369190613fa8565b348015610ad057600080fd5b5061045f610adf366004613aa3565b601e6020526000908152604090205481565b348015610afd57600080fd5b5061045f60155481565b348015610b1357600080fd5b506104e7610b22366004613da2565b612983565b348015610b3357600080fd5b506104e7610b42366004613d48565b612a23565b348015610b5357600080fd5b5061042a610b62366004613abe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b9c57600080fd5b50610482612a74565b348015610bb157600080fd5b5061045f60105481565b348015610bc757600080fd5b506104e7610bd6366004613aa3565b612a81565b348015610be757600080fd5b506104e7610bf6366004613c21565b612b1c565b348015610c0757600080fd5b5061042a610c16366004613aa3565b602080526000908152604090205460ff1681565b348015610c3657600080fd5b506022546104af906001600160a01b031681565b348015610c5657600080fd5b50601c5461042a90610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610c8e5750610c8e82612be2565b92915050565b601f6020528160005260406000208181548110610cb057600080fd5b90600052602060002001600091509150505481565b606060008054610cd4906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d00906142a7565b8015610d4d5780601f10610d2257610100808354040283529160200191610d4d565b820191906000526020600020905b815481529060010190602001808311610d3057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610dd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610dfc82611e87565b9050806001600160a01b0316836001600160a01b03161415610e6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610dcc565b336001600160a01b0382161480610e865750610e868133610b62565b610ef85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dcc565b610f028383612c32565b505050565b33610f1184611e87565b6001600160a01b031614610f675760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610dcc565b601c546201000090046001600160a01b0316610f955760405162461bcd60e51b8152600401610dcc906140d8565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590610fe257506101188151105b61102e5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465736372697074696f6e206c656e6774680000000000006044820152606401610dcc565b6002600c60008681526020019081526020016000206001016040516110539190613f3a565b602060405180830381855afa158015611070573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110939190613cf5565b6002826040516110a39190613f1e565b602060405180830381855afa1580156110c0573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110e39190613cf5565b14156111485760405162461bcd60e51b815260206004820152602e60248201527f4e6577206465736372697074696f6e2069732073616d6520617320637572726560448201526d373a103232b9b1b934b83a34b7b760911b6064820152608401610dcc565b601c54601454604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b15801561119d57600080fd5b505af11580156111b1573d6000803e3d6000fd5b5050601c546022546014546001600160a01b0362010000909304831694506340c10f1993509116906111f190601e906111eb906064612ca0565b90612cb3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561123757600080fd5b505af115801561124b573d6000803e3d6000fd5b5050506000858152600c6020526040902061126b9150600101848461381e565b50837fa5eb4fe2f21ddb28c752c9927387264d67ce06b0ce619ad8b4b06d8dfe948347848460405161129e929190613fec565b60405180910390a250505050565b600b546001600160a01b031633146112d65760405162461bcd60e51b8152600401610dcc90614107565b60005b8151811015610f0257611305838383815181106112f8576112f861434d565b6020026020010151612cbf565b601854611313906001612cd9565b60185580611320816142dc565b9150506112d9565b6002600a54141561134b5760405162461bcd60e51b8152600401610dcc9061418d565b6002600a5561135b335b82612ce5565b6113775760405162461bcd60e51b8152600401610dcc9061413c565b601d546001600160a01b0316156113f057601d5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b1580156113d757600080fd5b505af11580156113eb573d6000803e3d6000fd5b505050505b6113fb838383612ddc565b50506001600a5550565b600b54600160a01b900460ff161561142f5760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156114525760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55601c5460ff1615156001146114a05760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610dcc565b601554336000908152601e60205260409020546114bd9083612cd9565b111561150b5760405162461bcd60e51b815260206004820152601960248201527f41626f76652053616c65205075726368617365204c696d6974000000000000006044820152606401610dcc565b600f5460175461151b9083612cd9565b11156115795760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d617820455448206d696044820152666e74204e46547360c81b6064820152608401610dcc565b33600090815260208052604090205460ff16156115e257601254349061159f9083612cb3565b146115dd5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610dcc565b61162f565b60115434906115f19083612cb3565b1461162f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610dcc565b60005b818110156116695761164633601954612e0c565b601954611654906001612cd9565b60195580611661816142dc565b915050611632565b506017546116779082612cd9565b601755336000908152601e60205260409020546116949082612cd9565b336000908152601e6020526040902055506001600a55565b60006116b783611f8c565b82106117195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610dcc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610dcc90614107565b60005b81518110156117d4576001602060008484815181106117905761179061434d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117cc816142dc565b91505061176f565b5050565b600b546001600160a01b031633146118025760405162461bcd60e51b8152600401610dcc90614107565b61180a612f5a565b565b600b546001600160a01b031633146118365760405162461bcd60e51b8152600401610dcc90614107565b601555565b610f02838383604051806020016040528060008152506123ed565b600b54600160a01b900460ff16156118805760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156118a35760405162461bcd60e51b8152600401610dcc9061418d565b6002600a5560005b336000908152601f602052604090205481101561191c57336000818152601f6020526040902080546118f9929190849081106118e9576118e961434d565b9060005260206000200154612cbf565b601854611907906001612cd9565b60185580611914816142dc565b9150506118ab565b506001600a55565b600b546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610dcc90614107565b601391909155601455565b600061196460085490565b82106119c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610dcc565b600882815481106119da576119da61434d565b90600052602060002001549050919050565b600b546001600160a01b03163314611a165760405162461bcd60e51b8152600401610dcc90614107565b601155565b33611a2584611e87565b6001600160a01b031614611a7b5760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610dcc565b601c546201000090046001600160a01b0316611aa95760405162461bcd60e51b8152600401610dcc906140d8565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590611af5575060198151105b611b375760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610dcc565b6000848152600c6020526040908190209051600291611b5591613f3a565b602060405180830381855afa158015611b72573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611b959190613cf5565b600282604051611ba59190613f1e565b602060405180830381855afa158015611bc2573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611be59190613cf5565b1415611c335760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610dcc565b601c54601354604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611c8857600080fd5b505af1158015611c9c573d6000803e3d6000fd5b5050601c546022546013546001600160a01b0362010000909304831694506340c10f199350911690611cd690601e906111eb906064612ca0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b5050506000858152600c60205260409020611d4d9150848461381e565b50837fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab134848460405161129e929190613fec565b600b546001600160a01b03163314611daa5760405162461bcd60e51b8152600401610dcc90614107565b601c805460ff1916911515919091179055565b600b546001600160a01b03163314611de75760405162461bcd60e51b8152600401610dcc90614107565b600f54601754611df79083612cd9565b1115611e405760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610dcc565b600f54611e4d9082612ff7565b600f55600d54611e5d9082612cd9565b600d5550565b33600090815260208052604081205460ff16611e80575060115490565b5060125490565b6000818152600260205260408120546001600160a01b031680610c8e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610dcc565b601a8054611f0b906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f37906142a7565b8015611f845780601f10611f5957610100808354040283529160200191611f84565b820191906000526020600020905b815481529060010190602001808311611f6757829003601f168201915b505050505081565b60006001600160a01b038216611ff75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610dcc565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461203d5760405162461bcd60e51b8152600401610dcc90614107565b61180a6000613003565b600b546001600160a01b031633146120715760405162461bcd60e51b8152600401610dcc90614107565b61180a613055565b600b546001600160a01b031633146120a35760405162461bcd60e51b8152600401610dcc90614107565b80518251146120ea5760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610dcc565b60005b8251811015610f025760006001600160a01b03166121238383815181106121165761211661434d565b6020026020010151611e87565b6001600160a01b0316146121845760405162461bcd60e51b815260206004820152602260248201527f416c7265616479207573656420746f6b656e494420686173206265656e207365604482015261742160f01b6064820152608401610dcc565b601f600084838151811061219a5761219a61434d565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208282815181106121d4576121d461434d565b60209081029190910181015182546001810184556000938452919092200155806121fd816142dc565b9150506120ed565b600b546001600160a01b0316331461222f5760405162461bcd60e51b8152600401610dcc90614107565b601c80549115156101000261ff0019909216919091179055565b606060018054610cd4906142a7565b6117d43383836130ba565b600b546001600160a01b0316331461228d5760405162461bcd60e51b8152600401610dcc90614107565b601255565b600c602052600090815260409020805481906122ad906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546122d9906142a7565b80156123265780601f106122fb57610100808354040283529160200191612326565b820191906000526020600020905b81548152906001019060200180831161230957829003601f168201915b50505050509080600101805461233b906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612367906142a7565b80156123b45780601f10612389576101008083540402835291602001916123b4565b820191906000526020600020905b81548152906001019060200180831161239757829003601f168201915b5050505050905082565b600b546001600160a01b031633146123e85760405162461bcd60e51b8152600401610dcc90614107565b601055565b6002600a5414156124105760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55612420335b83612ce5565b61243c5760405162461bcd60e51b8152600401610dcc9061413c565b601d546001600160a01b0316156124b557601d5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561249c57600080fd5b505af11580156124b0573d6000803e3d6000fd5b505050505b6124c184848484613189565b50506001600a555050565b600b54600160a01b900460ff16156124f65760405162461bcd60e51b8152600401610dcc906140ae565b6002600a5414156125195760405162461bcd60e51b8152600401610dcc9061418d565b6002600a55601c546201000090046001600160a01b031661254c5760405162461bcd60e51b8152600401610dcc906140d8565b601c5460ff1615156001146125955760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610dcc565b600e546016546125a59083612cd9565b11156126045760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178204c4f4245206d604482015267696e74204e46547360c01b6064820152608401610dcc565b601c60029054906101000a90046001600160a01b03166001600160a01b0316639dc29fac3361263e60105485612cb390919063ffffffff16565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561268457600080fd5b505af1158015612698573d6000803e3d6000fd5b5050601c546022546010546001600160a01b0362010000909304831694506340c10f1993509116906126df90601e906111eb906064906126d9908990612cb3565b90612ca0565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561272557600080fd5b505af1158015612739573d6000803e3d6000fd5b5050505060005b818110156127775761275433601954612e0c565b601954612762906001612cd9565b6019558061276f816142dc565b915050612740565b506016546127859082612cd9565b601655506001600a55565b6000818152600260205260409020546060906001600160a01b031661280f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dcc565b601c54610100900460ff1661285057601b612829836131ba565b60405160200161283a929190613f46565b6040516020818303038152906040529050919050565b601a612829836131ba565b919050565b600b546001600160a01b0316331461288a5760405162461bcd60e51b8152600401610dcc90614107565b601c805462010000600160b01b031916620100006001600160a01b0394851602179055601d80546001600160a01b03191691909216179055565b606060006128d183611f8c565b9050806128f25760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561290d5761290d614363565b604051908082528060200260200182016040528015612936578160200160208202803683370190505b50905060005b828110156128ea5761294e85826116ac565b8282815181106129605761296061434d565b602090810291909101015280612975816142dc565b91505061293c565b50919050565b600b546001600160a01b031633146129ad5760405162461bcd60e51b8152600401610dcc90614107565b600e546016546129bd9083612cd9565b1115612a065760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610dcc565b600e54612a139082612ff7565b600e55600d54611e5d9082612cd9565b600b546001600160a01b03163314612a4d5760405162461bcd60e51b8152600401610dcc90614107565b8151612a6090601b9060208501906138a2565b508051610f0290601a9060208401906138a2565b601b8054611f0b906142a7565b600b546001600160a01b03163314612aab5760405162461bcd60e51b8152600401610dcc90614107565b6001600160a01b038116612b105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dcc565b612b1981613003565b50565b600b546001600160a01b03163314612b465760405162461bcd60e51b8152600401610dcc90614107565b4781811015612ba65760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610dcc565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015612bdc573d6000803e3d6000fd5b50505050565b60006001600160e01b031982166380ac58cd60e01b1480612c1357506001600160e01b03198216635b5e139f60e01b145b80610c8e57506301ffc9a760e01b6001600160e01b0319831614610c8e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c6782611e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cac8284614231565b9392505050565b6000612cac8284614245565b6117d48282604051806020016040528060008152506132b8565b6000612cac8284614219565b6000818152600260205260408120546001600160a01b0316612d5e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dcc565b6000612d6983611e87565b9050806001600160a01b0316846001600160a01b03161480612da45750836001600160a01b0316612d9984610d57565b6001600160a01b0316145b80612dd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b612de533611355565b612e015760405162461bcd60e51b8152600401610dcc9061413c565b610f028383836132eb565b6001600160a01b038216612e625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dcc565b6000818152600260205260409020546001600160a01b031615612ec75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610dcc565b612ed360008383613496565b6001600160a01b0382166000908152600360205260408120805460019290612efc908490614219565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b54600160a01b900460ff16612faa5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610dcc565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612cac8284614264565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff161561307f5760405162461bcd60e51b8152600401610dcc906140ae565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612fda3390565b816001600160a01b0316836001600160a01b0316141561311c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dcc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6131923361241a565b6131ae5760405162461bcd60e51b8152600401610dcc9061413c565b612bdc8484848461354e565b6060816131de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561320857806131f2816142dc565b91506132019050600a83614231565b91506131e2565b60008167ffffffffffffffff81111561322357613223614363565b6040519080825280601f01601f19166020018201604052801561324d576020820181803683370190505b5090505b8415612dd457613262600183614264565b915061326f600a866142f7565b61327a906030614219565b60f81b81838151811061328f5761328f61434d565b60200101906001600160f81b031916908160001a9053506132b1600a86614231565b9450613251565b6132c28383612e0c565b6132cf6000848484613581565b610f025760405162461bcd60e51b8152600401610dcc9061405c565b826001600160a01b03166132fe82611e87565b6001600160a01b0316146133665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610dcc565b6001600160a01b0382166133c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610dcc565b6133d3838383613496565b6133de600082612c32565b6001600160a01b0383166000908152600360205260408120805460019290613407908490614264565b90915550506001600160a01b0382166000908152600360205260408120805460019290613435908490614219565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166134f1576134ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613514565b816001600160a01b0316836001600160a01b03161461351457613514838261368e565b6001600160a01b03821661352b57610f028161372b565b826001600160a01b0316826001600160a01b031614610f0257610f0282826137da565b6135598484846132eb565b61356584848484613581565b612bdc5760405162461bcd60e51b8152600401610dcc9061405c565b60006001600160a01b0384163b1561368357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135c5903390899088908890600401613f6b565b602060405180830381600087803b1580156135df57600080fd5b505af192505050801561360f575060408051601f3d908101601f1916820190925261360c91810190613d2b565b60015b613669573d80801561363d576040519150601f19603f3d011682016040523d82523d6000602084013e613642565b606091505b5080516136615760405162461bcd60e51b8152600401610dcc9061405c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dd4565b506001949350505050565b6000600161369b84611f8c565b6136a59190614264565b6000838152600760205260409020549091508082146136f8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061373d90600190614264565b600083815260096020526040812054600880549394509092849081106137655761376561434d565b9060005260206000200154905080600883815481106137865761378661434d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806137be576137be614337565b6001900381819060005260206000200160009055905550505050565b60006137e583611f8c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461382a906142a7565b90600052602060002090601f01602090048101928261384c5760008555613892565b82601f106138655782800160ff19823516178555613892565b82800160010185558215613892579182015b82811115613892578235825591602001919060010190613877565b5061389e929150613916565b5090565b8280546138ae906142a7565b90600052602060002090601f0160209004810192826138d05760008555613892565b82601f106138e957805160ff1916838001178555613892565b82800160010185558215613892579182015b828111156138925782518255916020019190600101906138fb565b5b8082111561389e5760008155600101613917565b600067ffffffffffffffff83111561394557613945614363565b613958601f8401601f19166020016141c4565b905082815283838301111561396c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461285b57600080fd5b600082601f8301126139ab57600080fd5b813560206139c06139bb836141f5565b6141c4565b80838252828201915082860187848660051b89010111156139e057600080fd5b60005b85811015613a06576139f482613983565b845292840192908401906001016139e3565b5090979650505050505050565b600082601f830112613a2457600080fd5b81356020613a346139bb836141f5565b80838252828201915082860187848660051b8901011115613a5457600080fd5b60005b85811015613a0657813584529284019290840190600101613a57565b8035801515811461285b57600080fd5b600082601f830112613a9457600080fd5b612cac8383356020850161392b565b600060208284031215613ab557600080fd5b612cac82613983565b60008060408385031215613ad157600080fd5b613ada83613983565b9150613ae860208401613983565b90509250929050565b600080600060608486031215613b0657600080fd5b613b0f84613983565b9250613b1d60208501613983565b9150604084013590509250925092565b60008060008060808587031215613b4357600080fd5b613b4c85613983565b9350613b5a60208601613983565b925060408501359150606085013567ffffffffffffffff811115613b7d57600080fd5b8501601f81018713613b8e57600080fd5b613b9d8782356020840161392b565b91505092959194509250565b60008060408385031215613bbc57600080fd5b613bc583613983565b9150602083013567ffffffffffffffff811115613be157600080fd5b613bed85828601613a13565b9150509250929050565b60008060408385031215613c0a57600080fd5b613c1383613983565b9150613ae860208401613a73565b60008060408385031215613c3457600080fd5b613c3d83613983565b946020939093013593505050565b600060208284031215613c5d57600080fd5b813567ffffffffffffffff811115613c7457600080fd5b612dd48482850161399a565b60008060408385031215613c9357600080fd5b823567ffffffffffffffff80821115613cab57600080fd5b613cb78683870161399a565b93506020850135915080821115613ccd57600080fd5b50613bed85828601613a13565b600060208284031215613cec57600080fd5b612cac82613a73565b600060208284031215613d0757600080fd5b5051919050565b600060208284031215613d2057600080fd5b8135612cac81614379565b600060208284031215613d3d57600080fd5b8151612cac81614379565b60008060408385031215613d5b57600080fd5b823567ffffffffffffffff80821115613d7357600080fd5b613d7f86838701613a83565b93506020850135915080821115613d9557600080fd5b50613bed85828601613a83565b600060208284031215613db457600080fd5b5035919050565b600080600060408486031215613dd057600080fd5b83359250602084013567ffffffffffffffff80821115613def57600080fd5b818601915086601f830112613e0357600080fd5b813581811115613e1257600080fd5b876020828501011115613e2457600080fd5b6020830194508093505050509250925092565b60008060408385031215613e4a57600080fd5b50508035926020909101359150565b60008151808452613e7181602086016020860161427b565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680613e9f57607f831692505b6020808410821415613ec157634e487b7160e01b600052602260045260246000fd5b818015613ed55760018114613ee657613f12565b60ff19861689528489019650613f12565b876000528160002060005b86811015613f0a5781548b820152908501908301613ef1565b505084890196505b50505050505092915050565b60008251613f3081846020870161427b565b9190910192915050565b6000612cac8284613e85565b6000613f528285613e85565b8351613f6281836020880161427b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613f9e90830184613e59565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613fe057835183529284019291840191600101613fc4565b50909695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612cac6020830184613e59565b6040815260006140416040830185613e59565b82810360208401526140538185613e59565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b602080825260159082015274139bc81d1bdad95b8818dbdb9d1c9858dd081cd95d605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156141ed576141ed614363565b604052919050565b600067ffffffffffffffff82111561420f5761420f614363565b5060051b60200190565b6000821982111561422c5761422c61430b565b500190565b60008261424057614240614321565b500490565b600081600019048311821515161561425f5761425f61430b565b500290565b6000828210156142765761427661430b565b500390565b60005b8381101561429657818101518382015260200161427e565b83811115612bdc5750506000910152565b600181811c908216806142bb57607f821691505b6020821081141561297d57634e487b7160e01b600052602260045260246000fd5b60006000198214156142f0576142f061430b565b5060010190565b60008261430657614306614321565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612b1957600080fdfea26469706673582212200a393d8162913a02afd0b1a7799e099b033b2d88d09bd064c689e7e37c86161a64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a90000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6000000000000000000000000991f09114a025398b448de8511a7e816320d36b1

-----Decoded View---------------
Arg [0] : _community (address): 0xF57Ce00efFD8eceB57Ce9398edFe4815978709A9
Arg [1] : _liquidity (address): 0x9765d4Aa7D34F2C8ae5A311b83F0CE08373a8EF6
Arg [2] : _LOBE (address): 0x991F09114a025398b448DE8511A7E816320d36B1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a9
Arg [1] : 0000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6
Arg [2] : 000000000000000000000000991f09114a025398b448de8511a7e816320d36b1


Deployed Bytecode Sourcemap

57731:11432:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36617:224;;;;;;;;;;-1:-1:-1;36617:224:0;;;;;:::i;:::-;;:::i;:::-;;;12456:14:1;;12449:22;12431:41;;12419:2;12404:18;36617:224:0;;;;;;;;58957:45;;;;;;;;;;-1:-1:-1;58957:45:0;;;;;:::i;:::-;;:::i;:::-;;;27900:25:1;;;27888:2;27873:18;58957:45:0;27754:177:1;23026:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24585:221::-;;;;;;;;;;-1:-1:-1;24585:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10529:32:1;;;10511:51;;10499:2;10484:18;24585:221:0;10365:203:1;24108:411:0;;;;;;;;;;-1:-1:-1;24108:411:0;;;;;:::i;:::-;;:::i;:::-;;63303:821;;;;;;;;;;-1:-1:-1;63303:821:0;;;;;:::i;:::-;;:::i;58846:41::-;;;;;;;;;;-1:-1:-1;58846:41:0;;;;-1:-1:-1;;;;;58846:41:0;;;37257:113;;;;;;;;;;-1:-1:-1;37345:10:0;:17;37257:113;;59057:38;;;;;;;;;;-1:-1:-1;59057:38:0;;;;-1:-1:-1;;;;;59057:38:0;;;66623:272;;;;;;;;;;-1:-1:-1;66623:272:0;;;;;:::i;:::-;;:::i;58748:30::-;;;;;;;;;;-1:-1:-1;58748:30:0;;;;;;;;68247:440;;;;;;;;;;-1:-1:-1;68247:440:0;;;;;:::i;:::-;;:::i;65303:949::-;;;;;;:::i;:::-;;:::i;58378:45::-;;;;;;;;;;;;;;;;36925:256;;;;;;;;;;-1:-1:-1;36925:256:0;;;;;:::i;:::-;;:::i;61405:191::-;;;;;;;;;;-1:-1:-1;61405:191:0;;;;;:::i;:::-;;:::i;68172:67::-;;;;;;;;;;;;;:::i;60604:106::-;;;;;;;;;;-1:-1:-1;60604:106:0;;;;;:::i;:::-;;:::i;25745:185::-;;;;;;;;;;-1:-1:-1;25745:185:0;;;;;:::i;:::-;;:::i;66295:282::-;;;;;;;;;;;;;:::i;60353:195::-;;;;;;;;;;-1:-1:-1;60353:195:0;;;;;:::i;:::-;;:::i;37447:233::-;;;;;;;;;;-1:-1:-1;37447:233:0;;;;;:::i;:::-;;:::i;60026:96::-;;;;;;;;;;-1:-1:-1;60026:96:0;;;;;:::i;:::-;;:::i;62542:714::-;;;;;;;;;;-1:-1:-1;62542:714:0;;;;;:::i;:::-;;:::i;58110:35::-;;;;;;;;;;;;;;;;59564:112;;;;;;;;;;-1:-1:-1;59564:112:0;;;;;:::i;:::-;;:::i;61089:259::-;;;;;;;;;;-1:-1:-1;61089:259:0;;;;;:::i;:::-;;:::i;58330:41::-;;;;;;;;;;;;;;;;53474:86;;;;;;;;;;-1:-1:-1;53545:7:0;;-1:-1:-1;;;53545:7:0;;;;53474:86;;67910:127;;;;;;;;;;;;;:::i;58607:34::-;;;;;;;;;;;;;;;;22720:239;;;;;;;;;;-1:-1:-1;22720:239:0;;;;;:::i;:::-;;:::i;58534:30::-;;;;;;;;;;;;;;;;58689:21;;;;;;;;;;;;;:::i;58193:39::-;;;;;;;;;;;;58227:5;58193:39;;22450:208;;;;;;;;;;-1:-1:-1;22450:208:0;;;;;:::i;:::-;;:::i;51519:103::-;;;;;;;;;;;;;:::i;58814:25::-;;;;;;;;;;-1:-1:-1;58814:25:0;;;;;;;-1:-1:-1;;;;;58814:25:0;;;68072:63;;;;;;;;;;;;;:::i;61643:385::-;;;;;;;;;;-1:-1:-1;61643:385:0;;;;;:::i;:::-;;:::i;58286:37::-;;;;;;;;;;;;;;;;58030:32;;;;;;;;;;;;;;;;50868:87;;;;;;;;;;-1:-1:-1;50941:6:0;;-1:-1:-1;;;;;50941:6:0;50868:87;;59724:98;;;;;;;;;;-1:-1:-1;59724:98:0;;;;;:::i;:::-;;:::i;23195:104::-;;;;;;;;;;;;;:::i;58430:52::-;;;;;;;;;;;;;;;;24878:155;;;;;;;;;;-1:-1:-1;24878:155:0;;;;;:::i;:::-;;:::i;60180:103::-;;;;;;;;;;-1:-1:-1;60180:103:0;;;;;:::i;:::-;;:::i;57970:51::-;;;;;;;;;;-1:-1:-1;57970:51:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;59875:98::-;;;;;;;;;;-1:-1:-1;59875:98:0;;;;;:::i;:::-;;:::i;68695:465::-;;;;;;;;;;-1:-1:-1;68695:465:0;;;;;:::i;:::-;;:::i;58648:32::-;;;;;;;;;;;;;;;;64499:761;;;;;;;;;;-1:-1:-1;64499:761:0;;;;;:::i;:::-;;:::i;58152:34::-;;;;;;;;;;;;;;;;66959:393;;;;;;;;;;-1:-1:-1;66959:393:0;;;;;:::i;:::-;;:::i;62099:195::-;;;;;;;;;;-1:-1:-1;62099:195:0;;;;;:::i;:::-;;:::i;58571:29::-;;;;;;;;;;;;;;;;67399:464;;;;;;;;;;-1:-1:-1;67399:464:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58896:52::-;;;;;;;;;;-1:-1:-1;58896:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;58491:34;;;;;;;;;;;;;;;;60769:264;;;;;;;;;;-1:-1:-1;60769:264:0;;;;;:::i;:::-;;:::i;62349:153::-;;;;;;;;;;-1:-1:-1;62349:153:0;;;;;:::i;:::-;;:::i;25104:164::-;;;;;;;;;;-1:-1:-1;25104:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25225:25:0;;;25201:4;25225:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25104:164;58717:22;;;;;;;;;;;;;:::i;58241:38::-;;;;;;;;;;;;;;;;51777:201;;;;;;;;;;-1:-1:-1;51777:201:0;;;;;:::i;:::-;;:::i;64205:246::-;;;;;;;;;;-1:-1:-1;64205:246:0;;;;;:::i;:::-;;:::i;59011:37::-;;;;;;;;;;-1:-1:-1;59011:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59102:34;;;;;;;;;;-1:-1:-1;59102:34:0;;;;-1:-1:-1;;;;;59102:34:0;;;58785:20;;;;;;;;;;-1:-1:-1;58785:20:0;;;;;;;;;;;36617:224;36719:4;-1:-1:-1;;;;;;36743:50:0;;-1:-1:-1;;;36743:50:0;;:90;;;36797:36;36821:11;36797:23;:36::i;:::-;36736:97;36617:224;-1:-1:-1;;36617:224:0:o;58957:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23026:100::-;23080:13;23113:5;23106:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23026:100;:::o;24585:221::-;24661:7;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;24681:73;;;;-1:-1:-1;;;24681:73:0;;22133:2:1;24681:73:0;;;22115:21:1;22172:2;22152:18;;;22145:30;22211:34;22191:18;;;22184:62;-1:-1:-1;;;22262:18:1;;;22255:42;22314:19;;24681:73:0;;;;;;;;;-1:-1:-1;24774:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24774:24:0;;24585:221::o;24108:411::-;24189:13;24205:23;24220:7;24205:14;:23::i;:::-;24189:39;;24253:5;-1:-1:-1;;;;;24247:11:0;:2;-1:-1:-1;;;;;24247:11:0;;;24239:57;;;;-1:-1:-1;;;24239:57:0;;23733:2:1;24239:57:0;;;23715:21:1;23772:2;23752:18;;;23745:30;23811:34;23791:18;;;23784:62;-1:-1:-1;;;23862:18:1;;;23855:31;23903:19;;24239:57:0;23531:397:1;24239:57:0;17382:10;-1:-1:-1;;;;;24331:21:0;;;;:62;;-1:-1:-1;24356:37:0;24373:5;17382:10;25104:164;:::i;24356:37::-;24309:168;;;;-1:-1:-1;;;24309:168:0;;19414:2:1;24309:168:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;19563:26;19543:18;;;19536:54;19607:19;;24309:168:0;19212:420:1;24309:168:0;24490:21;24499:2;24503:7;24490:8;:21::i;:::-;24178:341;24108:411;;:::o;63303:821::-;63425:10;63405:16;63413:7;63405;:16::i;:::-;-1:-1:-1;;;;;63405:30:0;;63397:69;;;;-1:-1:-1;;;63397:69:0;;16430:2:1;63397:69:0;;;16412:21:1;16469:2;16449:18;;;16442:30;16508:28;16488:18;;;16481:56;16554:18;;63397:69:0;16228:350:1;63397:69:0;63493:12;;;;;-1:-1:-1;;;;;63493:12:0;63477:69;;;;-1:-1:-1;;;63477:69:0;;;;;;;:::i;:::-;63559:14;63582:11;;63559:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63613:8:0;;63559:35;;-1:-1:-1;;;63613:12:0;;;;:30;;;63640:3;63629:1;:8;:14;63613:30;63605:69;;;;-1:-1:-1;;;63605:69:0;;24901:2:1;63605:69:0;;;24883:21:1;24940:2;24920:18;;;24913:30;24979:28;24959:18;;;24952:56;25025:18;;63605:69:0;24699:350:1;63605:69:0;63727:45;63740:9;:18;63750:7;63740:18;;;;;;;;;;;:30;;63727:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63707:16;63720:1;63707:16;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;63685:161;;;;-1:-1:-1;;;63685:161:0;;17128:2:1;63685:161:0;;;17110:21:1;17167:2;17147:18;;;17140:30;17206:34;17186:18;;;17179:62;-1:-1:-1;;;17257:18:1;;;17250:44;17311:19;;63685:161:0;16926:410:1;63685:161:0;63859:12;;63889:24;;63859:55;;-1:-1:-1;;;63859:55:0;;63877:10;63859:55;;;11549:51:1;11616:18;;;11609:34;;;;63859:12:0;;;;-1:-1:-1;;;;;63859:12:0;;:17;;11522:18:1;;63859:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63925:12:0;;63943:19;;63964:24;;-1:-1:-1;;;;;63925:12:0;;;;;;;-1:-1:-1;63925:17:0;;-1:-1:-1;63943:19:0;;;63964:41;;64002:2;;63964:33;;63993:3;63964:28;:33::i;:::-;:37;;:41::i;:::-;63925:81;;-1:-1:-1;;;;;;63925:81:0;;;;;;;-1:-1:-1;;;;;11567:32:1;;;63925:81:0;;;11549:51:1;11616:18;;;11609:34;11522:18;;63925:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64017:18:0;;;;:9;:18;;;;;:44;;-1:-1:-1;64017:30:0;;64050:11;;64017:44;:::i;:::-;;64095:7;64077:39;64104:11;;64077:39;;;;;;;:::i;:::-;;;;;;;;63386:738;63303:821;;;:::o;66623:272::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;66718:9:::1;66714:174;66735:9;:16;66731:1;:20;66714:174;;;66785:28;66795:3;66800:9;66810:1;66800:12;;;;;;;;:::i;:::-;;;;;;;66785:9;:28::i;:::-;66850:19;::::0;:26:::1;::::0;66874:1:::1;66850:23;:26::i;:::-;66828:19;:48:::0;66753:3;::::1;::::0;::::1;:::i;:::-;;;;66714:174;;68247:440:::0;56480:1;57078:7;;:19;;57070:63;;;;-1:-1:-1;;;57070:63:0;;;;;;;:::i;:::-;56480:1;57211:7;:18;68408:41:::1;17382:10:::0;68427:12:::1;68441:7;68408:18;:41::i;:::-;68400:103;;;;-1:-1:-1::0;;;68400:103:0::1;;;;;;;:::i;:::-;68528:20;::::0;-1:-1:-1;;;;;68528:20:0::1;68520:43:::0;68516:113:::1;;68580:20;::::0;:37:::1;::::0;-1:-1:-1;;;68580:37:0;;-1:-1:-1;;;;;10803:15:1;;;68580:37:0::1;::::0;::::1;10785:34:1::0;10855:15;;;10835:18;;;10828:43;68580:20:0;;::::1;::::0;:27:::1;::::0;10720:18:1;;68580:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68516:113;68641:38;68661:4;68667:2;68671:7;68641:19;:38::i;:::-;-1:-1:-1::0;;56436:1:0;57390:7;:22;-1:-1:-1;68247:440:0:o;65303:949::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;65407::::2;::::0;::::2;;:24;;:18:::0;:24:::2;65399:52;;;::::0;-1:-1:-1;;;65399:52:0;;15729:2:1;65399:52:0::2;::::0;::::2;15711:21:1::0;15768:2;15748:18;;;15741:30;-1:-1:-1;;;15787:18:1;;;15780:45;15842:18;;65399:52:0::2;15527:339:1::0;65399:52:0::2;65521:14;::::0;65488:10:::2;65470:29;::::0;;;:17:::2;:29;::::0;;;;;:47:::2;::::0;65504:12;65470:33:::2;:47::i;:::-;:65;;65462:117;;;::::0;-1:-1:-1;;;65462:117:0;;18715:2:1;65462:117:0::2;::::0;::::2;18697:21:1::0;18754:2;18734:18;;;18727:30;18793:27;18773:18;;;18766:55;18838:18;;65462:117:0::2;18513:349:1::0;65462:117:0::2;65634:12;::::0;65598:14:::2;::::0;:32:::2;::::0;65617:12;65598:18:::2;:32::i;:::-;:48;;65590:100;;;::::0;-1:-1:-1;;;65590:100:0;;26420:2:1;65590:100:0::2;::::0;::::2;26402:21:1::0;26459:2;26439:18;;;26432:30;26498:34;26478:18;;;26471:62;-1:-1:-1;;;26549:18:1;;;26542:37;26596:19;;65590:100:0::2;26218:403:1::0;65590:100:0::2;65711:10;65705:17;::::0;;;:5:::2;:17:::0;;;;;;::::2;;65701:220;;;65746:13;::::0;65781:9:::2;::::0;65746:31:::2;::::0;65764:12;65746:17:::2;:31::i;:::-;:44;65738:71;;;::::0;-1:-1:-1;;;65738:71:0;;16785:2:1;65738:71:0::2;::::0;::::2;16767:21:1::0;16824:2;16804:18;;;16797:30;-1:-1:-1;;;16843:18:1;;;16836:44;16897:18;;65738:71:0::2;16583:338:1::0;65738:71:0::2;65701:220;;;65850:9;::::0;65881::::2;::::0;65850:27:::2;::::0;65864:12;65850:13:::2;:27::i;:::-;:40;65842:67;;;::::0;-1:-1:-1;;;65842:67:0;;16785:2:1;65842:67:0::2;::::0;::::2;16767:21:1::0;16824:2;16804:18;;;16797:30;-1:-1:-1;;;16843:18:1;;;16836:44;16897:18;;65842:67:0::2;16583:338:1::0;65842:67:0::2;65935:9;65931:164;65954:12;65950:1;:16;65931:164;;;65988:36;65994:10;66006:17;;65988:5;:36::i;:::-;66059:17;::::0;:24:::2;::::0;66081:1:::2;66059:21;:24::i;:::-;66039:17;:44:::0;65968:3;::::2;::::0;::::2;:::i;:::-;;;;65931:164;;;-1:-1:-1::0;66122:14:0::2;::::0;:32:::2;::::0;66141:12;66122:18:::2;:32::i;:::-;66105:14;:49:::0;66215:10:::2;66197:29;::::0;;;:17:::2;:29;::::0;;;;;:47:::2;::::0;66231:12;66197:33:::2;:47::i;:::-;66183:10;66165:29;::::0;;;:17:::2;:29;::::0;;;;:79;-1:-1:-1;56436:1:0::1;57390:7;:22:::0;65303:949::o;36925:256::-;37022:7;37058:23;37075:5;37058:16;:23::i;:::-;37050:5;:31;37042:87;;;;-1:-1:-1;;;37042:87:0;;14491:2:1;37042:87:0;;;14473:21:1;14530:2;14510:18;;;14503:30;14569:34;14549:18;;;14542:62;-1:-1:-1;;;14620:18:1;;;14613:41;14671:19;;37042:87:0;14289:407:1;37042:87:0;-1:-1:-1;;;;;;37147:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36925:256::o;61405:191::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61492:9:::1;61487:102;61511:10;:17;61507:1;:21;61487:102;;;61573:4;61550:5;:20;61556:10;61567:1;61556:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;61550:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;61550:20:0;:27;;-1:-1:-1;;61550:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61530:3;::::1;::::0;::::1;:::i;:::-;;;;61487:102;;;;61405:191:::0;:::o;68172:67::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;68221:10:::1;:8;:10::i;:::-;68172:67::o:0;60604:106::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60679:14:::1;:23:::0;60604:106::o;25745:185::-;25883:39;25900:4;25906:2;25910:7;25883:39;;;;;;;;;;;;:16;:39::i;66295:282::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;66371:9:::2;66367:203;66397:10;66388:20;::::0;;;:8:::2;:20;::::0;;;;:27;66384:31;::::2;66367:203;;;66459:10;66471:20;::::0;;;:8:::2;:20;::::0;;;;:23;;66449:46:::2;::::0;66459:10;66471:20;66492:1;;66471:23;::::2;;;;;:::i;:::-;;;;;;;;;66449:9;:46::i;:::-;66532:19;::::0;:26:::2;::::0;66556:1:::2;66532:23;:26::i;:::-;66510:19;:48:::0;66417:3;::::2;::::0;::::2;:::i;:::-;;;;66367:203;;;-1:-1:-1::0;56436:1:0::1;57390:7;:22:::0;66295:282::o;60353:195::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60465:17:::1;:25:::0;;;;60501:24:::1;:39:::0;60353:195::o;37447:233::-;37522:7;37558:30;37345:10;:17;;37257:113;37558:30;37550:5;:38;37542:95;;;;-1:-1:-1;;;37542:95:0;;25256:2:1;37542:95:0;;;25238:21:1;25295:2;25275:18;;;25268:30;25334:34;25314:18;;;25307:62;-1:-1:-1;;;25385:18:1;;;25378:42;25437:19;;37542:95:0;25054:408:1;37542:95:0;37655:10;37666:5;37655:17;;;;;;;;:::i;:::-;;;;;;;;;37648:24;;37447:233;;;:::o;60026:96::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60096:9:::1;:18:::0;60026:96::o;62542:714::-;62650:10;62630:16;62638:7;62630;:16::i;:::-;-1:-1:-1;;;;;62630:30:0;;62622:69;;;;-1:-1:-1;;;62622:69:0;;16430:2:1;62622:69:0;;;16412:21:1;16469:2;16449:18;;;16442:30;16508:28;16488:18;;;16481:56;16554:18;;62622:69:0;16228:350:1;62622:69:0;62718:12;;;;;-1:-1:-1;;;;;62718:12:0;62702:69;;;;-1:-1:-1;;;62702:69:0;;;;;;;:::i;:::-;62784:14;62807:4;;62784:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62831:8:0;;62784:28;;-1:-1:-1;;;62831:12:0;;;;:29;;;62858:2;62847:1;:8;:13;62831:29;62823:61;;;;-1:-1:-1;;;62823:61:0;;24135:2:1;62823:61:0;;;24117:21:1;24174:2;24154:18;;;24147:30;-1:-1:-1;;;24193:18:1;;;24186:49;24252:18;;62823:61:0;23933:343:1;62823:61:0;62939:18;;;;:9;:18;;;;;;;62926:38;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62913:9;62920:1;62913:9;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;62895:125;;;;-1:-1:-1;;;62895:125:0;;27595:2:1;62895:125:0;;;27577:21:1;;;27614:18;;;27607:30;27673:34;27653:18;;;27646:62;27725:18;;62895:125:0;27393:356:1;62895:125:0;63033:12;;63063:17;;63033:48;;-1:-1:-1;;;63033:48:0;;63051:10;63033:48;;;11549:51:1;11616:18;;;11609:34;;;;63033:12:0;;;;-1:-1:-1;;;;;63033:12:0;;:17;;11522:18:1;;63033:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63092:12:0;;63110:19;;63131:17;;-1:-1:-1;;;;;63092:12:0;;;;;;;-1:-1:-1;63092:17:0;;-1:-1:-1;63110:19:0;;;63131:34;;63162:2;;63131:26;;63153:3;63131:21;:26::i;:34::-;63092:74;;-1:-1:-1;;;;;;63092:74:0;;;;;;;-1:-1:-1;;;;;11567:32:1;;;63092:74:0;;;11549:51:1;11616:18;;;11609:34;11522:18;;63092:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;63177:18:0;;;;:9;:18;;;;;:30;;-1:-1:-1;63203:4:0;;63177:30;:::i;:::-;;63234:7;63223:25;63243:4;;63223:25;;;;;;;:::i;59564:112::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59640:18:::1;:28:::0;;-1:-1:-1;;59640:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59564:112::o;61089:259::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61201:12:::1;::::0;61171:14:::1;::::0;:26:::1;::::0;61190:6;61171:18:::1;:26::i;:::-;:42;;61163:79;;;::::0;-1:-1:-1;;;61163:79:0;;21069:2:1;61163:79:0::1;::::0;::::1;21051:21:1::0;21108:2;21088:18;;;21081:30;-1:-1:-1;;;21127:18:1;;;21120:54;21191:18;;61163:79:0::1;20867:348:1::0;61163:79:0::1;61268:12;::::0;:24:::1;::::0;61285:6;61268:16:::1;:24::i;:::-;61253:12;:39:::0;61317:11:::1;::::0;:23:::1;::::0;61333:6;61317:15:::1;:23::i;:::-;61303:11;:37:::0;-1:-1:-1;61089:259:0:o;67910:127::-;67990:10;67957:7;67984:17;;;:5;:17;;;;;;;;:45;;-1:-1:-1;68020:9:0;;;67910:127::o;67984:45::-;-1:-1:-1;68004:13:0;;;67910:127::o;22720:239::-;22792:7;22828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22828:16:0;22863:19;22855:73;;;;-1:-1:-1;;;22855:73:0;;20250:2:1;22855:73:0;;;20232:21:1;20289:2;20269:18;;;20262:30;20328:34;20308:18;;;20301:62;-1:-1:-1;;;20379:18:1;;;20372:39;20428:19;;22855:73:0;20048:405:1;58689:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22450:208::-;22522:7;-1:-1:-1;;;;;22550:19:0;;22542:74;;;;-1:-1:-1;;;22542:74:0;;19839:2:1;22542:74:0;;;19821:21:1;19878:2;19858:18;;;19851:30;19917:34;19897:18;;;19890:62;-1:-1:-1;;;19968:18:1;;;19961:40;20018:19;;22542:74:0;19637:406:1;22542:74:0;-1:-1:-1;;;;;;22634:16:0;;;;;:9;:16;;;;;;;22450:208::o;51519:103::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;51584:30:::1;51611:1;51584:18;:30::i;68072:63::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;68119:8:::1;:6;:8::i;61643:385::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61771:9:::1;:16;61757:3;:10;:30;61749:62;;;::::0;-1:-1:-1;;;61749:62:0;;25669:2:1;61749:62:0::1;::::0;::::1;25651:21:1::0;25708:2;25688:18;;;25681:30;-1:-1:-1;;;25727:18:1;;;25720:49;25786:18;;61749:62:0::1;25467:343:1::0;61749:62:0::1;61826:9;61822:199;61845:3;:10;61841:1;:14;61822:199;;;61918:1;-1:-1:-1::0;;;;;61885:35:0::1;:21;61893:9;61903:1;61893:12;;;;;;;;:::i;:::-;;;;;;;61885:7;:21::i;:::-;-1:-1:-1::0;;;;;61885:35:0::1;;61877:82;;;::::0;-1:-1:-1;;;61877:82:0;;26017:2:1;61877:82:0::1;::::0;::::1;25999:21:1::0;26056:2;26036:18;;;26029:30;26095:34;26075:18;;;26068:62;-1:-1:-1;;;26146:18:1;;;26139:32;26188:19;;61877:82:0::1;25815:398:1::0;61877:82:0::1;61974:8;:16;61983:3;61987:1;61983:6;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61974:16:0::1;-1:-1:-1::0;;;;;61974:16:0::1;;;;;;;;;;;;61996:9;62006:1;61996:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;61974:35;;::::1;::::0;::::1;::::0;;-1:-1:-1;61974:35:0;;;;;;;::::1;::::0;61857:3;::::1;::::0;::::1;:::i;:::-;;;;61822:199;;59724:98:::0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59796:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;59796:18:0;;::::1;::::0;;;::::1;::::0;;59724:98::o;23195:104::-;23251:13;23284:7;23277:14;;;;;:::i;24878:155::-;24973:52;17382:10;25006:8;25016;24973:18;:52::i;60180:103::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60253:13:::1;:22:::0;60180:103::o;57970:51::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59875:98::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59946:10:::1;:19:::0;59875:98::o;68695:465::-;56480:1;57078:7;;:19;;57070:63;;;;-1:-1:-1;;;57070:63:0;;;;;;;:::i;:::-;56480:1;57211:7;:18;68871:41:::1;17382:10:::0;68890:12:::1;68904:7;68871:18;:41::i;:::-;68863:103;;;;-1:-1:-1::0;;;68863:103:0::1;;;;;;;:::i;:::-;68991:20;::::0;-1:-1:-1;;;;;68991:20:0::1;68983:43:::0;68979:113:::1;;69043:20;::::0;:37:::1;::::0;-1:-1:-1;;;69043:37:0;;-1:-1:-1;;;;;10803:15:1;;;69043:37:0::1;::::0;::::1;10785:34:1::0;10855:15;;;10835:18;;;10828:43;69043:20:0;;::::1;::::0;:27:::1;::::0;10720:18:1;;69043:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68979:113;69104:48;69128:4;69134:2;69138:7;69147:4;69104:23;:48::i;:::-;-1:-1:-1::0;;56436:1:0;57390:7;:22;-1:-1:-1;;68695:465:0:o;64499:761::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;64604:12:::2;::::0;;;::::2;-1:-1:-1::0;;;;;64604:12:0::2;64588:69;;;;-1:-1:-1::0;;;64588:69:0::2;;;;;;;:::i;:::-;64676:18;::::0;::::2;;:24;;:18:::0;:24:::2;64668:52;;;::::0;-1:-1:-1;;;64668:52:0;;15729:2:1;64668:52:0::2;::::0;::::2;15711:21:1::0;15768:2;15748:18;;;15741:30;-1:-1:-1;;;15787:18:1;;;15780:45;15842:18;;64668:52:0::2;15527:339:1::0;64668:52:0::2;64784:13;::::0;64747:15:::2;::::0;:33:::2;::::0;64767:12;64747:19:::2;:33::i;:::-;:50;;64739:103;;;::::0;-1:-1:-1;;;64739:103:0;;20660:2:1;64739:103:0::2;::::0;::::2;20642:21:1::0;20699:2;20679:18;;;20672:30;20738:34;20718:18;;;20711:62;-1:-1:-1;;;20789:18:1;;;20782:38;20837:19;;64739:103:0::2;20458:404:1::0;64739:103:0::2;64853:12;;;;;;;;;-1:-1:-1::0;;;;;64853:12:0::2;-1:-1:-1::0;;;;;64853:17:0::2;;64871:10;64883:28;64900:10;;64883:12;:16;;:28;;;;:::i;:::-;64853:59;::::0;-1:-1:-1;;;;;;64853:59:0::2;::::0;;;;;;-1:-1:-1;;;;;11567:32:1;;;64853:59:0::2;::::0;::::2;11549:51:1::0;11616:18;;;11609:34;11522:18;;64853:59:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;64923:12:0::2;::::0;64941:19:::2;::::0;64979:10:::2;::::0;-1:-1:-1;;;;;64923:12:0;;;::::2;::::0;::::2;::::0;-1:-1:-1;64923:17:0::2;::::0;-1:-1:-1;64941:19:0;::::2;::::0;64962:45:::2;::::0;65004:2:::2;::::0;64962:37:::2;::::0;64995:3:::2;::::0;64962:28:::2;::::0;:12;;:16:::2;:28::i;:::-;:32:::0;::::2;:37::i;:45::-;64923:85;::::0;-1:-1:-1;;;;;;64923:85:0::2;::::0;;;;;;-1:-1:-1;;;;;11567:32:1;;;64923:85:0::2;::::0;::::2;11549:51:1::0;11616:18;;;11609:34;11522:18;;64923:85:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;65023:9;65019:164;65042:12;65038:1;:16;65019:164;;;65076:36;65082:10;65094:17;;65076:5;:36::i;:::-;65147:17;::::0;:24:::2;::::0;65169:1:::2;65147:21;:24::i;:::-;65127:17;:44:::0;65056:3;::::2;::::0;::::2;:::i;:::-;;;;65019:164;;;-1:-1:-1::0;65211:15:0::2;::::0;:33:::2;::::0;65231:12;65211:19:::2;:33::i;:::-;65193:15;:51:::0;-1:-1:-1;56436:1:0::1;57390:7;:22:::0;64499:761::o;66959:393::-;27904:4;27928:16;;;:7;:16;;;;;;67033:13;;-1:-1:-1;;;;;27928:16:0;67059:77;;;;-1:-1:-1;;;67059:77:0;;23317:2:1;67059:77:0;;;23299:21:1;23356:2;23336:18;;;23329:30;23395:34;23375:18;;;23368:62;-1:-1:-1;;;23446:18:1;;;23439:45;23501:19;;67059:77:0;23115:411:1;67059:77:0;67152:8;;;;;;;67147:198;;67208:8;67218:19;:8;:17;:19::i;:::-;67191:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67177:62;;66959:393;;;:::o;67147:198::-;67303:7;67312:19;:8;:17;:19::i;67147:198::-;66959:393;;;:::o;62099:195::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;62197:12:::1;:27:::0;;-1:-1:-1;;;;;;62197:27:0::1;::::0;-1:-1:-1;;;;;62197:27:0;;::::1;;;::::0;;62235:20:::1;:51:::0;;-1:-1:-1;;;;;;62235:51:0::1;::::0;;;::::1;;::::0;;62099:195::o;67399:464::-;67455:16;67484:18;67505:17;67515:6;67505:9;:17::i;:::-;67484:38;-1:-1:-1;67539:15:0;67535:313;;67578:16;;;67592:1;67578:16;;;;;;;;;;;-1:-1:-1;67571:23:0;67399:464;-1:-1:-1;;;67399:464:0:o;67535:313::-;67624:25;67666:10;67652:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67652:25:0;;67624:53;;67696:9;67692:118;67715:10;67711:1;:14;67692:118;;;67764:30;67784:6;67792:1;67764:19;:30::i;:::-;67750:8;67759:1;67750:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;67727:3;;;;:::i;:::-;;;;67692:118;;67535:313;67473:390;67399:464;;;:::o;60769:264::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60883:13:::1;::::0;60852:15:::1;::::0;:27:::1;::::0;60872:6;60852:19:::1;:27::i;:::-;:44;;60844:81;;;::::0;-1:-1:-1;;;60844:81:0;;21069:2:1;60844:81:0::1;::::0;::::1;21051:21:1::0;21108:2;21088:18;;;21081:30;-1:-1:-1;;;21127:18:1;;;21120:54;21191:18;;60844:81:0::1;20867:348:1::0;60844:81:0::1;60952:13;::::0;:25:::1;::::0;60970:6;60952:17:::1;:25::i;:::-;60936:13;:41:::0;61002:11:::1;::::0;:23:::1;::::0;61018:6;61002:15:::1;:23::i;62349:153::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;62441:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;62472:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;58717:22::-:0;;;;;;;:::i;51777:201::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51866:22:0;::::1;51858:73;;;::::0;-1:-1:-1;;;51858:73:0;;15322:2:1;51858:73:0::1;::::0;::::1;15304:21:1::0;15361:2;15341:18;;;15334:30;15400:34;15380:18;;;15373:62;-1:-1:-1;;;15451:18:1;;;15444:36;15497:19;;51858:73:0::1;15120:402:1::0;51858:73:0::1;51942:28;51961:8;51942:18;:28::i;:::-;51777:201:::0;:::o;64205:246::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;64301:21:::1;64341:18:::0;;::::1;;64333:69;;;::::0;-1:-1:-1;;;64333:69:0;;27188:2:1;64333:69:0::1;::::0;::::1;27170:21:1::0;27227:2;27207:18;;;27200:30;27266:34;27246:18;;;27239:62;-1:-1:-1;;;27317:18:1;;;27310:36;27363:19;;64333:69:0::1;26986:402:1::0;64333:69:0::1;64413:30;::::0;-1:-1:-1;;;;;64413:21:0;::::1;::::0;:30;::::1;;;::::0;64435:7;;64413:30:::1;::::0;;;64435:7;64413:21;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64272:179;64205:246:::0;;:::o;22081:305::-;22183:4;-1:-1:-1;;;;;;22220:40:0;;-1:-1:-1;;;22220:40:0;;:105;;-1:-1:-1;;;;;;;22277:48:0;;-1:-1:-1;;;22277:48:0;22220:105;:158;;;-1:-1:-1;;;;;;;;;;20628:40:0;;;22342:36;20519:157;31821:174;31896:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31896:29:0;-1:-1:-1;;;;;31896:29:0;;;;;;;;:24;;31950:23;31896:24;31950:14;:23::i;:::-;-1:-1:-1;;;;;31941:46:0;;;;;;;;;;;31821:174;;:::o;46772:98::-;46830:7;46857:5;46861:1;46857;:5;:::i;:::-;46850:12;46772:98;-1:-1:-1;;;46772:98:0:o;46373:::-;46431:7;46458:5;46462:1;46458;:5;:::i;28823:110::-;28899:26;28909:2;28913:7;28899:26;;;;;;;;;;;;:9;:26::i;45635:98::-;45693:7;45720:5;45724:1;45720;:5;:::i;28133:348::-;28226:4;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;28243:73;;;;-1:-1:-1;;;28243:73:0;;18302:2:1;28243:73:0;;;18284:21:1;18341:2;18321:18;;;18314:30;18380:34;18360:18;;;18353:62;-1:-1:-1;;;18431:18:1;;;18424:42;18483:19;;28243:73:0;18100:408:1;28243:73:0;28327:13;28343:23;28358:7;28343:14;:23::i;:::-;28327:39;;28396:5;-1:-1:-1;;;;;28385:16:0;:7;-1:-1:-1;;;;;28385:16:0;;:51;;;;28429:7;-1:-1:-1;;;;;28405:31:0;:20;28417:7;28405:11;:20::i;:::-;-1:-1:-1;;;;;28405:31:0;;28385:51;:87;;;-1:-1:-1;;;;;;25225:25:0;;;25201:4;25225:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28440:32;28377:96;28133:348;-1:-1:-1;;;;28133:348:0:o;25335:339::-;25530:41;17382:10;25549:12;17302:98;25530:41;25522:103;;;;-1:-1:-1;;;25522:103:0;;;;;;;:::i;:::-;25638:28;25648:4;25654:2;25658:7;25638:9;:28::i;29817:382::-;-1:-1:-1;;;;;29897:16:0;;29889:61;;;;-1:-1:-1;;;29889:61:0;;21422:2:1;29889:61:0;;;21404:21:1;;;21441:18;;;21434:30;21500:34;21480:18;;;21473:62;21552:18;;29889:61:0;21220:356:1;29889:61:0;27904:4;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;:30;29961:58;;;;-1:-1:-1;;;29961:58:0;;16073:2:1;29961:58:0;;;16055:21:1;16112:2;16092:18;;;16085:30;16151;16131:18;;;16124:58;16199:18;;29961:58:0;15871:352:1;29961:58:0;30032:45;30061:1;30065:2;30069:7;30032:20;:45::i;:::-;-1:-1:-1;;;;;30090:13:0;;;;;;:9;:13;;;;;:18;;30107:1;;30090:13;:18;;30107:1;;30090:18;:::i;:::-;;;;-1:-1:-1;;30119:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30119:21:0;-1:-1:-1;;;;;30119:21:0;;;;;;;;30158:33;;30119:16;;;30158:33;;30119:16;;30158:33;29817:382;;:::o;54533:120::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;54069:41;;;;-1:-1:-1;;;54069:41:0;;14142:2:1;54069:41:0;;;14124:21:1;14181:2;14161:18;;;14154:30;-1:-1:-1;;;14200:18:1;;;14193:50;14260:18;;54069:41:0;13940:344:1;54069:41:0;54592:7:::1;:15:::0;;-1:-1:-1;;;;54592:15:0::1;::::0;;54623:22:::1;17382:10:::0;54632:12:::1;54623:22;::::0;-1:-1:-1;;;;;10529:32:1;;;10511:51;;10499:2;10484:18;54623:22:0::1;;;;;;;54533:120::o:0;46016:98::-;46074:7;46101:5;46105:1;46101;:5;:::i;52138:191::-;52231:6;;;-1:-1:-1;;;;;52248:17:0;;;-1:-1:-1;;;;;;52248:17:0;;;;;;;52281:40;;52231:6;;;52248:17;52231:6;;52281:40;;52212:16;;52281:40;52201:128;52138:191;:::o;54274:118::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;54334:7:::1;:14:::0;;-1:-1:-1;;;;54334:14:0::1;-1:-1:-1::0;;;54334:14:0::1;::::0;;54364:20:::1;54371:12;17382:10:::0;;17302:98;32137:315;32292:8;-1:-1:-1;;;;;32283:17:0;:5;-1:-1:-1;;;;;32283:17:0;;;32275:55;;;;-1:-1:-1;;;32275:55:0;;17948:2:1;32275:55:0;;;17930:21:1;17987:2;17967:18;;;17960:30;18026:27;18006:18;;;17999:55;18071:18;;32275:55:0;17746:349:1;32275:55:0;-1:-1:-1;;;;;32341:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32341:46:0;;;;;;;;;;32403:41;;12431::1;;;32403::0;;12404:18:1;32403:41:0;;;;;;;32137:315;;;:::o;26001:328::-;26176:41;17382:10;26195:12;17302:98;26176:41;26168:103;;;;-1:-1:-1;;;26168:103:0;;;;;;;:::i;:::-;26282:39;26296:4;26302:2;26306:7;26315:5;26282:13;:39::i;17889:723::-;17945:13;18166:10;18162:53;;-1:-1:-1;;18193:10:0;;;;;;;;;;;;-1:-1:-1;;;18193:10:0;;;;;17889:723::o;18162:53::-;18240:5;18225:12;18281:78;18288:9;;18281:78;;18314:8;;;;:::i;:::-;;-1:-1:-1;18337:10:0;;-1:-1:-1;18345:2:0;18337:10;;:::i;:::-;;;18281:78;;;18369:19;18401:6;18391:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18391:17:0;;18369:39;;18419:154;18426:10;;18419:154;;18453:11;18463:1;18453:11;;:::i;:::-;;-1:-1:-1;18522:10:0;18530:2;18522:5;:10;:::i;:::-;18509:24;;:2;:24;:::i;:::-;18496:39;;18479:6;18486;18479:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18479:56:0;;;;;;;;-1:-1:-1;18550:11:0;18559:2;18550:11;;:::i;:::-;;;18419:154;;29160:321;29290:18;29296:2;29300:7;29290:5;:18::i;:::-;29341:54;29372:1;29376:2;29380:7;29389:5;29341:22;:54::i;:::-;29319:154;;;;-1:-1:-1;;;29319:154:0;;;;;;;:::i;31125:578::-;31284:4;-1:-1:-1;;;;;31257:31:0;:23;31272:7;31257:14;:23::i;:::-;-1:-1:-1;;;;;31257:31:0;;31249:85;;;;-1:-1:-1;;;31249:85:0;;22907:2:1;31249:85:0;;;22889:21:1;22946:2;22926:18;;;22919:30;22985:34;22965:18;;;22958:62;-1:-1:-1;;;23036:18:1;;;23029:39;23085:19;;31249:85:0;22705:405:1;31249:85:0;-1:-1:-1;;;;;31353:16:0;;31345:65;;;;-1:-1:-1;;;31345:65:0;;17543:2:1;31345:65:0;;;17525:21:1;17582:2;17562:18;;;17555:30;17621:34;17601:18;;;17594:62;-1:-1:-1;;;17672:18:1;;;17665:34;17716:19;;31345:65:0;17341:400:1;31345:65:0;31423:39;31444:4;31450:2;31454:7;31423:20;:39::i;:::-;31527:29;31544:1;31548:7;31527:8;:29::i;:::-;-1:-1:-1;;;;;31569:15:0;;;;;;:9;:15;;;;;:20;;31588:1;;31569:15;:20;;31588:1;;31569:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31600:13:0;;;;;;:9;:13;;;;;:18;;31617:1;;31600:13;:18;;31617:1;;31600:18;:::i;:::-;;;;-1:-1:-1;;31629:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31629:21:0;-1:-1:-1;;;;;31629:21:0;;;;;;;;;31668:27;;31629:16;;31668:27;;;;;;;31125:578;;;:::o;38293:589::-;-1:-1:-1;;;;;38499:18:0;;38495:187;;38534:40;38566:7;39709:10;:17;;39682:24;;;;:15;:24;;;;;:44;;;39737:24;;;;;;;;;;;;39605:164;38534:40;38495:187;;;38604:2;-1:-1:-1;;;;;38596:10:0;:4;-1:-1:-1;;;;;38596:10:0;;38592:90;;38623:47;38656:4;38662:7;38623:32;:47::i;:::-;-1:-1:-1;;;;;38696:16:0;;38692:183;;38729:45;38766:7;38729:36;:45::i;38692:183::-;38802:4;-1:-1:-1;;;;;38796:10:0;:2;-1:-1:-1;;;;;38796:10:0;;38792:83;;38823:40;38851:2;38855:7;38823:27;:40::i;27211:315::-;27368:28;27378:4;27384:2;27388:7;27368:9;:28::i;:::-;27415:48;27438:4;27444:2;27448:7;27457:5;27415:22;:48::i;:::-;27407:111;;;;-1:-1:-1;;;27407:111:0;;;;;;;:::i;33017:799::-;33172:4;-1:-1:-1;;;;;33193:13:0;;9607:20;9655:8;33189:620;;33229:72;;-1:-1:-1;;;33229:72:0;;-1:-1:-1;;;;;33229:36:0;;;;;:72;;17382:10;;33280:4;;33286:7;;33295:5;;33229:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33229:72:0;;;;;;;;-1:-1:-1;;33229:72:0;;;;;;;;;;;;:::i;:::-;;;33225:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33471:13:0;;33467:272;;33514:60;;-1:-1:-1;;;33514:60:0;;;;;;;:::i;33467:272::-;33689:6;33683:13;33674:6;33670:2;33666:15;33659:38;33225:529;-1:-1:-1;;;;;;33352:51:0;-1:-1:-1;;;33352:51:0;;-1:-1:-1;33345:58:0;;33189:620;-1:-1:-1;33793:4:0;33017:799;;;;;;:::o;40396:988::-;40662:22;40712:1;40687:22;40704:4;40687:16;:22::i;:::-;:26;;;;:::i;:::-;40724:18;40745:26;;;:17;:26;;;;;;40662:51;;-1:-1:-1;40878:28:0;;;40874:328;;-1:-1:-1;;;;;40945:18:0;;40923:19;40945:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40996:30;;;;;;:44;;;41113:30;;:17;:30;;;;;:43;;;40874:328;-1:-1:-1;41298:26:0;;;;:17;:26;;;;;;;;41291:33;;;-1:-1:-1;;;;;41342:18:0;;;;;:12;:18;;;;;:34;;;;;;;41335:41;40396:988::o;41679:1079::-;41957:10;:17;41932:22;;41957:21;;41977:1;;41957:21;:::i;:::-;41989:18;42010:24;;;:15;:24;;;;;;42383:10;:26;;41932:46;;-1:-1:-1;42010:24:0;;41932:46;;42383:26;;;;;;:::i;:::-;;;;;;;;;42361:48;;42447:11;42422:10;42433;42422:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42527:28;;;:15;:28;;;;;;;:41;;;42699:24;;;;;42692:31;42734:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41750:1008;;;41679:1079;:::o;39183:221::-;39268:14;39285:20;39302:2;39285:16;:20::i;:::-;-1:-1:-1;;;;;39316:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39361:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39183:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:679;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:673::-;1341:5;1394:3;1387:4;1379:6;1375:17;1371:27;1361:55;;1412:1;1409;1402:12;1361:55;1448:6;1435:20;1474:4;1498:60;1514:43;1554:2;1514:43;:::i;1498:60::-;1580:3;1604:2;1599:3;1592:15;1632:2;1627:3;1623:12;1616:19;;1667:2;1659:6;1655:15;1719:3;1714:2;1708;1705:1;1701:10;1693:6;1689:23;1685:32;1682:41;1679:61;;;1736:1;1733;1726:12;1679:61;1758:1;1768:163;1782:2;1779:1;1776:9;1768:163;;;1839:17;;1827:30;;1877:12;;;;1909;;;;1800:1;1793:9;1768:163;;1965:160;2030:20;;2086:13;;2079:21;2069:32;;2059:60;;2115:1;2112;2105:12;2130:221;2173:5;2226:3;2219:4;2211:6;2207:17;2203:27;2193:55;;2244:1;2241;2234:12;2193:55;2266:79;2341:3;2332:6;2319:20;2312:4;2304:6;2300:17;2266:79;:::i;2356:186::-;2415:6;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2507:29;2526:9;2507:29;:::i;2547:260::-;2615:6;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2763:38;2797:2;2786:9;2782:18;2763:38;:::i;:::-;2753:48;;2547:260;;;;;:::o;2812:328::-;2889:6;2897;2905;2958:2;2946:9;2937:7;2933:23;2929:32;2926:52;;;2974:1;2971;2964:12;2926:52;2997:29;3016:9;2997:29;:::i;:::-;2987:39;;3045:38;3079:2;3068:9;3064:18;3045:38;:::i;:::-;3035:48;;3130:2;3119:9;3115:18;3102:32;3092:42;;2812:328;;;;;:::o;3145:666::-;3240:6;3248;3256;3264;3317:3;3305:9;3296:7;3292:23;3288:33;3285:53;;;3334:1;3331;3324:12;3285:53;3357:29;3376:9;3357:29;:::i;:::-;3347:39;;3405:38;3439:2;3428:9;3424:18;3405:38;:::i;:::-;3395:48;;3490:2;3479:9;3475:18;3462:32;3452:42;;3545:2;3534:9;3530:18;3517:32;3572:18;3564:6;3561:30;3558:50;;;3604:1;3601;3594:12;3558:50;3627:22;;3680:4;3672:13;;3668:27;-1:-1:-1;3658:55:1;;3709:1;3706;3699:12;3658:55;3732:73;3797:7;3792:2;3779:16;3774:2;3770;3766:11;3732:73;:::i;:::-;3722:83;;;3145:666;;;;;;;:::o;3816:422::-;3909:6;3917;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;4009:29;4028:9;4009:29;:::i;:::-;3999:39;;4089:2;4078:9;4074:18;4061:32;4116:18;4108:6;4105:30;4102:50;;;4148:1;4145;4138:12;4102:50;4171:61;4224:7;4215:6;4204:9;4200:22;4171:61;:::i;:::-;4161:71;;;3816:422;;;;;:::o;4243:254::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:52;;;4385:1;4382;4375:12;4337:52;4408:29;4427:9;4408:29;:::i;:::-;4398:39;;4456:35;4487:2;4476:9;4472:18;4456:35;:::i;4502:254::-;4570:6;4578;4631:2;4619:9;4610:7;4606:23;4602:32;4599:52;;;4647:1;4644;4637:12;4599:52;4670:29;4689:9;4670:29;:::i;:::-;4660:39;4746:2;4731:18;;;;4718:32;;-1:-1:-1;;;4502:254:1:o;4761:348::-;4845:6;4898:2;4886:9;4877:7;4873:23;4869:32;4866:52;;;4914:1;4911;4904:12;4866:52;4954:9;4941:23;4987:18;4979:6;4976:30;4973:50;;;5019:1;5016;5009:12;4973:50;5042:61;5095:7;5086:6;5075:9;5071:22;5042:61;:::i;5114:595::-;5232:6;5240;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5349:9;5336:23;5378:18;5419:2;5411:6;5408:14;5405:34;;;5435:1;5432;5425:12;5405:34;5458:61;5511:7;5502:6;5491:9;5487:22;5458:61;:::i;:::-;5448:71;;5572:2;5561:9;5557:18;5544:32;5528:48;;5601:2;5591:8;5588:16;5585:36;;;5617:1;5614;5607:12;5585:36;;5640:63;5695:7;5684:8;5673:9;5669:24;5640:63;:::i;5714:180::-;5770:6;5823:2;5811:9;5802:7;5798:23;5794:32;5791:52;;;5839:1;5836;5829:12;5791:52;5862:26;5878:9;5862:26;:::i;5899:184::-;5969:6;6022:2;6010:9;6001:7;5997:23;5993:32;5990:52;;;6038:1;6035;6028:12;5990:52;-1:-1:-1;6061:16:1;;5899:184;-1:-1:-1;5899:184:1:o;6088:245::-;6146:6;6199:2;6187:9;6178:7;6174:23;6170:32;6167:52;;;6215:1;6212;6205:12;6167:52;6254:9;6241:23;6273:30;6297:5;6273:30;:::i;6338:249::-;6407:6;6460:2;6448:9;6439:7;6435:23;6431:32;6428:52;;;6476:1;6473;6466:12;6428:52;6508:9;6502:16;6527:30;6551:5;6527:30;:::i;6592:543::-;6680:6;6688;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;6797:9;6784:23;6826:18;6867:2;6859:6;6856:14;6853:34;;;6883:1;6880;6873:12;6853:34;6906:50;6948:7;6939:6;6928:9;6924:22;6906:50;:::i;:::-;6896:60;;7009:2;6998:9;6994:18;6981:32;6965:48;;7038:2;7028:8;7025:16;7022:36;;;7054:1;7051;7044:12;7022:36;;7077:52;7121:7;7110:8;7099:9;7095:24;7077:52;:::i;7140:180::-;7199:6;7252:2;7240:9;7231:7;7227:23;7223:32;7220:52;;;7268:1;7265;7258:12;7220:52;-1:-1:-1;7291:23:1;;7140:180;-1:-1:-1;7140:180:1:o;7325:660::-;7405:6;7413;7421;7474:2;7462:9;7453:7;7449:23;7445:32;7442:52;;;7490:1;7487;7480:12;7442:52;7526:9;7513:23;7503:33;;7587:2;7576:9;7572:18;7559:32;7610:18;7651:2;7643:6;7640:14;7637:34;;;7667:1;7664;7657:12;7637:34;7705:6;7694:9;7690:22;7680:32;;7750:7;7743:4;7739:2;7735:13;7731:27;7721:55;;7772:1;7769;7762:12;7721:55;7812:2;7799:16;7838:2;7830:6;7827:14;7824:34;;;7854:1;7851;7844:12;7824:34;7899:7;7894:2;7885:6;7881:2;7877:15;7873:24;7870:37;7867:57;;;7920:1;7917;7910:12;7867:57;7951:2;7947;7943:11;7933:21;;7973:6;7963:16;;;;;7325:660;;;;;:::o;7990:248::-;8058:6;8066;8119:2;8107:9;8098:7;8094:23;8090:32;8087:52;;;8135:1;8132;8125:12;8087:52;-1:-1:-1;;8158:23:1;;;8228:2;8213:18;;;8200:32;;-1:-1:-1;7990:248:1:o;8243:257::-;8284:3;8322:5;8316:12;8349:6;8344:3;8337:19;8365:63;8421:6;8414:4;8409:3;8405:14;8398:4;8391:5;8387:16;8365:63;:::i;:::-;8482:2;8461:15;-1:-1:-1;;8457:29:1;8448:39;;;;8489:4;8444:50;;8243:257;-1:-1:-1;;8243:257:1:o;8505:985::-;8593:12;;8558:3;;8648:1;8668:18;;;;8721;;;;8748:61;;8802:4;8794:6;8790:17;8780:27;;8748:61;8828:2;8876;8868:6;8865:14;8845:18;8842:38;8839:161;;;8922:10;8917:3;8913:20;8910:1;8903:31;8957:4;8954:1;8947:15;8985:4;8982:1;8975:15;8839:161;9016:18;9043:104;;;;9161:1;9156:328;;;;9009:475;;9043:104;-1:-1:-1;;9076:24:1;;9064:37;;9121:16;;;;-1:-1:-1;9043:104:1;;9156:328;9187:5;9184:1;9177:16;9234:2;9231:1;9221:16;9259:1;9273:165;9287:6;9284:1;9281:13;9273:165;;;9365:14;;9352:11;;;9345:35;9408:16;;;;9302:10;;9273:165;;;9277:3;;9467:6;9462:3;9458:16;9451:23;;9009:475;;;;;;;8505:985;;;;:::o;9495:274::-;9624:3;9662:6;9656:13;9678:53;9724:6;9719:3;9712:4;9704:6;9700:17;9678:53;:::i;:::-;9747:16;;;;;9495:274;-1:-1:-1;;9495:274:1:o;9774:202::-;9904:3;9929:41;9966:3;9958:6;9929:41;:::i;9981:379::-;10157:3;10185:41;10222:3;10214:6;10185:41;:::i;:::-;10255:6;10249:13;10271:52;10316:6;10312:2;10305:4;10297:6;10293:17;10271:52;:::i;:::-;10339:15;;9981:379;-1:-1:-1;;;;9981:379:1:o;10882:488::-;-1:-1:-1;;;;;11151:15:1;;;11133:34;;11203:15;;11198:2;11183:18;;11176:43;11250:2;11235:18;;11228:34;;;11298:3;11293:2;11278:18;;11271:31;;;11076:4;;11319:45;;11344:19;;11336:6;11319:45;:::i;:::-;11311:53;10882:488;-1:-1:-1;;;;;;10882:488:1:o;11654:632::-;11825:2;11877:21;;;11947:13;;11850:18;;;11969:22;;;11796:4;;11825:2;12048:15;;;;12022:2;12007:18;;;11796:4;12091:169;12105:6;12102:1;12099:13;12091:169;;;12166:13;;12154:26;;12235:15;;;;12200:12;;;;12127:1;12120:9;12091:169;;;-1:-1:-1;12277:3:1;;11654:632;-1:-1:-1;;;;;;11654:632:1:o;12935:390::-;13094:2;13083:9;13076:21;13133:6;13128:2;13117:9;13113:18;13106:34;13190:6;13182;13177:2;13166:9;13162:18;13149:48;13246:1;13217:22;;;13241:2;13213:31;;;13206:42;;;;13309:2;13288:15;;;-1:-1:-1;;13284:29:1;13269:45;13265:54;;12935:390;-1:-1:-1;12935:390:1:o;13330:219::-;13479:2;13468:9;13461:21;13442:4;13499:44;13539:2;13528:9;13524:18;13516:6;13499:44;:::i;13554:381::-;13751:2;13740:9;13733:21;13714:4;13777:44;13817:2;13806:9;13802:18;13794:6;13777:44;:::i;:::-;13869:9;13861:6;13857:22;13852:2;13841:9;13837:18;13830:50;13897:32;13922:6;13914;13897:32;:::i;:::-;13889:40;13554:381;-1:-1:-1;;;;;13554:381:1:o;14701:414::-;14903:2;14885:21;;;14942:2;14922:18;;;14915:30;14981:34;14976:2;14961:18;;14954:62;-1:-1:-1;;;15047:2:1;15032:18;;15025:48;15105:3;15090:19;;14701:414::o;18867:340::-;19069:2;19051:21;;;19108:2;19088:18;;;19081:30;-1:-1:-1;;;19142:2:1;19127:18;;19120:46;19198:2;19183:18;;18867:340::o;21581:345::-;21783:2;21765:21;;;21822:2;21802:18;;;21795:30;-1:-1:-1;;;21856:2:1;21841:18;;21834:51;21917:2;21902:18;;21581:345::o;22344:356::-;22546:2;22528:21;;;22565:18;;;22558:30;22624:34;22619:2;22604:18;;22597:62;22691:2;22676:18;;22344:356::o;24281:413::-;24483:2;24465:21;;;24522:2;24502:18;;;24495:30;24561:34;24556:2;24541:18;;24534:62;-1:-1:-1;;;24627:2:1;24612:18;;24605:47;24684:3;24669:19;;24281:413::o;26626:355::-;26828:2;26810:21;;;26867:2;26847:18;;;26840:30;26906:33;26901:2;26886:18;;26879:61;26972:2;26957:18;;26626:355::o;27936:275::-;28007:2;28001:9;28072:2;28053:13;;-1:-1:-1;;28049:27:1;28037:40;;28107:18;28092:34;;28128:22;;;28089:62;28086:88;;;28154:18;;:::i;:::-;28190:2;28183:22;27936:275;;-1:-1:-1;27936:275:1:o;28216:183::-;28276:4;28309:18;28301:6;28298:30;28295:56;;;28331:18;;:::i;:::-;-1:-1:-1;28376:1:1;28372:14;28388:4;28368:25;;28216:183::o;28404:128::-;28444:3;28475:1;28471:6;28468:1;28465:13;28462:39;;;28481:18;;:::i;:::-;-1:-1:-1;28517:9:1;;28404:128::o;28537:120::-;28577:1;28603;28593:35;;28608:18;;:::i;:::-;-1:-1:-1;28642:9:1;;28537:120::o;28662:168::-;28702:7;28768:1;28764;28760:6;28756:14;28753:1;28750:21;28745:1;28738:9;28731:17;28727:45;28724:71;;;28775:18;;:::i;:::-;-1:-1:-1;28815:9:1;;28662:168::o;28835:125::-;28875:4;28903:1;28900;28897:8;28894:34;;;28908:18;;:::i;:::-;-1:-1:-1;28945:9:1;;28835:125::o;28965:258::-;29037:1;29047:113;29061:6;29058:1;29055:13;29047:113;;;29137:11;;;29131:18;29118:11;;;29111:39;29083:2;29076:10;29047:113;;;29178:6;29175:1;29172:13;29169:48;;;-1:-1:-1;;29213:1:1;29195:16;;29188:27;28965:258::o;29228:380::-;29307:1;29303:12;;;;29350;;;29371:61;;29425:4;29417:6;29413:17;29403:27;;29371:61;29478:2;29470:6;29467:14;29447:18;29444:38;29441:161;;;29524:10;29519:3;29515:20;29512:1;29505:31;29559:4;29556:1;29549:15;29587:4;29584:1;29577:15;29613:135;29652:3;-1:-1:-1;;29673:17:1;;29670:43;;;29693:18;;:::i;:::-;-1:-1:-1;29740:1:1;29729:13;;29613:135::o;29753:112::-;29785:1;29811;29801:35;;29816:18;;:::i;:::-;-1:-1:-1;29850:9:1;;29753:112::o;29870:127::-;29931:10;29926:3;29922:20;29919:1;29912:31;29962:4;29959:1;29952:15;29986:4;29983:1;29976:15;30002:127;30063:10;30058:3;30054:20;30051:1;30044:31;30094:4;30091:1;30084:15;30118:4;30115:1;30108:15;30134:127;30195:10;30190:3;30186:20;30183:1;30176:31;30226:4;30223:1;30216:15;30250:4;30247:1;30240:15;30266:127;30327:10;30322:3;30318:20;30315:1;30308:31;30358:4;30355:1;30348:15;30382:4;30379:1;30372:15;30398:127;30459:10;30454:3;30450:20;30447:1;30440:31;30490:4;30487:1;30480:15;30514:4;30511:1;30504:15;30530:131;-1:-1:-1;;;;;;30604:32:1;;30594:43;;30584:71;;30651:1;30648;30641:12

Swarm Source

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