ETH Price: $3,291.96 (-3.91%)
Gas: 12 Gwei

Token

illogics (ill)
 

Overview

Max Total Supply

8,888 ill

Holders

915

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ill
0xd4f5ad513eba5fa9dfb7f4352b2d12cc89d5bf4a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A spaceship has crash landed on earth! Experts believe the ship has come from a planet called illogic. Will you help track down these space creatures?

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
illogics

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-04-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

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

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

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

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

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

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

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

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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");

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) ++count;
        }
        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all");

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

contract VRFRequestIDBase {
    /**
     * @notice returns the seed which is actually input to the VRF coordinator
     *
     * @dev To prevent repetition of VRF output due to repetition of the
     * @dev user-supplied seed, that seed is combined in a hash with the
     * @dev user-specific nonce, and the address of the consuming contract. The
     * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
     * @dev the final seed, but the nonce does protect against repetition in
     * @dev requests which are included in a single block.
     *
     * @param _userSeed VRF seed input provided by user
     * @param _requester Address of the requesting contract
     * @param _nonce User-specific nonce at the time of the request
     */
    function makeVRFInputSeed(
        bytes32 _keyHash,
        uint256 _userSeed,
        address _requester,
        uint256 _nonce
    ) internal pure returns (uint256) {
        return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
    }

    /**
     * @notice Returns the id for this request
     * @param _keyHash The serviceAgreement ID to be used for this request
     * @param _vRFInputSeed The seed to be passed directly to the VRF
     * @return The id for this request
     *
     * @dev Note that _vRFInputSeed is not the seed passed by the consuming
     * @dev contract, but the one generated by makeVRFInputSeed
     */
    function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
    }
}

interface LinkTokenInterface {
    function allowance(address owner, address spender) external view returns (uint256 remaining);

    function approve(address spender, uint256 value) external returns (bool success);

    function balanceOf(address owner) external view returns (uint256 balance);

    function decimals() external view returns (uint8 decimalPlaces);

    function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

    function increaseApproval(address spender, uint256 subtractedValue) external;

    function name() external view returns (string memory tokenName);

    function symbol() external view returns (string memory tokenSymbol);

    function totalSupply() external view returns (uint256 totalTokensIssued);

    function transfer(address to, uint256 value) external returns (bool success);

    function transferAndCall(
        address to,
        uint256 value,
        bytes calldata data
    ) external returns (bool success);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool success);
}

/**
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint256 count;
        for (uint256 i; i < _owners.length; i++) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

interface IIllogics {
    function isAdmin(address addr) external view returns (bool);

    function mintGoop(address _addr, uint256 _goop) external;

    function burnGoop(address _addr, uint256 _goop) external;

    function spendGoop(uint256 _item, uint256 _count) external;

    function mintGoopBatch(address[] calldata _addr, uint256 _goop) external;

    function burnGoopBatch(address[] calldata _addr, uint256 _goop) external;
}

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
    /**
     * @notice fulfillRandomness handles the VRF response. Your contract must
     * @notice implement it. See "SECURITY CONSIDERATIONS" above for ////important
     * @notice principles to keep in mind when implementing your fulfillRandomness
     * @notice method.
     *
     * @dev VRFConsumerBase expects its subcontracts to have a method with this
     * @dev signature, and will call it once it has verified the proof
     * @dev associated with the randomness. (It is triggered via a call to
     * @dev rawFulfillRandomness, below.)
     *
     * @param requestId The Id initially returned by requestRandomness
     * @param randomness the VRF output
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

    /**
     * @dev In order to keep backwards compatibility we have kept the user
     * seed field around. We remove the use of it because given that the blockhash
     * enters later, it overrides whatever randomness the used seed provides.
     * Given that it adds no security, and can easily lead to misunderstandings,
     * we have removed it from usage and can now provide a simpler API.
     */
    uint256 private constant USER_SEED_PLACEHOLDER = 0;

    /**
     * @notice requestRandomness initiates a request for VRF output given _seed
     *
     * @dev The fulfillRandomness method receives the output, once it's provided
     * @dev by the Oracle, and verified by the vrfCoordinator.
     *
     * @dev The _keyHash must already be registered with the VRFCoordinator, and
     * @dev the _fee must exceed the fee specified during registration of the
     * @dev _keyHash.
     *
     * @dev The _seed parameter is vestigial, and is kept only for API
     * @dev compatibility with older versions. It can't *hurt* to mix in some of
     * @dev your own randomness, here, but it's not necessary because the VRF
     * @dev oracle will mix the hash of the block containing your request into the
     * @dev VRF seed it ultimately uses.
     *
     * @param _keyHash ID of public key against which randomness is generated
     * @param _fee The amount of LINK to send with the request
     *
     * @return requestId unique ID for this request
     *
     * @dev The returned requestId can be used to distinguish responses to
     * @dev concurrent requests. It is passed as the first argument to
     * @dev fulfillRandomness.
     */
    function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
        LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
        // This is the seed passed to VRFCoordinator. The oracle will mix this with
        // the hash of the block containing this request to obtain the seed/input
        // which is finally passed to the VRF cryptographic machinery.
        uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
        // nonces[_keyHash] must stay in sync with
        // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
        // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
        // This provides protection against the user repeating their input seed,
        // which would result in a predictable/duplicate output, if multiple such
        // requests appeared in the same block.
        nonces[_keyHash] = nonces[_keyHash] + 1;
        return makeRequestId(_keyHash, vRFSeed);
    }

    LinkTokenInterface internal immutable LINK;
    address private immutable vrfCoordinator;

    // Nonces for each VRF key from which randomness has been requested.
    //
    // Must stay in sync with VRFCoordinator[_keyHash][this]
    mapping(bytes32 => uint256) /* keyHash */ /* nonce */
        private nonces;

    /**
     * @param _vrfCoordinator address of VRFCoordinator contract
     * @param _link address of LINK token contract
     *
     * @dev https://docs.chain.link/docs/link-token-contracts
     */
    constructor(address _vrfCoordinator, address _link) {
        vrfCoordinator = _vrfCoordinator;
        LINK = LinkTokenInterface(_link);
    }

    // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
    // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
    // the origin of the call
    function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
        require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
        fulfillRandomness(requestId, randomness);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * ////IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

interface ILab {
    function getIllogical(uint256 _tokenId) external view returns (uint256);
}

contract illogics is IIllogics, ERC721Enumerable, Ownable, VRFConsumerBase {
    /**************************
     *
     *  DATA STRUCTURES & ENUM
     *
     **************************/

    // Data structure that defines the elements of stakedToken
    struct StakedToken {
        address ownerOfNFT;
        uint256 timestamp;
        uint256 lastRerollPeriod;
    }

    // Data structure that defines the elements of a saleId
    struct Sale {
        string description;
        bool saleStatus;
        uint256 price;
        uint256 supply;
        uint256 maxPurchase;
    }

    /**************************
     *
     *  State Variables
     *
     **************************/

    // ***** constants and assignments *****
    uint256 public maxMint = 2; // ill-list max per minter address
    uint256 public constant REROLL_COST = 50; // Goop required to reroll a token
    uint256 public constant GOOP_INTERVAL = 12 hours; // The interval upon which Goop is calcualated
    uint256 public goopPerInterval = 5; // Goop awarded per interval
    address public teamWallet = 0xB3D1b19202423EcD55ACF1E635ea1Bded11a5c9f; // address of the team wallet

    // ***** ill-list minting *****
    bool public mintingState; // enable/disable minting
    bytes32 public merkleRoot; // ill-list Merkle Root

    // ***** Chainlink VRF & tokenID *****
    IERC20 public link; // address of Chainlink token contract
    uint256 public VRF_fee; // Chainlink VRF fee
    uint256 public periodCounter; // current VRF period
    bytes32 public VRF_keyHash; // Chainlink VRF random number keyhash
    string public baseURI; // URI to illogics metadata

    // ***** Goop ecosystem & Sales *****
    uint256 public totalGoopSupply; // total Goop in circulation
    uint256 public totalGoopSpent; // total Goop spent in the ecosystem
    uint256 public saleId; // last saleID applied to a saleItem

    // ***** feature state management *****
    bool public spendState; // Goop spending state
    bool public rerollState; // reroll function state
    bool public stakingState; // staking state
    bool public transferState; // Goop P2P transfer state
    bool public claimStatus; // Goop claim status
    bool public verifyVRF; // can only be set once, used to validate the Chainlink config prior to mint

    // ***** OpenSea *****
    address public proxyRegistryAddress; // proxyRegistry address

    // ***** TheLab *****
    address public labAddress; // the address of TheLab ;)

    /**************************
     *
     *  Mappings
     *
     **************************/

    mapping(uint256 => Sale) public saleItems; // mapping of saleId to the Sale data scructure
    mapping(uint256 => StakedToken) public stakedToken; // mapping of tokenId to the StakedToken data structure
    mapping(address => uint256) public goop; // mapping of address to a Goop balance
    mapping(address => uint256[]) public staker; // mapping of address to owned tokens staked
    mapping(uint256 => uint256) public collectionDNA; // mapping of VRF period to seed DNA for said period
    mapping(uint256 => uint256[]) public rollTracker; // mapping reroll period (periodCounter) entered to tokenIds
    mapping(address => bool) private admins; // mapping of address to an administrative status
    mapping(address => bool) public projectProxy; // mapping of address to projectProxy status
    mapping(address => bool) public addressToMinted; // mapping of address to minted status
    mapping(address => mapping(uint256 => uint256)) public addressPurchases; // mapping of an address to an saleItemId to number of units purchased

    /**********************************************************
     *
     *  Events
     *
     **********************************************************/

    event RequestedRandomNumber(bytes32 indexed requestId); // emitted when the ChainLink VRF is requested
    event RecievedRandomNumber(bytes32 indexed requestId, uint256 periodCounter, uint256 randomNumber); // emitted when a random number is recieved by the Chainlink VRF callback()
    event spentGoop(address indexed purchaser, uint256 indexed item, uint256 indexed count); //emitted when an item is purchased with Goop

    /**********************************************************
     *
     *  Constructor
     *
     **********************************************************/

    /**
     * @dev Initializes the contract by:
     *  - setting a `name` and a `symbol` in the ERC721 constructor
     *  - setting the Chainlnk VRFConsumerBase constructor
     *  - setting collection dependant assignments
     */

    constructor(
        bytes32 _VRF_keyHash,
        uint256 _VRF_Fee,
        address _vrfCoordinator,
        address _linkToken
    ) ERC721("illogics", "ill") VRFConsumerBase(_vrfCoordinator, _linkToken) {
        VRF_keyHash = _VRF_keyHash;
        VRF_fee = _VRF_Fee;
        link = IERC20(address(_linkToken));
        admins[_msgSender()] = true;
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    }

    /**********************************************************
     *
     *  Modifiers
     *
     **********************************************************/

    /**
     * @dev Ensures only contract admins can execute privileged functions
     */
    modifier onlyAdmin() {
        require(isAdmin(_msgSender()), "admins only");
        _;
    }

    /**********************************************************
     *
     *  Contract Management
     *
     **********************************************************/

    /**
     * @dev Check is an address is an admin
     */
    function isAdmin(address _addr) public view override returns (bool) {
        return owner() == _addr || admins[_addr];
    }

    /**
     * @dev Grant administrative control to an address
     */
    function addAdmin(address _addr) external onlyAdmin {
        admins[_addr] = true;
    }

    /**
     * @dev Revoke administrative control for an address
     */
    function removeAdmin(address _addr) external onlyAdmin {
        admins[_addr] = false;
    }

    /**********************************************************
     *
     *  Admin and Contract setters
     *
     **********************************************************/

    /**
     *  @dev running this after the constructor adds the deployed address
     *  of this contract to the admins
     */
    function init() external onlyAdmin {
        admins[address(this)] = true;
    }

    /**
     * @dev enables//disables minting state
     */
    function setMintingState(bool _state) external onlyAdmin {
        mintingState = _state;
    }

    /**
     * @dev enable/disable staking, this does not impact unstaking
     */
    function setStakingState(bool _state) external onlyAdmin {
        stakingState = _state;
    }

    /**
     *  @dev enable/disable reroll, this must be in a disabled state
     *  prior to calling the final VRF
     */
    function setRerollState(bool _state) external onlyAdmin {
        rerollState = _state;
    }

    /**
     * @dev enable/disable P2P transfer of Goop
     */
    function setTransferState(bool _state) external onlyAdmin {
        transferState = _state;
    }

    /**
     * @dev enable/disable the ability to spend Goop
     */
    function setSpendState(bool _state) external onlyAdmin {
        spendState = _state;
    }

    /**
     * @dev set TheLab address (likely some future Alpha here)
     */
    function setLabAddress(address _labAddress) external onlyAdmin {
        labAddress = _labAddress;
    }

    /**
     * @dev set the baseURI.
     */
    function setBaseURI(string memory _baseURI) public onlyAdmin {
        baseURI = _baseURI;
    }

    /**
     * @dev Set the maxMint
     */
    function setMaxMint(uint256 _maxMint) external onlyAdmin {
        maxMint = _maxMint;
    }

    /**
     * @dev set the amount of Goop earned per interval
     */
    function setGoopPerInterval(uint256 _goopPerInterval) external onlyAdmin {
        goopPerInterval = _goopPerInterval;
    }

    /**
     * @dev enable/disable Goop claiming
     */
    function setClaim(bool _claimStatus) external onlyAdmin {
        claimStatus = _claimStatus;
    }

    /**********************************************************
     *
     *  The illest ill-list
     *
     **********************************************************/

    /**
     * @dev set the merkleTree root
     */
    function setMerkleRoot(bytes32 _merkleRoot) public onlyAdmin {
        merkleRoot = _merkleRoot;
    }

    /**
     * @dev calculates the leaf hash
     */
    function leaf(string memory payload) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(payload));
    }

    /**
     * @dev verifies the inclusion of the leaf hash in the merkleTree
     */
    function verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    /**********************************************************
     *
     *  TheLab
     *
     **********************************************************/

    /**
     * @notice expect big things from this...
     */
    function multiHelix(uint256 _tokenId) public view returns (uint256) {
        require(labAddress != address(0x0), "The Lab is being setup.");
        return ILab(labAddress).getIllogical(_tokenId);
    }

    /**********************************************************
     *
     *  Token management
     *
     **********************************************************/

    /**
     *  @dev ill-list leverages merkleTree for the mint, there is no public sale.
     *
     *  The first token in the collection is 0 and the last token is 8887, which
     *  equates to a collection size of 8888. Gas optimization uses an index based
     *  model that returns an array size of 8888. As another gas optimization, we
     *  refrained from <= or >= and as a result we must +1, hence the < 8889.
     */
    function illListMint(bytes32[] calldata proof) public payable {
        string memory payload = string(abi.encodePacked(_msgSender()));
        uint256 totalSupply = _owners.length;

        require(mintingState, "Ill-list not active");
        require(verify(leaf(payload), proof), "Invalid Merkle Tree proof supplied");
        require(addressToMinted[_msgSender()] == false, "can not mint twice");
        require(totalSupply + maxMint < 8889, "project fully minted");

        addressToMinted[_msgSender()] = true;

        for (uint256 i; i < maxMint; i++) {
            _mint(_msgSender(), totalSupply + i);
        }
    }

    /**
     * @dev mints 'tId' to 'address'
     */
    function _mint(address to, uint256 tId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tId);
    }

    /**********************************************************
     *
     *  TOKEN
     *
     **********************************************************/

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for the `tokenId` token.
     */
    function tokenURI(uint256 _tId) public view override returns (string memory) {
        require(_exists(_tId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tId)));
    }

    /**
     * @dev transfer an array of tokens from '_from' address to '_to' address
     */
    function batchTransferFrom(
        address _from,
        address _to,
        uint256[] memory _tIds
    ) public {
        for (uint256 i = 0; i < _tIds.length; i++) {
            transferFrom(_from, _to, _tIds[i]);
        }
    }

    /**
     * @dev safe transfer an array of tokens from '_from' address to '_to' address
     */
    function batchSafeTransferFrom(
        address _from,
        address _to,
        uint256[] memory _tIds,
        bytes memory data_
    ) public {
        for (uint256 i = 0; i < _tIds.length; i++) {
            safeTransferFrom(_from, _to, _tIds[i], data_);
        }
    }

    /**
     * @dev returns a confirmation that 'tIds' are owned by 'account'
     */
    function isOwnerOf(address account, uint256[] calldata _tIds) external view returns (bool) {
        for (uint256 i; i < _tIds.length; ++i) {
            if (_owners[_tIds[i]] != account) return false;
        }

        return true;
    }

    /**
     * @dev Retunrs the tokenIds of 'owner'
     */
    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

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

        return tokensId;
    }

    /**********************************************************
     *
     *  GENEROSITY + ETH FUNDING
     *
     **********************************************************/

    /**
     * @dev Just in case someone sends ETH to the contract
     */
    function withdraw() public {
        (bool success, ) = teamWallet.call{value: address(this).balance}("");
        require(success, "Failed to send.");
    }

    receive() external payable {}

    /**********************************************************
     *
     *  CHAINLINK VRF & TOKEN DNA
     *
     **********************************************************/

    /**
     * @dev Requests a random number from the Chainlink VRF
     */
    function requestRandomNumber() external onlyAdmin returns (bytes32 requestId) {
        require(LINK.balanceOf(address(this)) >= VRF_fee, "Not enough LINK");
        requestId = requestRandomness(VRF_keyHash, VRF_fee);

        emit RequestedRandomNumber(requestId);
    }

    /**
     * @dev Receives the random number from the Chainlink VRF callback
     */
    function fulfillRandomness(bytes32 _requestId, uint256 _randomNumber) internal override {
        periodCounter++;
        collectionDNA[periodCounter] = _randomNumber;

        emit RecievedRandomNumber(_requestId, periodCounter, _randomNumber);
    }

    /**
     * @dev this allows you to test the VRF call to ensure it works as expected prior to mint
     * It resets the collectionDNA and period counter to defaults prior to minting.
     */
    function setVerifyVRF() external onlyAdmin {
        require(!verifyVRF, "this is a one way function it can not be called twice");
        collectionDNA[1] = 0;
        periodCounter = 0;
        verifyVRF = true;
    }

    /**
     *  @notice A reroll is an opportunity to change your tokenDNA and only available when reroll is enabled.
     *  A token that is rerolled gets brand new tokenDNA that is generated in the next reroll period
     *  with the result of the Chainlink VRF requestRandomNumber(). Its impossible to know the result
     *  of your reroll in advance of the Chainlink call and as a result you may end up with a rarer
     *  or less rare tokenDNA.
     */
    function reroll(uint256[] calldata _tokenIds) external {
        uint256 amount = REROLL_COST * _tokenIds.length;
        require(rerollState, "reroll not enabled");
        require(goop[_msgSender()] >= amount, "not enough goop for reroll");

          for (uint256 i = 0; i < _tokenIds.length; i++) {

            require(stakedToken[_tokenIds[i]].ownerOfNFT == _msgSender(), "you dont own this token or its not staked");

            rollTracker[periodCounter + 1].push(_tokenIds[i]);
            stakedToken[_tokenIds[i]].lastRerollPeriod = periodCounter;
        }

        _burnGoop(_msgSender(), amount);
    }

    /**
     * @dev Set/change the Chainlink VRF keyHash
     */
    function setVRFKeyHash(bytes32 _keyHash) external onlyAdmin {
        VRF_keyHash = _keyHash;
    }

    /**
     * @dev Set/change the Chainlink VRF fee
     */
    function setVRFFee(uint256 _fee) external onlyAdmin {
        VRF_fee = _fee;
    }

    /**
     * @notice
     *  - tokenDNA is generated dynamically based on the relevant Chainlink VRF seed. If a token is never
     *    rerolled, it will be constructed based on period 1 (initial VRF) seed. if a token is rerolled in
     *    period 5, its DNA will be based on the VRF seed for period 6. This ensures that no one can
     *    predict or manipulate tokenDNA
     *  - tokenDNA is generated on the fly and not maintained as state on-chain or off-chain.
     *  - tokenDNA is used to construct the unique metadata for each NFT
     *
     *  - Some people may not like this function as its based on nested loops, so here is the logic
     *    1. this is an external function and is never called by this contract or future contract
     *    2. the maximum depth of i will ever be 20, after which all tokenDNA is permanent
     *    3. it ensures tokenDNA is always correct under all circumstances
     *    4. it has 0 gas implications
     */
    function getTokenDNA(uint256 _tId) external view returns (uint256) {
        require(_tId < _owners.length, "tokenId out of range");

        for (uint256 i = periodCounter; i > 0; i--) {
            if (i == 1) {
                return uint256(keccak256(abi.encode(collectionDNA[i], _tId)));
            } else {
                for (uint256 j = 0; j < rollTracker[i].length; j++) {
                    if (rollTracker[i][j] == _tId) {
                        return uint256(keccak256(abi.encode(collectionDNA[i], _tId)));
                    }
                }
            }
        }
    }

    /**
     * @notice To maintain transparency with awarding the "1/1" tokens we are leveraging
     * ChainlinkVRF. To accomplish this we are calling requestRandomNumber() after the reveal
     * and will use the next periodCounter to derive a fair one of one giveaway.
     */
    function get1of1() external view returns (uint256[] memory) {
        uint256[] memory oneOfOnes = new uint256[](20);
        uint256 counter;
        uint256 addCounter;
        bool matchStatus;

        while (addCounter < 20) {
            uint256 result = (uint256(keccak256(abi.encode(collectionDNA[2], counter))) % 8887);

            for (uint256 i = 0; i < oneOfOnes.length; i++) {
                if (result == oneOfOnes[i]) {
                    matchStatus = true;
                    break;
                }
            }

            if (!matchStatus) {
                oneOfOnes[addCounter] = result;
                addCounter++;
            } else {
                matchStatus = false;
            }
            counter++;
        }
        return oneOfOnes;
    }

    /**********************************************************
     *
     *  STAKING & UNSTAKING
     *
     **********************************************************/

    /**
     * @notice Staking your NFT transfers ownership to (this) contract until you unstake it.
     * When an NFT is staked you will earn Goop, which can be used within the illogics
     * ecosystem to procure items we have for sale.
     */
    function stakeNFT(uint256[] calldata _tokenIds) external {
        require(stakingState, "staking not enabled");

        for (uint256 i = 0; i < _tokenIds.length; i++) {
            require(ownerOf(_tokenIds[i]) == _msgSender(), "you are not the owner");

            safeTransferFrom(_msgSender(), address(this), _tokenIds[i]);

            stakedToken[_tokenIds[i]].ownerOfNFT = _msgSender();
            stakedToken[_tokenIds[i]].timestamp = block.timestamp;
            staker[_msgSender()].push(_tokenIds[i]);
        }
    }

    /**
     * @notice unstaking a token that has unrealized Goop forfeits the Goop associated
     * with the token(s) being unstaked. This was done intentionally as a holder may
     * not to pay the gas costs associated with claiming Goop. Please see unstakeAndClaim
     * to also claim Goop.
     *
     * Unstaking your NFT transfers ownership back to the address that staked it.
     * When an NFT is unstaked, you will no longer be earning Goop.
     */
    function unstakeNFT(uint256[] calldata _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {

            require(stakedToken[_tokenIds[i]].ownerOfNFT == _msgSender(), "you are not the owner");
            require(canBeUnstaked(_tokenIds[i]), "token in reroll or cool down period");

            _transfer(address(this), _msgSender(), _tokenIds[i]);

            delete stakedToken[_tokenIds[i]].ownerOfNFT;
            delete stakedToken[_tokenIds[i]].timestamp;
            delete stakedToken[_tokenIds[i]].lastRerollPeriod;

            /**
             * @dev - iterates the array of tokens staked and pops the one being unstaked
             */
            for (uint256 j = 0; j < staker[_msgSender()].length; j++) {
                if (staker[_msgSender()][j] == _tokenIds[i]) {
                    staker[_msgSender()][j] = staker[_msgSender()][staker[_msgSender()].length - 1];
                    staker[_msgSender()].pop();
                }
            }
        }
    }

    /**
     * @dev unstakeAndClaim will unstake the token and realize the Goop that it has earned.
     * If you are not interested in earning Goop you can call unstaske and save the gas.
     * Unstaking your NFT transfers ownership back to the address that staked it.
     * When an NFT is unstaked you will no longer be earning Goop.
     */
    function unstakeAndClaim(uint256[] calldata _tokenIds) external {
        claimGoop();
        unstakeNFT(_tokenIds);
    }

    /**
     * @notice
     * - An address requests a reroll for a tokenId, the tokenDNA is updated after the subsequent VRF request.
     * - To prevent the sale of a token prior to the tokenDNA and metadata being refreshed in the marketplace,
     *   we have implemented a cool-down period. The cool down period will allow a token to be unstaked when
     *   it is not in the previous period
     */
    function canBeUnstaked(uint256 _tokenId) public view returns (bool) {
        // token has never been rerolled and can be unstaked
        if (stakedToken[_tokenId].lastRerollPeriod == 0) {
            return true;
        }
        // token waiting for next VRF and can not be unstaked
        if (stakedToken[_tokenId].lastRerollPeriod == periodCounter) {
            return false;
        }
        // token in cooldown period after the reroll and can not be unstaked
        if (periodCounter - stakedToken[_tokenId].lastRerollPeriod == 1) {
            return false;
        }

        return true;
    }

    /**
     * @dev returns an array of tokens that an address has staked
     */
    function ownerStaked(address _addr) public view returns (uint256[] memory) {
        return staker[_addr];
    }

    // enables safeTransferFrom function to send ERC721 tokens to this contract (used in staking)
    function onERC721Received(
        address operator,
        address from,
        uint256 tId,
        bytes calldata data
    ) external pure returns (bytes4) {
        return bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"));
    }

    /**********************************************************
     *
     *  GOOP ECOSYSTEM
     *
     **********************************************************/

    /**
     * @notice
     *  - Goop is an internal point system, there are no goop tokenomics as it
     *    is minted when claimed and burned when spent. As such the amount of goop
     *    in circulation is constantly changing.
     *  - Goop may resemble an ERC20, it can be transferred or donated P2P, however
     *    it cannot be traded on an exchange and has no monetary value, further it
     *    can only be used in the illogics ecosystem.
     *  - Goop exists in 2 forms, claimed and unclaimed, in order to spend goop
     *    it must be claimed.
     */

    /**
     * @dev Goop earned as a result of staking but not yet claimed/realized
     */
    function unclaimedGoop() external view returns (uint256) {
        address addr = _msgSender();
        uint256 stakedTime;

        for (uint256 i = 0; i < staker[addr].length; i++) {

            stakedTime += block.timestamp - stakedToken[staker[addr][i]].timestamp;
        }
        return (stakedTime / GOOP_INTERVAL) * goopPerInterval;
    }

    /**
     * @dev claim earned Goop without unstaking
     */
    function claimGoop() public {
        require(claimStatus, "GOOP: claim not enabled");

        address addr = _msgSender();
        uint256 stakedTime;

        for (uint256 i = 0; i < staker[addr].length; i++) {
            stakedTime += block.timestamp - stakedToken[staker[addr][i]].timestamp;
            stakedToken[staker[addr][i]].timestamp = block.timestamp;
        }
        _mintGoop(addr, (stakedTime / GOOP_INTERVAL) * goopPerInterval);
    }

    /**
     *
     * @dev Moves `amount` Goop from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     */
    function transferGoop(address _to, uint256 _amount) public returns (bool) {
        address owner = _msgSender();
        _transferGoop(owner, _to, _amount);
        return true;
    }

    /**
     * @dev Moves `amount` of Goop from `sender` to `recipient`.
     */
    function _transferGoop(
        address from,
        address to,
        uint256 _amount
    ) internal {
        require(transferState, "GOOP: transfer not enabled");
        require(from != address(0), "GOOP: transfer from the zero address");
        require(to != address(0), "GOOP: transfer to the zero address");

        uint256 fromBalance = goop[from];
        require(goop[from] >= _amount, "GOOP: insufficient balance ");
        unchecked {
            goop[from] = fromBalance - _amount;
        }
        goop[to] += _amount;
    }

    /**
     * @dev admin function to mint Goop to a single address
     */
    function mintGoop(address _addr, uint256 _goop) external override onlyAdmin {
        _mintGoop(_addr, _goop);
    }

    /**
     * @dev admin function to mint Goop to multiple addresses
     */
    function mintGoopBatch(address[] calldata _addr, uint256 _goop) external override onlyAdmin {
        for (uint256 i = 0; i < _addr.length; i++) {
            _mintGoop(_addr[i], _goop);
        }
    }

    /**
     * @dev Creates `amount` Goop and assigns them to `account`
     */
    function _mintGoop(address account, uint256 amount) internal {
        require(account != address(0), "GOOP: mint to the zero address");

        totalGoopSupply += amount;
        goop[account] += amount;
    }

    /**
     * @dev admin function to burn Goop from a single address
     */
    function burnGoop(address _addr, uint256 _goop) external override onlyAdmin {
        _burnGoop(_addr, _goop);
    }

    /**
     * @dev admin function to burn Goop from multiple addresses
     */
    function burnGoopBatch(address[] calldata _addr, uint256 _goop) external override onlyAdmin {
        for (uint256 i = 0; i < _addr.length; i++) {
            _burnGoop(_addr[i], _goop);
        }
    }

    /**
     * @dev permits Goop to be spent within the illogics ecosystem
     */
    function spendGoop(uint256 _item, uint256 _count) public override {
        addressPurchases[_msgSender()][_item] += _count;

        require(spendState, "GOOP: spending not enabled");
        require(saleItems[_item].saleStatus, "Item not currently for sale");
        require(saleItems[_item].supply >= _count, "Item sold out.");
        require(addressPurchases[_msgSender()][_item] <= saleItems[_item].maxPurchase, "Exceeded allowed purchase quantity");

        uint256 cost = _count * saleItems[_item].price;
        require(goop[_msgSender()] >= cost, "Insufficient goop.");

        _burnGoop(_msgSender(), cost);

        saleItems[_item].supply -= _count;
        totalGoopSpent += _count * saleItems[_item].price;

        emit spentGoop(_msgSender(), _item, _count);
    }

    /**
     * @dev Destroys `amount` Goop from `account`
     */
    function _burnGoop(address account, uint256 amount) internal {
        require(account != address(0), "GOOP: burn from the zero address");

        uint256 accountBalance = goop[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            goop[account] = accountBalance - amount;
        }
        totalGoopSupply -= amount;
    }

    /**********************************************************
     *
     *  GOOP SALE
     *
     **********************************************************/

    /**
     * @dev creates a new sale item and sets the sale elements
     */
    function createNewSale(
        string memory _description,
        bool _saleState,
        uint256 _price,
        uint256 _supply,
        uint256 _maxPurchase
    ) external onlyAdmin {
        saleId++;
        saleItems[saleId] = Sale(_description, _saleState, _price, _supply, _maxPurchase);
    }

    /**
     * @dev changes the description of the selected item
     */
    function setSaleDescription(uint256 _item, string memory _description) external onlyAdmin {
        saleItems[_item].description = _description;
    }

    /**
     * @dev enable/disable the sale of the selected item     
     */
    function setSaleStatus(uint256 _item, bool _saleStatus) external onlyAdmin {
        saleItems[_item].saleStatus = _saleStatus;
    }

    /**
     * @dev changes the sale price of the selected item
     */
    function setSalePrice(uint256 _item, uint256 _price) external onlyAdmin {
        saleItems[_item].price = _price;
    }

    /**
     * @dev changes supply of the selected item
     */
    function setSaleSupply(uint256 _item, uint256 _supply) external onlyAdmin {
        saleItems[_item].supply = _supply;
    }

    /**
     * @dev changes the max amount an address can purchase of the selected item
     */
    function setMaxPurchase(uint256 _item, uint256 _maxPurchase) external onlyAdmin {
        saleItems[_item].maxPurchase = _maxPurchase;
    }

    /**********************************************************
     *
     *  OPENSEA
     *
     **********************************************************/

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyAdmin {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }
}

contract OwnableDelegateProxy {}

contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_VRF_keyHash","type":"bytes32"},{"internalType":"uint256","name":"_VRF_Fee","type":"uint256"},{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_linkToken","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":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"periodCounter","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"RecievedRandomNumber","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"RequestedRandomNumber","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":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":true,"internalType":"uint256","name":"item","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"count","type":"uint256"}],"name":"spentGoop","type":"event"},{"inputs":[],"name":"GOOP_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REROLL_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VRF_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VRF_keyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_goop","type":"uint256"}],"name":"burnGoop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"_goop","type":"uint256"}],"name":"burnGoopBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"canBeUnstaked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimGoop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionDNA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"},{"internalType":"bool","name":"_saleState","type":"bool"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"createNewSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"get1of1","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tId","type":"uint256"}],"name":"getTokenDNA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"goop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goopPerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"illListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"labAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"link","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_goop","type":"uint256"}],"name":"mintGoop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"_goop","type":"uint256"}],"name":"mintGoopBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"multiHelix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"ownerStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestRandomNumber","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"reroll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rerollState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rollTracker","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"saleItems","outputs":[{"internalType":"string","name":"description","type":"string"},{"internalType":"bool","name":"saleStatus","type":"bool"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"maxPurchase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimStatus","type":"bool"}],"name":"setClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_goopPerInterval","type":"uint256"}],"name":"setGoopPerInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_labAddress","type":"address"}],"name":"setLabAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRerollState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"setSaleDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"bool","name":"_saleStatus","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSpendState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setStakingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setTransferState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setVRFFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_keyHash","type":"bytes32"}],"name":"setVRFKeyHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setVerifyVRF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_item","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"spendGoop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spendState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"stakeNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedToken","outputs":[{"internalType":"address","name":"ownerOfNFT","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"lastRerollPeriod","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"staker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGoopSpent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGoopSupply","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferGoop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedGoop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"unstakeAndClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"unstakeNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifyVRF","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260026007556005600855600980546001600160a01b03191673b3d1b19202423ecd55acf1e635ea1bded11a5c9f1790553480156200004157600080fd5b5060405162005991380380620059918339810160408190526200006491620002ae565b6040805180820182526008815267696c6c6f6769637360c01b6020808301918252835180850190945260038452621a5b1b60ea1b90840152815185938593929091620000b391600091620001eb565b508051620000c9906001906020840190620001eb565b505050620000e6620000e06200019560201b60201c565b62000199565b606091821b6001600160601b031990811660a052911b16608052600e849055600c839055600b80546001600160a01b0319166001600160a01b0383161790556001601b6000620001333390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055505060138054600160301b600160d01b03191679a5409ec958c83c3f309868babaca7c86dcb077c100000000000017905550620003369050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f990620002f9565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b80516001600160a01b0381168114620002a957600080fd5b919050565b60008060008060808587031215620002c557600080fd5b8451935060208501519250620002de6040860162000291565b9150620002ee6060860162000291565b905092959194509250565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c6156216200037060003960008181612b43015261411601526000818161269801526140e701526156216000f3fe6080604052600436106105e45760003560e01c80638453734d1161030e578063c32ffe1b1161019b578063e082f1d4116100e7578063f23eb399116100a0578063f4b46fd81161007a578063f4b46fd81461128a578063f73c814b146112aa578063fa347f04146112ca578063fe1684771461130257600080fd5b8063f23eb3991461122a578063f2fde38b1461124a578063f3993d111461126a57600080fd5b8063e082f1d41461118a578063e183a6d6146111aa578063e1c7392a146111c0578063e666f293146111d5578063e985e9c5146111f5578063efbaceb71461121557600080fd5b8063cdc1cc2011610154578063d26ea6c01161012e578063d26ea6c014611114578063d56be50214611134578063dd3c5eaf1461114a578063e05492111461116a57600080fd5b8063cdc1cc20146110cf578063cdc5c031146110e4578063ceb0c250146110fe57600080fd5b8063c32ffe1b14610fc7578063c4c4f9cc14610fe7578063c5e01a5c14611007578063c84c038714611072578063c87b56dd14611088578063cd7c0326146110a857600080fd5b80639ec00c951161025a578063ae87fc4b11610213578063b88d4fde116101ed578063b88d4fde14610f47578063bf04da0a14610f67578063c2012e8b14610f87578063c30e01b614610fa757600080fd5b8063ae87fc4b14610ee5578063b413b4e414610f07578063b54c5c3114610f2757600080fd5b80639ec00c9514610e20578063a0983be514610e50578063a0a9cf2914610e66578063a22cb46514610e86578063a7769a4414610ea6578063aceca17214610ec557600080fd5b80638da5cb5b116102c757806395d89b41116102a157806395d89b4114610dab57806398963f7a14610dc05780639bbf832514610de05780639e4bfaa514610e0057600080fd5b80638da5cb5b14610d4c57806392c00a3f14610d6a57806394985ddd14610d8b57600080fd5b80638453734d14610c8657806384a4913b14610ca65780638678a7b214610cd3578063872eb7b614610ce85780638a510adc14610cfb5780638abf209214610d1b57600080fd5b80633b51e5cf1161048c5780635bab26e2116103d857806370d82dee116103915780637cb647591161036b5780637cb6475914610c1a5780637f77e6c314610c3a5780638044644f14610c5057806383e3deb614610c7057600080fd5b806370d82dee14610bda578063715018a614610bef5780637501f74114610c0457600080fd5b80635bab26e214610b155780636352211e14610b45578063648f3b0114610b655780636c0360eb14610b855780637048027514610b9a57806370a0823114610bba57600080fd5b80634d44660c1161044557806355f804b31161041f57806355f804b314610a955780635992704414610ab55780635a4fee3014610ad55780635ad873ff14610af557600080fd5b80634d44660c14610a355780634f6ccce714610a55578063547520fe14610a7557600080fd5b80633b51e5cf146109735780633ccfd60b146109935780633ecb51c0146109a857806342842e0e146109c8578063438b6300146109e8578063499f2a6f14610a1557600080fd5b806318160ddd1161054b57806324d7806c116105045780632f745c59116104de5780632f745c59146108f357806330da44cb146109135780633557c1f61461093357806337bc25d41461095357600080fd5b806324d7806c1461089a5780632dc66b01146108ba5780632eb4a7ab146108dd57600080fd5b806318160ddd146107e5578063182c5744146107fa5780631c4695f41461081a578063211418ab1461083a57806323b872dd1461085a57806323cc2df21461087a57600080fd5b80630ce157311161059d5780630ce15731146106fc5780630e6d3a8914610711578063104f2374146107325780631132a58714610752578063150b7a02146107675780631785f53c146107c557600080fd5b806301ffc9a7146105f057806302d7e8ad14610625578063053992c51461066057806306fdde0314610682578063081812fc146106a4578063095ea7b3146106dc57600080fd5b366105eb57005b600080fd5b3480156105fc57600080fd5b5061061061060b366004614f4e565b611318565b60405190151581526020015b60405180910390f35b34801561063157600080fd5b50610652610640366004614b22565b60176020526000908152604090205481565b60405190815260200161061c565b34801561066c57600080fd5b5061068061067b366004614f2c565b611343565b005b34801561068e57600080fd5b50610697611386565b60405161061c9190615279565b3480156106b057600080fd5b506106c46106bf366004614f13565b611418565b6040516001600160a01b03909116815260200161061c565b3480156106e857600080fd5b506106806106f7366004614e21565b6114a0565b34801561070857600080fd5b506106526115b6565b34801561071d57600080fd5b5060095461061090600160a01b900460ff1681565b34801561073e57600080fd5b5061068061074d366004614e21565b611672565b34801561075e57600080fd5b50610652603281565b34801561077357600080fd5b506107ac610782366004614ca2565b7f150b7a023d4804d13e8c85fb27262cb750cf6ba9f9dd3bb30d90f482ceeb4b1f95945050505050565b6040516001600160e01b0319909116815260200161061c565b3480156107d157600080fd5b506106806107e0366004614b22565b6116a5565b3480156107f157600080fd5b50600254610652565b34801561080657600080fd5b50610680610815366004614e98565b6116eb565b34801561082657600080fd5b50600b546106c4906001600160a01b031681565b34801561084657600080fd5b50610680610855366004614ed9565b6118ce565b34801561086657600080fd5b50610680610875366004614c61565b611913565b34801561088657600080fd5b50610680610895366004614ed9565b611944565b3480156108a657600080fd5b506106106108b5366004614b22565b611983565b3480156108c657600080fd5b506013546106109065010000000000900460ff1681565b3480156108e957600080fd5b50610652600a5481565b3480156108ff57600080fd5b5061065261090e366004614e21565b6119d0565b34801561091f57600080fd5b5061068061092e366004614f13565b611a83565b34801561093f57600080fd5b506014546106c4906001600160a01b031681565b34801561095f57600080fd5b5061061061096e366004614f13565b611aad565b34801561097f57600080fd5b5061068061098e366004614ed9565b611b25565b34801561099f57600080fd5b50610680611b66565b3480156109b457600080fd5b506106806109c3366004614ed9565b611bfe565b3480156109d457600080fd5b506106806109e3366004614c61565b611c41565b3480156109f457600080fd5b50610a08610a03366004614b22565b611c5c565b60405161061c9190615235565b348015610a2157600080fd5b50610680610a30366004614e4d565b611d14565b348015610a4157600080fd5b50610610610a50366004614d9f565b611d8c565b348015610a6157600080fd5b50610652610a70366004614f13565b611e0e565b348015610a8157600080fd5b50610680610a90366004614f13565b611e7b565b348015610aa157600080fd5b50610680610ab0366004614fa5565b611ea5565b348015610ac157600080fd5b506009546106c4906001600160a01b031681565b348015610ae157600080fd5b50610680610af0366004614bd9565b611edd565b348015610b0157600080fd5b50610680610b10366004614e98565b611f27565b348015610b2157600080fd5b50610610610b30366004614b22565b601c6020526000908152604090205460ff1681565b348015610b5157600080fd5b506106c4610b60366004614f13565b611f39565b348015610b7157600080fd5b50610680610b80366004614f2c565b611fc5565b348015610b9157600080fd5b50610697611fff565b348015610ba657600080fd5b50610680610bb5366004614b22565b61208d565b348015610bc657600080fd5b50610652610bd5366004614b22565b6120d6565b348015610be657600080fd5b506106806121a4565b348015610bfb57600080fd5b5061068061228f565b348015610c1057600080fd5b5061065260075481565b348015610c2657600080fd5b50610680610c35366004614f13565b6122c5565b348015610c4657600080fd5b50610652600e5481565b348015610c5c57600080fd5b50610680610c6b366004614f13565b6122ef565b348015610c7c57600080fd5b50610652600c5481565b348015610c9257600080fd5b50610680610ca1366004614e98565b612319565b348015610cb257600080fd5b50610652610cc1366004614f13565b60196020526000908152604090205481565b348015610cdf57600080fd5b50610652612659565b610680610cf6366004614e98565b612799565b348015610d0757600080fd5b50610680610d16366004614fd9565b6129a9565b348015610d2757600080fd5b50610d3b610d36366004614f13565b612a7d565b60405161061c95949392919061528c565b348015610d5857600080fd5b506005546001600160a01b03166106c4565b348015610d7657600080fd5b50601354610610906301000000900460ff1681565b348015610d9757600080fd5b50610680610da6366004614f2c565b612b38565b348015610db757600080fd5b50610697612bba565b348015610dcc57600080fd5b50610680610ddb366004614f2c565b612bc9565b348015610dec57600080fd5b50610680610dfb366004614ed9565b612c03565b348015610e0c57600080fd5b50610652610e1b366004614e21565b612c46565b348015610e2c57600080fd5b50610610610e3b366004614b22565b601d6020526000908152604090205460ff1681565b348015610e5c57600080fd5b5061065260105481565b348015610e7257600080fd5b50610680610e81366004614ed9565b612c77565b348015610e9257600080fd5b50610680610ea1366004614df3565b612caf565b348015610eb257600080fd5b5060135461061090610100900460ff1681565b348015610ed157600080fd5b50610610610ee0366004614e21565b612d74565b348015610ef157600080fd5b5060135461061090640100000000900460ff1681565b348015610f1357600080fd5b50610680610f22366004614f2c565b612d8c565b348015610f3357600080fd5b50610680610f4236600461505b565b61304c565b348015610f5357600080fd5b50610680610f62366004614d40565b613094565b348015610f7357600080fd5b50610652610f82366004614f13565b6130c6565b348015610f9357600080fd5b50610680610fa2366004614e4d565b61319d565b348015610fb357600080fd5b50610680610fc2366004614e21565b61320f565b348015610fd357600080fd5b50610680610fe2366004614e98565b61323e565b348015610ff357600080fd5b50610652611002366004614f2c565b613442565b34801561101357600080fd5b5061104d611022366004614f13565b6016602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b03909416845260208401929092529082015260600161061c565b34801561107e57600080fd5b5061065260125481565b34801561109457600080fd5b506106976110a3366004614f13565b61345e565b3480156110b457600080fd5b506013546106c490600160301b90046001600160a01b031681565b3480156110db57600080fd5b506106806134df565b3480156110f057600080fd5b506013546106109060ff1681565b34801561110a57600080fd5b5061065261a8c081565b34801561112057600080fd5b5061068061112f366004614b22565b613654565b34801561114057600080fd5b5061065260115481565b34801561115657600080fd5b50610680611165366004614b22565b6136a8565b34801561117657600080fd5b50610680611185366004614f13565b6136ef565b34801561119657600080fd5b506013546106109062010000900460ff1681565b3480156111b657600080fd5b5061065260085481565b3480156111cc57600080fd5b50610680613719565b3480156111e157600080fd5b506106526111f0366004614f13565b61375a565b34801561120157600080fd5b50610610611210366004614b3f565b6138b3565b34801561122157600080fd5b50610a086139ad565b34801561123657600080fd5b50610a08611245366004614b22565b613af6565b34801561125657600080fd5b50610680611265366004614b22565b613b62565b34801561127657600080fd5b50610680611285366004614b78565b613bfa565b34801561129657600080fd5b506106806112a5366004615080565b613c3c565b3480156112b657600080fd5b506106806112c5366004614b22565b613c80565b3480156112d657600080fd5b506106526112e5366004614e21565b601e60209081526000928352604080842090915290825290205481565b34801561130e57600080fd5b50610652600d5481565b60006001600160e01b0319821663780e9d6360e01b148061133d575061133d82613cd3565b92915050565b61134c33611983565b6113715760405162461bcd60e51b815260040161136890615360565b60405180910390fd5b60009182526015602052604090912060020155565b606060008054611395906154e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113c1906154e0565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600061142382613d23565b6114845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611368565b506000908152600360205260409020546001600160a01b031690565b60006114ab82611f39565b9050806001600160a01b0316836001600160a01b031614156115195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401611368565b336001600160a01b0382161480611535575061153581336138b3565b6115a75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401611368565b6115b18383613d6d565b505050565b60003381805b6001600160a01b038316600090815260186020526040902054811015611651576001600160a01b0383166000908152601860205260408120805460169291908490811061160b5761160b615586565b9060005260206000200154815260200190815260200160002060010154426116339190615486565b61163d908361543b565b91508061164981615515565b9150506115bc565b5060085461166161a8c083615453565b61166b9190615467565b9250505090565b61167b33611983565b6116975760405162461bcd60e51b815260040161136890615360565b6116a18282613ddb565b5050565b6116ae33611983565b6116ca5760405162461bcd60e51b815260040161136890615360565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b60135462010000900460ff166117395760405162461bcd60e51b81526020600482015260136024820152721cdd185ada5b99c81b9bdd08195b98589b1959606a1b6044820152606401611368565b60005b818110156115b1573361176684848481811061175a5761175a615586565b90506020020135611f39565b6001600160a01b0316146117b45760405162461bcd60e51b81526020600482015260156024820152743cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401611368565b6117d733308585858181106117cb576117cb615586565b90506020020135611c41565b33601660008585858181106117ee576117ee615586565b90506020020135815260200190815260200160002060000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550426016600085858581811061184157611841615586565b90506020020135815260200190815260200160002060010181905550601860006118683390565b6001600160a01b03166001600160a01b0316815260200190815260200160002083838381811061189a5761189a615586565b83546001810185556000948552602094859020919094029290920135919092015550806118c681615515565b91505061173c565b6118d733611983565b6118f35760405162461bcd60e51b815260040161136890615360565b601380549115156401000000000264ff0000000019909216919091179055565b61191d3382613e79565b6119395760405162461bcd60e51b8152600401611368906153ba565b6115b1838383613f3b565b61194d33611983565b6119695760405162461bcd60e51b815260040161136890615360565b601380549115156101000261ff0019909216919091179055565b6000816001600160a01b03166119a16005546001600160a01b031690565b6001600160a01b0316148061133d5750506001600160a01b03166000908152601b602052604090205460ff1690565b60006119db836120d6565b82106119f95760405162461bcd60e51b8152600401611368906152c3565b6000805b600254811015611a6a5760028181548110611a1a57611a1a615586565b6000918252602090912001546001600160a01b0386811691161415611a585783821415611a4a57915061133d9050565b81611a5481615515565b9250505b80611a6281615515565b9150506119fd565b5060405162461bcd60e51b8152600401611368906152c3565b611a8c33611983565b611aa85760405162461bcd60e51b815260040161136890615360565b600c55565b600081815260166020526040812060020154611acb57506001919050565b600d546000838152601660205260409020600201541415611aee57506000919050565b600082815260166020526040902060020154600d54611b0d9190615486565b60011415611b1d57506000919050565b506001919050565b611b2e33611983565b611b4a5760405162461bcd60e51b815260040161136890615360565b60138054911515620100000262ff000019909216919091179055565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b5050905080611bfb5760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401611368565b50565b611c0733611983565b611c235760405162461bcd60e51b815260040161136890615360565b6013805491151563010000000263ff00000019909216919091179055565b6115b183838360405180602001604052806000815250613094565b60606000611c69836120d6565b905080611c8a5760408051600080825260208201909252905b509392505050565b6000816001600160401b03811115611ca457611ca461559c565b604051908082528060200260200182016040528015611ccd578160200160208202803683370190505b50905060005b82811015611c8257611ce585826119d0565b828281518110611cf757611cf7615586565b602090810291909101015280611d0c81615515565b915050611cd3565b611d1d33611983565b611d395760405162461bcd60e51b815260040161136890615360565b60005b82811015611d8657611d74848483818110611d5957611d59615586565b9050602002016020810190611d6e9190614b22565b83613ddb565b80611d7e81615515565b915050611d3c565b50505050565b6000805b82811015611e0157846001600160a01b03166002858584818110611db657611db6615586565b9050602002013581548110611dcd57611dcd615586565b6000918252602090912001546001600160a01b031614611df1576000915050611e07565b611dfa81615515565b9050611d90565b50600190505b9392505050565b6002546000908210611e775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401611368565b5090565b611e8433611983565b611ea05760405162461bcd60e51b815260040161136890615360565b600755565b611eae33611983565b611eca5760405162461bcd60e51b815260040161136890615360565b80516116a190600f906020840190614953565b60005b8251811015611f2057611f0e8585858481518110611f0057611f00615586565b602002602001015185613094565b80611f1881615515565b915050611ee0565b5050505050565b611f2f6134df565b6116a18282612319565b60008060028381548110611f4f57611f4f615586565b6000918252602090912001546001600160a01b031690508061133d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401611368565b611fce33611983565b611fea5760405162461bcd60e51b815260040161136890615360565b60009182526015602052604090912060040155565b600f805461200c906154e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612038906154e0565b80156120855780601f1061205a57610100808354040283529160200191612085565b820191906000526020600020905b81548152906001019060200180831161206857829003601f168201915b505050505081565b61209633611983565b6120b25760405162461bcd60e51b815260040161136890615360565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b60006001600160a01b0382166121415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401611368565b6000805b60025481101561219d576002818154811061216257612162615586565b6000918252602090912001546001600160a01b038581169116141561218d5761218a82615515565b91505b61219681615515565b9050612145565b5092915050565b6121ad33611983565b6121c95760405162461bcd60e51b815260040161136890615360565b60135465010000000000900460ff16156122435760405162461bcd60e51b815260206004820152603560248201527f746869732069732061206f6e65207761792066756e6374696f6e2069742063616044820152746e206e6f742062652063616c6c656420747769636560581b6064820152608401611368565b6001600090815260196020527ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da092914819055600d556013805465ff0000000000191665010000000000179055565b6005546001600160a01b031633146122b95760405162461bcd60e51b815260040161136890615385565b6122c36000614091565b565b6122ce33611983565b6122ea5760405162461bcd60e51b815260040161136890615360565b600a55565b6122f833611983565b6123145760405162461bcd60e51b815260040161136890615360565b600855565b60005b818110156115b157336016600085858581811061233b5761233b615586565b60209081029290920135835250810191909152604001600020546001600160a01b0316146123a35760405162461bcd60e51b81526020600482015260156024820152743cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401611368565b6123c48383838181106123b8576123b8615586565b90506020020135611aad565b61241c5760405162461bcd60e51b815260206004820152602360248201527f746f6b656e20696e207265726f6c6c206f7220636f6f6c20646f776e207065726044820152621a5bd960ea1b6064820152608401611368565b61243f303385858581811061243357612433615586565b90506020020135613f3b565b6016600084848481811061245557612455615586565b60209081029290920135835250810191909152604001600090812080546001600160a01b031916905560169084848481811061249357612493615586565b90506020020135815260200190815260200160002060010160009055601660008484848181106124c5576124c5615586565b9050602002013581526020019081526020016000206002016000905560005b336000908152601860205260409020548110156126465783838381811061250d5761250d615586565b905060200201356018600061251f3390565b6001600160a01b03166001600160a01b03168152602001908152602001600020828154811061255057612550615586565b9060005260206000200154141561263457336000908152601860205260409020805461257e90600190615486565b8154811061258e5761258e615586565b9060005260206000200154601860006125a43390565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106125d5576125d5615586565b9060005260206000200181905550601860006125ee3390565b6001600160a01b03166001600160a01b0316815260200190815260200160002080548061261d5761261d615570565b600190038181906000526020600020016000905590555b8061263e81615515565b9150506124e4565b508061265181615515565b91505061231c565b600061266433611983565b6126805760405162461bcd60e51b815260040161136890615360565b600c546040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271a9190615042565b101561275a5760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b6044820152606401611368565b612768600e54600c546140e3565b60405190915081907fc620a79baed7e5f06637aa5ab699c2b03ee40b2ae3ba4a91ed1eb0bd00b8ea3b90600090a290565b604080516bffffffffffffffffffffffff193360601b166020820152815180820360140181526034909101909152600254600954600160a01b900460ff166128195760405162461bcd60e51b8152602060048201526013602482015272496c6c2d6c697374206e6f742061637469766560681b6044820152606401611368565b61285e6128258361426e565b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061429e92505050565b6128b55760405162461bcd60e51b815260206004820152602260248201527f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c69604482015261195960f21b6064820152608401611368565b336000908152601d602052604090205460ff161561290a5760405162461bcd60e51b815260206004820152601260248201527163616e206e6f74206d696e7420747769636560701b6044820152606401611368565b6122b96007548261291b919061543b565b1061295f5760405162461bcd60e51b81526020600482015260146024820152731c1c9bda9958dd08199d5b1b1e481b5a5b9d195960621b6044820152606401611368565b336000908152601d60205260408120805460ff191660011790555b600754811015611f205761299733612992838561543b565b6142ad565b806129a181615515565b91505061297a565b6129b233611983565b6129ce5760405162461bcd60e51b815260040161136890615360565b601280549060006129de83615515565b91905055506040518060a001604052808681526020018515158152602001848152602001838152602001828152506015600060125481526020019081526020016000206000820151816000019080519060200190612a3d929190614953565b50602082015160018201805460ff191691151591909117905560408201516002820155606082015160038201556080909101516004909101555050505050565b601560205260009081526040902080548190612a98906154e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac4906154e0565b8015612b115780601f10612ae657610100808354040283529160200191612b11565b820191906000526020600020905b815481529060010190602001808311612af457829003601f168201915b50505050600183015460028401546003850154600490950154939460ff9092169390925085565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614612bb05760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401611368565b6116a18282614329565b606060018054611395906154e0565b612bd233611983565b612bee5760405162461bcd60e51b815260040161136890615360565b60009182526015602052604090912060030155565b612c0c33611983565b612c285760405162461bcd60e51b815260040161136890615360565b60098054911515600160a01b0260ff60a01b19909216919091179055565b60186020528160005260406000208181548110612c6257600080fd5b90600052602060002001600091509150505481565b612c8033611983565b612c9c5760405162461bcd60e51b815260040161136890615360565b6013805460ff1916911515919091179055565b6001600160a01b038216331415612d085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611368565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600033612d82818585614395565b5060019392505050565b336000908152601e6020908152604080832085845290915281208054839290612db690849061543b565b909155505060135460ff16612e0d5760405162461bcd60e51b815260206004820152601a60248201527f474f4f503a207370656e64696e67206e6f7420656e61626c65640000000000006044820152606401611368565b60008281526015602052604090206001015460ff16612e6e5760405162461bcd60e51b815260206004820152601b60248201527f4974656d206e6f742063757272656e746c7920666f722073616c6500000000006044820152606401611368565b600082815260156020526040902060030154811115612ec05760405162461bcd60e51b815260206004820152600e60248201526d24ba32b69039b7b6321037baba1760911b6044820152606401611368565b600082815260156020908152604080832060040154338452601e8352818420868552909252909120541115612f425760405162461bcd60e51b815260206004820152602260248201527f457863656564656420616c6c6f776564207075726368617365207175616e7469604482015261747960f01b6064820152608401611368565b600082815260156020526040812060020154612f5e9083615467565b33600090815260176020526040902054909150811115612fb55760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1033b7b7b81760711b6044820152606401611368565b612fc0335b8261455c565b60008381526015602052604081206003018054849290612fe1908490615486565b90915550506000838152601560205260409020600201546130029083615467565b60116000828254613013919061543b565b90915550506040518290849033907f37d866404e1f1c5c5dd931a5ee274424b3d325feaac047d0a78cd1fe03f323c390600090a4505050565b61305533611983565b6130715760405162461bcd60e51b815260040161136890615360565b600091825260156020526040909120600101805460ff1916911515919091179055565b61309e3383613e79565b6130ba5760405162461bcd60e51b8152600401611368906153ba565b611d868484848461465f565b6014546000906001600160a01b03166131215760405162461bcd60e51b815260206004820152601760248201527f546865204c6162206973206265696e672073657475702e0000000000000000006044820152606401611368565b601454604051639bb7591d60e01b8152600481018490526001600160a01b0390911690639bb7591d9060240160206040518083038186803b15801561316557600080fd5b505afa158015613179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133d9190615042565b6131a633611983565b6131c25760405162461bcd60e51b815260040161136890615360565b60005b82811015611d86576131fd8484838181106131e2576131e2615586565b90506020020160208101906131f79190614b22565b8361455c565b8061320781615515565b9150506131c5565b61321833611983565b6132345760405162461bcd60e51b815260040161136890615360565b6116a1828261455c565b600061324b826032615467565b601354909150610100900460ff1661329a5760405162461bcd60e51b81526020600482015260126024820152711c995c9bdb1b081b9bdd08195b98589b195960721b6044820152606401611368565b336000908152601760205260409020548111156132f95760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420656e6f75676820676f6f7020666f72207265726f6c6c0000000000006044820152606401611368565b60005b8281101561343857336016600086868581811061331b5761331b615586565b60209081029290920135835250810191909152604001600020546001600160a01b03161461339d5760405162461bcd60e51b815260206004820152602960248201527f796f7520646f6e74206f776e207468697320746f6b656e206f7220697473206e6044820152681bdd081cdd185ad95960ba1b6064820152608401611368565b601a6000600d5460016133b0919061543b565b81526020019081526020016000208484838181106133d0576133d0615586565b8354600181018555600094855260208086209202939093013592019190915550600d549060169086868581811061340957613409615586565b90506020020135815260200190815260200160002060020181905550808061343090615515565b9150506132fc565b506115b133612fba565b601a6020528160005260406000208181548110612c6257600080fd5b606061346982613d23565b6134ad5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401611368565b600f6134b883614692565b6040516020016134c992919061512a565b6040516020818303038152906040529050919050565b601354640100000000900460ff166135395760405162461bcd60e51b815260206004820152601760248201527f474f4f503a20636c61696d206e6f7420656e61626c65640000000000000000006044820152606401611368565b336000805b6001600160a01b03831660009081526018602052604090205481101561362f576001600160a01b0383166000908152601860205260408120805460169291908490811061358d5761358d615586565b9060005260206000200154815260200190815260200160002060010154426135b59190615486565b6135bf908361543b565b9150426016600060186000876001600160a01b03166001600160a01b0316815260200190815260200160002084815481106135fc576135fc615586565b9060005260206000200154815260200190815260200160002060010181905550808061362790615515565b91505061353e565b506116a18260085461a8c0846136459190615453565b61364f9190615467565b613ddb565b61365d33611983565b6136795760405162461bcd60e51b815260040161136890615360565b601380546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6136b133611983565b6136cd5760405162461bcd60e51b815260040161136890615360565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6136f833611983565b6137145760405162461bcd60e51b815260040161136890615360565b600e55565b61372233611983565b61373e5760405162461bcd60e51b815260040161136890615360565b306000908152601b60205260409020805460ff19166001179055565b60025460009082106137a55760405162461bcd60e51b8152602060048201526014602482015273746f6b656e4964206f7574206f662072616e676560601b6044820152606401611368565b600d545b80156138ad5780600114156137f9576000818152601960209081526040918290205482519182015290810184905260600160408051601f1981840301815291905280516020909101209392505050565b60005b6000828152601a602052604090205481101561389a576000828152601a6020526040902080548591908390811061383557613835615586565b90600052602060002001541415613888576000828152601960209081526040918290205482519182015290810185905260600160408051601f198184030181529190528051602090910120949350505050565b8061389281615515565b9150506137fc565b50806138a5816154c9565b9150506137a9565b50919050565b60135460405163c455279160e01b81526001600160a01b038481166004830152600092600160301b900481169190841690829063c45527919060240160206040518083038186803b15801561390757600080fd5b505afa15801561391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393f9190614f88565b6001600160a01b0316148061396c57506001600160a01b0383166000908152601c602052604090205460ff165b1561397b57600191505061133d565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6040805160148082526102a0820190925260609160009190602082016102808036833701905050905060008060005b6014821015613aed5760026000908152601960209081527f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b581546040516122b792613a329291889101918252602082015260400190565b6040516020818303038152906040528051906020012060001c613a559190615530565b905060005b8551811015613a9f57858181518110613a7557613a75615586565b6020026020010151821415613a8d5760019250613a9f565b80613a9781615515565b915050613a5a565b5081613ad55780858481518110613ab857613ab8615586565b602090810291909101015282613acd81615515565b935050613ada565b600091505b83613ae481615515565b945050506139dc565b50919392505050565b6001600160a01b038116600090815260186020908152604091829020805483518184028101840190945280845260609392830182828015613b5657602002820191906000526020600020905b815481526020019060010190808311613b42575b50505050509050919050565b6005546001600160a01b03163314613b8c5760405162461bcd60e51b815260040161136890615385565b6001600160a01b038116613bf15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611368565b611bfb81614091565b60005b8151811015611d8657613c2a8484848481518110613c1d57613c1d615586565b6020026020010151611913565b80613c3481615515565b915050613bfd565b613c4533611983565b613c615760405162461bcd60e51b815260040161136890615360565b600082815260156020908152604090912082516115b192840190614953565b6005546001600160a01b03163314613caa5760405162461bcd60e51b815260040161136890615385565b6001600160a01b03166000908152601c60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b1480613d0457506001600160e01b03198216635b5e139f60e01b145b8061133d57506301ffc9a760e01b6001600160e01b031983161461133d565b6002546000908210801561133d575060006001600160a01b031660028381548110613d5057613d50615586565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613da282611f39565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216613e315760405162461bcd60e51b815260206004820152601e60248201527f474f4f503a206d696e7420746f20746865207a65726f206164647265737300006044820152606401611368565b8060106000828254613e43919061543b565b90915550506001600160a01b03821660009081526017602052604081208054839290613e7090849061543b565b90915550505050565b6000613e8482613d23565b613ee55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611368565b6000613ef083611f39565b9050806001600160a01b0316846001600160a01b03161480613f2b5750836001600160a01b0316613f2084611418565b6001600160a01b0316145b806139a557506139a581856138b3565b826001600160a01b0316613f4e82611f39565b6001600160a01b031614613fb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401611368565b6001600160a01b0382166140185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611368565b614023600082613d6d565b816002828154811061403757614037615586565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001614153929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016141809392919061520e565b602060405180830381600087803b15801561419a57600080fd5b505af11580156141ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d29190614ef6565b50600083815260066020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a09091019092528151918301919091209387905291905261422e90600161543b565b6000858152600660205260409020556139a58482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b600081604051602001614281919061510e565b604051602081830303815290604052805190602001209050919050565b6000611e0782600a548561478f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600d805490600061433983615515565b9091555050600d80546000908152601960209081526040918290208490559154815190815291820183905283917f40431436c9748fa9fd76125d53be0c19c7da0ef3cc0e1c0214d9ab78458313d3910160405180910390a25050565b6013546301000000900460ff166143ee5760405162461bcd60e51b815260206004820152601a60248201527f474f4f503a207472616e73666572206e6f7420656e61626c65640000000000006044820152606401611368565b6001600160a01b0383166144505760405162461bcd60e51b8152602060048201526024808201527f474f4f503a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611368565b6001600160a01b0382166144b15760405162461bcd60e51b815260206004820152602260248201527f474f4f503a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611368565b6001600160a01b0383166000908152601760205260409020548181101561451a5760405162461bcd60e51b815260206004820152601b60248201527f474f4f503a20696e73756666696369656e742062616c616e63652000000000006044820152606401611368565b6001600160a01b0380851660009081526017602052604080822085850390559185168152908120805484929061455190849061543b565b909155505050505050565b6001600160a01b0382166145b25760405162461bcd60e51b815260206004820181905260248201527f474f4f503a206275726e2066726f6d20746865207a65726f20616464726573736044820152606401611368565b6001600160a01b038216600090815260176020526040902054818110156146265760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401611368565b6001600160a01b0383166000908152601760205260408120838303905560108054849290614655908490615486565b9091555050505050565b61466a848484613f3b565b614676848484846147a5565b611d865760405162461bcd60e51b81526004016113689061530e565b6060816146b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156146e057806146ca81615515565b91506146d99050600a83615453565b91506146ba565b6000816001600160401b038111156146fa576146fa61559c565b6040519080825280601f01601f191660200182016040528015614724576020820181803683370190505b5090505b84156139a557614739600183615486565b9150614746600a86615530565b61475190603061543b565b60f81b81838151811061476657614766615586565b60200101906001600160f81b031916908160001a905350614788600a86615453565b9450614728565b60008261479c85846148af565b14949350505050565b60006001600160a01b0384163b156148a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906147e99033908990889088906004016151d1565b602060405180830381600087803b15801561480357600080fd5b505af1925050508015614833575060408051601f3d908101601f1916820190925261483091810190614f6b565b60015b61488d573d808015614861576040519150601f19603f3d011682016040523d82523d6000602084013e614866565b606091505b5080516148855760405162461bcd60e51b81526004016113689061530e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506139a5565b5060016139a5565b600081815b8451811015611c825760008582815181106148d1576148d1615586565b60200260200101519050808311614913576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250614940565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061494b81615515565b9150506148b4565b82805461495f906154e0565b90600052602060002090601f01602090048101928261498157600085556149c7565b82601f1061499a57805160ff19168380011785556149c7565b828001600101855582156149c7579182015b828111156149c75782518255916020019190600101906149ac565b50611e779291505b80821115611e7757600081556001016149cf565b60008083601f8401126149f557600080fd5b5081356001600160401b03811115614a0c57600080fd5b6020830191508360208260051b8501011115614a2757600080fd5b9250929050565b600082601f830112614a3f57600080fd5b813560206001600160401b03821115614a5a57614a5a61559c565b8160051b614a6982820161540b565b838152828101908684018388018501891015614a8457600080fd5b600093505b85841015614aa7578035835260019390930192918401918401614a89565b50979650505050505050565b600082601f830112614ac457600080fd5b81356001600160401b03811115614add57614add61559c565b614af0601f8201601f191660200161540b565b818152846020838601011115614b0557600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614b3457600080fd5b8135611e07816155b2565b60008060408385031215614b5257600080fd5b8235614b5d816155b2565b91506020830135614b6d816155b2565b809150509250929050565b600080600060608486031215614b8d57600080fd5b8335614b98816155b2565b92506020840135614ba8816155b2565b915060408401356001600160401b03811115614bc357600080fd5b614bcf86828701614a2e565b9150509250925092565b60008060008060808587031215614bef57600080fd5b8435614bfa816155b2565b93506020850135614c0a816155b2565b925060408501356001600160401b0380821115614c2657600080fd5b614c3288838901614a2e565b93506060870135915080821115614c4857600080fd5b50614c5587828801614ab3565b91505092959194509250565b600080600060608486031215614c7657600080fd5b8335614c81816155b2565b92506020840135614c91816155b2565b929592945050506040919091013590565b600080600080600060808688031215614cba57600080fd5b8535614cc5816155b2565b94506020860135614cd5816155b2565b93506040860135925060608601356001600160401b0380821115614cf857600080fd5b818801915088601f830112614d0c57600080fd5b813581811115614d1b57600080fd5b896020828501011115614d2d57600080fd5b9699959850939650602001949392505050565b60008060008060808587031215614d5657600080fd5b8435614d61816155b2565b93506020850135614d71816155b2565b92506040850135915060608501356001600160401b03811115614d9357600080fd5b614c5587828801614ab3565b600080600060408486031215614db457600080fd5b8335614dbf816155b2565b925060208401356001600160401b03811115614dda57600080fd5b614de6868287016149e3565b9497909650939450505050565b60008060408385031215614e0657600080fd5b8235614e11816155b2565b91506020830135614b6d816155c7565b60008060408385031215614e3457600080fd5b8235614e3f816155b2565b946020939093013593505050565b600080600060408486031215614e6257600080fd5b83356001600160401b03811115614e7857600080fd5b614e84868287016149e3565b909790965060209590950135949350505050565b60008060208385031215614eab57600080fd5b82356001600160401b03811115614ec157600080fd5b614ecd858286016149e3565b90969095509350505050565b600060208284031215614eeb57600080fd5b8135611e07816155c7565b600060208284031215614f0857600080fd5b8151611e07816155c7565b600060208284031215614f2557600080fd5b5035919050565b60008060408385031215614f3f57600080fd5b50508035926020909101359150565b600060208284031215614f6057600080fd5b8135611e07816155d5565b600060208284031215614f7d57600080fd5b8151611e07816155d5565b600060208284031215614f9a57600080fd5b8151611e07816155b2565b600060208284031215614fb757600080fd5b81356001600160401b03811115614fcd57600080fd5b6139a584828501614ab3565b600080600080600060a08688031215614ff157600080fd5b85356001600160401b0381111561500757600080fd5b61501388828901614ab3565b9550506020860135615024816155c7565b94979496505050506040830135926060810135926080909101359150565b60006020828403121561505457600080fd5b5051919050565b6000806040838503121561506e57600080fd5b823591506020830135614b6d816155c7565b6000806040838503121561509357600080fd5b8235915060208301356001600160401b038111156150b057600080fd5b6150bc85828601614ab3565b9150509250929050565b600081518084526150de81602086016020860161549d565b601f01601f19169290920160200192915050565b6000815161510481856020860161549d565b9290920192915050565b6000825161512081846020870161549d565b9190910192915050565b600080845481600182811c91508083168061514657607f831692505b602080841082141561516657634e487b7160e01b86526022600452602486fd5b81801561517a576001811461518b576151b8565b60ff198616895284890196506151b8565b60008b81526020902060005b868110156151b05781548b820152908501908301615197565b505084890196505b5050505050506151c881856150f2565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615204908301846150c6565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006151c860608301846150c6565b6020808252825182820181905260009190848201906040850190845b8181101561526d57835183529284019291840191600101615251565b50909695505050505050565b602081526000611e0760208301846150c6565b60a08152600061529f60a08301886150c6565b95151560208301525060408101939093526060830191909152608090910152919050565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a61646d696e73206f6e6c7960a81b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156154335761543361559c565b604052919050565b6000821982111561544e5761544e615544565b500190565b6000826154625761546261555a565b500490565b600081600019048311821515161561548157615481615544565b500290565b60008282101561549857615498615544565b500390565b60005b838110156154b85781810151838201526020016154a0565b83811115611d865750506000910152565b6000816154d8576154d8615544565b506000190190565b600181811c908216806154f457607f821691505b602082108114156138ad57634e487b7160e01b600052602260045260246000fd5b600060001982141561552957615529615544565b5060010190565b60008261553f5761553f61555a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611bfb57600080fd5b8015158114611bfb57600080fd5b6001600160e01b031981168114611bfb57600080fdfea264697066735822122075c4ad51e850e5cb1dfdbd6f4783e73cc68049be7e864248ce99350befd24c6464736f6c63430008070033aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca

Deployed Bytecode

0x6080604052600436106105e45760003560e01c80638453734d1161030e578063c32ffe1b1161019b578063e082f1d4116100e7578063f23eb399116100a0578063f4b46fd81161007a578063f4b46fd81461128a578063f73c814b146112aa578063fa347f04146112ca578063fe1684771461130257600080fd5b8063f23eb3991461122a578063f2fde38b1461124a578063f3993d111461126a57600080fd5b8063e082f1d41461118a578063e183a6d6146111aa578063e1c7392a146111c0578063e666f293146111d5578063e985e9c5146111f5578063efbaceb71461121557600080fd5b8063cdc1cc2011610154578063d26ea6c01161012e578063d26ea6c014611114578063d56be50214611134578063dd3c5eaf1461114a578063e05492111461116a57600080fd5b8063cdc1cc20146110cf578063cdc5c031146110e4578063ceb0c250146110fe57600080fd5b8063c32ffe1b14610fc7578063c4c4f9cc14610fe7578063c5e01a5c14611007578063c84c038714611072578063c87b56dd14611088578063cd7c0326146110a857600080fd5b80639ec00c951161025a578063ae87fc4b11610213578063b88d4fde116101ed578063b88d4fde14610f47578063bf04da0a14610f67578063c2012e8b14610f87578063c30e01b614610fa757600080fd5b8063ae87fc4b14610ee5578063b413b4e414610f07578063b54c5c3114610f2757600080fd5b80639ec00c9514610e20578063a0983be514610e50578063a0a9cf2914610e66578063a22cb46514610e86578063a7769a4414610ea6578063aceca17214610ec557600080fd5b80638da5cb5b116102c757806395d89b41116102a157806395d89b4114610dab57806398963f7a14610dc05780639bbf832514610de05780639e4bfaa514610e0057600080fd5b80638da5cb5b14610d4c57806392c00a3f14610d6a57806394985ddd14610d8b57600080fd5b80638453734d14610c8657806384a4913b14610ca65780638678a7b214610cd3578063872eb7b614610ce85780638a510adc14610cfb5780638abf209214610d1b57600080fd5b80633b51e5cf1161048c5780635bab26e2116103d857806370d82dee116103915780637cb647591161036b5780637cb6475914610c1a5780637f77e6c314610c3a5780638044644f14610c5057806383e3deb614610c7057600080fd5b806370d82dee14610bda578063715018a614610bef5780637501f74114610c0457600080fd5b80635bab26e214610b155780636352211e14610b45578063648f3b0114610b655780636c0360eb14610b855780637048027514610b9a57806370a0823114610bba57600080fd5b80634d44660c1161044557806355f804b31161041f57806355f804b314610a955780635992704414610ab55780635a4fee3014610ad55780635ad873ff14610af557600080fd5b80634d44660c14610a355780634f6ccce714610a55578063547520fe14610a7557600080fd5b80633b51e5cf146109735780633ccfd60b146109935780633ecb51c0146109a857806342842e0e146109c8578063438b6300146109e8578063499f2a6f14610a1557600080fd5b806318160ddd1161054b57806324d7806c116105045780632f745c59116104de5780632f745c59146108f357806330da44cb146109135780633557c1f61461093357806337bc25d41461095357600080fd5b806324d7806c1461089a5780632dc66b01146108ba5780632eb4a7ab146108dd57600080fd5b806318160ddd146107e5578063182c5744146107fa5780631c4695f41461081a578063211418ab1461083a57806323b872dd1461085a57806323cc2df21461087a57600080fd5b80630ce157311161059d5780630ce15731146106fc5780630e6d3a8914610711578063104f2374146107325780631132a58714610752578063150b7a02146107675780631785f53c146107c557600080fd5b806301ffc9a7146105f057806302d7e8ad14610625578063053992c51461066057806306fdde0314610682578063081812fc146106a4578063095ea7b3146106dc57600080fd5b366105eb57005b600080fd5b3480156105fc57600080fd5b5061061061060b366004614f4e565b611318565b60405190151581526020015b60405180910390f35b34801561063157600080fd5b50610652610640366004614b22565b60176020526000908152604090205481565b60405190815260200161061c565b34801561066c57600080fd5b5061068061067b366004614f2c565b611343565b005b34801561068e57600080fd5b50610697611386565b60405161061c9190615279565b3480156106b057600080fd5b506106c46106bf366004614f13565b611418565b6040516001600160a01b03909116815260200161061c565b3480156106e857600080fd5b506106806106f7366004614e21565b6114a0565b34801561070857600080fd5b506106526115b6565b34801561071d57600080fd5b5060095461061090600160a01b900460ff1681565b34801561073e57600080fd5b5061068061074d366004614e21565b611672565b34801561075e57600080fd5b50610652603281565b34801561077357600080fd5b506107ac610782366004614ca2565b7f150b7a023d4804d13e8c85fb27262cb750cf6ba9f9dd3bb30d90f482ceeb4b1f95945050505050565b6040516001600160e01b0319909116815260200161061c565b3480156107d157600080fd5b506106806107e0366004614b22565b6116a5565b3480156107f157600080fd5b50600254610652565b34801561080657600080fd5b50610680610815366004614e98565b6116eb565b34801561082657600080fd5b50600b546106c4906001600160a01b031681565b34801561084657600080fd5b50610680610855366004614ed9565b6118ce565b34801561086657600080fd5b50610680610875366004614c61565b611913565b34801561088657600080fd5b50610680610895366004614ed9565b611944565b3480156108a657600080fd5b506106106108b5366004614b22565b611983565b3480156108c657600080fd5b506013546106109065010000000000900460ff1681565b3480156108e957600080fd5b50610652600a5481565b3480156108ff57600080fd5b5061065261090e366004614e21565b6119d0565b34801561091f57600080fd5b5061068061092e366004614f13565b611a83565b34801561093f57600080fd5b506014546106c4906001600160a01b031681565b34801561095f57600080fd5b5061061061096e366004614f13565b611aad565b34801561097f57600080fd5b5061068061098e366004614ed9565b611b25565b34801561099f57600080fd5b50610680611b66565b3480156109b457600080fd5b506106806109c3366004614ed9565b611bfe565b3480156109d457600080fd5b506106806109e3366004614c61565b611c41565b3480156109f457600080fd5b50610a08610a03366004614b22565b611c5c565b60405161061c9190615235565b348015610a2157600080fd5b50610680610a30366004614e4d565b611d14565b348015610a4157600080fd5b50610610610a50366004614d9f565b611d8c565b348015610a6157600080fd5b50610652610a70366004614f13565b611e0e565b348015610a8157600080fd5b50610680610a90366004614f13565b611e7b565b348015610aa157600080fd5b50610680610ab0366004614fa5565b611ea5565b348015610ac157600080fd5b506009546106c4906001600160a01b031681565b348015610ae157600080fd5b50610680610af0366004614bd9565b611edd565b348015610b0157600080fd5b50610680610b10366004614e98565b611f27565b348015610b2157600080fd5b50610610610b30366004614b22565b601c6020526000908152604090205460ff1681565b348015610b5157600080fd5b506106c4610b60366004614f13565b611f39565b348015610b7157600080fd5b50610680610b80366004614f2c565b611fc5565b348015610b9157600080fd5b50610697611fff565b348015610ba657600080fd5b50610680610bb5366004614b22565b61208d565b348015610bc657600080fd5b50610652610bd5366004614b22565b6120d6565b348015610be657600080fd5b506106806121a4565b348015610bfb57600080fd5b5061068061228f565b348015610c1057600080fd5b5061065260075481565b348015610c2657600080fd5b50610680610c35366004614f13565b6122c5565b348015610c4657600080fd5b50610652600e5481565b348015610c5c57600080fd5b50610680610c6b366004614f13565b6122ef565b348015610c7c57600080fd5b50610652600c5481565b348015610c9257600080fd5b50610680610ca1366004614e98565b612319565b348015610cb257600080fd5b50610652610cc1366004614f13565b60196020526000908152604090205481565b348015610cdf57600080fd5b50610652612659565b610680610cf6366004614e98565b612799565b348015610d0757600080fd5b50610680610d16366004614fd9565b6129a9565b348015610d2757600080fd5b50610d3b610d36366004614f13565b612a7d565b60405161061c95949392919061528c565b348015610d5857600080fd5b506005546001600160a01b03166106c4565b348015610d7657600080fd5b50601354610610906301000000900460ff1681565b348015610d9757600080fd5b50610680610da6366004614f2c565b612b38565b348015610db757600080fd5b50610697612bba565b348015610dcc57600080fd5b50610680610ddb366004614f2c565b612bc9565b348015610dec57600080fd5b50610680610dfb366004614ed9565b612c03565b348015610e0c57600080fd5b50610652610e1b366004614e21565b612c46565b348015610e2c57600080fd5b50610610610e3b366004614b22565b601d6020526000908152604090205460ff1681565b348015610e5c57600080fd5b5061065260105481565b348015610e7257600080fd5b50610680610e81366004614ed9565b612c77565b348015610e9257600080fd5b50610680610ea1366004614df3565b612caf565b348015610eb257600080fd5b5060135461061090610100900460ff1681565b348015610ed157600080fd5b50610610610ee0366004614e21565b612d74565b348015610ef157600080fd5b5060135461061090640100000000900460ff1681565b348015610f1357600080fd5b50610680610f22366004614f2c565b612d8c565b348015610f3357600080fd5b50610680610f4236600461505b565b61304c565b348015610f5357600080fd5b50610680610f62366004614d40565b613094565b348015610f7357600080fd5b50610652610f82366004614f13565b6130c6565b348015610f9357600080fd5b50610680610fa2366004614e4d565b61319d565b348015610fb357600080fd5b50610680610fc2366004614e21565b61320f565b348015610fd357600080fd5b50610680610fe2366004614e98565b61323e565b348015610ff357600080fd5b50610652611002366004614f2c565b613442565b34801561101357600080fd5b5061104d611022366004614f13565b6016602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b03909416845260208401929092529082015260600161061c565b34801561107e57600080fd5b5061065260125481565b34801561109457600080fd5b506106976110a3366004614f13565b61345e565b3480156110b457600080fd5b506013546106c490600160301b90046001600160a01b031681565b3480156110db57600080fd5b506106806134df565b3480156110f057600080fd5b506013546106109060ff1681565b34801561110a57600080fd5b5061065261a8c081565b34801561112057600080fd5b5061068061112f366004614b22565b613654565b34801561114057600080fd5b5061065260115481565b34801561115657600080fd5b50610680611165366004614b22565b6136a8565b34801561117657600080fd5b50610680611185366004614f13565b6136ef565b34801561119657600080fd5b506013546106109062010000900460ff1681565b3480156111b657600080fd5b5061065260085481565b3480156111cc57600080fd5b50610680613719565b3480156111e157600080fd5b506106526111f0366004614f13565b61375a565b34801561120157600080fd5b50610610611210366004614b3f565b6138b3565b34801561122157600080fd5b50610a086139ad565b34801561123657600080fd5b50610a08611245366004614b22565b613af6565b34801561125657600080fd5b50610680611265366004614b22565b613b62565b34801561127657600080fd5b50610680611285366004614b78565b613bfa565b34801561129657600080fd5b506106806112a5366004615080565b613c3c565b3480156112b657600080fd5b506106806112c5366004614b22565b613c80565b3480156112d657600080fd5b506106526112e5366004614e21565b601e60209081526000928352604080842090915290825290205481565b34801561130e57600080fd5b50610652600d5481565b60006001600160e01b0319821663780e9d6360e01b148061133d575061133d82613cd3565b92915050565b61134c33611983565b6113715760405162461bcd60e51b815260040161136890615360565b60405180910390fd5b60009182526015602052604090912060020155565b606060008054611395906154e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113c1906154e0565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600061142382613d23565b6114845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611368565b506000908152600360205260409020546001600160a01b031690565b60006114ab82611f39565b9050806001600160a01b0316836001600160a01b031614156115195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401611368565b336001600160a01b0382161480611535575061153581336138b3565b6115a75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401611368565b6115b18383613d6d565b505050565b60003381805b6001600160a01b038316600090815260186020526040902054811015611651576001600160a01b0383166000908152601860205260408120805460169291908490811061160b5761160b615586565b9060005260206000200154815260200190815260200160002060010154426116339190615486565b61163d908361543b565b91508061164981615515565b9150506115bc565b5060085461166161a8c083615453565b61166b9190615467565b9250505090565b61167b33611983565b6116975760405162461bcd60e51b815260040161136890615360565b6116a18282613ddb565b5050565b6116ae33611983565b6116ca5760405162461bcd60e51b815260040161136890615360565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b60135462010000900460ff166117395760405162461bcd60e51b81526020600482015260136024820152721cdd185ada5b99c81b9bdd08195b98589b1959606a1b6044820152606401611368565b60005b818110156115b1573361176684848481811061175a5761175a615586565b90506020020135611f39565b6001600160a01b0316146117b45760405162461bcd60e51b81526020600482015260156024820152743cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401611368565b6117d733308585858181106117cb576117cb615586565b90506020020135611c41565b33601660008585858181106117ee576117ee615586565b90506020020135815260200190815260200160002060000160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550426016600085858581811061184157611841615586565b90506020020135815260200190815260200160002060010181905550601860006118683390565b6001600160a01b03166001600160a01b0316815260200190815260200160002083838381811061189a5761189a615586565b83546001810185556000948552602094859020919094029290920135919092015550806118c681615515565b91505061173c565b6118d733611983565b6118f35760405162461bcd60e51b815260040161136890615360565b601380549115156401000000000264ff0000000019909216919091179055565b61191d3382613e79565b6119395760405162461bcd60e51b8152600401611368906153ba565b6115b1838383613f3b565b61194d33611983565b6119695760405162461bcd60e51b815260040161136890615360565b601380549115156101000261ff0019909216919091179055565b6000816001600160a01b03166119a16005546001600160a01b031690565b6001600160a01b0316148061133d5750506001600160a01b03166000908152601b602052604090205460ff1690565b60006119db836120d6565b82106119f95760405162461bcd60e51b8152600401611368906152c3565b6000805b600254811015611a6a5760028181548110611a1a57611a1a615586565b6000918252602090912001546001600160a01b0386811691161415611a585783821415611a4a57915061133d9050565b81611a5481615515565b9250505b80611a6281615515565b9150506119fd565b5060405162461bcd60e51b8152600401611368906152c3565b611a8c33611983565b611aa85760405162461bcd60e51b815260040161136890615360565b600c55565b600081815260166020526040812060020154611acb57506001919050565b600d546000838152601660205260409020600201541415611aee57506000919050565b600082815260166020526040902060020154600d54611b0d9190615486565b60011415611b1d57506000919050565b506001919050565b611b2e33611983565b611b4a5760405162461bcd60e51b815260040161136890615360565b60138054911515620100000262ff000019909216919091179055565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b5050905080611bfb5760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401611368565b50565b611c0733611983565b611c235760405162461bcd60e51b815260040161136890615360565b6013805491151563010000000263ff00000019909216919091179055565b6115b183838360405180602001604052806000815250613094565b60606000611c69836120d6565b905080611c8a5760408051600080825260208201909252905b509392505050565b6000816001600160401b03811115611ca457611ca461559c565b604051908082528060200260200182016040528015611ccd578160200160208202803683370190505b50905060005b82811015611c8257611ce585826119d0565b828281518110611cf757611cf7615586565b602090810291909101015280611d0c81615515565b915050611cd3565b611d1d33611983565b611d395760405162461bcd60e51b815260040161136890615360565b60005b82811015611d8657611d74848483818110611d5957611d59615586565b9050602002016020810190611d6e9190614b22565b83613ddb565b80611d7e81615515565b915050611d3c565b50505050565b6000805b82811015611e0157846001600160a01b03166002858584818110611db657611db6615586565b9050602002013581548110611dcd57611dcd615586565b6000918252602090912001546001600160a01b031614611df1576000915050611e07565b611dfa81615515565b9050611d90565b50600190505b9392505050565b6002546000908210611e775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401611368565b5090565b611e8433611983565b611ea05760405162461bcd60e51b815260040161136890615360565b600755565b611eae33611983565b611eca5760405162461bcd60e51b815260040161136890615360565b80516116a190600f906020840190614953565b60005b8251811015611f2057611f0e8585858481518110611f0057611f00615586565b602002602001015185613094565b80611f1881615515565b915050611ee0565b5050505050565b611f2f6134df565b6116a18282612319565b60008060028381548110611f4f57611f4f615586565b6000918252602090912001546001600160a01b031690508061133d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401611368565b611fce33611983565b611fea5760405162461bcd60e51b815260040161136890615360565b60009182526015602052604090912060040155565b600f805461200c906154e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612038906154e0565b80156120855780601f1061205a57610100808354040283529160200191612085565b820191906000526020600020905b81548152906001019060200180831161206857829003601f168201915b505050505081565b61209633611983565b6120b25760405162461bcd60e51b815260040161136890615360565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b60006001600160a01b0382166121415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401611368565b6000805b60025481101561219d576002818154811061216257612162615586565b6000918252602090912001546001600160a01b038581169116141561218d5761218a82615515565b91505b61219681615515565b9050612145565b5092915050565b6121ad33611983565b6121c95760405162461bcd60e51b815260040161136890615360565b60135465010000000000900460ff16156122435760405162461bcd60e51b815260206004820152603560248201527f746869732069732061206f6e65207761792066756e6374696f6e2069742063616044820152746e206e6f742062652063616c6c656420747769636560581b6064820152608401611368565b6001600090815260196020527ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da092914819055600d556013805465ff0000000000191665010000000000179055565b6005546001600160a01b031633146122b95760405162461bcd60e51b815260040161136890615385565b6122c36000614091565b565b6122ce33611983565b6122ea5760405162461bcd60e51b815260040161136890615360565b600a55565b6122f833611983565b6123145760405162461bcd60e51b815260040161136890615360565b600855565b60005b818110156115b157336016600085858581811061233b5761233b615586565b60209081029290920135835250810191909152604001600020546001600160a01b0316146123a35760405162461bcd60e51b81526020600482015260156024820152743cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401611368565b6123c48383838181106123b8576123b8615586565b90506020020135611aad565b61241c5760405162461bcd60e51b815260206004820152602360248201527f746f6b656e20696e207265726f6c6c206f7220636f6f6c20646f776e207065726044820152621a5bd960ea1b6064820152608401611368565b61243f303385858581811061243357612433615586565b90506020020135613f3b565b6016600084848481811061245557612455615586565b60209081029290920135835250810191909152604001600090812080546001600160a01b031916905560169084848481811061249357612493615586565b90506020020135815260200190815260200160002060010160009055601660008484848181106124c5576124c5615586565b9050602002013581526020019081526020016000206002016000905560005b336000908152601860205260409020548110156126465783838381811061250d5761250d615586565b905060200201356018600061251f3390565b6001600160a01b03166001600160a01b03168152602001908152602001600020828154811061255057612550615586565b9060005260206000200154141561263457336000908152601860205260409020805461257e90600190615486565b8154811061258e5761258e615586565b9060005260206000200154601860006125a43390565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106125d5576125d5615586565b9060005260206000200181905550601860006125ee3390565b6001600160a01b03166001600160a01b0316815260200190815260200160002080548061261d5761261d615570565b600190038181906000526020600020016000905590555b8061263e81615515565b9150506124e4565b508061265181615515565b91505061231c565b600061266433611983565b6126805760405162461bcd60e51b815260040161136890615360565b600c546040516370a0823160e01b81523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271a9190615042565b101561275a5760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b6044820152606401611368565b612768600e54600c546140e3565b60405190915081907fc620a79baed7e5f06637aa5ab699c2b03ee40b2ae3ba4a91ed1eb0bd00b8ea3b90600090a290565b604080516bffffffffffffffffffffffff193360601b166020820152815180820360140181526034909101909152600254600954600160a01b900460ff166128195760405162461bcd60e51b8152602060048201526013602482015272496c6c2d6c697374206e6f742061637469766560681b6044820152606401611368565b61285e6128258361426e565b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061429e92505050565b6128b55760405162461bcd60e51b815260206004820152602260248201527f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c69604482015261195960f21b6064820152608401611368565b336000908152601d602052604090205460ff161561290a5760405162461bcd60e51b815260206004820152601260248201527163616e206e6f74206d696e7420747769636560701b6044820152606401611368565b6122b96007548261291b919061543b565b1061295f5760405162461bcd60e51b81526020600482015260146024820152731c1c9bda9958dd08199d5b1b1e481b5a5b9d195960621b6044820152606401611368565b336000908152601d60205260408120805460ff191660011790555b600754811015611f205761299733612992838561543b565b6142ad565b806129a181615515565b91505061297a565b6129b233611983565b6129ce5760405162461bcd60e51b815260040161136890615360565b601280549060006129de83615515565b91905055506040518060a001604052808681526020018515158152602001848152602001838152602001828152506015600060125481526020019081526020016000206000820151816000019080519060200190612a3d929190614953565b50602082015160018201805460ff191691151591909117905560408201516002820155606082015160038201556080909101516004909101555050505050565b601560205260009081526040902080548190612a98906154e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac4906154e0565b8015612b115780601f10612ae657610100808354040283529160200191612b11565b820191906000526020600020905b815481529060010190602001808311612af457829003601f168201915b50505050600183015460028401546003850154600490950154939460ff9092169390925085565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614612bb05760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401611368565b6116a18282614329565b606060018054611395906154e0565b612bd233611983565b612bee5760405162461bcd60e51b815260040161136890615360565b60009182526015602052604090912060030155565b612c0c33611983565b612c285760405162461bcd60e51b815260040161136890615360565b60098054911515600160a01b0260ff60a01b19909216919091179055565b60186020528160005260406000208181548110612c6257600080fd5b90600052602060002001600091509150505481565b612c8033611983565b612c9c5760405162461bcd60e51b815260040161136890615360565b6013805460ff1916911515919091179055565b6001600160a01b038216331415612d085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611368565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600033612d82818585614395565b5060019392505050565b336000908152601e6020908152604080832085845290915281208054839290612db690849061543b565b909155505060135460ff16612e0d5760405162461bcd60e51b815260206004820152601a60248201527f474f4f503a207370656e64696e67206e6f7420656e61626c65640000000000006044820152606401611368565b60008281526015602052604090206001015460ff16612e6e5760405162461bcd60e51b815260206004820152601b60248201527f4974656d206e6f742063757272656e746c7920666f722073616c6500000000006044820152606401611368565b600082815260156020526040902060030154811115612ec05760405162461bcd60e51b815260206004820152600e60248201526d24ba32b69039b7b6321037baba1760911b6044820152606401611368565b600082815260156020908152604080832060040154338452601e8352818420868552909252909120541115612f425760405162461bcd60e51b815260206004820152602260248201527f457863656564656420616c6c6f776564207075726368617365207175616e7469604482015261747960f01b6064820152608401611368565b600082815260156020526040812060020154612f5e9083615467565b33600090815260176020526040902054909150811115612fb55760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1033b7b7b81760711b6044820152606401611368565b612fc0335b8261455c565b60008381526015602052604081206003018054849290612fe1908490615486565b90915550506000838152601560205260409020600201546130029083615467565b60116000828254613013919061543b565b90915550506040518290849033907f37d866404e1f1c5c5dd931a5ee274424b3d325feaac047d0a78cd1fe03f323c390600090a4505050565b61305533611983565b6130715760405162461bcd60e51b815260040161136890615360565b600091825260156020526040909120600101805460ff1916911515919091179055565b61309e3383613e79565b6130ba5760405162461bcd60e51b8152600401611368906153ba565b611d868484848461465f565b6014546000906001600160a01b03166131215760405162461bcd60e51b815260206004820152601760248201527f546865204c6162206973206265696e672073657475702e0000000000000000006044820152606401611368565b601454604051639bb7591d60e01b8152600481018490526001600160a01b0390911690639bb7591d9060240160206040518083038186803b15801561316557600080fd5b505afa158015613179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133d9190615042565b6131a633611983565b6131c25760405162461bcd60e51b815260040161136890615360565b60005b82811015611d86576131fd8484838181106131e2576131e2615586565b90506020020160208101906131f79190614b22565b8361455c565b8061320781615515565b9150506131c5565b61321833611983565b6132345760405162461bcd60e51b815260040161136890615360565b6116a1828261455c565b600061324b826032615467565b601354909150610100900460ff1661329a5760405162461bcd60e51b81526020600482015260126024820152711c995c9bdb1b081b9bdd08195b98589b195960721b6044820152606401611368565b336000908152601760205260409020548111156132f95760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420656e6f75676820676f6f7020666f72207265726f6c6c0000000000006044820152606401611368565b60005b8281101561343857336016600086868581811061331b5761331b615586565b60209081029290920135835250810191909152604001600020546001600160a01b03161461339d5760405162461bcd60e51b815260206004820152602960248201527f796f7520646f6e74206f776e207468697320746f6b656e206f7220697473206e6044820152681bdd081cdd185ad95960ba1b6064820152608401611368565b601a6000600d5460016133b0919061543b565b81526020019081526020016000208484838181106133d0576133d0615586565b8354600181018555600094855260208086209202939093013592019190915550600d549060169086868581811061340957613409615586565b90506020020135815260200190815260200160002060020181905550808061343090615515565b9150506132fc565b506115b133612fba565b601a6020528160005260406000208181548110612c6257600080fd5b606061346982613d23565b6134ad5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401611368565b600f6134b883614692565b6040516020016134c992919061512a565b6040516020818303038152906040529050919050565b601354640100000000900460ff166135395760405162461bcd60e51b815260206004820152601760248201527f474f4f503a20636c61696d206e6f7420656e61626c65640000000000000000006044820152606401611368565b336000805b6001600160a01b03831660009081526018602052604090205481101561362f576001600160a01b0383166000908152601860205260408120805460169291908490811061358d5761358d615586565b9060005260206000200154815260200190815260200160002060010154426135b59190615486565b6135bf908361543b565b9150426016600060186000876001600160a01b03166001600160a01b0316815260200190815260200160002084815481106135fc576135fc615586565b9060005260206000200154815260200190815260200160002060010181905550808061362790615515565b91505061353e565b506116a18260085461a8c0846136459190615453565b61364f9190615467565b613ddb565b61365d33611983565b6136795760405162461bcd60e51b815260040161136890615360565b601380546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6136b133611983565b6136cd5760405162461bcd60e51b815260040161136890615360565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6136f833611983565b6137145760405162461bcd60e51b815260040161136890615360565b600e55565b61372233611983565b61373e5760405162461bcd60e51b815260040161136890615360565b306000908152601b60205260409020805460ff19166001179055565b60025460009082106137a55760405162461bcd60e51b8152602060048201526014602482015273746f6b656e4964206f7574206f662072616e676560601b6044820152606401611368565b600d545b80156138ad5780600114156137f9576000818152601960209081526040918290205482519182015290810184905260600160408051601f1981840301815291905280516020909101209392505050565b60005b6000828152601a602052604090205481101561389a576000828152601a6020526040902080548591908390811061383557613835615586565b90600052602060002001541415613888576000828152601960209081526040918290205482519182015290810185905260600160408051601f198184030181529190528051602090910120949350505050565b8061389281615515565b9150506137fc565b50806138a5816154c9565b9150506137a9565b50919050565b60135460405163c455279160e01b81526001600160a01b038481166004830152600092600160301b900481169190841690829063c45527919060240160206040518083038186803b15801561390757600080fd5b505afa15801561391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061393f9190614f88565b6001600160a01b0316148061396c57506001600160a01b0383166000908152601c602052604090205460ff165b1561397b57600191505061133d565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6040805160148082526102a0820190925260609160009190602082016102808036833701905050905060008060005b6014821015613aed5760026000908152601960209081527f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b581546040516122b792613a329291889101918252602082015260400190565b6040516020818303038152906040528051906020012060001c613a559190615530565b905060005b8551811015613a9f57858181518110613a7557613a75615586565b6020026020010151821415613a8d5760019250613a9f565b80613a9781615515565b915050613a5a565b5081613ad55780858481518110613ab857613ab8615586565b602090810291909101015282613acd81615515565b935050613ada565b600091505b83613ae481615515565b945050506139dc565b50919392505050565b6001600160a01b038116600090815260186020908152604091829020805483518184028101840190945280845260609392830182828015613b5657602002820191906000526020600020905b815481526020019060010190808311613b42575b50505050509050919050565b6005546001600160a01b03163314613b8c5760405162461bcd60e51b815260040161136890615385565b6001600160a01b038116613bf15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611368565b611bfb81614091565b60005b8151811015611d8657613c2a8484848481518110613c1d57613c1d615586565b6020026020010151611913565b80613c3481615515565b915050613bfd565b613c4533611983565b613c615760405162461bcd60e51b815260040161136890615360565b600082815260156020908152604090912082516115b192840190614953565b6005546001600160a01b03163314613caa5760405162461bcd60e51b815260040161136890615385565b6001600160a01b03166000908152601c60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b1480613d0457506001600160e01b03198216635b5e139f60e01b145b8061133d57506301ffc9a760e01b6001600160e01b031983161461133d565b6002546000908210801561133d575060006001600160a01b031660028381548110613d5057613d50615586565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613da282611f39565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216613e315760405162461bcd60e51b815260206004820152601e60248201527f474f4f503a206d696e7420746f20746865207a65726f206164647265737300006044820152606401611368565b8060106000828254613e43919061543b565b90915550506001600160a01b03821660009081526017602052604081208054839290613e7090849061543b565b90915550505050565b6000613e8482613d23565b613ee55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401611368565b6000613ef083611f39565b9050806001600160a01b0316846001600160a01b03161480613f2b5750836001600160a01b0316613f2084611418565b6001600160a01b0316145b806139a557506139a581856138b3565b826001600160a01b0316613f4e82611f39565b6001600160a01b031614613fb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401611368565b6001600160a01b0382166140185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611368565b614023600082613d6d565b816002828154811061403757614037615586565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001614153929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016141809392919061520e565b602060405180830381600087803b15801561419a57600080fd5b505af11580156141ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d29190614ef6565b50600083815260066020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a09091019092528151918301919091209387905291905261422e90600161543b565b6000858152600660205260409020556139a58482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b600081604051602001614281919061510e565b604051602081830303815290604052805190602001209050919050565b6000611e0782600a548561478f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600d805490600061433983615515565b9091555050600d80546000908152601960209081526040918290208490559154815190815291820183905283917f40431436c9748fa9fd76125d53be0c19c7da0ef3cc0e1c0214d9ab78458313d3910160405180910390a25050565b6013546301000000900460ff166143ee5760405162461bcd60e51b815260206004820152601a60248201527f474f4f503a207472616e73666572206e6f7420656e61626c65640000000000006044820152606401611368565b6001600160a01b0383166144505760405162461bcd60e51b8152602060048201526024808201527f474f4f503a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611368565b6001600160a01b0382166144b15760405162461bcd60e51b815260206004820152602260248201527f474f4f503a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611368565b6001600160a01b0383166000908152601760205260409020548181101561451a5760405162461bcd60e51b815260206004820152601b60248201527f474f4f503a20696e73756666696369656e742062616c616e63652000000000006044820152606401611368565b6001600160a01b0380851660009081526017602052604080822085850390559185168152908120805484929061455190849061543b565b909155505050505050565b6001600160a01b0382166145b25760405162461bcd60e51b815260206004820181905260248201527f474f4f503a206275726e2066726f6d20746865207a65726f20616464726573736044820152606401611368565b6001600160a01b038216600090815260176020526040902054818110156146265760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401611368565b6001600160a01b0383166000908152601760205260408120838303905560108054849290614655908490615486565b9091555050505050565b61466a848484613f3b565b614676848484846147a5565b611d865760405162461bcd60e51b81526004016113689061530e565b6060816146b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156146e057806146ca81615515565b91506146d99050600a83615453565b91506146ba565b6000816001600160401b038111156146fa576146fa61559c565b6040519080825280601f01601f191660200182016040528015614724576020820181803683370190505b5090505b84156139a557614739600183615486565b9150614746600a86615530565b61475190603061543b565b60f81b81838151811061476657614766615586565b60200101906001600160f81b031916908160001a905350614788600a86615453565b9450614728565b60008261479c85846148af565b14949350505050565b60006001600160a01b0384163b156148a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906147e99033908990889088906004016151d1565b602060405180830381600087803b15801561480357600080fd5b505af1925050508015614833575060408051601f3d908101601f1916820190925261483091810190614f6b565b60015b61488d573d808015614861576040519150601f19603f3d011682016040523d82523d6000602084013e614866565b606091505b5080516148855760405162461bcd60e51b81526004016113689061530e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506139a5565b5060016139a5565b600081815b8451811015611c825760008582815181106148d1576148d1615586565b60200260200101519050808311614913576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250614940565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061494b81615515565b9150506148b4565b82805461495f906154e0565b90600052602060002090601f01602090048101928261498157600085556149c7565b82601f1061499a57805160ff19168380011785556149c7565b828001600101855582156149c7579182015b828111156149c75782518255916020019190600101906149ac565b50611e779291505b80821115611e7757600081556001016149cf565b60008083601f8401126149f557600080fd5b5081356001600160401b03811115614a0c57600080fd5b6020830191508360208260051b8501011115614a2757600080fd5b9250929050565b600082601f830112614a3f57600080fd5b813560206001600160401b03821115614a5a57614a5a61559c565b8160051b614a6982820161540b565b838152828101908684018388018501891015614a8457600080fd5b600093505b85841015614aa7578035835260019390930192918401918401614a89565b50979650505050505050565b600082601f830112614ac457600080fd5b81356001600160401b03811115614add57614add61559c565b614af0601f8201601f191660200161540b565b818152846020838601011115614b0557600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614b3457600080fd5b8135611e07816155b2565b60008060408385031215614b5257600080fd5b8235614b5d816155b2565b91506020830135614b6d816155b2565b809150509250929050565b600080600060608486031215614b8d57600080fd5b8335614b98816155b2565b92506020840135614ba8816155b2565b915060408401356001600160401b03811115614bc357600080fd5b614bcf86828701614a2e565b9150509250925092565b60008060008060808587031215614bef57600080fd5b8435614bfa816155b2565b93506020850135614c0a816155b2565b925060408501356001600160401b0380821115614c2657600080fd5b614c3288838901614a2e565b93506060870135915080821115614c4857600080fd5b50614c5587828801614ab3565b91505092959194509250565b600080600060608486031215614c7657600080fd5b8335614c81816155b2565b92506020840135614c91816155b2565b929592945050506040919091013590565b600080600080600060808688031215614cba57600080fd5b8535614cc5816155b2565b94506020860135614cd5816155b2565b93506040860135925060608601356001600160401b0380821115614cf857600080fd5b818801915088601f830112614d0c57600080fd5b813581811115614d1b57600080fd5b896020828501011115614d2d57600080fd5b9699959850939650602001949392505050565b60008060008060808587031215614d5657600080fd5b8435614d61816155b2565b93506020850135614d71816155b2565b92506040850135915060608501356001600160401b03811115614d9357600080fd5b614c5587828801614ab3565b600080600060408486031215614db457600080fd5b8335614dbf816155b2565b925060208401356001600160401b03811115614dda57600080fd5b614de6868287016149e3565b9497909650939450505050565b60008060408385031215614e0657600080fd5b8235614e11816155b2565b91506020830135614b6d816155c7565b60008060408385031215614e3457600080fd5b8235614e3f816155b2565b946020939093013593505050565b600080600060408486031215614e6257600080fd5b83356001600160401b03811115614e7857600080fd5b614e84868287016149e3565b909790965060209590950135949350505050565b60008060208385031215614eab57600080fd5b82356001600160401b03811115614ec157600080fd5b614ecd858286016149e3565b90969095509350505050565b600060208284031215614eeb57600080fd5b8135611e07816155c7565b600060208284031215614f0857600080fd5b8151611e07816155c7565b600060208284031215614f2557600080fd5b5035919050565b60008060408385031215614f3f57600080fd5b50508035926020909101359150565b600060208284031215614f6057600080fd5b8135611e07816155d5565b600060208284031215614f7d57600080fd5b8151611e07816155d5565b600060208284031215614f9a57600080fd5b8151611e07816155b2565b600060208284031215614fb757600080fd5b81356001600160401b03811115614fcd57600080fd5b6139a584828501614ab3565b600080600080600060a08688031215614ff157600080fd5b85356001600160401b0381111561500757600080fd5b61501388828901614ab3565b9550506020860135615024816155c7565b94979496505050506040830135926060810135926080909101359150565b60006020828403121561505457600080fd5b5051919050565b6000806040838503121561506e57600080fd5b823591506020830135614b6d816155c7565b6000806040838503121561509357600080fd5b8235915060208301356001600160401b038111156150b057600080fd5b6150bc85828601614ab3565b9150509250929050565b600081518084526150de81602086016020860161549d565b601f01601f19169290920160200192915050565b6000815161510481856020860161549d565b9290920192915050565b6000825161512081846020870161549d565b9190910192915050565b600080845481600182811c91508083168061514657607f831692505b602080841082141561516657634e487b7160e01b86526022600452602486fd5b81801561517a576001811461518b576151b8565b60ff198616895284890196506151b8565b60008b81526020902060005b868110156151b05781548b820152908501908301615197565b505084890196505b5050505050506151c881856150f2565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615204908301846150c6565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006151c860608301846150c6565b6020808252825182820181905260009190848201906040850190845b8181101561526d57835183529284019291840191600101615251565b50909695505050505050565b602081526000611e0760208301846150c6565b60a08152600061529f60a08301886150c6565b95151560208301525060408101939093526060830191909152608090910152919050565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a61646d696e73206f6e6c7960a81b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156154335761543361559c565b604052919050565b6000821982111561544e5761544e615544565b500190565b6000826154625761546261555a565b500490565b600081600019048311821515161561548157615481615544565b500290565b60008282101561549857615498615544565b500390565b60005b838110156154b85781810151838201526020016154a0565b83811115611d865750506000910152565b6000816154d8576154d8615544565b506000190190565b600181811c908216806154f457607f821691505b602082108114156138ad57634e487b7160e01b600052602260045260246000fd5b600060001982141561552957615529615544565b5060010190565b60008261553f5761553f61555a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611bfb57600080fd5b8015158114611bfb57600080fd5b6001600160e01b031981168114611bfb57600080fdfea264697066735822122075c4ad51e850e5cb1dfdbd6f4783e73cc68049be7e864248ce99350befd24c6464736f6c63430008070033

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

aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca

-----Decoded View---------------
Arg [0] : _VRF_keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : _VRF_Fee (uint256): 2000000000000000000
Arg [2] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [3] : _linkToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [1] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [2] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [3] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca


Deployed Bytecode Sourcemap

53766:31747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34744:224;;;;;;;;;;-1:-1:-1;34744:224:0;;;;;:::i;:::-;;:::i;:::-;;;17670:14:1;;17663:22;17645:41;;17633:2;17618:18;34744:224:0;;;;;;;;56627:39;;;;;;;;;;-1:-1:-1;56627:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;17843:25:1;;;17831:2;17816:18;56627:39:0;17697:177:1;84108:122:0;;;;;;;;;;-1:-1:-1;84108:122:0;;;;;:::i;:::-;;:::i;:::-;;21252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22027:221::-;;;;;;;;;;-1:-1:-1;22027:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;15591:32:1;;;15573:51;;15561:2;15546:18;22027:221:0;15427:203:1;21587:374:0;;;;;;;;;;-1:-1:-1;21587:374:0;;;;;:::i;:::-;;:::i;78377:357::-;;;;;;;;;;;;;:::i;55003:24::-;;;;;;;;;;-1:-1:-1;55003:24:0;;;;-1:-1:-1;;;55003:24:0;;;;;;80397:118;;;;;;;;;;-1:-1:-1;80397:118:0;;;;;:::i;:::-;;:::i;54603:40::-;;;;;;;;;;;;54641:2;54603:40;;77255:260;;;;;;;;;;-1:-1:-1;77255:260:0;;;;;:::i;:::-;77446:60;77255:260;;;;;;;;;;;-1:-1:-1;;;;;;18716:33:1;;;18698:52;;18686:2;18671:18;77255:260:0;18554:202:1;59920:95:0;;;;;;;;;;-1:-1:-1;59920:95:0;;;;;:::i;:::-;;:::i;35044:110::-;;;;;;;;;;-1:-1:-1;35132:7:0;:14;35044:110;;73364:543;;;;;;;;;;-1:-1:-1;73364:543:0;;;;;:::i;:::-;;:::i;55162:18::-;;;;;;;;;;-1:-1:-1;55162:18:0;;;;-1:-1:-1;;;;;55162:18:0;;;62135:101;;;;;;;;;;-1:-1:-1;62135:101:0;;;;;:::i;:::-;;:::i;22917:339::-;;;;;;;;;;-1:-1:-1;22917:339:0;;;;;:::i;:::-;;:::i;60918:95::-;;;;;;;;;;-1:-1:-1;60918:95:0;;;;;:::i;:::-;;:::i;59536:127::-;;;;;;;;;;-1:-1:-1;59536:127:0;;;;;:::i;:::-;;:::i;56022:21::-;;;;;;;;;;-1:-1:-1;56022:21:0;;;;;;;;;;;55060:25;;;;;;;;;;;;;;;;35520:501;;;;;;;;;;-1:-1:-1;35520:501:0;;;;;:::i;:::-;;:::i;70146:85::-;;;;;;;;;;-1:-1:-1;70146:85:0;;;;;:::i;:::-;;:::i;56253:25::-;;;;;;;;;;-1:-1:-1;56253:25:0;;;;-1:-1:-1;;;;;56253:25:0;;;76317:624;;;;;;;;;;-1:-1:-1;76317:624:0;;;;;:::i;:::-;;:::i;60685:97::-;;;;;;;;;;-1:-1:-1;60685:97:0;;;;;:::i;:::-;;:::i;67261:160::-;;;;;;;;;;;;;:::i;61088:99::-;;;;;;;;;;-1:-1:-1;61088:99:0;;;;;:::i;:::-;;:::i;23327:185::-;;;;;;;;;;-1:-1:-1;23327:185:0;;;;;:::i;:::-;;:::i;66590:402::-;;;;;;;;;;-1:-1:-1;66590:402:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;80604:206::-;;;;;;;;;;-1:-1:-1;80604:206:0;;;;;:::i;:::-;;:::i;66274:245::-;;;;;;;;;;-1:-1:-1;66274:245:0;;;;;:::i;:::-;;:::i;35231:205::-;;;;;;;;;;-1:-1:-1;35231:205:0;;;;;:::i;:::-;;:::i;61765:94::-;;;;;;;;;;-1:-1:-1;61765:94:0;;;;;:::i;:::-;;:::i;61612:98::-;;;;;;;;;;-1:-1:-1;61612:98:0;;;;;:::i;:::-;;:::i;54857:70::-;;;;;;;;;;-1:-1:-1;54857:70:0;;;;-1:-1:-1;;;;;54857:70:0;;;65891:286;;;;;;;;;;-1:-1:-1;65891:286:0;;;;;:::i;:::-;;:::i;75772:126::-;;;;;;;;;;-1:-1:-1;75772:126:0;;;;;:::i;:::-;;:::i;57128:44::-;;;;;;;;;;-1:-1:-1;57128:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20946:239;;;;;;;;;;-1:-1:-1;20946:239:0;;;;;:::i;:::-;;:::i;84538:142::-;;;;;;;;;;-1:-1:-1;84538:142:0;;;;;:::i;:::-;;:::i;55405:21::-;;;;;;;;;;;;;:::i;59745:91::-;;;;;;;;;;-1:-1:-1;59745:91:0;;;;;:::i;:::-;;:::i;20551:333::-;;;;;;;;;;-1:-1:-1;20551:333:0;;;;;:::i;:::-;;:::i;68567:224::-;;;;;;;;;;;;;:::i;50853:103::-;;;;;;;;;;;;;:::i;54535:26::-;;;;;;;;;;;;;;;;62477:104;;;;;;;;;;-1:-1:-1;62477:104:0;;;;;:::i;:::-;;:::i;55333:26::-;;;;;;;;;;;;;;;;61941:126;;;;;;;;;;-1:-1:-1;61941:126:0;;;;;:::i;:::-;;:::i;55226:22::-;;;;;;;;;;;;;;;;74386:1026;;;;;;;;;;-1:-1:-1;74386:1026:0;;;;;:::i;:::-;;:::i;56808:48::-;;;;;;;;;;-1:-1:-1;56808:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;67729:277;;;;;;;;;;;;;:::i;64089:643::-;;;;;;:::i;:::-;;:::i;83252:313::-;;;;;;;;;;-1:-1:-1;83252:313:0;;;;;:::i;:::-;;:::i;56418:41::-;;;;;;;;;;-1:-1:-1;56418:41:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;50202:87::-;;;;;;;;;;-1:-1:-1;50275:6:0;;-1:-1:-1;;;;;50275:6:0;50202:87;;55912:25;;;;;;;;;;-1:-1:-1;55912:25:0;;;;;;;;;;;46305:220;;;;;;;;;;-1:-1:-1;46305:220:0;;;;;:::i;:::-;;:::i;21421:104::-;;;;;;;;;;;;;:::i;84305:126::-;;;;;;;;;;-1:-1:-1;84305:126:0;;;;;:::i;:::-;;:::i;60494:97::-;;;;;;;;;;-1:-1:-1;60494:97:0;;;;;:::i;:::-;;:::i;56713:43::-;;;;;;;;;;-1:-1:-1;56713:43:0;;;;;:::i;:::-;;:::i;57224:47::-;;;;;;;;;;-1:-1:-1;57224:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55506:30;;;;;;;;;;;;;;;;61267:93;;;;;;;;;;-1:-1:-1;61267:93:0;;;;;:::i;:::-;;:::i;22320:295::-;;;;;;;;;;-1:-1:-1;22320:295:0;;;;;:::i;:::-;;:::i;55809:23::-;;;;;;;;;;-1:-1:-1;55809:23:0;;;;;;;;;;;79470:188;;;;;;;;;;-1:-1:-1;79470:188:0;;;;;:::i;:::-;;:::i;55971:23::-;;;;;;;;;;-1:-1:-1;55971:23:0;;;;;;;;;;;81715:801;;;;;;;;;;-1:-1:-1;81715:801:0;;;;;:::i;:::-;;:::i;83890:135::-;;;;;;;;;;-1:-1:-1;83890:135:0;;;;;:::i;:::-;;:::i;23583:328::-;;;;;;;;;;-1:-1:-1;23583:328:0;;;;;:::i;:::-;;:::i;63263:206::-;;;;;;;;;;-1:-1:-1;63263:206:0;;;;;:::i;:::-;;:::i;81415:::-;;;;;;;;;;-1:-1:-1;81415:206:0;;;;;:::i;:::-;;:::i;81206:118::-;;;;;;;;;;-1:-1:-1;81206:118:0;;;;;:::i;:::-;;:::i;69266:631::-;;;;;;;;;;-1:-1:-1;69266:631:0;;;;;:::i;:::-;;:::i;56916:48::-;;;;;;;;;;-1:-1:-1;56916:48:0;;;;;:::i;:::-;;:::i;56514:50::-;;;;;;;;;;-1:-1:-1;56514:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56514:50:0;;;;;;;;;;;-1:-1:-1;;;;;16738:32:1;;;16720:51;;16802:2;16787:18;;16780:34;;;;16830:18;;;16823:34;16708:2;16693:18;56514:50:0;16518:345:1;55645:21:0;;;;;;;;;;;;;;;;65216:218;;;;;;;;;;-1:-1:-1;65216:218:0;;;;;:::i;:::-;;:::i;56157:35::-;;;;;;;;;;-1:-1:-1;56157:35:0;;;;-1:-1:-1;;;56157:35:0;;-1:-1:-1;;;;;56157:35:0;;;78809:467;;;;;;;;;;;;;:::i;55757:22::-;;;;;;;;;;-1:-1:-1;55757:22:0;;;;;;;;54685:48;;;;;;;;;;;;54725:8;54685:48;;84854:146;;;;;;;;;;-1:-1:-1;84854:146:0;;;;;:::i;:::-;;:::i;55572:29::-;;;;;;;;;;;;;;;;61450:106;;;;;;;;;;-1:-1:-1;61450:106:0;;;;;:::i;:::-;;:::i;69973:101::-;;;;;;;;;;-1:-1:-1;69973:101:0;;;;;:::i;:::-;;:::i;55864:24::-;;;;;;;;;;-1:-1:-1;55864:24:0;;;;;;;;;;;54787:34;;;;;;;;;;;;;;;;60341:82;;;;;;;;;;;;;:::i;71217:607::-;;;;;;;;;;-1:-1:-1;71217:607:0;;;;;:::i;:::-;;:::i;85154:356::-;;;;;;;;;;-1:-1:-1;85154:356:0;;;;;:::i;:::-;;:::i;72117:808::-;;;;;;;;;;;;;:::i;77034:114::-;;;;;;;;;;-1:-1:-1;77034:114:0;;;;;:::i;:::-;;:::i;51111:201::-;;;;;;;;;;-1:-1:-1;51111:201:0;;;;;:::i;:::-;;:::i;65539:242::-;;;;;;;;;;-1:-1:-1;65539:242:0;;;;;:::i;:::-;;:::i;83649:152::-;;;;;;;;;;-1:-1:-1;83649:152:0;;;;;:::i;:::-;;:::i;85008:138::-;;;;;;;;;;-1:-1:-1;85008:138:0;;;;;:::i;:::-;;:::i;57317:71::-;;;;;;;;;;-1:-1:-1;57317:71:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;55276:28;;;;;;;;;;;;;;;;34744:224;34846:4;-1:-1:-1;;;;;;34870:50:0;;-1:-1:-1;;;34870:50:0;;:90;;;34924:36;34948:11;34924:23;:36::i;:::-;34863:97;34744:224;-1:-1:-1;;34744:224:0:o;84108:122::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;;;;;;;;;84191:16:::1;::::0;;;:9:::1;:16;::::0;;;;;:22:::1;;:31:::0;84108:122::o;21252:100::-;21306:13;21339:5;21332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21252:100;:::o;22027:221::-;22103:7;22131:16;22139:7;22131;:16::i;:::-;22123:73;;;;-1:-1:-1;;;22123:73:0;;31632:2:1;22123:73:0;;;31614:21:1;31671:2;31651:18;;;31644:30;31710:34;31690:18;;;31683:62;-1:-1:-1;;;31761:18:1;;;31754:42;31813:19;;22123:73:0;31430:408:1;22123:73:0;-1:-1:-1;22216:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22216:24:0;;22027:221::o;21587:374::-;21668:13;21684:23;21699:7;21684:14;:23::i;:::-;21668:39;;21732:5;-1:-1:-1;;;;;21726:11:0;:2;-1:-1:-1;;;;;21726:11:0;;;21718:57;;;;-1:-1:-1;;;21718:57:0;;34983:2:1;21718:57:0;;;34965:21:1;35022:2;35002:18;;;34995:30;35061:34;35041:18;;;35034:62;-1:-1:-1;;;35112:18:1;;;35105:31;35153:19;;21718:57:0;34781:397:1;21718:57:0;8984:10;-1:-1:-1;;;;;21796:21:0;;;;:62;;-1:-1:-1;21821:37:0;21838:5;8984:10;85154:356;:::i;21821:37::-;21788:131;;;;-1:-1:-1;;;21788:131:0;;28177:2:1;21788:131:0;;;28159:21:1;28216:2;28196:18;;;28189:30;28255:34;28235:18;;;28228:62;28326:26;28306:18;;;28299:54;28370:19;;21788:131:0;27975:420:1;21788:131:0;21932:21;21941:2;21945:7;21932:8;:21::i;:::-;21657:304;21587:374;;:::o;78377:357::-;78425:7;8984:10;78425:7;;78514:149;-1:-1:-1;;;;;78538:12:0;;;;;;:6;:12;;;;;:19;78534:23;;78514:149;;;-1:-1:-1;;;;;78625:12:0;;78613:28;78625:12;;;:6;:12;;;;;:15;;78613:11;;:28;78625:12;78638:1;;78625:15;;;;;;:::i;:::-;;;;;;;;;78613:28;;;;;;;;;;;:38;;;78595:15;:56;;;;:::i;:::-;78581:70;;;;:::i;:::-;;-1:-1:-1;78559:3:0;;;;:::i;:::-;;;;78514:149;;;-1:-1:-1;78711:15:0;;78681:26;54725:8;78681:10;:26;:::i;:::-;78680:46;;;;:::i;:::-;78673:53;;;;78377:357;:::o;80397:118::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;80484:23:::1;80494:5;80501;80484:9;:23::i;:::-;80397:118:::0;;:::o;59920:95::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59986:13:0::1;60002:5;59986:13:::0;;;:6:::1;:13;::::0;;;;:21;;-1:-1:-1;;59986:21:0::1;::::0;;59920:95::o;73364:543::-;73440:12;;;;;;;73432:44;;;;-1:-1:-1;;;73432:44:0;;24557:2:1;73432:44:0;;;24539:21:1;24596:2;24576:18;;;24569:30;-1:-1:-1;;;24615:18:1;;;24608:49;24674:18;;73432:44:0;24355:343:1;73432:44:0;73494:9;73489:411;73509:20;;;73489:411;;;8984:10;73559:21;73567:9;;73577:1;73567:12;;;;;;;:::i;:::-;;;;;;;73559:7;:21::i;:::-;-1:-1:-1;;;;;73559:37:0;;73551:71;;;;-1:-1:-1;;;73551:71:0;;30932:2:1;73551:71:0;;;30914:21:1;30971:2;30951:18;;;30944:30;-1:-1:-1;;;30990:18:1;;;30983:51;31051:18;;73551:71:0;30730:345:1;73551:71:0;73639:59;8984:10;73678:4;73685:9;;73695:1;73685:12;;;;;;;:::i;:::-;;;;;;;73639:16;:59::i;:::-;8984:10;73715:11;:25;73727:9;;73737:1;73727:12;;;;;;;:::i;:::-;;;;;;;73715:25;;;;;;;;;;;:36;;;:51;;;;;-1:-1:-1;;;;;73715:51:0;;;;;-1:-1:-1;;;;;73715:51:0;;;;;;73819:15;73781:11;:25;73793:9;;73803:1;73793:12;;;;;;;:::i;:::-;;;;;;;73781:25;;;;;;;;;;;:35;;:53;;;;73849:6;:20;73856:12;8984:10;;8904:98;73856:12;-1:-1:-1;;;;;73849:20:0;-1:-1:-1;;;;;73849:20:0;;;;;;;;;;;;73875:9;;73885:1;73875:12;;;;;;;:::i;:::-;73849:39;;;;;;;-1:-1:-1;73849:39:0;;;73875:12;73849:39;;;;73875:12;;;;;;;;;73849:39;;;;;-1:-1:-1;73531:3:0;;;;:::i;:::-;;;;73489:411;;62135:101;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;62202:11:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;62202:26:0;;::::1;::::0;;;::::1;::::0;;62135:101::o;22917:339::-;23112:41;8984:10;23145:7;23112:18;:41::i;:::-;23104:103;;;;-1:-1:-1;;;23104:103:0;;;;;;;:::i;:::-;23220:28;23230:4;23236:2;23240:7;23220:9;:28::i;60918:95::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;60985:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;60985:20:0;;::::1;::::0;;;::::1;::::0;;60918:95::o;59536:127::-;59598:4;59633:5;-1:-1:-1;;;;;59622:16:0;:7;50275:6;;-1:-1:-1;;;;;50275:6:0;;50202:87;59622:7;-1:-1:-1;;;;;59622:16:0;;:33;;;-1:-1:-1;;;;;;;59642:13:0;;;;;:6;:13;;;;;;;;;59536:127::o;35520:501::-;35617:15;35661:16;35671:5;35661:9;:16::i;:::-;35653:5;:24;35645:80;;;;-1:-1:-1;;;35645:80:0;;;;;;;:::i;:::-;35738:13;35767:9;35762:186;35782:7;:14;35778:18;;35762:186;;;35831:7;35839:1;35831:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;35822:19:0;;;35831:10;;35822:19;35818:119;;;35875:5;35866;:14;35862:59;;;35889:1;-1:-1:-1;35882:8:0;;-1:-1:-1;35882:8:0;35862:59;35914:7;;;;:::i;:::-;;;;35862:59;35798:3;;;;:::i;:::-;;;;35762:186;;;;35960:53;;-1:-1:-1;;;35960:53:0;;;;;;;:::i;70146:85::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;70209:7:::1;:14:::0;70146:85::o;76317:624::-;76379:4;76462:21;;;:11;:21;;;;;:38;;;76458:87;;-1:-1:-1;76529:4:0;;76317:624;-1:-1:-1;76317:624:0:o;76458:87::-;76664:13;;76622:21;;;;:11;:21;;;;;:38;;;:55;76618:100;;;-1:-1:-1;76701:5:0;;76317:624;-1:-1:-1;76317:624:0:o;76618:100::-;76826:21;;;;:11;:21;;;;;:38;;;76810:13;;:54;;76826:38;76810:54;:::i;:::-;76868:1;76810:59;76806:104;;;-1:-1:-1;76893:5:0;;76317:624;-1:-1:-1;76317:624:0:o;76806:104::-;-1:-1:-1;76929:4:0;;76317:624;-1:-1:-1;76317:624:0:o;60685:97::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;60753:12:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;60753:21:0;;::::1;::::0;;;::::1;::::0;;60685:97::o;67261:160::-;67318:10;;:49;;67300:12;;-1:-1:-1;;;;;67318:10:0;;67341:21;;67300:12;67318:49;67300:12;67318:49;67341:21;67318:10;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67299:68;;;67386:7;67378:35;;;;-1:-1:-1;;;67378:35:0;;24905:2:1;67378:35:0;;;24887:21:1;24944:2;24924:18;;;24917:30;-1:-1:-1;;;24963:18:1;;;24956:45;25018:18;;67378:35:0;24703:339:1;67378:35:0;67288:133;67261:160::o;61088:99::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;61157:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;61157:22:0;;::::1;::::0;;;::::1;::::0;;61088:99::o;23327:185::-;23465:39;23482:4;23488:2;23492:7;23465:39;;;;;;;;;;;;:16;:39::i;66590:402::-;66650:16;66679:18;66700:17;66710:6;66700:9;:17::i;:::-;66679:38;-1:-1:-1;66732:15:0;66728:44;;66756:16;;;66770:1;66756:16;;;;;;;;;;;-1:-1:-1;66749:23:0;66590:402;-1:-1:-1;;;66590:402:0:o;66728:44::-;66785:25;66827:10;-1:-1:-1;;;;;66813:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66813:25:0;;66785:53;;66854:9;66849:108;66869:10;66865:1;:14;66849:108;;;66915:30;66935:6;66943:1;66915:19;:30::i;:::-;66901:8;66910:1;66901:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;66881:3;;;;:::i;:::-;;;;66849:108;;80604:206;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;80712:9:::1;80707:96;80727:16:::0;;::::1;80707:96;;;80765:26;80775:5;;80781:1;80775:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;80785:5;80765:9;:26::i;:::-;80745:3:::0;::::1;::::0;::::1;:::i;:::-;;;;80707:96;;;;80604:206:::0;;;:::o;66274:245::-;66359:4;66381:9;66376:112;66392:16;;;66376:112;;;66455:7;-1:-1:-1;;;;;66434:28:0;:7;66442:5;;66448:1;66442:8;;;;;;;:::i;:::-;;;;;;;66434:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;66434:17:0;:28;66430:46;;66471:5;66464:12;;;;;66430:46;66410:3;;;:::i;:::-;;;66376:112;;;;66507:4;66500:11;;66274:245;;;;;;:::o;35231:205::-;35342:7;:14;35306:7;;35334:22;;35326:79;;;;-1:-1:-1;;;35326:79:0;;36556:2:1;35326:79:0;;;36538:21:1;36595:2;36575:18;;;36568:30;36634:34;36614:18;;;36607:62;-1:-1:-1;;;36685:18:1;;;36678:42;36737:19;;35326:79:0;36354:408:1;35326:79:0;-1:-1:-1;35423:5:0;35231:205::o;61765:94::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;61833:7:::1;:18:::0;61765:94::o;61612:98::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;61684:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;65891:286::-:0;66060:9;66055:115;66079:5;:12;66075:1;:16;66055:115;;;66113:45;66130:5;66137:3;66142:5;66148:1;66142:8;;;;;;;;:::i;:::-;;;;;;;66152:5;66113:16;:45::i;:::-;66093:3;;;;:::i;:::-;;;;66055:115;;;;65891:286;;;;:::o;75772:126::-;75847:11;:9;:11::i;:::-;75869:21;75880:9;;75869:10;:21::i;20946:239::-;21018:7;21038:13;21054:7;21062;21054:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;21054:16:0;;-1:-1:-1;21089:19:0;21081:73;;;;-1:-1:-1;;;21081:73:0;;29013:2:1;21081:73:0;;;28995:21:1;29052:2;29032:18;;;29025:30;29091:34;29071:18;;;29064:62;-1:-1:-1;;;29142:18:1;;;29135:39;29191:19;;21081:73:0;28811:405:1;84538:142:0;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;84629:16:::1;::::0;;;:9:::1;:16;::::0;;;;;:28:::1;;:43:::0;84538:142::o;55405:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59745:91::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59808:13:0::1;;::::0;;;:6:::1;:13;::::0;;;;:20;;-1:-1:-1;;59808:20:0::1;59824:4;59808:20;::::0;;59745:91::o;20551:333::-;20623:7;-1:-1:-1;;;;;20651:19:0;;20643:74;;;;-1:-1:-1;;;20643:74:0;;28602:2:1;20643:74:0;;;28584:21:1;28641:2;28621:18;;;28614:30;28680:34;28660:18;;;28653:62;-1:-1:-1;;;28731:18:1;;;28724:40;28781:19;;20643:74:0;28400:406:1;20643:74:0;20730:13;20759:9;20754:100;20774:7;:14;20770:18;;20754:100;;;20823:7;20831:1;20823:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;20814:19:0;;;20823:10;;20814:19;20810:32;;;20835:7;;;:::i;:::-;;;20810:32;20790:3;;;:::i;:::-;;;20754:100;;;-1:-1:-1;20871:5:0;20551:333;-1:-1:-1;;20551:333:0:o;68567:224::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;68630:9:::1;::::0;;;::::1;;;68629:10;68621:76;;;::::0;-1:-1:-1;;;68621:76:0;;21776:2:1;68621:76:0::1;::::0;::::1;21758:21:1::0;21815:2;21795:18;;;21788:30;21854:34;21834:18;;;21827:62;-1:-1:-1;;;21905:18:1;;;21898:51;21966:19;;68621:76:0::1;21574:417:1::0;68621:76:0::1;68722:1;68727;68708:16:::0;;;:13:::1;:16;::::0;;:20;;;68739:13:::1;:17:::0;68767:9:::1;:16:::0;;-1:-1:-1;;68767:16:0::1;::::0;::::1;::::0;;68567:224::o;50853:103::-;50275:6;;-1:-1:-1;;;;;50275:6:0;8984:10;50422:23;50414:68;;;;-1:-1:-1;;;50414:68:0;;;;;;;:::i;:::-;50918:30:::1;50945:1;50918:18;:30::i;:::-;50853:103::o:0;62477:104::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;62549:10:::1;:24:::0;62477:104::o;61941:126::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;62025:15:::1;:34:::0;61941:126::o;74386:1026::-;74459:9;74454:951;74474:20;;;74454:951;;;8984:10;74526:11;:25;74538:9;;74548:1;74538:12;;;;;;;:::i;:::-;;;;;;;;;;74526:25;;-1:-1:-1;74526:25:0;;;;;;;;-1:-1:-1;74526:25:0;:36;-1:-1:-1;;;;;74526:36:0;:52;74518:86;;;;-1:-1:-1;;;74518:86:0;;30932:2:1;74518:86:0;;;30914:21:1;30971:2;30951:18;;;30944:30;-1:-1:-1;;;30990:18:1;;;30983:51;31051:18;;74518:86:0;30730:345:1;74518:86:0;74627:27;74641:9;;74651:1;74641:12;;;;;;;:::i;:::-;;;;;;;74627:13;:27::i;:::-;74619:75;;;;-1:-1:-1;;;74619:75:0;;34232:2:1;74619:75:0;;;34214:21:1;34271:2;34251:18;;;34244:30;34310:34;34290:18;;;34283:62;-1:-1:-1;;;34361:18:1;;;34354:33;34404:19;;74619:75:0;34030:399:1;74619:75:0;74711:52;74729:4;8984:10;74750:9;;74760:1;74750:12;;;;;;;:::i;:::-;;;;;;;74711:9;:52::i;:::-;74787:11;:25;74799:9;;74809:1;74799:12;;;;;;;:::i;:::-;;;;;;;;;;74787:25;;-1:-1:-1;74787:25:0;;;;;;;;-1:-1:-1;74787:25:0;;;74780:43;;-1:-1:-1;;;;;;74780:43:0;;;74845:11;;74857:9;;74867:1;74857:12;;;;;;;:::i;:::-;;;;;;;74845:25;;;;;;;;;;;:35;;74838:42;;;74902:11;:25;74914:9;;74924:1;74914:12;;;;;;;:::i;:::-;;;;;;;74902:25;;;;;;;;;;;:42;;74895:49;;;75091:9;75086:308;8984:10;75110:20;;;;:6;:20;;;;;:27;75106:31;;75086:308;;;75194:9;;75204:1;75194:12;;;;;;;:::i;:::-;;;;;;;75167:6;:20;75174:12;8984:10;;8904:98;75174:12;-1:-1:-1;;;;;75167:20:0;-1:-1:-1;;;;;75167:20:0;;;;;;;;;;;;75188:1;75167:23;;;;;;;;:::i;:::-;;;;;;;;;:39;75163:216;;;8984:10;75257:20;;;;:6;:20;;;;;75278:27;;:31;;75308:1;;75278:31;:::i;:::-;75257:53;;;;;;;;:::i;:::-;;;;;;;;;75231:6;:20;75238:12;8984:10;;8904:98;75238:12;-1:-1:-1;;;;;75231:20:0;-1:-1:-1;;;;;75231:20:0;;;;;;;;;;;;75252:1;75231:23;;;;;;;;:::i;:::-;;;;;;;;:79;;;;75333:6;:20;75340:12;8984:10;;8904:98;75340:12;-1:-1:-1;;;;;75333:20:0;-1:-1:-1;;;;;75333:20:0;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;75163:216;75139:3;;;;:::i;:::-;;;;75086:308;;;-1:-1:-1;74496:3:0;;;;:::i;:::-;;;;74454:951;;67729:277;67788:17;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;67859:7:::1;::::0;67826:29:::1;::::0;-1:-1:-1;;;67826:29:0;;67849:4:::1;67826:29;::::0;::::1;15573:51:1::0;67826:4:0::1;-1:-1:-1::0;;;;;67826:14:0::1;::::0;::::1;::::0;15546:18:1;;67826:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;67818:68;;;::::0;-1:-1:-1;;;67818:68:0;;27833:2:1;67818:68:0::1;::::0;::::1;27815:21:1::0;27872:2;27852:18;;;27845:30;-1:-1:-1;;;27891:18:1;;;27884:45;27946:18;;67818:68:0::1;27631:339:1::0;67818:68:0::1;67909:39;67927:11;;67940:7;;67909:17;:39::i;:::-;67966:32;::::0;67897:51;;-1:-1:-1;67897:51:0;;67966:32:::1;::::0;;;::::1;67729:277:::0;:::o;64089:643::-;64193:30;;;-1:-1:-1;;8984:10:0;13168:2:1;13164:15;13160:53;64193:30:0;;;13148:66:1;64193:30:0;;;;;;;;;13230:12:1;;;;64193:30:0;;;64257:7;:14;64292:12;;-1:-1:-1;;;64292:12:0;;;;64284:44;;;;-1:-1:-1;;;64284:44:0;;35790:2:1;64284:44:0;;;35772:21:1;35829:2;35809:18;;;35802:30;-1:-1:-1;;;35848:18:1;;;35841:49;35907:18;;64284:44:0;35588:343:1;64284:44:0;64347:28;64354:13;64359:7;64354:4;:13::i;:::-;64369:5;;64347:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64347:6:0;;-1:-1:-1;;;64347:28:0:i;:::-;64339:75;;;;-1:-1:-1;;;64339:75:0;;29826:2:1;64339:75:0;;;29808:21:1;29865:2;29845:18;;;29838:30;29904:34;29884:18;;;29877:62;-1:-1:-1;;;29955:18:1;;;29948:32;29997:19;;64339:75:0;29624:398:1;64339:75:0;8984:10;64433:29;;;;:15;:29;;;;;;;;:38;64425:69;;;;-1:-1:-1;;;64425:69:0;;30585:2:1;64425:69:0;;;30567:21:1;30624:2;30604:18;;;30597:30;-1:-1:-1;;;30643:18:1;;;30636:48;30701:18;;64425:69:0;30383:342:1;64425:69:0;64537:4;64527:7;;64513:11;:21;;;;:::i;:::-;:28;64505:61;;;;-1:-1:-1;;;64505:61:0;;32045:2:1;64505:61:0;;;32027:21:1;32084:2;32064:18;;;32057:30;-1:-1:-1;;;32103:18:1;;;32096:50;32163:18;;64505:61:0;31843:344:1;64505:61:0;8984:10;64579:29;;;;:15;:29;;;;;:36;;-1:-1:-1;;64579:36:0;64611:4;64579:36;;;64628:97;64648:7;;64644:1;:11;64628:97;;;64677:36;8984:10;64697:15;64711:1;64697:11;:15;:::i;:::-;64677:5;:36::i;:::-;64657:3;;;;:::i;:::-;;;;64628:97;;83252:313;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;83457:6:::1;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;;;;;;83496:61;;;;;;;;83501:12;83496:61;;;;83515:10;83496:61;;;;;;83527:6;83496:61;;;;83535:7;83496:61;;;;83544:12;83496:61;;::::0;83476:9:::1;:17;83486:6;;83476:17;;;;;;;;;;;:81;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;83476:81:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;-1:-1:-1;;83476:81:0::1;::::0;::::1;;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;83252:313:0:o;56418:41::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;56418:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56418:41:0;:::o;46305:220::-;46402:10;-1:-1:-1;;;;;46416:14:0;46402:28;;46394:72;;;;-1:-1:-1;;;46394:72:0;;33872:2:1;46394:72:0;;;33854:21:1;33911:2;33891:18;;;33884:30;33950:33;33930:18;;;33923:61;34001:18;;46394:72:0;33670:355:1;46394:72:0;46477:40;46495:9;46506:10;46477:17;:40::i;21421:104::-;21477:13;21510:7;21503:14;;;;;:::i;84305:126::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;84390:16:::1;::::0;;;:9:::1;:16;::::0;;;;;:23:::1;;:33:::0;84305:126::o;60494:97::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;60562:12:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;60562:21:0::1;-1:-1:-1::0;;;;60562:21:0;;::::1;::::0;;;::::1;::::0;;60494:97::o;56713:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61267:93::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;61333:10:::1;:19:::0;;-1:-1:-1;;61333:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61267:93::o;22320:295::-;-1:-1:-1;;;;;22423:24:0;;8984:10;22423:24;;22415:62;;;;-1:-1:-1;;;22415:62:0;;26707:2:1;22415:62:0;;;26689:21:1;26746:2;26726:18;;;26719:30;26785:27;26765:18;;;26758:55;26830:18;;22415:62:0;26505:349:1;22415:62:0;8984:10;22490:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22490:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22490:53:0;;;;;;;;;;22559:48;;17645:41:1;;;22490:42:0;;8984:10;22559:48;;17618:18:1;22559:48:0;;;;;;;22320:295;;:::o;79470:188::-;79538:4;8984:10;79594:34;8984:10;79615:3;79620:7;79594:13;:34::i;:::-;-1:-1:-1;79646:4:0;;79470:188;-1:-1:-1;;;79470:188:0:o;81715:801::-;8984:10;81792:30;;;;:16;:30;;;;;;;;:37;;;;;;;;:47;;81833:6;;81792:30;:47;;81833:6;;81792:47;:::i;:::-;;;;-1:-1:-1;;81860:10:0;;;;81852:49;;;;-1:-1:-1;;;81852:49:0;;33517:2:1;81852:49:0;;;33499:21:1;33556:2;33536:18;;;33529:30;33595:28;33575:18;;;33568:56;33641:18;;81852:49:0;33315:350:1;81852:49:0;81920:16;;;;:9;:16;;;;;:27;;;;;81912:67;;;;-1:-1:-1;;;81912:67:0;;30229:2:1;81912:67:0;;;30211:21:1;30268:2;30248:18;;;30241:30;30307:29;30287:18;;;30280:57;30354:18;;81912:67:0;30027:351:1;81912:67:0;81998:16;;;;:9;:16;;;;;:23;;;:33;-1:-1:-1;81998:33:0;81990:60;;;;-1:-1:-1;;;81990:60:0;;20627:2:1;81990:60:0;;;20609:21:1;20666:2;20646:18;;;20639:30;-1:-1:-1;;;20685:18:1;;;20678:44;20739:18;;81990:60:0;20425:338:1;81990:60:0;82110:16;;;;:9;:16;;;;;;;;:28;;;8984:10;82069:30;;:16;:30;;;;;:37;;;;;;;;;;:69;;82061:116;;;;-1:-1:-1;;;82061:116:0;;29423:2:1;82061:116:0;;;29405:21:1;29462:2;29442:18;;;29435:30;29501:34;29481:18;;;29474:62;-1:-1:-1;;;29552:18:1;;;29545:32;29594:19;;82061:116:0;29221:398:1;82061:116:0;82190:12;82214:16;;;:9;:16;;;;;:22;;;82205:31;;:6;:31;:::i;:::-;8984:10;82255:18;;;;:4;:18;;;;;;82190:46;;-1:-1:-1;82255:26:0;-1:-1:-1;82255:26:0;82247:57;;;;-1:-1:-1;;;82247:57:0;;34636:2:1;82247:57:0;;;34618:21:1;34675:2;34655:18;;;34648:30;-1:-1:-1;;;34694:18:1;;;34687:48;34752:18;;82247:57:0;34434:342:1;82247:57:0;82317:29;8984:10;82327:12;82341:4;82317:9;:29::i;:::-;82359:16;;;;:9;:16;;;;;:23;;:33;;82386:6;;82359:16;:33;;82386:6;;82359:33;:::i;:::-;;;;-1:-1:-1;;82430:16:0;;;;:9;:16;;;;;:22;;;82421:31;;:6;:31;:::i;:::-;82403:14;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;82470:38:0;;82501:6;;82494:5;;8984:10;;82470:38;;;;;81781:735;81715:801;;:::o;83890:135::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;83976:16:::1;::::0;;;:9:::1;:16;::::0;;;;;:27:::1;;:41:::0;;-1:-1:-1;;83976:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;83890:135::o;23583:328::-;23758:41;8984:10;23791:7;23758:18;:41::i;:::-;23750:103;;;;-1:-1:-1;;;23750:103:0;;;;;;;:::i;:::-;23864:39;23878:4;23884:2;23888:7;23897:5;23864:13;:39::i;63263:206::-;63350:10;;63322:7;;-1:-1:-1;;;;;63350:10:0;63342:62;;;;-1:-1:-1;;;63342:62:0;;32755:2:1;63342:62:0;;;32737:21:1;32794:2;32774:18;;;32767:30;32833:25;32813:18;;;32806:53;32876:18;;63342:62:0;32553:347:1;63342:62:0;63427:10;;63422:39;;-1:-1:-1;;;63422:39:0;;;;;17843:25:1;;;-1:-1:-1;;;;;63427:10:0;;;;63422:29;;17816:18:1;;63422:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;81415:206::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;81523:9:::1;81518:96;81538:16:::0;;::::1;81518:96;;;81576:26;81586:5;;81592:1;81586:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;81596:5;81576:9;:26::i;:::-;81556:3:::0;::::1;::::0;::::1;:::i;:::-;;;;81518:96;;81206:118:::0;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;81293:23:::1;81303:5;81310;81293:9;:23::i;69266:631::-:0;69332:14;69349:30;69363:9;54641:2;69349:30;:::i;:::-;69398:11;;69332:47;;-1:-1:-1;69398:11:0;;;;;69390:42;;;;-1:-1:-1;;;69390:42:0;;19931:2:1;69390:42:0;;;19913:21:1;19970:2;19950:18;;;19943:30;-1:-1:-1;;;19989:18:1;;;19982:48;20047:18;;69390:42:0;19729:342:1;69390:42:0;8984:10;69451:18;;;;:4;:18;;;;;;:28;-1:-1:-1;69451:28:0;69443:67;;;;-1:-1:-1;;;69443:67:0;;23439:2:1;69443:67:0;;;23421:21:1;23478:2;23458:18;;;23451:30;23517:28;23497:18;;;23490:56;23563:18;;69443:67:0;23237:350:1;69443:67:0;69530:9;69525:321;69545:20;;;69525:321;;;8984:10;69597:11;:25;69609:9;;69619:1;69609:12;;;;;;;:::i;:::-;;;;;;;;;;69597:25;;-1:-1:-1;69597:25:0;;;;;;;;-1:-1:-1;69597:25:0;:36;-1:-1:-1;;;;;69597:36:0;:52;69589:106;;;;-1:-1:-1;;;69589:106:0;;23029:2:1;69589:106:0;;;23011:21:1;23068:2;23048:18;;;23041:30;23107:34;23087:18;;;23080:62;-1:-1:-1;;;23158:18:1;;;23151:39;23207:19;;69589:106:0;22827:405:1;69589:106:0;69712:11;:30;69724:13;;69740:1;69724:17;;;;:::i;:::-;69712:30;;;;;;;;;;;69748:9;;69758:1;69748:12;;;;;;;:::i;:::-;69712:49;;;;;;;-1:-1:-1;69712:49:0;;;69748:12;69712:49;;;69748:12;;;;;;;69712:49;;;;;;-1:-1:-1;69821:13:0;;;69776:11;;69788:9;;69798:1;69788:12;;;;;;;:::i;:::-;;;;;;;69776:25;;;;;;;;;;;:42;;:58;;;;69567:3;;;;;:::i;:::-;;;;69525:321;;;-1:-1:-1;69858:31:0;8984:10;69868:12;8904:98;56916:48;;;;;;;;;;;;;;;;;;;;65216:218;65278:13;65312;65320:4;65312:7;:13::i;:::-;65304:47;;;;-1:-1:-1;;;65304:47:0;;31282:2:1;65304:47:0;;;31264:21:1;31321:2;31301:18;;;31294:30;-1:-1:-1;;;31340:18:1;;;31333:51;31401:18;;65304:47:0;31080:345:1;65304:47:0;65393:7;65402:22;65419:4;65402:16;:22::i;:::-;65376:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65362:64;;65216:218;;;:::o;78809:467::-;78856:11;;;;;;;78848:47;;;;-1:-1:-1;;;78848:47:0;;25610:2:1;78848:47:0;;;25592:21:1;25649:2;25629:18;;;25622:30;25688:25;25668:18;;;25661:53;25731:18;;78848:47:0;25408:347:1;78848:47:0;8984:10;78908:12;;78977:218;-1:-1:-1;;;;;79001:12:0;;;;;;:6;:12;;;;;:19;78997:23;;78977:218;;;-1:-1:-1;;;;;79086:12:0;;79074:28;79086:12;;;:6;:12;;;;;:15;;79074:11;;:28;79086:12;79099:1;;79086:15;;;;;;:::i;:::-;;;;;;;;;79074:28;;;;;;;;;;;:38;;;79056:15;:56;;;;:::i;:::-;79042:70;;;;:::i;:::-;;;79168:15;79127:11;:28;79139:6;:12;79146:4;-1:-1:-1;;;;;79139:12:0;-1:-1:-1;;;;;79139:12:0;;;;;;;;;;;;79152:1;79139:15;;;;;;;;:::i;:::-;;;;;;;;;79127:28;;;;;;;;;;;:38;;:56;;;;79022:3;;;;;:::i;:::-;;;;78977:218;;;;79205:63;79215:4;79252:15;;54725:8;79222:10;:26;;;;:::i;:::-;79221:46;;;;:::i;:::-;79205:9;:63::i;84854:146::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;84948:20:::1;:44:::0;;-1:-1:-1;;;;;84948:44:0;;::::1;-1:-1:-1::0;;;84948:44:0::1;-1:-1:-1::0;;;;;;84948:44:0;;::::1;::::0;;;::::1;::::0;;84854:146::o;61450:106::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;61524:10:::1;:24:::0;;-1:-1:-1;;;;;;61524:24:0::1;-1:-1:-1::0;;;;;61524:24:0;;;::::1;::::0;;;::::1;::::0;;61450:106::o;69973:101::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;70044:11:::1;:22:::0;69973:101::o;60341:82::-;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;60402:4:::1;60387:21;::::0;;;:6:::1;:21;::::0;;;;:28;;-1:-1:-1;;60387:28:0::1;60411:4;60387:28;::::0;;60341:82::o;71217:607::-;71310:7;:14;71275:7;;71303:21;;71295:54;;;;-1:-1:-1;;;71295:54:0;;20278:2:1;71295:54:0;;;20260:21:1;20317:2;20297:18;;;20290:30;-1:-1:-1;;;20336:18:1;;;20329:50;20396:18;;71295:54:0;20076:344:1;71295:54:0;71379:13;;71362:455;71394:5;;71362:455;;71425:1;71430;71425:6;71421:385;;;71488:16;;;;:13;:16;;;;;;;;;;71477:34;;;;;18053:25:1;18094:18;;;18087:34;;;18026:18;;71477:34:0;;;-1:-1:-1;;71477:34:0;;;;;;;;;71467:45;;71477:34;71467:45;;;;;71217:607;-1:-1:-1;;;71217:607:0:o;71421:385::-;71559:9;71554:237;71578:14;;;;:11;:14;;;;;:21;71574:25;;71554:237;;;71633:14;;;;:11;:14;;;;;:17;;71654:4;;71633:14;71648:1;;71633:17;;;;;;:::i;:::-;;;;;;;;;:25;71629:143;;;71723:16;;;;:13;:16;;;;;;;;;;71712:34;;;;;18053:25:1;18094:18;;;18087:34;;;18026:18;;71712:34:0;;;-1:-1:-1;;71712:34:0;;;;;;;;;71702:45;;71712:34;71702:45;;;;;71217:607;-1:-1:-1;;;;71217:607:0:o;71629:143::-;71601:3;;;;:::i;:::-;;;;71554:237;;;;71401:3;;;;:::i;:::-;;;;71362:455;;;;71217:607;;;:::o;85154:356::-;85319:20;;85363:29;;-1:-1:-1;;;85363:29:0;;-1:-1:-1;;;;;15591:32:1;;;85363:29:0;;;15573:51:1;85244:4:0;;-1:-1:-1;;;85319:20:0;;;;;85355:50;;;;85319:20;;85363:21;;15546:18:1;;85363:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;85355:50:0;;:76;;;-1:-1:-1;;;;;;85409:22:0;;;;;;:12;:22;;;;;;;;85355:76;85351:93;;;85440:4;85433:11;;;;;85351:93;-1:-1:-1;;;;;22807:25:0;;;22783:4;22807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;85462:40;85455:47;85154:356;-1:-1:-1;;;;85154:356:0:o;72117:808::-;72217:17;;;72231:2;72217:17;;;;;;;;;72159:16;;72188:26;;72217:17;;;;;;;;;;;-1:-1:-1;72217:17:0;72188:46;;72245:15;72271:18;72300:16;72329:562;72349:2;72336:10;:15;72329:562;;;72429:1;72368:14;72415:16;;;:13;:16;;;;;;;72404:37;72446:4;;72404:37;;72415:16;72433:7;;72404:37;18053:25:1;;;18109:2;18094:18;;18087:34;18041:2;18026:18;;17879:248;72404:37:0;;;;;;;;;;;;;72394:48;;;;;;72386:57;;:64;;;;:::i;:::-;72368:83;;72473:9;72468:198;72492:9;:16;72488:1;:20;72468:198;;;72548:9;72558:1;72548:12;;;;;;;;:::i;:::-;;;;;;;72538:6;:22;72534:117;;;72599:4;72585:18;;72626:5;;72534:117;72510:3;;;;:::i;:::-;;;;72468:198;;;;72687:11;72682:174;;72743:6;72719:9;72729:10;72719:21;;;;;;;;:::i;:::-;;;;;;;;;;:30;72768:12;;;;:::i;:::-;;;;72682:174;;;72835:5;72821:19;;72682:174;72870:9;;;;:::i;:::-;;;;72353:538;72329:562;;;-1:-1:-1;72908:9:0;;72117:808;-1:-1:-1;;;72117:808:0:o;77034:114::-;-1:-1:-1;;;;;77127:13:0;;;;;;:6;:13;;;;;;;;;77120:20;;;;;;;;;;;;;;;;;77091:16;;77120:20;;;77127:13;77120:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77034:114;;;:::o;51111:201::-;50275:6;;-1:-1:-1;;;;;50275:6:0;8984:10;50422:23;50414:68;;;;-1:-1:-1;;;50414:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51200:22:0;::::1;51192:73;;;::::0;-1:-1:-1;;;51192:73:0;;24150:2:1;51192:73:0::1;::::0;::::1;24132:21:1::0;24189:2;24169:18;;;24162:30;24228:34;24208:18;;;24201:62;-1:-1:-1;;;24279:18:1;;;24272:36;24325:19;;51192:73:0::1;23948:402:1::0;51192:73:0::1;51276:28;51295:8;51276:18;:28::i;65539:242::-:0;65675:9;65670:104;65694:5;:12;65690:1;:16;65670:104;;;65728:34;65741:5;65748:3;65753:5;65759:1;65753:8;;;;;;;;:::i;:::-;;;;;;;65728:12;:34::i;:::-;65708:3;;;;:::i;:::-;;;;65670:104;;83649:152;59230:21;8984:10;59536:127;:::i;59230:21::-;59222:45;;;;-1:-1:-1;;;59222:45:0;;;;;;;:::i;:::-;83750:16:::1;::::0;;;:9:::1;:16;::::0;;;;;;;:43;;::::1;::::0;;::::1;::::0;::::1;:::i;85008:138::-:0;50275:6;;-1:-1:-1;;;;;50275:6:0;8984:10;50422:23;50414:68;;;;-1:-1:-1;;;50414:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;85112:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;85082:56:0;::::1;85112:26;::::0;;::::1;85111:27;85082:56;::::0;;85008:138::o;20221:266::-;20323:4;-1:-1:-1;;;;;;20347:40:0;;-1:-1:-1;;;20347:40:0;;:92;;-1:-1:-1;;;;;;;20391:48:0;;-1:-1:-1;;;20391:48:0;20347:92;:132;;;-1:-1:-1;;;;;;;;;;6324:40:0;;;20443:36;6215:157;25421:155;25520:7;:14;25486:4;;25510:24;;:58;;;;;25566:1;-1:-1:-1;;;;;25538:30:0;:7;25546;25538:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25538:16:0;:30;;25503:65;25421:155;-1:-1:-1;;25421:155:0:o;29268:174::-;29343:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29343:29:0;-1:-1:-1;;;;;29343:29:0;;;;;;;;:24;;29397:23;29343:24;29397:14;:23::i;:::-;-1:-1:-1;;;;;29388:46:0;;;;;;;;;;;29268:174;;:::o;80901:216::-;-1:-1:-1;;;;;80981:21:0;;80973:64;;;;-1:-1:-1;;;80973:64:0;;27474:2:1;80973:64:0;;;27456:21:1;27513:2;27493:18;;;27486:30;27552:32;27532:18;;;27525:60;27602:18;;80973:64:0;27272:354:1;80973:64:0;81069:6;81050:15;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;81086:13:0;;;;;;:4;:13;;;;;:23;;81103:6;;81086:13;:23;;81103:6;;81086:23;:::i;:::-;;;;-1:-1:-1;;;;80901:216:0:o;25743:348::-;25836:4;25861:16;25869:7;25861;:16::i;:::-;25853:73;;;;-1:-1:-1;;;25853:73:0;;27061:2:1;25853:73:0;;;27043:21:1;27100:2;27080:18;;;27073:30;27139:34;27119:18;;;27112:62;-1:-1:-1;;;27190:18:1;;;27183:42;27242:19;;25853:73:0;26859:408:1;25853:73:0;25937:13;25953:23;25968:7;25953:14;:23::i;:::-;25937:39;;26006:5;-1:-1:-1;;;;;25995:16:0;:7;-1:-1:-1;;;;;25995:16:0;;:51;;;;26039:7;-1:-1:-1;;;;;26015:31:0;:20;26027:7;26015:11;:20::i;:::-;-1:-1:-1;;;;;26015:31:0;;25995:51;:87;;;;26050:32;26067:5;26074:7;26050:16;:32::i;28634:516::-;28793:4;-1:-1:-1;;;;;28766:31:0;:23;28781:7;28766:14;:23::i;:::-;-1:-1:-1;;;;;28766:31:0;;28758:85;;;;-1:-1:-1;;;28758:85:0;;33107:2:1;28758:85:0;;;33089:21:1;33146:2;33126:18;;;33119:30;33185:34;33165:18;;;33158:62;-1:-1:-1;;;33236:18:1;;;33229:39;33285:19;;28758:85:0;32905:405:1;28758:85:0;-1:-1:-1;;;;;28862:16:0;;28854:65;;;;-1:-1:-1;;;28854:65:0;;26302:2:1;28854:65:0;;;26284:21:1;26341:2;26321:18;;;26314:30;26380:34;26360:18;;;26353:62;-1:-1:-1;;;26431:18:1;;;26424:34;26475:19;;28854:65:0;26100:400:1;28854:65:0;29036:29;29053:1;29057:7;29036:8;:29::i;:::-;29095:2;29076:7;29084;29076:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;29076:21:0;-1:-1:-1;;;;;29076:21:0;;;;;;29115:27;;29134:7;;29115:27;;;;;;;;;;29076:16;29115:27;28634:516;;;:::o;51472:191::-;51565:6;;;-1:-1:-1;;;;;51582:17:0;;;-1:-1:-1;;;;;;51582:17:0;;;;;;;51615:40;;51565:6;;;51582:17;51565:6;;51615:40;;51546:16;;51615:40;51535:128;51472:191;:::o;44320:1088::-;44397:17;44427:4;-1:-1:-1;;;;;44427:20:0;;44448:14;44464:4;44481:8;43098:1;44470:43;;;;;;;;18053:25:1;;;18109:2;18094:18;;18087:34;18041:2;18026:18;;17879:248;44470:43:0;;;;;;;;;;;;;44427:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;44765:15:0;44848:16;;;:6;:16;;;;;;;;;32505:51;;;;;18363:25:1;;;18404:18;;;18397:34;;;44841:4:0;18447:18:1;;;18440:60;18516:18;;;;18509:34;;;32505:51:0;;;;;;;;;;18335:19:1;;;;32505:51:0;;;32495:62;;;;;;;;;45330:16;;;;;;;:20;;45349:1;45330:20;:::i;:::-;45311:16;;;;:6;:16;;;;;:39;45368:32;45318:8;45392:7;33101:41;;;;;;;13410:19:1;;;;13445:12;;;13438:28;;;;33101:41:0;;;;;;;;;13482:12:1;;;;33101:41:0;;33091:52;;;;;;32977:174;62645:131;62705:7;62759;62742:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;62732:36;;;;;;62725:43;;62645:131;;;:::o;62873:152::-;62950:4;62974:43;62993:5;63000:10;;63012:4;62974:18;:43::i;64796:146::-;64873:7;:16;;;;;;;-1:-1:-1;64873:16:0;;;;;;;-1:-1:-1;;;;;;64873:16:0;-1:-1:-1;;;;;64873:16:0;;;;;;;;64905:29;;64930:3;;-1:-1:-1;64905:29:0;;-1:-1:-1;;64905:29:0;64796:146;;:::o;68104:257::-;68203:13;:15;;;:13;:15;;;:::i;:::-;;;;-1:-1:-1;;68243:13:0;;;68229:28;;;;:13;:28;;;;;;;;;:44;;;68324:13;;68291:62;;18053:25:1;;;18094:18;;;18087:34;;;68312:10:0;;68291:62;;18026:18:1;68291:62:0;;;;;;;68104:257;;:::o;79750:560::-;79878:13;;;;;;;79870:52;;;;-1:-1:-1;;;79870:52:0;;36969:2:1;79870:52:0;;;36951:21:1;37008:2;36988:18;;;36981:30;37047:28;37027:18;;;37020:56;37093:18;;79870:52:0;36767:350:1;79870:52:0;-1:-1:-1;;;;;79941:18:0;;79933:67;;;;-1:-1:-1;;;79933:67:0;;35385:2:1;79933:67:0;;;35367:21:1;35424:2;35404:18;;;35397:30;35463:34;35443:18;;;35436:62;-1:-1:-1;;;35514:18:1;;;35507:34;35558:19;;79933:67:0;35183:400:1;79933:67:0;-1:-1:-1;;;;;80019:16:0;;80011:63;;;;-1:-1:-1;;;80011:63:0;;21373:2:1;80011:63:0;;;21355:21:1;21412:2;21392:18;;;21385:30;21451:34;21431:18;;;21424:62;-1:-1:-1;;;21502:18:1;;;21495:32;21544:19;;80011:63:0;21171:398:1;80011:63:0;-1:-1:-1;;;;;80109:10:0;;80087:19;80109:10;;;:4;:10;;;;;;80138:21;;;;80130:61;;;;-1:-1:-1;;;80130:61:0;;23794:2:1;80130:61:0;;;23776:21:1;23833:2;23813:18;;;23806:30;23872:29;23852:18;;;23845:57;23919:18;;80130:61:0;23592:351:1;80130:61:0;-1:-1:-1;;;;;80227:10:0;;;;;;;:4;:10;;;;;;80240:21;;;80227:34;;80283:8;;;;;;;;:19;;80254:7;;80227:10;80283:19;;80254:7;;80283:19;:::i;:::-;;;;-1:-1:-1;;;;;;79750:560:0:o;82593:401::-;-1:-1:-1;;;;;82673:21:0;;82665:66;;;;-1:-1:-1;;;82665:66:0;;25249:2:1;82665:66:0;;;25231:21:1;;;25268:18;;;25261:30;25327:34;25307:18;;;25300:62;25379:18;;82665:66:0;25047:356:1;82665:66:0;-1:-1:-1;;;;;82769:13:0;;82744:22;82769:13;;;:4;:13;;;;;;82801:24;;;;82793:71;;;;-1:-1:-1;;;82793:71:0;;20970:2:1;82793:71:0;;;20952:21:1;21009:2;20989:18;;;20982:30;21048:34;21028:18;;;21021:62;-1:-1:-1;;;21099:18:1;;;21092:32;21141:19;;82793:71:0;20768:398:1;82793:71:0;-1:-1:-1;;;;;82900:13:0;;;;;;:4;:13;;;;;82916:23;;;82900:39;;82961:15;:25;;82933:6;;82900:13;82961:25;;82933:6;;82961:25;:::i;:::-;;;;-1:-1:-1;;;;;82593:401:0:o;24793:315::-;24950:28;24960:4;24966:2;24970:7;24950:9;:28::i;:::-;24997:48;25020:4;25026:2;25030:7;25039:5;24997:22;:48::i;:::-;24989:111;;;;-1:-1:-1;;;24989:111:0;;;;;;;:::i;6605:723::-;6661:13;6882:10;6878:53;;-1:-1:-1;;6909:10:0;;;;;;;;;;;;-1:-1:-1;;;6909:10:0;;;;;6605:723::o;6878:53::-;6956:5;6941:12;6997:78;7004:9;;6997:78;;7030:8;;;;:::i;:::-;;-1:-1:-1;7053:10:0;;-1:-1:-1;7061:2:0;7053:10;;:::i;:::-;;;6997:78;;;7085:19;7117:6;-1:-1:-1;;;;;7107:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7107:17:0;;7085:39;;7135:154;7142:10;;7135:154;;7169:11;7179:1;7169:11;;:::i;:::-;;-1:-1:-1;7238:10:0;7246:2;7238:5;:10;:::i;:::-;7225:24;;:2;:24;:::i;:::-;7212:39;;7195:6;7202;7195:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7195:56:0;;;;;;;;-1:-1:-1;7266:11:0;7275:2;7266:11;;:::i;:::-;;;7135:154;;52405:190;52530:4;52583;52554:25;52567:5;52574:4;52554:12;:25::i;:::-;:33;;52405:190;-1:-1:-1;;;;52405:190:0:o;30007:799::-;30162:4;-1:-1:-1;;;;;30183:13:0;;10126:20;10174:8;30179:620;;30219:72;;-1:-1:-1;;;30219:72:0;;-1:-1:-1;;;;;30219:36:0;;;;;:72;;8984:10;;30270:4;;30276:7;;30285:5;;30219:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30219:72:0;;;;;;;;-1:-1:-1;;30219:72:0;;;;;;;;;;;;:::i;:::-;;;30215:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30461:13:0;;30457:272;;30504:60;;-1:-1:-1;;;30504:60:0;;;;;;;:::i;30457:272::-;30679:6;30673:13;30664:6;30660:2;30656:15;30649:38;30215:529;-1:-1:-1;;;;;;30342:51:0;-1:-1:-1;;;30342:51:0;;-1:-1:-1;30335:58:0;;30179:620;-1:-1:-1;30783:4:0;30776:11;;52957:701;53040:7;53083:4;53040:7;53098:523;53122:5;:12;53118:1;:16;53098:523;;;53156:20;53179:5;53185:1;53179:8;;;;;;;;:::i;:::-;;;;;;;53156:31;;53222:12;53206;:28;53202:408;;53359:44;;;;;;13410:19:1;;;13445:12;;;13438:28;;;13482:12;;53359:44:0;;;;;;;;;;;;53349:55;;;;;;53334:70;;53202:408;;;53549:44;;;;;;13410:19:1;;;13445:12;;;13438:28;;;13482:12;;53549:44:0;;;;;;;;;;;;53539:55;;;;;;53524:70;;53202:408;-1:-1:-1;53136:3:0;;;;:::i;:::-;;;;53098:523;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;-1:-1:-1;;;;;214:30:1;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:723::-;440:5;493:3;486:4;478:6;474:17;470:27;460:55;;511:1;508;501:12;460:55;547:6;534:20;573:4;-1:-1:-1;;;;;592:2:1;589:26;586:52;;;618:18;;:::i;:::-;664:2;661:1;657:10;687:28;711:2;707;703:11;687:28;:::i;:::-;749:15;;;780:12;;;;812:15;;;846;;;842:24;;839:33;-1:-1:-1;836:53:1;;;885:1;882;875:12;836:53;907:1;898:10;;917:163;931:2;928:1;925:9;917:163;;;988:17;;976:30;;949:1;942:9;;;;;1026:12;;;;1058;;917:163;;;-1:-1:-1;1098:5:1;386:723;-1:-1:-1;;;;;;;386:723:1:o;1114:530::-;1156:5;1209:3;1202:4;1194:6;1190:17;1186:27;1176:55;;1227:1;1224;1217:12;1176:55;1263:6;1250:20;-1:-1:-1;;;;;1285:2:1;1282:26;1279:52;;;1311:18;;:::i;:::-;1355:55;1398:2;1379:13;;-1:-1:-1;;1375:27:1;1404:4;1371:38;1355:55;:::i;:::-;1435:2;1426:7;1419:19;1481:3;1474:4;1469:2;1461:6;1457:15;1453:26;1450:35;1447:55;;;1498:1;1495;1488:12;1447:55;1563:2;1556:4;1548:6;1544:17;1537:4;1528:7;1524:18;1511:55;1611:1;1586:16;;;1604:4;1582:27;1575:38;;;;1590:7;1114:530;-1:-1:-1;;;1114:530:1:o;1649:247::-;1708:6;1761:2;1749:9;1740:7;1736:23;1732:32;1729:52;;;1777:1;1774;1767:12;1729:52;1816:9;1803:23;1835:31;1860:5;1835:31;:::i;1901:388::-;1969:6;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;2276:7;2266:17;;;1901:388;;;;;:::o;2294:624::-;2396:6;2404;2412;2465:2;2453:9;2444:7;2440:23;2436:32;2433:52;;;2481:1;2478;2471:12;2433:52;2520:9;2507:23;2539:31;2564:5;2539:31;:::i;:::-;2589:5;-1:-1:-1;2646:2:1;2631:18;;2618:32;2659:33;2618:32;2659:33;:::i;:::-;2711:7;-1:-1:-1;2769:2:1;2754:18;;2741:32;-1:-1:-1;;;;;2785:30:1;;2782:50;;;2828:1;2825;2818:12;2782:50;2851:61;2904:7;2895:6;2884:9;2880:22;2851:61;:::i;:::-;2841:71;;;2294:624;;;;;:::o;2923:844::-;3043:6;3051;3059;3067;3120:3;3108:9;3099:7;3095:23;3091:33;3088:53;;;3137:1;3134;3127:12;3088:53;3176:9;3163:23;3195:31;3220:5;3195:31;:::i;:::-;3245:5;-1:-1:-1;3302:2:1;3287:18;;3274:32;3315:33;3274:32;3315:33;:::i;:::-;3367:7;-1:-1:-1;3425:2:1;3410:18;;3397:32;-1:-1:-1;;;;;3478:14:1;;;3475:34;;;3505:1;3502;3495:12;3475:34;3528:61;3581:7;3572:6;3561:9;3557:22;3528:61;:::i;:::-;3518:71;;3642:2;3631:9;3627:18;3614:32;3598:48;;3671:2;3661:8;3658:16;3655:36;;;3687:1;3684;3677:12;3655:36;;3710:51;3753:7;3742:8;3731:9;3727:24;3710:51;:::i;:::-;3700:61;;;2923:844;;;;;;;:::o;3772:456::-;3849:6;3857;3865;3918:2;3906:9;3897:7;3893:23;3889:32;3886:52;;;3934:1;3931;3924:12;3886:52;3973:9;3960:23;3992:31;4017:5;3992:31;:::i;:::-;4042:5;-1:-1:-1;4099:2:1;4084:18;;4071:32;4112:33;4071:32;4112:33;:::i;:::-;3772:456;;4164:7;;-1:-1:-1;;;4218:2:1;4203:18;;;;4190:32;;3772:456::o;4233:936::-;4330:6;4338;4346;4354;4362;4415:3;4403:9;4394:7;4390:23;4386:33;4383:53;;;4432:1;4429;4422:12;4383:53;4471:9;4458:23;4490:31;4515:5;4490:31;:::i;:::-;4540:5;-1:-1:-1;4597:2:1;4582:18;;4569:32;4610:33;4569:32;4610:33;:::i;:::-;4662:7;-1:-1:-1;4716:2:1;4701:18;;4688:32;;-1:-1:-1;4771:2:1;4756:18;;4743:32;-1:-1:-1;;;;;4824:14:1;;;4821:34;;;4851:1;4848;4841:12;4821:34;4889:6;4878:9;4874:22;4864:32;;4934:7;4927:4;4923:2;4919:13;4915:27;4905:55;;4956:1;4953;4946:12;4905:55;4996:2;4983:16;5022:2;5014:6;5011:14;5008:34;;;5038:1;5035;5028:12;5008:34;5083:7;5078:2;5069:6;5065:2;5061:15;5057:24;5054:37;5051:57;;;5104:1;5101;5094:12;5051:57;4233:936;;;;-1:-1:-1;4233:936:1;;-1:-1:-1;5135:2:1;5127:11;;5157:6;4233:936;-1:-1:-1;;;4233:936:1:o;5174:665::-;5269:6;5277;5285;5293;5346:3;5334:9;5325:7;5321:23;5317:33;5314:53;;;5363:1;5360;5353:12;5314:53;5402:9;5389:23;5421:31;5446:5;5421:31;:::i;:::-;5471:5;-1:-1:-1;5528:2:1;5513:18;;5500:32;5541:33;5500:32;5541:33;:::i;:::-;5593:7;-1:-1:-1;5647:2:1;5632:18;;5619:32;;-1:-1:-1;5702:2:1;5687:18;;5674:32;-1:-1:-1;;;;;5718:30:1;;5715:50;;;5761:1;5758;5751:12;5715:50;5784:49;5825:7;5816:6;5805:9;5801:22;5784:49;:::i;5844:572::-;5939:6;5947;5955;6008:2;5996:9;5987:7;5983:23;5979:32;5976:52;;;6024:1;6021;6014:12;5976:52;6063:9;6050:23;6082:31;6107:5;6082:31;:::i;:::-;6132:5;-1:-1:-1;6188:2:1;6173:18;;6160:32;-1:-1:-1;;;;;6204:30:1;;6201:50;;;6247:1;6244;6237:12;6201:50;6286:70;6348:7;6339:6;6328:9;6324:22;6286:70;:::i;:::-;5844:572;;6375:8;;-1:-1:-1;6260:96:1;;-1:-1:-1;;;;5844:572:1:o;6421:382::-;6486:6;6494;6547:2;6535:9;6526:7;6522:23;6518:32;6515:52;;;6563:1;6560;6553:12;6515:52;6602:9;6589:23;6621:31;6646:5;6621:31;:::i;:::-;6671:5;-1:-1:-1;6728:2:1;6713:18;;6700:32;6741:30;6700:32;6741:30;:::i;6808:315::-;6876:6;6884;6937:2;6925:9;6916:7;6912:23;6908:32;6905:52;;;6953:1;6950;6943:12;6905:52;6992:9;6979:23;7011:31;7036:5;7011:31;:::i;:::-;7061:5;7113:2;7098:18;;;;7085:32;;-1:-1:-1;;;6808:315:1:o;7128:505::-;7223:6;7231;7239;7292:2;7280:9;7271:7;7267:23;7263:32;7260:52;;;7308:1;7305;7298:12;7260:52;7348:9;7335:23;-1:-1:-1;;;;;7373:6:1;7370:30;7367:50;;;7413:1;7410;7403:12;7367:50;7452:70;7514:7;7505:6;7494:9;7490:22;7452:70;:::i;:::-;7541:8;;7426:96;;-1:-1:-1;7623:2:1;7608:18;;;;7595:32;;7128:505;-1:-1:-1;;;;7128:505:1:o;7638:437::-;7724:6;7732;7785:2;7773:9;7764:7;7760:23;7756:32;7753:52;;;7801:1;7798;7791:12;7753:52;7841:9;7828:23;-1:-1:-1;;;;;7866:6:1;7863:30;7860:50;;;7906:1;7903;7896:12;7860:50;7945:70;8007:7;7998:6;7987:9;7983:22;7945:70;:::i;:::-;8034:8;;7919:96;;-1:-1:-1;7638:437:1;-1:-1:-1;;;;7638:437:1:o;8522:241::-;8578:6;8631:2;8619:9;8610:7;8606:23;8602:32;8599:52;;;8647:1;8644;8637:12;8599:52;8686:9;8673:23;8705:28;8727:5;8705:28;:::i;8768:245::-;8835:6;8888:2;8876:9;8867:7;8863:23;8859:32;8856:52;;;8904:1;8901;8894:12;8856:52;8936:9;8930:16;8955:28;8977:5;8955:28;:::i;9018:180::-;9077:6;9130:2;9118:9;9109:7;9105:23;9101:32;9098:52;;;9146:1;9143;9136:12;9098:52;-1:-1:-1;9169:23:1;;9018:180;-1:-1:-1;9018:180:1:o;9203:248::-;9271:6;9279;9332:2;9320:9;9311:7;9307:23;9303:32;9300:52;;;9348:1;9345;9338:12;9300:52;-1:-1:-1;;9371:23:1;;;9441:2;9426:18;;;9413:32;;-1:-1:-1;9203:248:1:o;9456:245::-;9514:6;9567:2;9555:9;9546:7;9542:23;9538:32;9535:52;;;9583:1;9580;9573:12;9535:52;9622:9;9609:23;9641:30;9665:5;9641:30;:::i;9706:249::-;9775:6;9828:2;9816:9;9807:7;9803:23;9799:32;9796:52;;;9844:1;9841;9834:12;9796:52;9876:9;9870:16;9895:30;9919:5;9895:30;:::i;9960:280::-;10059:6;10112:2;10100:9;10091:7;10087:23;10083:32;10080:52;;;10128:1;10125;10118:12;10080:52;10160:9;10154:16;10179:31;10204:5;10179:31;:::i;10245:321::-;10314:6;10367:2;10355:9;10346:7;10342:23;10338:32;10335:52;;;10383:1;10380;10373:12;10335:52;10423:9;10410:23;-1:-1:-1;;;;;10448:6:1;10445:30;10442:50;;;10488:1;10485;10478:12;10442:50;10511:49;10552:7;10543:6;10532:9;10528:22;10511:49;:::i;10571:656::-;10673:6;10681;10689;10697;10705;10758:3;10746:9;10737:7;10733:23;10729:33;10726:53;;;10775:1;10772;10765:12;10726:53;10815:9;10802:23;-1:-1:-1;;;;;10840:6:1;10837:30;10834:50;;;10880:1;10877;10870:12;10834:50;10903:49;10944:7;10935:6;10924:9;10920:22;10903:49;:::i;:::-;10893:59;;;11002:2;10991:9;10987:18;10974:32;11015:28;11037:5;11015:28;:::i;:::-;10571:656;;11062:5;;-1:-1:-1;;;;11114:2:1;11099:18;;11086:32;;11165:2;11150:18;;11137:32;;11216:3;11201:19;;;11188:33;;-1:-1:-1;10571:656:1:o;11417:184::-;11487:6;11540:2;11528:9;11519:7;11515:23;11511:32;11508:52;;;11556:1;11553;11546:12;11508:52;-1:-1:-1;11579:16:1;;11417:184;-1:-1:-1;11417:184:1:o;11606:309::-;11671:6;11679;11732:2;11720:9;11711:7;11707:23;11703:32;11700:52;;;11748:1;11745;11738:12;11700:52;11784:9;11771:23;11761:33;;11844:2;11833:9;11829:18;11816:32;11857:28;11879:5;11857:28;:::i;11920:389::-;11998:6;12006;12059:2;12047:9;12038:7;12034:23;12030:32;12027:52;;;12075:1;12072;12065:12;12027:52;12111:9;12098:23;12088:33;;12172:2;12161:9;12157:18;12144:32;-1:-1:-1;;;;;12191:6:1;12188:30;12185:50;;;12231:1;12228;12221:12;12185:50;12254:49;12295:7;12286:6;12275:9;12271:22;12254:49;:::i;:::-;12244:59;;;11920:389;;;;;:::o;12567:257::-;12608:3;12646:5;12640:12;12673:6;12668:3;12661:19;12689:63;12745:6;12738:4;12733:3;12729:14;12722:4;12715:5;12711:16;12689:63;:::i;:::-;12806:2;12785:15;-1:-1:-1;;12781:29:1;12772:39;;;;12813:4;12768:50;;12567:257;-1:-1:-1;;12567:257:1:o;12829:185::-;12871:3;12909:5;12903:12;12924:52;12969:6;12964:3;12957:4;12950:5;12946:16;12924:52;:::i;:::-;12992:16;;;;;12829:185;-1:-1:-1;;12829:185:1:o;13757:276::-;13888:3;13926:6;13920:13;13942:53;13988:6;13983:3;13976:4;13968:6;13964:17;13942:53;:::i;:::-;14011:16;;;;;13757:276;-1:-1:-1;;13757:276:1:o;14038:1174::-;14214:3;14243:1;14276:6;14270:13;14306:3;14328:1;14356:9;14352:2;14348:18;14338:28;;14416:2;14405:9;14401:18;14438;14428:61;;14482:4;14474:6;14470:17;14460:27;;14428:61;14508:2;14556;14548:6;14545:14;14525:18;14522:38;14519:165;;;-1:-1:-1;;;14583:33:1;;14639:4;14636:1;14629:15;14669:4;14590:3;14657:17;14519:165;14700:18;14727:104;;;;14845:1;14840:320;;;;14693:467;;14727:104;-1:-1:-1;;14760:24:1;;14748:37;;14805:16;;;;-1:-1:-1;14727:104:1;;14840:320;37910:1;37903:14;;;37947:4;37934:18;;14935:1;14949:165;14963:6;14960:1;14957:13;14949:165;;;15041:14;;15028:11;;;15021:35;15084:16;;;;14978:10;;14949:165;;;14953:3;;15143:6;15138:3;15134:16;15127:23;;14693:467;;;;;;;15176:30;15202:3;15194:6;15176:30;:::i;:::-;15169:37;14038:1174;-1:-1:-1;;;;;14038:1174:1:o;15635:488::-;-1:-1:-1;;;;;15904:15:1;;;15886:34;;15956:15;;15951:2;15936:18;;15929:43;16003:2;15988:18;;15981:34;;;16051:3;16046:2;16031:18;;16024:31;;;15829:4;;16072:45;;16097:19;;16089:6;16072:45;:::i;:::-;16064:53;15635:488;-1:-1:-1;;;;;;15635:488:1:o;16128:385::-;16360:1;16356;16351:3;16347:11;16343:19;16335:6;16331:32;16320:9;16313:51;16400:6;16395:2;16384:9;16380:18;16373:34;16443:2;16438;16427:9;16423:18;16416:30;16294:4;16463:44;16503:2;16492:9;16488:18;16480:6;16463:44;:::i;16868:632::-;17039:2;17091:21;;;17161:13;;17064:18;;;17183:22;;;17010:4;;17039:2;17262:15;;;;17236:2;17221:18;;;17010:4;17305:169;17319:6;17316:1;17313:13;17305:169;;;17380:13;;17368:26;;17449:15;;;;17414:12;;;;17341:1;17334:9;17305:169;;;-1:-1:-1;17491:3:1;;16868:632;-1:-1:-1;;;;;;16868:632:1:o;18984:219::-;19133:2;19122:9;19115:21;19096:4;19153:44;19193:2;19182:9;19178:18;19170:6;19153:44;:::i;19208:516::-;19463:3;19452:9;19445:22;19426:4;19484:45;19524:3;19513:9;19509:19;19501:6;19484:45;:::i;:::-;19572:14;;19565:22;19560:2;19545:18;;19538:50;-1:-1:-1;19619:2:1;19604:18;;19597:34;;;;19662:2;19647:18;;19640:34;;;;19705:3;19690:19;;;19683:35;19476:53;19208:516;-1:-1:-1;19208:516:1:o;21996:407::-;22198:2;22180:21;;;22237:2;22217:18;;;22210:30;22276:34;22271:2;22256:18;;22249:62;-1:-1:-1;;;22342:2:1;22327:18;;22320:41;22393:3;22378:19;;21996:407::o;22408:414::-;22610:2;22592:21;;;22649:2;22629:18;;;22622:30;22688:34;22683:2;22668:18;;22661:62;-1:-1:-1;;;22754:2:1;22739:18;;22732:48;22812:3;22797:19;;22408:414::o;25760:335::-;25962:2;25944:21;;;26001:2;25981:18;;;25974:30;-1:-1:-1;;;26035:2:1;26020:18;;26013:41;26086:2;26071:18;;25760:335::o;32192:356::-;32394:2;32376:21;;;32413:18;;;32406:30;32472:34;32467:2;32452:18;;32445:62;32539:2;32524:18;;32192:356::o;35936:413::-;36138:2;36120:21;;;36177:2;36157:18;;;36150:30;36216:34;36211:2;36196:18;;36189:62;-1:-1:-1;;;36282:2:1;36267:18;;36260:47;36339:3;36324:19;;35936:413::o;37557:275::-;37628:2;37622:9;37693:2;37674:13;;-1:-1:-1;;37670:27:1;37658:40;;-1:-1:-1;;;;;37713:34:1;;37749:22;;;37710:62;37707:88;;;37775:18;;:::i;:::-;37811:2;37804:22;37557:275;;-1:-1:-1;37557:275:1:o;37963:128::-;38003:3;38034:1;38030:6;38027:1;38024:13;38021:39;;;38040:18;;:::i;:::-;-1:-1:-1;38076:9:1;;37963:128::o;38096:120::-;38136:1;38162;38152:35;;38167:18;;:::i;:::-;-1:-1:-1;38201:9:1;;38096:120::o;38221:168::-;38261:7;38327:1;38323;38319:6;38315:14;38312:1;38309:21;38304:1;38297:9;38290:17;38286:45;38283:71;;;38334:18;;:::i;:::-;-1:-1:-1;38374:9:1;;38221:168::o;38394:125::-;38434:4;38462:1;38459;38456:8;38453:34;;;38467:18;;:::i;:::-;-1:-1:-1;38504:9:1;;38394:125::o;38524:258::-;38596:1;38606:113;38620:6;38617:1;38614:13;38606:113;;;38696:11;;;38690:18;38677:11;;;38670:39;38642:2;38635:10;38606:113;;;38737:6;38734:1;38731:13;38728:48;;;-1:-1:-1;;38772:1:1;38754:16;;38747:27;38524:258::o;38787:136::-;38826:3;38854:5;38844:39;;38863:18;;:::i;:::-;-1:-1:-1;;;38899:18:1;;38787:136::o;38928:380::-;39007:1;39003:12;;;;39050;;;39071:61;;39125:4;39117:6;39113:17;39103:27;;39071:61;39178:2;39170:6;39167:14;39147:18;39144:38;39141:161;;;39224:10;39219:3;39215:20;39212:1;39205:31;39259:4;39256:1;39249:15;39287:4;39284:1;39277:15;39313:135;39352:3;-1:-1:-1;;39373:17:1;;39370:43;;;39393:18;;:::i;:::-;-1:-1:-1;39440:1:1;39429:13;;39313:135::o;39453:112::-;39485:1;39511;39501:35;;39516:18;;:::i;:::-;-1:-1:-1;39550:9:1;;39453:112::o;39570:127::-;39631:10;39626:3;39622:20;39619:1;39612:31;39662:4;39659:1;39652:15;39686:4;39683:1;39676:15;39702:127;39763:10;39758:3;39754:20;39751:1;39744:31;39794:4;39791:1;39784:15;39818:4;39815:1;39808:15;39834:127;39895:10;39890:3;39886:20;39883:1;39876:31;39926:4;39923:1;39916:15;39950:4;39947:1;39940:15;39966:127;40027:10;40022:3;40018:20;40015:1;40008:31;40058:4;40055:1;40048:15;40082:4;40079:1;40072:15;40098:127;40159:10;40154:3;40150:20;40147:1;40140:31;40190:4;40187:1;40180:15;40214:4;40211:1;40204:15;40230:131;-1:-1:-1;;;;;40305:31:1;;40295:42;;40285:70;;40351:1;40348;40341:12;40366:118;40452:5;40445:13;40438:21;40431:5;40428:32;40418:60;;40474:1;40471;40464:12;40489:131;-1:-1:-1;;;;;;40563:32:1;;40553:43;;40543:71;;40610:1;40607;40600:12

Swarm Source

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