ETH Price: $3,390.20 (-1.52%)
Gas: 2 Gwei

Token

OpenVibes (OVIBES)
 

Overview

Max Total Supply

2,222 OVIBES

Holders

1,762

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bucketfiller.eth
Balance
1 OVIBES
0x9425e212647518853a92ae7d2c1ab09d343e70b6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OpenVibes

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 2021-11-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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


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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981ContractWideRoyalties is ERC165, IERC2981Royalties {
    address private _royaltiesRecipient;
    uint256 private _royaltiesValue;

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');
        _royaltiesRecipient = recipient;
        _royaltiesValue = value;
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (_royaltiesRecipient, (value * _royaltiesValue) / 10000);
    }
}

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/**
 * OpenVibes is a set of 2,222 free to mint generative art pieces.
 * Combined with the original Vibes drop, the max supply is 9,999.
 * This is my gift to the NFT Community. You are legendary. Thank you!
 * 
 *   - remnynt
 *
 *   https://vibes.art
 */

contract OpenVibes is ERC721Enumerable, ERC2981ContractWideRoyalties, ReentrancyGuard, Ownable {
    ArtLib lib_Art;
    ColorDataLib lib_ColorData;

    using Strings for uint256;

    bool public mintingActive = false;
    bool public useAnimation = false;
    bool public useOnChainAnimation = false;
    string private baseVibeURI;

    // the max number of vibes in the original drop, 0.07 ETH each
    uint256 private constant MAX_VIBE_SUPPLY = 7777;

    // the max number of vibes in this drop, free mint
    uint256 private constant MAX_OPEN_VIBE_SUPPLY = 2222;

    // the blockhash being visualized by each token
    mapping(uint256 => bytes32) private entropyHashes;

    // one mint per wallet
    mapping(address => bool) private hasWalletMinted;

    struct ColorInfo {
        uint256[] colorInts;
        uint256[] colorIntsChosen;
        uint256 colorIntCount;
        bool ordered;
        bool shuffle;
        bool restricted;
        string palette;
        uint256 colorCount;
    }

    struct TokenInfo {
        string entropyHash;
        string element;
        string palette;
        uint256 colorCount;
        string style;
        string gravity;
        string grain;
        string display;
        string[14] html;
    }

    struct WobbleInfo {
        uint256 r;
        uint256 g;
        uint256 b;
        uint256 offsetR;
        uint256 offsetG;
        uint256 offsetB;
        uint256 offsetDirR;
        uint256 offsetDirG;
        uint256 offsetDirB;
    }

    constructor() ERC721("OpenVibes", "OVIBES") Ownable() {
        // set voluntary royalties, according to ERC2981, @ 12.5%, 1250 basis points
        _setRoyalties(owner(), 1250);
    }

    function setLibArt(address lib) public onlyOwner {
      lib_Art = ArtLib(lib);
    }

    function setLibColorData(address lib) public onlyOwner {
      lib_ColorData = ColorDataLib(lib);
    }

    function getElement(uint256 tokenId) private view returns (string memory) {
        return lib_Art.getElementByRoll(roll1000(tokenId, lib_Art.ROLL_ELEMENT()));
    }

    function getPalette(uint256 tokenId) private view returns (string memory) {
        return lib_Art.getPaletteByRoll(roll1000(tokenId, lib_Art.ROLL_PALETTE()), getElement(tokenId));
    }

    function getColorByIndex(uint256 tokenId, uint256 lookupIndex) public view returns (string memory) {
        ColorInfo memory info;
        info.colorCount = getColorCount(tokenId);

        if (lookupIndex >= info.colorCount
            || tokenId <= MAX_VIBE_SUPPLY
            || tokenId > MAX_VIBE_SUPPLY + super.totalSupply())
        {
            return 'null';
        }

        (info.colorInts, info.colorIntCount, info.ordered, info.shuffle, info.restricted) = lib_ColorData.getPaletteColors(getPalette(tokenId));

        uint256 i;
        uint256 temp;
        uint256 startIndex;
        uint256 currIndex;
        uint256 codeCount;

        info.colorIntsChosen = new uint256[](12);

        if (info.ordered) {
            temp = roll1000(tokenId, lib_Art.ROLL_ORDERED());
            startIndex = temp % info.colorIntCount;
            for (i = 0; i < info.colorIntCount; i++) {
                currIndex = startIndex + i;
                if (currIndex >= info.colorIntCount) {
                    currIndex -= info.colorIntCount;
                }
                info.colorIntsChosen[i] = info.colorInts[currIndex];
            }
        } else if (info.shuffle) {
            codeCount = info.colorIntCount;

            while (codeCount > 0) {
                i = roll1000(tokenId, string(abi.encodePacked(lib_Art.ROLL_SHUFFLE, toString(codeCount)))) % codeCount;
                codeCount -= 1;

                temp = info.colorInts[codeCount];
                info.colorInts[codeCount] = info.colorInts[i];
                info.colorInts[i] = temp;
            }

            for (i = 0; i < info.colorIntCount; i++) {
                info.colorIntsChosen[i] = info.colorInts[i];
            }
        } else {
            for (i = 0; i < info.colorIntCount; i++) {
                info.colorIntsChosen[i] = info.colorInts[i];
            }
        }

        if (info.restricted) {
            temp = getWobbledColor(info.colorIntsChosen[lookupIndex % info.colorIntCount], tokenId, lookupIndex);
        } else if (lookupIndex >= info.colorIntCount) {
            temp = getRandomColor(tokenId, lookupIndex);
        } else {
            temp = getWobbledColor(info.colorIntsChosen[lookupIndex], tokenId, lookupIndex);
        }

        return lib_Art.getColorCode(temp);
    }

    function getWobbledColor(uint256 color, uint256 tokenId, uint256 index) private view returns (uint256) {
        WobbleInfo memory info;
        info.r = (color >> uint256(16)) & uint256(255);
        info.g = (color >> uint256(8)) & uint256(255);
        info.b = color & uint256(255);
        info.offsetR = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_RED, toString(index)))) % uint256(8);
        info.offsetG = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_GREEN, toString(index)))) % uint256(8);
        info.offsetB = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_BLUE, toString(index)))) % uint256(8);
        info.offsetDirR = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_DIRRED, toString(index)))) % uint256(2);
        info.offsetDirG = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_DIRGREEN, toString(index)))) % uint256(2);
        info.offsetDirB = rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_DIRBLUE, toString(index)))) % uint256(2);

        if (info.offsetDirR == uint256(0)) {
            if (info.r > info.offsetR) {
                info.r -= info.offsetR;
            } else {
                info.r = uint256(0);
            }
        } else {
            if (info.r + info.offsetR <= uint256(255)) {
                info.r += info.offsetR;
            } else {
                info.r = uint256(255);
            }
        }

        if (info.offsetDirG == uint256(0)) {
            if (info.g > info.offsetG) {
                info.g -= info.offsetG;
            } else {
                info.g = uint256(0);
            }
        } else {
            if (info.g + info.offsetG <= uint256(255)) {
                info.g += info.offsetG;
            } else {
                info.g = uint256(255);
            }
        }

        if (info.offsetDirB == uint256(0)) {
            if (info.b > info.offsetB) {
                info.b -= info.offsetB;
            } else {
                info.b = uint256(0);
            }
        } else {
            if (info.b + info.offsetB <= uint256(255)) {
                info.b += info.offsetB;
            } else {
                info.b = uint256(255);
            }
        }

        return uint256((info.r << uint256(16)) | (info.g << uint256(8)) | info.b);
    }

    function getRandomColor(uint256 tokenId, uint256 index) private view returns (uint256) {
        return rollMax(tokenId, string(abi.encodePacked(lib_Art.ROLL_RANDOMCOLOR, toString(index)))) % uint256(16777216);
    }

    function getStyle(uint256 tokenId) private view returns (string memory) {
        return lib_Art.getStyleByRoll(roll1000(tokenId, lib_Art.ROLL_STYLE()));
    }

    function getColorCount(uint256 tokenId) private view returns (uint256) {
        return lib_Art.getColorCount(roll1000(tokenId, lib_Art.ROLL_COLORCOUNT()), getStyle(tokenId));
    }

    function getGravity(uint256 tokenId) private view returns (string memory) {
        string memory gravity;
        string memory style = getStyle(tokenId);
        uint256 colorCount = getColorCount(tokenId);
        uint256 roll = roll1000(tokenId, lib_Art.ROLL_GRAVITY());

        if (colorCount >= uint256(5) && compareStrings(style, lib_Art.STYLE_SMOOTH())) {
            gravity = lib_Art.getGravityLimitedByRoll(roll);
        } else {
            gravity = lib_Art.getGravityByRoll(roll);
        }

        return gravity;
    }

    function getGrain(uint256 tokenId) private view returns (string memory) {
        return lib_Art.getGrainByRoll(roll1000(tokenId, lib_Art.ROLL_GRAIN()));
    }

    function getDisplay(uint256 tokenId) private view returns (string memory) {
        return lib_Art.getDisplayByRoll(roll1000(tokenId, lib_Art.ROLL_DISPLAY()));
    }

    function getRandomBlockhash(uint256 tokenId) private view returns (bytes32) {
        uint256 decrement = (tokenId % 255) % (block.number - 1);
        uint256 blockIndex = block.number - (decrement + 1);
        return blockhash(blockIndex);
    }

    function getEntropyHash(uint256 tokenId) private view returns (string memory) {
        return uint256(entropyHashes[tokenId]).toHexString();
    }

    function rollMax(uint256 tokenId, string memory key) private view returns (uint256) {
        string memory hashEntropy = getEntropyHash(tokenId);
        string memory tokenEntropy = string(abi.encodePacked(key, toString(tokenId)));
        return random(hashEntropy) ^ random(tokenEntropy);
    }

    function roll1000(uint256 tokenId, string memory key) private view returns (uint256) {
        return uint256(1) + rollMax(tokenId, key) % uint256(1000);
    }

    function random(string memory input) private pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function compareStrings(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b));
    }

    function tokenScript(uint256 tokenId) public view returns (string memory) {
        require(tokenId > MAX_VIBE_SUPPLY, 'invalid tokenId');
        require(tokenId <= MAX_VIBE_SUPPLY + super.totalSupply(), 'invalid tokenId');

        TokenInfo memory info;
        info.entropyHash = getEntropyHash(tokenId);
        info.colorCount = getColorCount(tokenId);
        info.style = getStyle(tokenId);
        info.gravity = getGravity(tokenId);
        info.grain = getGrain(tokenId);
        info.display = getDisplay(tokenId);

        info.html[0] = '<!doctype html><html><head><script>';
        info.html[1] = string(abi.encodePacked('H="', info.entropyHash, '";'));
        info.html[2] = string(abi.encodePacked('Y="', info.style, '";'));
        info.html[3] = string(abi.encodePacked('G="', info.gravity, '";'));
        info.html[4] = string(abi.encodePacked('A="', info.grain, '";'));
        info.html[5] = string(abi.encodePacked('D="', info.display, '";'));

        string memory colorString;
        string memory partString;
        uint256 i;
        for (i = 0; i < 6; i++) {
            if (i < info.colorCount) {
                colorString = getColorByIndex(tokenId, i);
            } else {
                colorString = '';
            }

            if (i == 0) {
                partString = string(abi.encodePacked('P=["', colorString, '",'));
            } else if (i < info.colorCount - 1) {
                partString = string(abi.encodePacked('"', colorString, '",'));
            } else if (i < info.colorCount) {
                partString = string(abi.encodePacked('"', colorString, '"];'));
            } else {
                partString = '';
            }

            info.html[6 + i] = partString;
        }

        info.html[12] = lib_Art.getScript();
        info.html[13] = '</script></head><body></body></html>';

        string memory output = string(abi.encodePacked(info.html[0], info.html[1], info.html[2], info.html[3], info.html[4], info.html[5], info.html[6]));
        return string(abi.encodePacked(output, info.html[7], info.html[8], info.html[9], info.html[10], info.html[11], info.html[12], info.html[13]));
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        require(tokenId > MAX_VIBE_SUPPLY, 'invalid tokenId');
        require(tokenId <= MAX_VIBE_SUPPLY + super.totalSupply(), 'invalid tokenId');

        TokenInfo memory info;
        info.element = getElement(tokenId);
        info.palette = getPalette(tokenId);
        info.colorCount = getColorCount(tokenId);
        info.style = getStyle(tokenId);
        info.gravity = getGravity(tokenId);
        info.grain = getGrain(tokenId);
        info.display = getDisplay(tokenId);

        string memory imagePath = string(abi.encodePacked(baseVibeURI, toString(tokenId), '.jpg'));
        string memory json = string(abi.encodePacked('{"name": "vibe #', toString(tokenId), '", "description": "vibes is a generative art collection, randomly created and stored on chain. each token is an interactive html page that allows you to render your vibe at any size. vibes make their color palette available on chain, so feel free to carry your colors with you on your adventures.", "image": "', imagePath));

        if (useOnChainAnimation) {
            string memory script = tokenScript(tokenId);
            json = string(abi.encodePacked(json, '", "animation_url": "data:text/html;base64,', Base64.encode(bytes(script))));
        } else if (useAnimation) {
            json = string(abi.encodePacked(json, '", "animation_url": "', string(abi.encodePacked(baseVibeURI, toString(tokenId), '.html'))));
        }

        json = string(abi.encodePacked(json, '", "attributes": [{ "trait_type": "element", "value": "', info.element, '" }, { "trait_type": "palette", "value": "', info.palette, '" }, { "trait_type": "colors", "value": "', toString(info.colorCount), '" }, { "trait_type": "style", "value": "', info.style));
        json = string(abi.encodePacked(json, '" }, { "trait_type": "gravity", "value": "', info.gravity, '" }, { "trait_type": "grain", "value": "', info.grain, '" }, { "trait_type": "display", "value": "', info.display, '" }]}'));

        return string(abi.encodePacked('data:application/json;base64,', Base64.encode(bytes(json))));
    }

    function mintVibes() public nonReentrant {
        uint256 lastTokenId = MAX_VIBE_SUPPLY + super.totalSupply();
        uint256 nextTokenId = lastTokenId + 1;
        address minter = _msgSender();

        require(mintingActive, 'gm fren. minting open vibes soon.');
        require(!hasWalletMinted[minter], 'whoa fren. max 1 open vibe per wallet.');
        require(nextTokenId <= MAX_VIBE_SUPPLY + MAX_OPEN_VIBE_SUPPLY, 'gn fren. only so many open vibes.');

        hasWalletMinted[minter] = true;
        entropyHashes[nextTokenId] = getRandomBlockhash(nextTokenId);

        _safeMint(minter, nextTokenId);
    }

    function vibeCheck() public onlyOwner {
        mintingActive = !mintingActive;
    }

    function toggleAnimation() public onlyOwner {
        useAnimation = !useAnimation;
    }

    function toggleOnChainAnimation() public onlyOwner {
        useOnChainAnimation = !useOnChainAnimation;
    }

    function setVibeURI(string memory uri) public onlyOwner {
        baseVibeURI = uri;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, ERC2981ContractWideRoyalties)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }

}

abstract contract ColorDataLib {
    function getPaletteColors(string memory palette) virtual public pure returns (uint256[] memory, uint256, bool, bool, bool);
}

abstract contract ArtLib {
    string public ROLL_ELEMENT;
    string public ROLL_PALETTE;
    string public ROLL_ORDERED;
    string public ROLL_SHUFFLE;
    string public ROLL_RED;
    string public ROLL_GREEN;
    string public ROLL_BLUE;
    string public ROLL_DIRRED;
    string public ROLL_DIRGREEN;
    string public ROLL_DIRBLUE;
    string public ROLL_RANDOMCOLOR;
    string public ROLL_STYLE;
    string public ROLL_COLORCOUNT;
    string public ROLL_GRAVITY;
    string public ROLL_GRAIN;
    string public ROLL_DISPLAY;
    string public ELEM_NATURE;
    string public ELEM_LIGHT;
    string public ELEM_WATER;
    string public ELEM_EARTH;
    string public ELEM_WIND;
    string public ELEM_ARCANE;
    string public ELEM_SHADOW;
    string public ELEM_FIRE;
    string public NAT_PAL_JUNGLE;
    string public NAT_PAL_SPRING;
    string public NAT_PAL_CAMOUFLAGE;
    string public NAT_PAL_BLOSSOM;
    string public NAT_PAL_LEAF;
    string public NAT_PAL_LEMONADE;
    string public NAT_PAL_BIOLUMINESCENCE;
    string public NAT_PAL_RAINFOREST;
    string public LIG_PAL_PASTEL;
    string public LIG_PAL_HOLY;
    string public LIG_PAL_SYLVAN;
    string public LIG_PAL_GLOW;
    string public LIG_PAL_SUNSET;
    string public LIG_PAL_INFRARED;
    string public LIG_PAL_ULTRAVIOLET;
    string public LIG_PAL_YANG;
    string public WAT_PAL_ARCHIPELAGO;
    string public WAT_PAL_FROZEN;
    string public WAT_PAL_VAPOR;
    string public WAT_PAL_DAWN;
    string public WAT_PAL_GLACIER;
    string public WAT_PAL_SHANTY;
    string public WAT_PAL_VICE;
    string public WAT_PAL_OPALESCENT;
    string public EAR_PAL_ARID;
    string public EAR_PAL_RIDGE;
    string public EAR_PAL_COAL;
    string public EAR_PAL_TOUCH;
    string public EAR_PAL_BRONZE;
    string public EAR_PAL_SILVER;
    string public EAR_PAL_GOLD;
    string public EAR_PAL_PLATINUM;
    string public WIN_PAL_BERRY;
    string public WIN_PAL_BREEZE;
    string public WIN_PAL_JOLT;
    string public WIN_PAL_THUNDER;
    string public WIN_PAL_WINTER;
    string public WIN_PAL_HEATHERMOOR;
    string public WIN_PAL_ZEUS;
    string public WIN_PAL_MATRIX;
    string public ARC_PAL_PLASTIC;
    string public ARC_PAL_COSMIC;
    string public ARC_PAL_BUBBLE;
    string public ARC_PAL_ESPER;
    string public ARC_PAL_SPIRIT;
    string public ARC_PAL_COLORLESS;
    string public ARC_PAL_ENTROPY;
    string public ARC_PAL_YINYANG;
    string public SHA_PAL_MOONRISE;
    string public SHA_PAL_UMBRAL;
    string public SHA_PAL_DARKNESS;
    string public SHA_PAL_SHARKSKIN;
    string public SHA_PAL_VOID;
    string public SHA_PAL_IMMORTAL;
    string public SHA_PAL_UNDEAD;
    string public SHA_PAL_YIN;
    string public FIR_PAL_VOLCANO;
    string public FIR_PAL_HEAT;
    string public FIR_PAL_FLARE;
    string public FIR_PAL_SOLAR;
    string public FIR_PAL_SUMMER;
    string public FIR_PAL_EMBER;
    string public FIR_PAL_COMET;
    string public FIR_PAL_CORRUPTED;
    string public STYLE_SMOOTH;
    string public STYLE_PAJAMAS;
    string public STYLE_SILK;
    string public STYLE_RETRO;
    string public STYLE_SKETCH;
    string public GRAV_LUNAR;
    string public GRAV_ATMOSPHERIC;
    string public GRAV_LOW;
    string public GRAV_NORMAL;
    string public GRAV_HIGH;
    string public GRAV_MASSIVE;
    string public GRAV_STELLAR;
    string public GRAV_GALACTIC;
    string public GRAIN_NULL;
    string public GRAIN_FADED;
    string public GRAIN_NONE;
    string public GRAIN_SOFT;
    string public GRAIN_MEDIUM;
    string public GRAIN_ROUGH;
    string public GRAIN_RED;
    string public GRAIN_GREEN;
    string public GRAIN_BLUE;
    string public DISPLAY_NORMAL;
    string public DISPLAY_MIRRORED;
    string public DISPLAY_UPSIDEDOWN;
    string public DISPLAY_MIRROREDUPSIDEDOWN;

    function getElementByRoll(uint256 roll) virtual public pure returns (string memory);
    function getPaletteByRoll(uint256 roll, string memory element) virtual public pure returns (string memory);
    function getNaturePaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getLightPaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getWaterPaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getEarthPaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getWindPaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getArcanePaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getShadowPaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getFirePaletteByRoll(uint256 roll) virtual public pure returns (string memory);
    function getColorCount(uint256 roll, string memory style) virtual public pure returns (uint256);
    function getStyleByRoll(uint256 roll) virtual public pure returns (string memory);
    function getGravityByRoll(uint256 roll) virtual public pure returns (string memory);
    function getGravityLimitedByRoll(uint256 roll) virtual public pure returns (string memory);
    function getGrainByRoll(uint256 roll) virtual public pure returns (string memory);
    function getDisplayByRoll(uint256 roll) virtual public pure returns (string memory);
    function getColorCode(uint256 color) virtual public pure returns (string memory);
    function compareStrings(string memory a, string memory b) virtual internal pure returns (bool);
    function getScript() virtual public pure returns (string memory);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"lookupIndex","type":"uint256"}],"name":"getColorByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintVibes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lib","type":"address"}],"name":"setLibArt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lib","type":"address"}],"name":"setLibColorData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setVibeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAnimation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOnChainAnimation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenScript","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useAnimation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useOnChainAnimation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vibeCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f805462ffffff60a01b191690553480156200002057600080fd5b5060408051808201825260098152684f70656e566962657360b81b6020808301918252835180850190945260068452654f564942455360d01b90840152815191929162000070916000916200018e565b508051620000869060019060208401906200018e565b50506001600c55506200009933620000bf565b620000b9620000b0600d546001600160a01b031690565b6104e262000111565b62000271565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612710811115620001685760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640160405180910390fd5b600a80546001600160a01b0319166001600160a01b039390931692909217909155600b55565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b61464980620002816000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063555083cd1161011a57806397ef6221116100ad578063c044c8361161007c578063c044c83614610421578063c87b56dd14610435578063e985e9c514610448578063f2fde38b14610484578063f3b67c631461049757600080fd5b806397ef6221146103e0578063a22cb465146103e8578063b88d4fde146103fb578063b93814221461040e57600080fd5b8063715018a6116100e9578063715018a6146103ab5780637ebdccd4146103b35780638da5cb5b146103c757806395d89b41146103d857600080fd5b8063555083cd1461036a5780636352211e1461037d5780636b4b10681461039057806370a082311461039857600080fd5b80632a55205a116101925780633ccfd60b116101615780633ccfd60b1461032957806342842e0e146103315780634f6ccce7146103445780635379522f1461035757600080fd5b80632a55205a146102c85780632f4c8375146102fa5780632f745c591461030257806331f9c9191461031557600080fd5b80630d2579ff116101ce5780630d2579ff1461027d57806318160ddd14610290578063201ffc12146102a257806323b872dd146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e36600461374c565b61049f565b60405190151581526020015b60405180910390f35b6102306104b0565b60405161021f9190614265565b61025061024b366004613846565b610542565b6040516001600160a01b03909116815260200161021f565b61027b610276366004613637565b6105dc565b005b61027b61028b3660046134fa565b6106f2565b6008545b60405190815260200161021f565b6102306102b0366004613846565b61073e565b61027b6102c3366004613548565b610b7c565b6102db6102d6366004613878565b610bad565b604080516001600160a01b03909316835260208301919091520161021f565b61027b610be7565b610294610310366004613637565b610c32565b600f5461021390600160a01b900460ff1681565b61027b610cc8565b61027b61033f366004613548565b610d41565b610294610352366004613846565b610d5c565b610230610365366004613878565b610def565b61027b610378366004613786565b611380565b61025061038b366004613846565b6113bd565b61027b611434565b6102946103a63660046134fa565b61147f565b61027b611506565b600f5461021390600160b01b900460ff1681565b600d546001600160a01b0316610250565b61023061153c565b61027b61154b565b61027b6103f6366004613600565b61175f565b61027b610409366004613584565b611824565b61027b61041c3660046134fa565b61185c565b600f5461021390600160a81b900460ff1681565b610230610443366004613846565b6118a8565b610213610456366004613515565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b6104923660046134fa565b611b18565b61027b611bb3565b60006104aa82611bfe565b92915050565b6060600080546104bf90614490565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90614490565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105e7826113bd565b9050806001600160a01b0316836001600160a01b031614156106555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b7565b336001600160a01b038216148061067157506106718133610456565b6106e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b7565b6106ed8383611c23565b505050565b600d546001600160a01b0316331461071c5760405162461bcd60e51b81526004016105b7906142f3565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611e6182116107615760405162461bcd60e51b81526004016105b7906142ca565b60085461077090611e616143eb565b82111561078f5760405162461bcd60e51b81526004016105b7906142ca565b610797613383565b6107a083611c91565b81526107ab83611cac565b60608201526107b983611d74565b60808201526107c783611e39565b60a08201526107d583612064565b60c08201526107e3836120b7565b60e0820152604080516060810190915260238082526145b160208301396101008201515280516040516108199190602001613f0d565b60408051808303601f19018152918152610100830151602090810192909252608083015190516108499201613ed5565b60408051808303601f1901815291815261010083015181019190915260a08201519051610879919060200161401c565b60408051808303601f190181529181526101008301516060019190915260c082015190516108aa9190602001613ffd565b60408051808303601f190181529181526101008301516080019190915260e082015190516108db9190602001613f2c565b60408051808303601f1901815291905261010082015160a0015260608060005b60068110156109f35783606001518110156109215761091a8682610def565b9250610934565b6040518060200160405280600081525092505b80610960578260405160200161094a91906141ef565b60405160208183030381529060405291506109b9565b600184606001516109719190614436565b811015610989578260405160200161094a9190613f4b565b83606001518110156109a6578260405160200161094a9190613f81565b6040518060200160405280600081525091505b61010084015182906109cc8360066143eb565b600e81106109dc576109dc61453c565b6020020152806109eb816144cb565b9150506108fb565b600e60009054906101000a90046001600160a01b03166001600160a01b031663620b73036040518163ffffffff1660e01b815260040160006040518083038186803b158015610a4157600080fd5b505afa158015610a55573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a7d91908101906137cf565b61010085015161018001526040805160608101909152602480825261458d6020830139610100850180516101a001919091525180516020828101516040808501516060860151608087015160a088015160c0909801519351600098610aed989794959394929390929091016139fc565b6040516020818303038152906040529050808561010001516007600e8110610b1757610b1761453c565b6020908102919091015161010088810151908101516101208201516101408301516101608401516101808501516101a090950151604051610b619998959694959394929301613a8e565b60405160208183030381529060405295505050505050919050565b610b86338261210a565b610ba25760405162461bcd60e51b81526004016105b790614328565b6106ed838383612201565b600a54600b5460009182916001600160a01b039091169061271090610bd29086614417565b610bdc9190614403565b915091509250929050565b600d546001600160a01b03163314610c115760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000610c3d8361147f565b8210610c9f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03163314610cf25760405162461bcd60e51b81526004016105b7906142f3565b47610d05600d546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610d3d573d6000803e3d6000fd5b5050565b6106ed83838360405180602001604052806000815250611824565b6000610d6760085490565b8210610dca5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b7565b60088281548110610ddd57610ddd61453c565b90600052602060002001549050919050565b6060610e3f60405180610100016040528060608152602001606081526020016000815260200160001515815260200160001515815260200160001515815260200160608152602001600081525090565b610e4884611cac565b60e0820181905283101580610e5f5750611e618411155b80610e775750600854610e7490611e616143eb565b84115b15610e9e5750506040805180820190915260048152631b9d5b1b60e21b60208201526104aa565b600f546001600160a01b03166345e5c45a610eb8866123ac565b6040518263ffffffff1660e01b8152600401610ed49190614265565b60006040518083038186803b158015610eec57600080fd5b505afa158015610f00573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f289190810190613661565b151560a0860152151560808501521515606084015260408301528152600080808080600c604051908082528060200260200182016040528015610f75578160200160208202803683370190505b5060208701526060860151156110ba5761101889600e60009054906101000a90046001600160a01b03166001600160a01b031663db5041eb6040518163ffffffff1660e01b815260040160006040518083038186803b158015610fd757600080fd5b505afa158015610feb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261101391908101906137cf565b612425565b935085604001518461102a91906144e6565b9250600094505b85604001518510156110b55761104785846143eb565b9150856040015182106110665760408601516110639083614436565b91505b855180518390811061107a5761107a61453c565b6020026020010151866020015186815181106110985761109861453c565b6020908102919091010152846110ad816144cb565b955050611031565b61127a565b85608001511561121a575060408501515b80156111ba57600e548190611119908b906001600160a01b0316639daca0096110f385612450565b6040516020016111059392919061397c565b604051602081830303815290604052612425565b61112391906144e6565b9450611130600182614436565b9050856000015181815181106111485761114861453c565b60200260200101519350856000015185815181106111685761116861453c565b6020026020010151866000015182815181106111865761118661453c565b60200260200101818152505083866000015186815181106111a9576111a961453c565b6020026020010181815250506110cb565b600094505b85604001518510156110b55785518051869081106111df576111df61453c565b6020026020010151866020015186815181106111fd576111fd61453c565b602090810291909101015284611212816144cb565b9550506111bf565b600094505b856040015185101561127a57855180518690811061123f5761123f61453c565b60200260200101518660200151868151811061125d5761125d61453c565b602090810291909101015284611272816144cb565b95505061121f565b8560a00151156112c2576112bb866020015187604001518a61129c91906144e6565b815181106112ac576112ac61453c565b60200260200101518a8a61254e565b93506112f3565b856040015188106112d7576112bb8989612896565b6112f0866020015189815181106112ac576112ac61453c565b93505b600e54604051630dc42e0b60e21b8152600481018690526001600160a01b0390911690633710b82c9060240160006040518083038186803b15801561133757600080fd5b505afa15801561134b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261137391908101906137cf565b9998505050505050505050565b600d546001600160a01b031633146113aa5760405162461bcd60e51b81526004016105b7906142f3565b8051610d3d9060109060208401906133d4565b6000818152600260205260408120546001600160a01b0316806104aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b7565b600d546001600160a01b0316331461145e5760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60006001600160a01b0382166114ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b7565b506001600160a01b031660009081526003602052604090205490565b600d546001600160a01b031633146115305760405162461bcd60e51b81526004016105b7906142f3565b61153a60006128c9565b565b6060600180546104bf90614490565b6002600c54141561159e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b7565b6002600c5560006115ae60085490565b6115ba90611e616143eb565b905060006115c98260016143eb565b600f549091503390600160a01b900460ff166116315760405162461bcd60e51b815260206004820152602160248201527f676d206672656e2e206d696e74696e67206f70656e20766962657320736f6f6e6044820152601760f91b60648201526084016105b7565b6001600160a01b03811660009081526012602052604090205460ff16156116a95760405162461bcd60e51b815260206004820152602660248201527f77686f61206672656e2e206d61782031206f70656e207669626520706572207760448201526530b63632ba1760d11b60648201526084016105b7565b6116b76108ae611e616143eb565b8211156117105760405162461bcd60e51b815260206004820152602160248201527f676e206672656e2e206f6e6c7920736f206d616e79206f70656e2076696265736044820152601760f91b60648201526084016105b7565b6001600160a01b0381166000908152601260205260409020805460ff1916600117905561173c8261291b565b6000838152601160205260409020556117558183612960565b50506001600c5550565b6001600160a01b0382163314156117b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61182e338361210a565b61184a5760405162461bcd60e51b81526004016105b790614328565b6118568484848461297a565b50505050565b600d546001600160a01b031633146118865760405162461bcd60e51b81526004016105b7906142f3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611e6182116118cb5760405162461bcd60e51b81526004016105b7906142ca565b6008546118da90611e616143eb565b8211156118f95760405162461bcd60e51b81526004016105b7906142ca565b611901613383565b61190a836129ad565b6020820152611918836123ac565b604082015261192683611cac565b606082015261193483611d74565b608082015261194283611e39565b60a082015261195083612064565b60c082015261195e836120b7565b60e08201526000601061197085612450565b604051602001611981929190613ea1565b6040516020818303038152906040529050600061199d85612450565b826040516020016119af92919061403b565b60408051808303601f19018152919052600f54909150600160b01b900460ff1615611a135760006119df8661073e565b9050816119eb82612a00565b6040516020016119fc929190613b33565b604051602081830303815290604052915050611a72565b600f54600160a81b900460ff1615611a7257806010611a3187612450565b604051602001611a42929190613e6c565b60408051601f1981840301815290829052611a609291602001613e1c565b60405160208183030381529060405290505b8083602001518460400151611a8a8660600151612450565b8660800151604051602001611aa3959493929190613cb3565b60408051601f198184030181529082905260a085015160c086015160e0870151929450611ad593859390602001613ba0565b6040516020818303038152906040529050611aef81612a00565b604051602001611aff9190613fb8565b6040516020818303038152906040529350505050919050565b600d546001600160a01b03163314611b425760405162461bcd60e51b81526004016105b7906142f3565b6001600160a01b038116611ba75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b7565b611bb0816128c9565b50565b600d546001600160a01b03163314611bdd5760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b0319821663152a902d60e11b14806104aa57506104aa82612b66565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c58826113bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152601160205260409020546060906104aa90612b8b565b600e546040805163677f3c8d60e11b815290516000926001600160a01b031691634691ed7f91611cfe918691859163cefe791a916004808301928a929190829003018186803b158015610fd757600080fd5b611d0785611d74565b6040518363ffffffff1660e01b8152600401611d24929190614379565b60206040518083038186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104aa919061385f565b600e546040805163784a0b8f60e11b815290516060926001600160a01b03169163e99b68fa91611dc7918691859163f094171e916004808301926000929190829003018186803b158015610fd757600080fd5b6040518263ffffffff1660e01b8152600401611de591815260200190565b60006040518083038186803b158015611dfd57600080fd5b505afa158015611e11573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104aa91908101906137cf565b6060806000611e4784611d74565b90506000611e5485611cac565b90506000611eaa86600e60009054906101000a90046001600160a01b03166001600160a01b031663a74218976040518163ffffffff1660e01b815260040160006040518083038186803b158015610fd757600080fd5b905060058210158015611f4b5750611f4b83600e60009054906101000a90046001600160a01b03166001600160a01b031663dbde8f296040518163ffffffff1660e01b815260040160006040518083038186803b158015611f0a57600080fd5b505afa158015611f1e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f4691908101906137cf565b612bdf565b15611fd757600e54604051636f6c1a5b60e11b8152600481018390526001600160a01b039091169063ded834b69060240160006040518083038186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fd091908101906137cf565b935061205a565b600e5460405163647717a160e11b8152600481018390526001600160a01b039091169063c8ee2f429060240160006040518083038186803b15801561201b57600080fd5b505afa15801561202f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261205791908101906137cf565b93505b5091949350505050565b600e54604080516390f0e06760e01b815290516060926001600160a01b031691636451579391611dc791869185916390f0e067916004808301926000929190829003018186803b158015610fd757600080fd5b600e5460408051630355d62960e11b815290516060926001600160a01b031691633bc6592191611dc791869185916306abac52916004808301926000929190829003018186803b158015610fd757600080fd5b6000818152600260205260408120546001600160a01b03166121835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b7565b600061218e836113bd565b9050806001600160a01b0316846001600160a01b031614806121c95750836001600160a01b03166121be84610542565b6001600160a01b0316145b806121f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612214826113bd565b6001600160a01b03161461227c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b7565b6001600160a01b0382166122de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b7565b6122e9838383612c38565b6122f4600082611c23565b6001600160a01b038316600090815260036020526040812080546001929061231d908490614436565b90915550506001600160a01b038216600090815260036020526040812080546001929061234b9084906143eb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e54604080516302eb5e2f60e11b815290516060926001600160a01b03169163d4ceff4a916123ff91869185916305d6bc5e916004808301926000929190829003018186803b158015610fd757600080fd5b612408856129ad565b6040518363ffffffff1660e01b8152600401611de5929190614379565b60006103e86124348484612cf0565b61243e91906144e6565b6124499060016143eb565b9392505050565b6060816124745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249e5780612488816144cb565b91506124979050600a83614403565b9150612478565b60008167ffffffffffffffff8111156124b9576124b9614552565b6040519080825280601f01601f1916602001820160405280156124e3576020820181803683370190505b5090505b84156121f9576124f8600183614436565b9150612505600a866144e6565b6125109060306143eb565b60f81b8183815181106125255761252561453c565b60200101906001600160f81b031916908160001a905350612547600a86614403565b94506124e7565b600061259f6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b60ff601086901c81168252600886811c821660208401529086166040830152600e546126049086906001600160a01b03166380441b916125de88612450565b6040516020016125f09392919061397c565b604051602081830303815290604052612cf0565b61260e91906144e6565b6060820152600e546008906126369086906001600160a01b031663f1b49c296125de88612450565b61264091906144e6565b6080820152600e546008906126689086906001600160a01b031663909614a46125de88612450565b61267291906144e6565b60a0820152600e5460029061269a9086906001600160a01b031663b2795cc76125de88612450565b6126a491906144e6565b60c0820152600e546002906126cc9086906001600160a01b0316630e19bd7d6125de88612450565b6126d691906144e6565b60e0820152600e546002906126fe9086906001600160a01b03166395b342466125de88612450565b61270891906144e6565b61010082015260c08101516127495760608101518151111561274057606081015181518290612738908390614436565b90525061277a565b6000815261277a565b6060810151815160ff9161275c916143eb565b11612775576060810151815182906127389083906143eb565b60ff81525b60e08101516127bd578060800151816020015111156127b1578060800151816020018181516127a99190614436565b9052506127f6565b600060208201526127f6565b60ff816080015182602001516127d391906143eb565b116127ee578060800151816020018181516127a991906143eb565b60ff60208201525b61010081015161283a578060a001518160400151111561282e578060a00151816040018181516128269190614436565b905250612873565b60006040820152612873565b60ff8160a00151826040015161285091906143eb565b1161286b578060a001518160400181815161282691906143eb565b60ff60408201525b806040015160088260200151901b60108360000151901b17179150509392505050565b600e546000906301000000906128bf9085906001600160a01b031663fd9babb06125de87612450565b61244991906144e6565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612929600143614436565b61293460ff856144e6565b61293e91906144e6565b9050600061294d8260016143eb565b6129579043614436565b40949350505050565b610d3d828260405180602001604052806000815250612d48565b612985848484612201565b61299184848484612d7b565b6118565760405162461bcd60e51b81526004016105b790614278565b600e5460408051635c95055960e11b815290516060926001600160a01b031691631f36a73e91611dc7918691859163b92a0ab2916004808301926000929190829003018186803b158015610fd757600080fd5b805160609080612a20575050604080516020810190915260008152919050565b60006003612a2f8360026143eb565b612a399190614403565b612a44906004614417565b90506000612a538260206143eb565b67ffffffffffffffff811115612a6b57612a6b614552565b6040519080825280601f01601f191660200182016040528015612a95576020820181803683370190505b50905060006040518060600160405280604081526020016145d4604091399050600181016020830160005b86811015612b21576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ac0565b506003860660018114612b3b5760028114612b4c57612b58565b613d3d60f01b600119830152612b58565b603d60f81b6000198301525b505050918152949350505050565b60006001600160e01b0319821663780e9d6360e01b14806104aa57506104aa82612e88565b606081612bb25750506040805180820190915260048152630307830360e41b602082015290565b8160005b8115612bd55780612bc6816144cb565b915050600882901c9150612bb6565b6121f98482612ed8565b600081604051602001612bf291906139b1565b6040516020818303038152906040528051906020012083604051602001612c1991906139b1565b6040516020818303038152906040528051906020012014905092915050565b6001600160a01b038316612c9357612c8e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cb6565b816001600160a01b0316836001600160a01b031614612cb657612cb68382613074565b6001600160a01b038216612ccd576106ed81613111565b826001600160a01b0316826001600160a01b0316146106ed576106ed82826131c0565b600080612cfc84611c91565b9050600083612d0a86612450565b604051602001612d1b9291906139cd565b6040516020818303038152906040529050612d3581613204565b612d3e83613204565b1895945050505050565b612d528383613235565b612d5f6000848484612d7b565b6106ed5760405162461bcd60e51b81526004016105b790614278565b60006001600160a01b0384163b15612e7d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbf903390899088908890600401614228565b602060405180830381600087803b158015612dd957600080fd5b505af1925050508015612e09575060408051601f3d908101601f19168201909252612e0691810190613769565b60015b612e63573d808015612e37576040519150601f19603f3d011682016040523d82523d6000602084013e612e3c565b606091505b508051612e5b5760405162461bcd60e51b81526004016105b790614278565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121f9565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b1480612eb957506001600160e01b03198216635b5e139f60e01b145b806104aa57506301ffc9a760e01b6001600160e01b03198316146104aa565b60606000612ee7836002614417565b612ef29060026143eb565b67ffffffffffffffff811115612f0a57612f0a614552565b6040519080825280601f01601f191660200182016040528015612f34576020820181803683370190505b509050600360fc1b81600081518110612f4f57612f4f61453c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612f7e57612f7e61453c565b60200101906001600160f81b031916908160001a9053506000612fa2846002614417565b612fad9060016143eb565b90505b6001811115613025576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612fe157612fe161453c565b1a60f81b828281518110612ff757612ff761453c565b60200101906001600160f81b031916908160001a90535060049490941c9361301e81614479565b9050612fb0565b5083156124495760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105b7565b600060016130818461147f565b61308b9190614436565b6000838152600760205260409020549091508082146130de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061312390600190614436565b6000838152600960205260408120546008805493945090928490811061314b5761314b61453c565b90600052602060002001549050806008838154811061316c5761316c61453c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806131a4576131a4614526565b6001900381819060005260206000200160009055905550505050565b60006131cb8361147f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008160405160200161321791906139b1565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b03821661328b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b7565b6000818152600260205260409020546001600160a01b0316156132f05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b7565b6132fc60008383612c38565b6001600160a01b03821660009081526003602052604081208054600192906133259084906143eb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180610120016040528060608152602001606081526020016060815260200160008152602001606081526020016060815260200160608152602001606081526020016133cf613458565b905290565b8280546133e090614490565b90600052602060002090601f0160209004810192826134025760008555613448565b82601f1061341b57805160ff1916838001178555613448565b82800160010185558215613448579182015b8281111561344857825182559160200191906001019061342d565b50613454929150613480565b5090565b604051806101c00160405280600e905b60608152602001906001900390816134685790505090565b5b808211156134545760008155600101613481565b60006134a86134a3846143c3565b614392565b90508281528383830111156134bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146134ea57600080fd5b919050565b80516134ea81614568565b60006020828403121561350c57600080fd5b612449826134d3565b6000806040838503121561352857600080fd5b613531836134d3565b915061353f602084016134d3565b90509250929050565b60008060006060848603121561355d57600080fd5b613566846134d3565b9250613574602085016134d3565b9150604084013590509250925092565b6000806000806080858703121561359a57600080fd5b6135a3856134d3565b93506135b1602086016134d3565b925060408501359150606085013567ffffffffffffffff8111156135d457600080fd5b8501601f810187136135e557600080fd5b6135f487823560208401613495565b91505092959194509250565b6000806040838503121561361357600080fd5b61361c836134d3565b9150602083013561362c81614568565b809150509250929050565b6000806040838503121561364a57600080fd5b613653836134d3565b946020939093013593505050565b600080600080600060a0868803121561367957600080fd5b855167ffffffffffffffff8082111561369157600080fd5b818801915088601f8301126136a557600080fd5b81516020828211156136b9576136b9614552565b8160051b92506136ca818401614392565b8281528181019085830185870184018e10156136e557600080fd5b600096505b848710156137085780518352600196909601959183019183016136ea565b50809a505050808a0151975050505050613724604087016134ef565b9250613732606087016134ef565b9150613740608087016134ef565b90509295509295909350565b60006020828403121561375e57600080fd5b813561244981614576565b60006020828403121561377b57600080fd5b815161244981614576565b60006020828403121561379857600080fd5b813567ffffffffffffffff8111156137af57600080fd5b8201601f810184136137c057600080fd5b6121f984823560208401613495565b6000602082840312156137e157600080fd5b815167ffffffffffffffff8111156137f857600080fd5b8201601f8101841361380957600080fd5b80516138176134a3826143c3565b81815285602083850101111561382c57600080fd5b61383d82602083016020860161444d565b95945050505050565b60006020828403121561385857600080fd5b5035919050565b60006020828403121561387157600080fd5b5051919050565b6000806040838503121561388b57600080fd5b50508035926020909101359150565b600081518084526138b281602086016020860161444d565b601f01601f19169290920160200192915050565b600081516138d881856020860161444d565b9290920192915050565b8054600090600181811c90808316806138fc57607f831692505b602080841082141561391e57634e487b7160e01b600052602260045260246000fd5b818015613932576001811461394357613970565b60ff19861689528489019650613970565b60008881526020902060005b868110156139685781548b82015290850190830161394f565b505084890196505b50505050505092915050565b63ffffffff83168460201b1760401b8152600082516139a281601885016020870161444d565b91909101601801949350505050565b600082516139c381846020870161444d565b9190910192915050565b600083516139df81846020880161444d565b8351908301906139f381836020880161444d565b01949350505050565b600088516020613a0f8285838e0161444d565b895191840191613a228184848e0161444d565b8951920191613a348184848d0161444d565b8851920191613a468184848c0161444d565b8751920191613a588184848b0161444d565b8651920191613a6a8184848a0161444d565b8551920191613a7c818484890161444d565b919091019a9950505050505050505050565b600089516020613aa18285838f0161444d565b8a5191840191613ab48184848f0161444d565b8a51920191613ac68184848e0161444d565b8951920191613ad88184848d0161444d565b8851920191613aea8184848c0161444d565b8751920191613afc8184848b0161444d565b8651920191613b0e8184848a0161444d565b8551920191613b20818484890161444d565b919091019b9a5050505050505050505050565b60008351613b4581846020880161444d565b80830190507f222c2022616e696d6174696f6e5f75726c223a2022646174613a746578742f6881526a1d1b5b0ed8985cd94d8d0b60aa1b60208201528351613b9481602b84016020880161444d565b01602b01949350505050565b60008551613bb2818460208a0161444d565b80830190507f22207d2c207b202274726169745f74797065223a202267726176697479222c20815269113b30b63ab2911d101160b11b8060208301528651613c0181602a850160208b0161444d565b7f22207d2c207b202274726169745f74797065223a2022677261696e222c202276602a93909101928301526730b63ab2911d101160c11b604a8301528551613c50816052850160208a0161444d565b7f22207d2c207b202274726169745f74797065223a2022646973706c6179222c206052939091019283015260728201528351613c9381607c84016020880161444d565b6422207d5d7d60d81b607c92909101918201526081019695505050505050565b60008651613cc5818460208b0161444d565b80830190507f222c202261747472696275746573223a205b7b202274726169745f747970652281527f3a2022656c656d656e74222c202276616c7565223a202200000000000000000060208201528651613d26816037840160208b0161444d565b7f22207d2c207b202274726169745f74797065223a202270616c65747465222c206037929091019182015269113b30b63ab2911d101160b11b60578201528551613d77816061840160208a0161444d565b7f22207d2c207b202274726169745f74797065223a2022636f6c6f7273222c202260619290910191820152683b30b63ab2911d101160b91b60818201528451613dc781608a84016020890161444d565b7f22207d2c207b202274726169745f74797065223a20227374796c65222c202276608a92909101918201526730b63ab2911d101160c11b60aa820152613e1060b28201856138c6565b98975050505050505050565b60008351613e2e81846020880161444d565b741116101130b734b6b0ba34b7b72fbab936111d101160591b9083019081528351613e6081601584016020880161444d565b01601501949350505050565b6000613e7882856138e2565b8351613e8881836020880161444d565b640b9a1d1b5b60da1b9101908152600501949350505050565b6000613ead82856138e2565b8351613ebd81836020880161444d565b632e6a706760e01b9101908152600401949350505050565b622c9e9160e91b81528151600090613ef481600385016020870161444d565b61223b60f01b6003939091019283015250600501919050565b62241e9160e91b81528151600090613ef481600385016020870161444d565b62221e9160e91b81528151600090613ef481600385016020870161444d565b601160f91b81528151600090613f6881600185016020870161444d565b61088b60f21b6001939091019283015250600301919050565b601160f91b81528151600090613f9e81600185016020870161444d565b62225d3b60e81b6001939091019283015250600401919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613ff081601d85016020870161444d565b91909101601d0192915050565b62209e9160e91b81528151600090613ef481600385016020870161444d565b62239e9160e91b81528151600090613ef481600385016020870161444d565b6f7b226e616d65223a202276696265202360801b8152825160009061406781601085016020880161444d565b7f222c20226465736372697074696f6e223a2022766962657320697320612067656010918401918201527f6e657261746976652061727420636f6c6c656374696f6e2c2072616e646f6d6c60308201527f79206372656174656420616e642073746f726564206f6e20636861696e2e206560508201527f61636820746f6b656e20697320616e20696e7465726163746976652068746d6c60708201527f2070616765207468617420616c6c6f777320796f7520746f2072656e6465722060908201527f796f7572207669626520617420616e792073697a652e207669626573206d616b60b08201527f6520746865697220636f6c6f722070616c6574746520617661696c61626c652060d08201527f6f6e20636861696e2c20736f206665656c206672656520746f2063617272792060f08201527f796f757220636f6c6f7273207769746820796f75206f6e20796f7572206164766101108201527432b73a3ab932b9971116101134b6b0b3b2911d101160591b61013082015261383d6101458201856138c6565b63281ead9160e11b8152815160009061420f81600485016020870161444d565b61088b60f21b6004939091019283015250600601919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061425b9083018461389a565b9695505050505050565b602081526000612449602083018461389a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e1a5b9d985b1a59081d1bdad95b9259608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8281526040602082015260006121f9604083018461389a565b604051601f8201601f1916810167ffffffffffffffff811182821017156143bb576143bb614552565b604052919050565b600067ffffffffffffffff8211156143dd576143dd614552565b50601f01601f191660200190565b600082198211156143fe576143fe6144fa565b500190565b60008261441257614412614510565b500490565b6000816000190483118215151615614431576144316144fa565b500290565b600082821015614448576144486144fa565b500390565b60005b83811015614468578181015183820152602001614450565b838111156118565750506000910152565b600081614488576144886144fa565b506000190190565b600181811c908216806144a457607f821691505b602082108114156144c557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156144df576144df6144fa565b5060010190565b6000826144f5576144f5614510565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611bb057600080fd5b6001600160e01b031981168114611bb057600080fdfe3c2f7363726970743e3c2f686561643e3c626f64793e3c2f626f64793e3c2f68746d6c3e3c21646f63747970652068746d6c3e3c68746d6c3e3c686561643e3c7363726970743e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220553cd8e6a1f89ccf53271ac99799e3d21130ba1d83156e08546f59670d720b6964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063555083cd1161011a57806397ef6221116100ad578063c044c8361161007c578063c044c83614610421578063c87b56dd14610435578063e985e9c514610448578063f2fde38b14610484578063f3b67c631461049757600080fd5b806397ef6221146103e0578063a22cb465146103e8578063b88d4fde146103fb578063b93814221461040e57600080fd5b8063715018a6116100e9578063715018a6146103ab5780637ebdccd4146103b35780638da5cb5b146103c757806395d89b41146103d857600080fd5b8063555083cd1461036a5780636352211e1461037d5780636b4b10681461039057806370a082311461039857600080fd5b80632a55205a116101925780633ccfd60b116101615780633ccfd60b1461032957806342842e0e146103315780634f6ccce7146103445780635379522f1461035757600080fd5b80632a55205a146102c85780632f4c8375146102fa5780632f745c591461030257806331f9c9191461031557600080fd5b80630d2579ff116101ce5780630d2579ff1461027d57806318160ddd14610290578063201ffc12146102a257806323b872dd146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e36600461374c565b61049f565b60405190151581526020015b60405180910390f35b6102306104b0565b60405161021f9190614265565b61025061024b366004613846565b610542565b6040516001600160a01b03909116815260200161021f565b61027b610276366004613637565b6105dc565b005b61027b61028b3660046134fa565b6106f2565b6008545b60405190815260200161021f565b6102306102b0366004613846565b61073e565b61027b6102c3366004613548565b610b7c565b6102db6102d6366004613878565b610bad565b604080516001600160a01b03909316835260208301919091520161021f565b61027b610be7565b610294610310366004613637565b610c32565b600f5461021390600160a01b900460ff1681565b61027b610cc8565b61027b61033f366004613548565b610d41565b610294610352366004613846565b610d5c565b610230610365366004613878565b610def565b61027b610378366004613786565b611380565b61025061038b366004613846565b6113bd565b61027b611434565b6102946103a63660046134fa565b61147f565b61027b611506565b600f5461021390600160b01b900460ff1681565b600d546001600160a01b0316610250565b61023061153c565b61027b61154b565b61027b6103f6366004613600565b61175f565b61027b610409366004613584565b611824565b61027b61041c3660046134fa565b61185c565b600f5461021390600160a81b900460ff1681565b610230610443366004613846565b6118a8565b610213610456366004613515565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61027b6104923660046134fa565b611b18565b61027b611bb3565b60006104aa82611bfe565b92915050565b6060600080546104bf90614490565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90614490565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105e7826113bd565b9050806001600160a01b0316836001600160a01b031614156106555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b7565b336001600160a01b038216148061067157506106718133610456565b6106e35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b7565b6106ed8383611c23565b505050565b600d546001600160a01b0316331461071c5760405162461bcd60e51b81526004016105b7906142f3565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611e6182116107615760405162461bcd60e51b81526004016105b7906142ca565b60085461077090611e616143eb565b82111561078f5760405162461bcd60e51b81526004016105b7906142ca565b610797613383565b6107a083611c91565b81526107ab83611cac565b60608201526107b983611d74565b60808201526107c783611e39565b60a08201526107d583612064565b60c08201526107e3836120b7565b60e0820152604080516060810190915260238082526145b160208301396101008201515280516040516108199190602001613f0d565b60408051808303601f19018152918152610100830151602090810192909252608083015190516108499201613ed5565b60408051808303601f1901815291815261010083015181019190915260a08201519051610879919060200161401c565b60408051808303601f190181529181526101008301516060019190915260c082015190516108aa9190602001613ffd565b60408051808303601f190181529181526101008301516080019190915260e082015190516108db9190602001613f2c565b60408051808303601f1901815291905261010082015160a0015260608060005b60068110156109f35783606001518110156109215761091a8682610def565b9250610934565b6040518060200160405280600081525092505b80610960578260405160200161094a91906141ef565b60405160208183030381529060405291506109b9565b600184606001516109719190614436565b811015610989578260405160200161094a9190613f4b565b83606001518110156109a6578260405160200161094a9190613f81565b6040518060200160405280600081525091505b61010084015182906109cc8360066143eb565b600e81106109dc576109dc61453c565b6020020152806109eb816144cb565b9150506108fb565b600e60009054906101000a90046001600160a01b03166001600160a01b031663620b73036040518163ffffffff1660e01b815260040160006040518083038186803b158015610a4157600080fd5b505afa158015610a55573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a7d91908101906137cf565b61010085015161018001526040805160608101909152602480825261458d6020830139610100850180516101a001919091525180516020828101516040808501516060860151608087015160a088015160c0909801519351600098610aed989794959394929390929091016139fc565b6040516020818303038152906040529050808561010001516007600e8110610b1757610b1761453c565b6020908102919091015161010088810151908101516101208201516101408301516101608401516101808501516101a090950151604051610b619998959694959394929301613a8e565b60405160208183030381529060405295505050505050919050565b610b86338261210a565b610ba25760405162461bcd60e51b81526004016105b790614328565b6106ed838383612201565b600a54600b5460009182916001600160a01b039091169061271090610bd29086614417565b610bdc9190614403565b915091509250929050565b600d546001600160a01b03163314610c115760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000610c3d8361147f565b8210610c9f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03163314610cf25760405162461bcd60e51b81526004016105b7906142f3565b47610d05600d546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610d3d573d6000803e3d6000fd5b5050565b6106ed83838360405180602001604052806000815250611824565b6000610d6760085490565b8210610dca5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b7565b60088281548110610ddd57610ddd61453c565b90600052602060002001549050919050565b6060610e3f60405180610100016040528060608152602001606081526020016000815260200160001515815260200160001515815260200160001515815260200160608152602001600081525090565b610e4884611cac565b60e0820181905283101580610e5f5750611e618411155b80610e775750600854610e7490611e616143eb565b84115b15610e9e5750506040805180820190915260048152631b9d5b1b60e21b60208201526104aa565b600f546001600160a01b03166345e5c45a610eb8866123ac565b6040518263ffffffff1660e01b8152600401610ed49190614265565b60006040518083038186803b158015610eec57600080fd5b505afa158015610f00573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f289190810190613661565b151560a0860152151560808501521515606084015260408301528152600080808080600c604051908082528060200260200182016040528015610f75578160200160208202803683370190505b5060208701526060860151156110ba5761101889600e60009054906101000a90046001600160a01b03166001600160a01b031663db5041eb6040518163ffffffff1660e01b815260040160006040518083038186803b158015610fd757600080fd5b505afa158015610feb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261101391908101906137cf565b612425565b935085604001518461102a91906144e6565b9250600094505b85604001518510156110b55761104785846143eb565b9150856040015182106110665760408601516110639083614436565b91505b855180518390811061107a5761107a61453c565b6020026020010151866020015186815181106110985761109861453c565b6020908102919091010152846110ad816144cb565b955050611031565b61127a565b85608001511561121a575060408501515b80156111ba57600e548190611119908b906001600160a01b0316639daca0096110f385612450565b6040516020016111059392919061397c565b604051602081830303815290604052612425565b61112391906144e6565b9450611130600182614436565b9050856000015181815181106111485761114861453c565b60200260200101519350856000015185815181106111685761116861453c565b6020026020010151866000015182815181106111865761118661453c565b60200260200101818152505083866000015186815181106111a9576111a961453c565b6020026020010181815250506110cb565b600094505b85604001518510156110b55785518051869081106111df576111df61453c565b6020026020010151866020015186815181106111fd576111fd61453c565b602090810291909101015284611212816144cb565b9550506111bf565b600094505b856040015185101561127a57855180518690811061123f5761123f61453c565b60200260200101518660200151868151811061125d5761125d61453c565b602090810291909101015284611272816144cb565b95505061121f565b8560a00151156112c2576112bb866020015187604001518a61129c91906144e6565b815181106112ac576112ac61453c565b60200260200101518a8a61254e565b93506112f3565b856040015188106112d7576112bb8989612896565b6112f0866020015189815181106112ac576112ac61453c565b93505b600e54604051630dc42e0b60e21b8152600481018690526001600160a01b0390911690633710b82c9060240160006040518083038186803b15801561133757600080fd5b505afa15801561134b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261137391908101906137cf565b9998505050505050505050565b600d546001600160a01b031633146113aa5760405162461bcd60e51b81526004016105b7906142f3565b8051610d3d9060109060208401906133d4565b6000818152600260205260408120546001600160a01b0316806104aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b7565b600d546001600160a01b0316331461145e5760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60006001600160a01b0382166114ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b7565b506001600160a01b031660009081526003602052604090205490565b600d546001600160a01b031633146115305760405162461bcd60e51b81526004016105b7906142f3565b61153a60006128c9565b565b6060600180546104bf90614490565b6002600c54141561159e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b7565b6002600c5560006115ae60085490565b6115ba90611e616143eb565b905060006115c98260016143eb565b600f549091503390600160a01b900460ff166116315760405162461bcd60e51b815260206004820152602160248201527f676d206672656e2e206d696e74696e67206f70656e20766962657320736f6f6e6044820152601760f91b60648201526084016105b7565b6001600160a01b03811660009081526012602052604090205460ff16156116a95760405162461bcd60e51b815260206004820152602660248201527f77686f61206672656e2e206d61782031206f70656e207669626520706572207760448201526530b63632ba1760d11b60648201526084016105b7565b6116b76108ae611e616143eb565b8211156117105760405162461bcd60e51b815260206004820152602160248201527f676e206672656e2e206f6e6c7920736f206d616e79206f70656e2076696265736044820152601760f91b60648201526084016105b7565b6001600160a01b0381166000908152601260205260409020805460ff1916600117905561173c8261291b565b6000838152601160205260409020556117558183612960565b50506001600c5550565b6001600160a01b0382163314156117b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61182e338361210a565b61184a5760405162461bcd60e51b81526004016105b790614328565b6118568484848461297a565b50505050565b600d546001600160a01b031633146118865760405162461bcd60e51b81526004016105b7906142f3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611e6182116118cb5760405162461bcd60e51b81526004016105b7906142ca565b6008546118da90611e616143eb565b8211156118f95760405162461bcd60e51b81526004016105b7906142ca565b611901613383565b61190a836129ad565b6020820152611918836123ac565b604082015261192683611cac565b606082015261193483611d74565b608082015261194283611e39565b60a082015261195083612064565b60c082015261195e836120b7565b60e08201526000601061197085612450565b604051602001611981929190613ea1565b6040516020818303038152906040529050600061199d85612450565b826040516020016119af92919061403b565b60408051808303601f19018152919052600f54909150600160b01b900460ff1615611a135760006119df8661073e565b9050816119eb82612a00565b6040516020016119fc929190613b33565b604051602081830303815290604052915050611a72565b600f54600160a81b900460ff1615611a7257806010611a3187612450565b604051602001611a42929190613e6c565b60408051601f1981840301815290829052611a609291602001613e1c565b60405160208183030381529060405290505b8083602001518460400151611a8a8660600151612450565b8660800151604051602001611aa3959493929190613cb3565b60408051601f198184030181529082905260a085015160c086015160e0870151929450611ad593859390602001613ba0565b6040516020818303038152906040529050611aef81612a00565b604051602001611aff9190613fb8565b6040516020818303038152906040529350505050919050565b600d546001600160a01b03163314611b425760405162461bcd60e51b81526004016105b7906142f3565b6001600160a01b038116611ba75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b7565b611bb0816128c9565b50565b600d546001600160a01b03163314611bdd5760405162461bcd60e51b81526004016105b7906142f3565b600f805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b0319821663152a902d60e11b14806104aa57506104aa82612b66565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c58826113bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152601160205260409020546060906104aa90612b8b565b600e546040805163677f3c8d60e11b815290516000926001600160a01b031691634691ed7f91611cfe918691859163cefe791a916004808301928a929190829003018186803b158015610fd757600080fd5b611d0785611d74565b6040518363ffffffff1660e01b8152600401611d24929190614379565b60206040518083038186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104aa919061385f565b600e546040805163784a0b8f60e11b815290516060926001600160a01b03169163e99b68fa91611dc7918691859163f094171e916004808301926000929190829003018186803b158015610fd757600080fd5b6040518263ffffffff1660e01b8152600401611de591815260200190565b60006040518083038186803b158015611dfd57600080fd5b505afa158015611e11573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104aa91908101906137cf565b6060806000611e4784611d74565b90506000611e5485611cac565b90506000611eaa86600e60009054906101000a90046001600160a01b03166001600160a01b031663a74218976040518163ffffffff1660e01b815260040160006040518083038186803b158015610fd757600080fd5b905060058210158015611f4b5750611f4b83600e60009054906101000a90046001600160a01b03166001600160a01b031663dbde8f296040518163ffffffff1660e01b815260040160006040518083038186803b158015611f0a57600080fd5b505afa158015611f1e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f4691908101906137cf565b612bdf565b15611fd757600e54604051636f6c1a5b60e11b8152600481018390526001600160a01b039091169063ded834b69060240160006040518083038186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fd091908101906137cf565b935061205a565b600e5460405163647717a160e11b8152600481018390526001600160a01b039091169063c8ee2f429060240160006040518083038186803b15801561201b57600080fd5b505afa15801561202f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261205791908101906137cf565b93505b5091949350505050565b600e54604080516390f0e06760e01b815290516060926001600160a01b031691636451579391611dc791869185916390f0e067916004808301926000929190829003018186803b158015610fd757600080fd5b600e5460408051630355d62960e11b815290516060926001600160a01b031691633bc6592191611dc791869185916306abac52916004808301926000929190829003018186803b158015610fd757600080fd5b6000818152600260205260408120546001600160a01b03166121835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b7565b600061218e836113bd565b9050806001600160a01b0316846001600160a01b031614806121c95750836001600160a01b03166121be84610542565b6001600160a01b0316145b806121f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612214826113bd565b6001600160a01b03161461227c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b7565b6001600160a01b0382166122de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b7565b6122e9838383612c38565b6122f4600082611c23565b6001600160a01b038316600090815260036020526040812080546001929061231d908490614436565b90915550506001600160a01b038216600090815260036020526040812080546001929061234b9084906143eb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e54604080516302eb5e2f60e11b815290516060926001600160a01b03169163d4ceff4a916123ff91869185916305d6bc5e916004808301926000929190829003018186803b158015610fd757600080fd5b612408856129ad565b6040518363ffffffff1660e01b8152600401611de5929190614379565b60006103e86124348484612cf0565b61243e91906144e6565b6124499060016143eb565b9392505050565b6060816124745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249e5780612488816144cb565b91506124979050600a83614403565b9150612478565b60008167ffffffffffffffff8111156124b9576124b9614552565b6040519080825280601f01601f1916602001820160405280156124e3576020820181803683370190505b5090505b84156121f9576124f8600183614436565b9150612505600a866144e6565b6125109060306143eb565b60f81b8183815181106125255761252561453c565b60200101906001600160f81b031916908160001a905350612547600a86614403565b94506124e7565b600061259f6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b60ff601086901c81168252600886811c821660208401529086166040830152600e546126049086906001600160a01b03166380441b916125de88612450565b6040516020016125f09392919061397c565b604051602081830303815290604052612cf0565b61260e91906144e6565b6060820152600e546008906126369086906001600160a01b031663f1b49c296125de88612450565b61264091906144e6565b6080820152600e546008906126689086906001600160a01b031663909614a46125de88612450565b61267291906144e6565b60a0820152600e5460029061269a9086906001600160a01b031663b2795cc76125de88612450565b6126a491906144e6565b60c0820152600e546002906126cc9086906001600160a01b0316630e19bd7d6125de88612450565b6126d691906144e6565b60e0820152600e546002906126fe9086906001600160a01b03166395b342466125de88612450565b61270891906144e6565b61010082015260c08101516127495760608101518151111561274057606081015181518290612738908390614436565b90525061277a565b6000815261277a565b6060810151815160ff9161275c916143eb565b11612775576060810151815182906127389083906143eb565b60ff81525b60e08101516127bd578060800151816020015111156127b1578060800151816020018181516127a99190614436565b9052506127f6565b600060208201526127f6565b60ff816080015182602001516127d391906143eb565b116127ee578060800151816020018181516127a991906143eb565b60ff60208201525b61010081015161283a578060a001518160400151111561282e578060a00151816040018181516128269190614436565b905250612873565b60006040820152612873565b60ff8160a00151826040015161285091906143eb565b1161286b578060a001518160400181815161282691906143eb565b60ff60408201525b806040015160088260200151901b60108360000151901b17179150509392505050565b600e546000906301000000906128bf9085906001600160a01b031663fd9babb06125de87612450565b61244991906144e6565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612929600143614436565b61293460ff856144e6565b61293e91906144e6565b9050600061294d8260016143eb565b6129579043614436565b40949350505050565b610d3d828260405180602001604052806000815250612d48565b612985848484612201565b61299184848484612d7b565b6118565760405162461bcd60e51b81526004016105b790614278565b600e5460408051635c95055960e11b815290516060926001600160a01b031691631f36a73e91611dc7918691859163b92a0ab2916004808301926000929190829003018186803b158015610fd757600080fd5b805160609080612a20575050604080516020810190915260008152919050565b60006003612a2f8360026143eb565b612a399190614403565b612a44906004614417565b90506000612a538260206143eb565b67ffffffffffffffff811115612a6b57612a6b614552565b6040519080825280601f01601f191660200182016040528015612a95576020820181803683370190505b50905060006040518060600160405280604081526020016145d4604091399050600181016020830160005b86811015612b21576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ac0565b506003860660018114612b3b5760028114612b4c57612b58565b613d3d60f01b600119830152612b58565b603d60f81b6000198301525b505050918152949350505050565b60006001600160e01b0319821663780e9d6360e01b14806104aa57506104aa82612e88565b606081612bb25750506040805180820190915260048152630307830360e41b602082015290565b8160005b8115612bd55780612bc6816144cb565b915050600882901c9150612bb6565b6121f98482612ed8565b600081604051602001612bf291906139b1565b6040516020818303038152906040528051906020012083604051602001612c1991906139b1565b6040516020818303038152906040528051906020012014905092915050565b6001600160a01b038316612c9357612c8e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cb6565b816001600160a01b0316836001600160a01b031614612cb657612cb68382613074565b6001600160a01b038216612ccd576106ed81613111565b826001600160a01b0316826001600160a01b0316146106ed576106ed82826131c0565b600080612cfc84611c91565b9050600083612d0a86612450565b604051602001612d1b9291906139cd565b6040516020818303038152906040529050612d3581613204565b612d3e83613204565b1895945050505050565b612d528383613235565b612d5f6000848484612d7b565b6106ed5760405162461bcd60e51b81526004016105b790614278565b60006001600160a01b0384163b15612e7d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbf903390899088908890600401614228565b602060405180830381600087803b158015612dd957600080fd5b505af1925050508015612e09575060408051601f3d908101601f19168201909252612e0691810190613769565b60015b612e63573d808015612e37576040519150601f19603f3d011682016040523d82523d6000602084013e612e3c565b606091505b508051612e5b5760405162461bcd60e51b81526004016105b790614278565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121f9565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b1480612eb957506001600160e01b03198216635b5e139f60e01b145b806104aa57506301ffc9a760e01b6001600160e01b03198316146104aa565b60606000612ee7836002614417565b612ef29060026143eb565b67ffffffffffffffff811115612f0a57612f0a614552565b6040519080825280601f01601f191660200182016040528015612f34576020820181803683370190505b509050600360fc1b81600081518110612f4f57612f4f61453c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612f7e57612f7e61453c565b60200101906001600160f81b031916908160001a9053506000612fa2846002614417565b612fad9060016143eb565b90505b6001811115613025576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612fe157612fe161453c565b1a60f81b828281518110612ff757612ff761453c565b60200101906001600160f81b031916908160001a90535060049490941c9361301e81614479565b9050612fb0565b5083156124495760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105b7565b600060016130818461147f565b61308b9190614436565b6000838152600760205260409020549091508082146130de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061312390600190614436565b6000838152600960205260408120546008805493945090928490811061314b5761314b61453c565b90600052602060002001549050806008838154811061316c5761316c61453c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806131a4576131a4614526565b6001900381819060005260206000200160009055905550505050565b60006131cb8361147f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008160405160200161321791906139b1565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b03821661328b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b7565b6000818152600260205260409020546001600160a01b0316156132f05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b7565b6132fc60008383612c38565b6001600160a01b03821660009081526003602052604081208054600192906133259084906143eb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180610120016040528060608152602001606081526020016060815260200160008152602001606081526020016060815260200160608152602001606081526020016133cf613458565b905290565b8280546133e090614490565b90600052602060002090601f0160209004810192826134025760008555613448565b82601f1061341b57805160ff1916838001178555613448565b82800160010185558215613448579182015b8281111561344857825182559160200191906001019061342d565b50613454929150613480565b5090565b604051806101c00160405280600e905b60608152602001906001900390816134685790505090565b5b808211156134545760008155600101613481565b60006134a86134a3846143c3565b614392565b90508281528383830111156134bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146134ea57600080fd5b919050565b80516134ea81614568565b60006020828403121561350c57600080fd5b612449826134d3565b6000806040838503121561352857600080fd5b613531836134d3565b915061353f602084016134d3565b90509250929050565b60008060006060848603121561355d57600080fd5b613566846134d3565b9250613574602085016134d3565b9150604084013590509250925092565b6000806000806080858703121561359a57600080fd5b6135a3856134d3565b93506135b1602086016134d3565b925060408501359150606085013567ffffffffffffffff8111156135d457600080fd5b8501601f810187136135e557600080fd5b6135f487823560208401613495565b91505092959194509250565b6000806040838503121561361357600080fd5b61361c836134d3565b9150602083013561362c81614568565b809150509250929050565b6000806040838503121561364a57600080fd5b613653836134d3565b946020939093013593505050565b600080600080600060a0868803121561367957600080fd5b855167ffffffffffffffff8082111561369157600080fd5b818801915088601f8301126136a557600080fd5b81516020828211156136b9576136b9614552565b8160051b92506136ca818401614392565b8281528181019085830185870184018e10156136e557600080fd5b600096505b848710156137085780518352600196909601959183019183016136ea565b50809a505050808a0151975050505050613724604087016134ef565b9250613732606087016134ef565b9150613740608087016134ef565b90509295509295909350565b60006020828403121561375e57600080fd5b813561244981614576565b60006020828403121561377b57600080fd5b815161244981614576565b60006020828403121561379857600080fd5b813567ffffffffffffffff8111156137af57600080fd5b8201601f810184136137c057600080fd5b6121f984823560208401613495565b6000602082840312156137e157600080fd5b815167ffffffffffffffff8111156137f857600080fd5b8201601f8101841361380957600080fd5b80516138176134a3826143c3565b81815285602083850101111561382c57600080fd5b61383d82602083016020860161444d565b95945050505050565b60006020828403121561385857600080fd5b5035919050565b60006020828403121561387157600080fd5b5051919050565b6000806040838503121561388b57600080fd5b50508035926020909101359150565b600081518084526138b281602086016020860161444d565b601f01601f19169290920160200192915050565b600081516138d881856020860161444d565b9290920192915050565b8054600090600181811c90808316806138fc57607f831692505b602080841082141561391e57634e487b7160e01b600052602260045260246000fd5b818015613932576001811461394357613970565b60ff19861689528489019650613970565b60008881526020902060005b868110156139685781548b82015290850190830161394f565b505084890196505b50505050505092915050565b63ffffffff83168460201b1760401b8152600082516139a281601885016020870161444d565b91909101601801949350505050565b600082516139c381846020870161444d565b9190910192915050565b600083516139df81846020880161444d565b8351908301906139f381836020880161444d565b01949350505050565b600088516020613a0f8285838e0161444d565b895191840191613a228184848e0161444d565b8951920191613a348184848d0161444d565b8851920191613a468184848c0161444d565b8751920191613a588184848b0161444d565b8651920191613a6a8184848a0161444d565b8551920191613a7c818484890161444d565b919091019a9950505050505050505050565b600089516020613aa18285838f0161444d565b8a5191840191613ab48184848f0161444d565b8a51920191613ac68184848e0161444d565b8951920191613ad88184848d0161444d565b8851920191613aea8184848c0161444d565b8751920191613afc8184848b0161444d565b8651920191613b0e8184848a0161444d565b8551920191613b20818484890161444d565b919091019b9a5050505050505050505050565b60008351613b4581846020880161444d565b80830190507f222c2022616e696d6174696f6e5f75726c223a2022646174613a746578742f6881526a1d1b5b0ed8985cd94d8d0b60aa1b60208201528351613b9481602b84016020880161444d565b01602b01949350505050565b60008551613bb2818460208a0161444d565b80830190507f22207d2c207b202274726169745f74797065223a202267726176697479222c20815269113b30b63ab2911d101160b11b8060208301528651613c0181602a850160208b0161444d565b7f22207d2c207b202274726169745f74797065223a2022677261696e222c202276602a93909101928301526730b63ab2911d101160c11b604a8301528551613c50816052850160208a0161444d565b7f22207d2c207b202274726169745f74797065223a2022646973706c6179222c206052939091019283015260728201528351613c9381607c84016020880161444d565b6422207d5d7d60d81b607c92909101918201526081019695505050505050565b60008651613cc5818460208b0161444d565b80830190507f222c202261747472696275746573223a205b7b202274726169745f747970652281527f3a2022656c656d656e74222c202276616c7565223a202200000000000000000060208201528651613d26816037840160208b0161444d565b7f22207d2c207b202274726169745f74797065223a202270616c65747465222c206037929091019182015269113b30b63ab2911d101160b11b60578201528551613d77816061840160208a0161444d565b7f22207d2c207b202274726169745f74797065223a2022636f6c6f7273222c202260619290910191820152683b30b63ab2911d101160b91b60818201528451613dc781608a84016020890161444d565b7f22207d2c207b202274726169745f74797065223a20227374796c65222c202276608a92909101918201526730b63ab2911d101160c11b60aa820152613e1060b28201856138c6565b98975050505050505050565b60008351613e2e81846020880161444d565b741116101130b734b6b0ba34b7b72fbab936111d101160591b9083019081528351613e6081601584016020880161444d565b01601501949350505050565b6000613e7882856138e2565b8351613e8881836020880161444d565b640b9a1d1b5b60da1b9101908152600501949350505050565b6000613ead82856138e2565b8351613ebd81836020880161444d565b632e6a706760e01b9101908152600401949350505050565b622c9e9160e91b81528151600090613ef481600385016020870161444d565b61223b60f01b6003939091019283015250600501919050565b62241e9160e91b81528151600090613ef481600385016020870161444d565b62221e9160e91b81528151600090613ef481600385016020870161444d565b601160f91b81528151600090613f6881600185016020870161444d565b61088b60f21b6001939091019283015250600301919050565b601160f91b81528151600090613f9e81600185016020870161444d565b62225d3b60e81b6001939091019283015250600401919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613ff081601d85016020870161444d565b91909101601d0192915050565b62209e9160e91b81528151600090613ef481600385016020870161444d565b62239e9160e91b81528151600090613ef481600385016020870161444d565b6f7b226e616d65223a202276696265202360801b8152825160009061406781601085016020880161444d565b7f222c20226465736372697074696f6e223a2022766962657320697320612067656010918401918201527f6e657261746976652061727420636f6c6c656374696f6e2c2072616e646f6d6c60308201527f79206372656174656420616e642073746f726564206f6e20636861696e2e206560508201527f61636820746f6b656e20697320616e20696e7465726163746976652068746d6c60708201527f2070616765207468617420616c6c6f777320796f7520746f2072656e6465722060908201527f796f7572207669626520617420616e792073697a652e207669626573206d616b60b08201527f6520746865697220636f6c6f722070616c6574746520617661696c61626c652060d08201527f6f6e20636861696e2c20736f206665656c206672656520746f2063617272792060f08201527f796f757220636f6c6f7273207769746820796f75206f6e20796f7572206164766101108201527432b73a3ab932b9971116101134b6b0b3b2911d101160591b61013082015261383d6101458201856138c6565b63281ead9160e11b8152815160009061420f81600485016020870161444d565b61088b60f21b6004939091019283015250600601919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061425b9083018461389a565b9695505050505050565b602081526000612449602083018461389a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e1a5b9d985b1a59081d1bdad95b9259608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8281526040602082015260006121f9604083018461389a565b604051601f8201601f1916810167ffffffffffffffff811182821017156143bb576143bb614552565b604052919050565b600067ffffffffffffffff8211156143dd576143dd614552565b50601f01601f191660200190565b600082198211156143fe576143fe6144fa565b500190565b60008261441257614412614510565b500490565b6000816000190483118215151615614431576144316144fa565b500290565b600082821015614448576144486144fa565b500390565b60005b83811015614468578181015183820152602001614450565b838111156118565750506000910152565b600081614488576144886144fa565b506000190190565b600181811c908216806144a457607f821691505b602082108114156144c557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156144df576144df6144fa565b5060010190565b6000826144f5576144f5614510565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611bb057600080fd5b6001600160e01b031981168114611bb057600080fdfe3c2f7363726970743e3c2f686561643e3c626f64793e3c2f626f64793e3c2f68746d6c3e3c21646f63747970652068746d6c3e3c68746d6c3e3c686561643e3c7363726970743e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220553cd8e6a1f89ccf53271ac99799e3d21130ba1d83156e08546f59670d720b6964736f6c63430008070033

Deployed Bytecode Sourcemap

49001:16359:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64381:251;;;;;;:::i;:::-;;:::i;:::-;;;26118:14:1;;26111:22;26093:41;;26081:2;26066:18;64381:251:0;;;;;;;;30588:100;;;:::i;:::-;;;;;;;:::i;32147:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;25137:32:1;;;25119:51;;25107:2;25092:18;32147:221:0;24973:203:1;31670:411:0;;;;;;:::i;:::-;;:::i;:::-;;50764:87;;;;;;:::i;:::-;;:::i;43220:113::-;43308:10;:17;43220:113;;;35582:25:1;;;35570:2;35555:18;43220:113:0;35436:177:1;58775:2215:0;;;;;;:::i;:::-;;:::i;33037:339::-;;;;;;:::i;:::-;;:::i;16428:241::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;25866:32:1;;;25848:51;;25930:2;25915:18;;25908:34;;;;25821:18;16428:241:0;25674:274:1;64013:112:0;;;:::i;42888:256::-;;;;;;:::i;:::-;;:::i;49193:33::-;;;;;-1:-1:-1;;;49193:33:0;;;;;;64233:140;;;:::i;33447:185::-;;;;;;:::i;:::-;;:::i;43410:233::-;;;;;;:::i;:::-;;:::i;51343:2366::-;;;;;;:::i;:::-;;:::i;64133:92::-;;;;;;:::i;:::-;;:::i;30282:239::-;;;;;;:::i;:::-;;:::i;63914:91::-;;;:::i;30012:208::-;;;;;;:::i;:::-;;:::i;11769:103::-;;;:::i;49272:39::-;;;;;-1:-1:-1;;;49272:39:0;;;;;;11118:87;11191:6;;-1:-1:-1;;;;;11191:6:0;11118:87;;30757:104;;;:::i;63179:632::-;;;:::i;32440:295::-;;;;;;:::i;:::-;;:::i;33703:328::-;;;;;;:::i;:::-;;:::i;50859:105::-;;;;;;:::i;:::-;;:::i;49233:32::-;;;;;-1:-1:-1;;;49233:32:0;;;;;;60998:2173;;;;;;:::i;:::-;;:::i;32806:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32927:25:0;;;32903:4;32927:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32806:164;12027:201;;;;;;:::i;:::-;;:::i;63819:87::-;;;:::i;64381:251::-;64559:4;64588:36;64612:11;64588:23;:36::i;:::-;64581:43;64381:251;-1:-1:-1;;64381:251:0:o;30588:100::-;30642:13;30675:5;30668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30588:100;:::o;32147:221::-;32223:7;35630:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35630:16:0;32243:73;;;;-1:-1:-1;;;32243:73:0;;32861:2:1;32243:73:0;;;32843:21:1;32900:2;32880:18;;;32873:30;32939:34;32919:18;;;32912:62;-1:-1:-1;;;32990:18:1;;;32983:42;33042:19;;32243:73:0;;;;;;;;;-1:-1:-1;32336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32336:24:0;;32147:221::o;31670:411::-;31751:13;31767:23;31782:7;31767:14;:23::i;:::-;31751:39;;31815:5;-1:-1:-1;;;;;31809:11:0;:2;-1:-1:-1;;;;;31809:11:0;;;31801:57;;;;-1:-1:-1;;;31801:57:0;;34045:2:1;31801:57:0;;;34027:21:1;34084:2;34064:18;;;34057:30;34123:34;34103:18;;;34096:62;-1:-1:-1;;;34174:18:1;;;34167:31;34215:19;;31801:57:0;33843:397:1;31801:57:0;10065:10;-1:-1:-1;;;;;31893:21:0;;;;:62;;-1:-1:-1;31918:37:0;31935:5;10065:10;32806:164;:::i;31918:37::-;31871:168;;;;-1:-1:-1;;;31871:168:0;;30503:2:1;31871:168:0;;;30485:21:1;30542:2;30522:18;;;30515:30;30581:34;30561:18;;;30554:62;30652:26;30632:18;;;30625:54;30696:19;;31871:168:0;30301:420:1;31871:168:0;32052:21;32061:2;32065:7;32052:8;:21::i;:::-;31740:341;31670:411;;:::o;50764:87::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;50822:7:::1;:21:::0;;-1:-1:-1;;;;;;50822:21:0::1;-1:-1:-1::0;;;;;50822:21:0;;;::::1;::::0;;;::::1;::::0;;50764:87::o;58775:2215::-;58834:13;49464:4;58868:7;:25;58860:53;;;;-1:-1:-1;;;58860:53:0;;;;;;;:::i;:::-;43308:10;:17;58943:37;;49464:4;58943:37;:::i;:::-;58932:7;:48;;58924:76;;;;-1:-1:-1;;;58924:76:0;;;;;;;:::i;:::-;59013:21;;:::i;:::-;59064:23;59079:7;59064:14;:23::i;:::-;59045:42;;59116:22;59130:7;59116:13;:22::i;:::-;59098:15;;;:40;59162:17;59171:7;59162:8;:17::i;:::-;59149:10;;;:30;59205:19;59216:7;59205:10;:19::i;:::-;59190:12;;;:34;59248:17;59257:7;59248:8;:17::i;:::-;59235:10;;;:30;59291:19;59302:7;59291:10;:19::i;:::-;59276:12;;;:34;59323:52;;;;;;;;;;;;;;;;;;:9;;;;:52;59432:16;;59408:47;;;;59432:16;59323:12;59408:47;;:::i;:::-;;;;;;;-1:-1:-1;;59408:47:0;;;;;;59386:9;;;;:12;;;;:70;;;;59513:10;;;;59489:41;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;59489:41:0;;;;;;59467:9;;;;:12;;:64;;;;59588:12;;;;59564:43;;;;59588:12;59467;59564:43;;:::i;:::-;;;;;;;-1:-1:-1;;59564:43:0;;;;;;59542:9;;;;:12;;:66;;;;59665:10;;;;59641:41;;;;59665:10;59542:12;59641:41;;:::i;:::-;;;;;;;-1:-1:-1;;59641:41:0;;;;;;59619:9;;;;:12;;:64;;;;59740:12;;;;59716:43;;;;59740:12;59619;59716:43;;:::i;:::-;;;;;;;-1:-1:-1;;59716:43:0;;;;;;59694:9;;;;:12;;:66;-1:-1:-1;;59844:9:0;59864:696;59880:1;59876;:5;59864:696;;;59911:4;:15;;;59907:1;:19;59903:158;;;59961:27;59977:7;59986:1;59961:15;:27::i;:::-;59947:41;;59903:158;;;60029:16;;;;;;;;;;;;;;59903:158;60081:6;60077:426;;60153:11;60128:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;60108:64;;60077:426;;;60220:1;60202:4;:15;;;:19;;;;:::i;:::-;60198:1;:23;60194:309;;;60284:11;60262:40;;;;;;;;:::i;60194:309::-;60333:4;:15;;;60329:1;:19;60325:178;;;60411:11;60389:41;;;;;;;;:::i;60325:178::-;60472:15;;;;;;;;;;;;;;60325:178;60519:9;;;;60538:10;;60529:5;60533:1;60529;:5;:::i;:::-;60519:16;;;;;;;:::i;:::-;;;;:29;59883:3;;;;:::i;:::-;;;;59864:696;;;60588:7;;;;;;;;;-1:-1:-1;;;;;60588:7:0;-1:-1:-1;;;;;60588:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60588:19:0;;;;;;;;;;;;:::i;:::-;60572:9;;;;:13;;:35;60618:54;;;;;;;;;;;;;;60572:13;60618:54;;;:9;;;;;:13;;:54;;;;60732:9;:12;;60618:13;60746:12;;;;60760;;;;;60774;;;;60788;;;;60802;;;;60816;;;;;60715:114;;60685:20;;60715:114;;60732:12;60760;;60774;;60788;;60802;;60816;;60715:114;;:::i;:::-;;;;;;;;;;;;;60685:145;;60872:6;60880:4;:9;;;60890:1;60880:12;;;;;;;:::i;:::-;;;;;;;;;;60894:9;;;;;:12;;;;60908;;;;60922:13;;;;60937;;;;60952;;;;60967;;;;;60855:126;;;;;60894:12;;60908;;60922:13;;60937;;60855:126;;:::i;:::-;;;;;;;;;;;;;60841:141;;;;;;;58775:2215;;;:::o;33037:339::-;33232:41;10065:10;33265:7;33232:18;:41::i;:::-;33224:103;;;;-1:-1:-1;;;33224:103:0;;;;;;;:::i;:::-;33340:28;33350:4;33356:2;33360:7;33340:9;:28::i;16428:241::-;16606:19;;16636:15;;16541:16;;;;-1:-1:-1;;;;;16606:19:0;;;;16655:5;;16628:23;;:5;:23;:::i;:::-;16627:33;;;;:::i;:::-;16598:63;;;;16428:241;;;;;:::o;64013:112::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;64098:19:::1;::::0;;-1:-1:-1;;;;64075:42:0;::::1;-1:-1:-1::0;;;64098:19:0;;;::::1;;;64097:20;64075:42:::0;;::::1;;::::0;;64013:112::o;42888:256::-;42985:7;43021:23;43038:5;43021:16;:23::i;:::-;43013:5;:31;43005:87;;;;-1:-1:-1;;;43005:87:0;;27334:2:1;43005:87:0;;;27316:21:1;27373:2;27353:18;;;27346:30;27412:34;27392:18;;;27385:62;-1:-1:-1;;;27463:18:1;;;27456:41;27514:19;;43005:87:0;27132:407:1;43005:87:0;-1:-1:-1;;;;;;43110:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42888:256::o;64233:140::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;64299:21:::1;64339:7;11191:6:::0;;-1:-1:-1;;;;;11191:6:0;;11118:87;64339:7:::1;-1:-1:-1::0;;;;;64331:25:0::1;:34;64357:7;64331:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64270:103;64233:140::o:0;33447:185::-;33585:39;33602:4;33608:2;33612:7;33585:39;;;;;;;;;;;;:16;:39::i;43410:233::-;43485:7;43521:30;43308:10;:17;;43220:113;43521:30;43513:5;:38;43505:95;;;;-1:-1:-1;;;43505:95:0;;34865:2:1;43505:95:0;;;34847:21:1;34904:2;34884:18;;;34877:30;34943:34;34923:18;;;34916:62;-1:-1:-1;;;34994:18:1;;;34987:42;35046:19;;43505:95:0;34663:408:1;43505:95:0;43618:10;43629:5;43618:17;;;;;;;;:::i;:::-;;;;;;;;;43611:24;;43410:233;;;:::o;51343:2366::-;51427:13;51453:21;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51453:21:0;51503:22;51517:7;51503:13;:22::i;:::-;51485:15;;;:40;;;51542:30;;;;:73;;;49464:4;51589:7;:26;;51542:73;:137;;;-1:-1:-1;43308:10:0;:17;51642:37;;49464:4;51642:37;:::i;:::-;51632:7;:47;51542:137;51538:192;;;-1:-1:-1;;51705:13:0;;;;;;;;;;;;-1:-1:-1;;;51705:13:0;;;;;;51538:192;51826:13;;-1:-1:-1;;;;;51826:13:0;:30;51857:19;51868:7;51857:10;:19::i;:::-;51826:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51826:51:0;;;;;;;;;;;;:::i;:::-;51742:135;;51807:15;;;51742:135;;;51793:12;;;51742:135;;;51779:12;;;51742:135;51759:18;;;51742:135;;;51743:14;;;;;52057:2;52043:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52043:17:0;-1:-1:-1;52020:20:0;;;:40;52077:12;;;;52073:1196;;;52113:41;52122:7;52131;;;;;;;;;-1:-1:-1;;;;;52131:7:0;-1:-1:-1;;;;;52131:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52131:22:0;;;;;;;;;;;;:::i;:::-;52113:8;:41::i;:::-;52106:48;;52189:4;:18;;;52182:4;:25;;;;:::i;:::-;52169:38;;52231:1;52227:5;;52222:301;52238:4;:18;;;52234:1;:22;52222:301;;;52294:14;52307:1;52294:10;:14;:::i;:::-;52282:26;;52344:4;:18;;;52331:9;:31;52327:111;;52400:18;;;;52387:31;;;;:::i;:::-;;;52327:111;52482:14;;:25;;52497:9;;52482:25;;;;;;:::i;:::-;;;;;;;52456:4;:20;;;52477:1;52456:23;;;;;;;;:::i;:::-;;;;;;;;;;:51;52258:3;;;;:::i;:::-;;;;52222:301;;;52073:1196;;;52544:4;:12;;;52540:729;;;-1:-1:-1;52585:18:0;;;;52620:352;52627:13;;52620:352;;52707:7;;52754:9;;52665:86;;52674:7;;-1:-1:-1;;;;;52707:7:0;:20;52729:19;52754:9;52729:8;:19::i;:::-;52690:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52665:8;:86::i;:::-;:98;;;;:::i;:::-;52661:102;-1:-1:-1;52782:14:0;52795:1;52782:14;;:::i;:::-;;;52824:4;:14;;;52839:9;52824:25;;;;;;;;:::i;:::-;;;;;;;52817:32;;52896:4;:14;;;52911:1;52896:17;;;;;;;;:::i;:::-;;;;;;;52868:4;:14;;;52883:9;52868:25;;;;;;;;:::i;:::-;;;;;;:45;;;;;52952:4;52932;:14;;;52947:1;52932:17;;;;;;;;:::i;:::-;;;;;;:24;;;;;52620:352;;;52997:1;52993:5;;52988:119;53004:4;:18;;;53000:1;:22;52988:119;;;53074:14;;:17;;53089:1;;53074:17;;;;;;:::i;:::-;;;;;;;53048:4;:20;;;53069:1;53048:23;;;;;;;;:::i;:::-;;;;;;;;;;:43;53024:3;;;;:::i;:::-;;;;52988:119;;52540:729;53148:1;53144:5;;53139:119;53155:4;:18;;;53151:1;:22;53139:119;;;53225:14;;:17;;53240:1;;53225:17;;;;;;:::i;:::-;;;;;;;53199:4;:20;;;53220:1;53199:23;;;;;;;;:::i;:::-;;;;;;;;;;:43;53175:3;;;;:::i;:::-;;;;53139:119;;;53285:4;:15;;;53281:375;;;53324:93;53340:4;:20;;;53375:4;:18;;;53361:11;:32;;;;:::i;:::-;53340:54;;;;;;;;:::i;:::-;;;;;;;53396:7;53405:11;53324:15;:93::i;:::-;53317:100;;53281:375;;;53454:4;:18;;;53439:11;:33;53435:221;;53496:36;53511:7;53520:11;53496:14;:36::i;53435:221::-;53572:72;53588:4;:20;;;53609:11;53588:33;;;;;;;;:::i;53572:72::-;53565:79;;53435:221;53675:7;;:26;;-1:-1:-1;;;53675:26:0;;;;;35582:25:1;;;-1:-1:-1;;;;;53675:7:0;;;;:20;;35555:18:1;;53675:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53675:26:0;;;;;;;;;;;;:::i;:::-;53668:33;51343:2366;-1:-1:-1;;;;;;;;;51343:2366:0:o;64133:92::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;64200:17;;::::1;::::0;:11:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;30282:239::-:0;30354:7;30390:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30390:16:0;30425:19;30417:73;;;;-1:-1:-1;;;30417:73:0;;31339:2:1;30417:73:0;;;31321:21:1;31378:2;31358:18;;;31351:30;31417:34;31397:18;;;31390:62;-1:-1:-1;;;31468:18:1;;;31461:39;31517:19;;30417:73:0;31137:405:1;63914:91:0;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;63985:12:::1;::::0;;-1:-1:-1;;;;63969:28:0;::::1;-1:-1:-1::0;;;63985:12:0;;;::::1;;;63984:13;63969:28:::0;;::::1;;::::0;;63914:91::o;30012:208::-;30084:7;-1:-1:-1;;;;;30112:19:0;;30104:74;;;;-1:-1:-1;;;30104:74:0;;30928:2:1;30104:74:0;;;30910:21:1;30967:2;30947:18;;;30940:30;31006:34;30986:18;;;30979:62;-1:-1:-1;;;31057:18:1;;;31050:40;31107:19;;30104:74:0;30726:406:1;30104:74:0;-1:-1:-1;;;;;;30196:16:0;;;;;:9;:16;;;;;;;30012:208::o;11769:103::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;11834:30:::1;11861:1;11834:18;:30::i;:::-;11769:103::o:0;30757:104::-;30813:13;30846:7;30839:14;;;;;:::i;63179:632::-;14420:1;15018:7;;:19;;15010:63;;;;-1:-1:-1;;;15010:63:0;;35278:2:1;15010:63:0;;;35260:21:1;35317:2;35297:18;;;35290:30;35356:33;35336:18;;;35329:61;35407:18;;15010:63:0;35076:355:1;15010:63:0;14420:1;15151:7;:18;63231:19:::1;63271;43308:10:::0;:17;;43220:113;63271:19:::1;63253:37;::::0;49464:4:::1;63253:37;:::i;:::-;63231:59:::0;-1:-1:-1;63301:19:0::1;63323:15;63231:59:::0;63337:1:::1;63323:15;:::i;:::-;63399:13;::::0;63301:37;;-1:-1:-1;10065:10:0;;-1:-1:-1;;;63399:13:0;::::1;;;63391:59;;;::::0;-1:-1:-1;;;63391:59:0;;26932:2:1;63391:59:0::1;::::0;::::1;26914:21:1::0;26971:2;26951:18;;;26944:30;27010:34;26990:18;;;26983:62;-1:-1:-1;;;27061:18:1;;;27054:31;27102:19;;63391:59:0::1;26730:397:1::0;63391:59:0::1;-1:-1:-1::0;;;;;63470:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;::::1;;63469:24;63461:75;;;::::0;-1:-1:-1;;;63461:75:0;;32093:2:1;63461:75:0::1;::::0;::::1;32075:21:1::0;32132:2;32112:18;;;32105:30;32171:34;32151:18;;;32144:62;-1:-1:-1;;;32222:18:1;;;32215:36;32268:19;;63461:75:0::1;31891:402:1::0;63461:75:0::1;63570:38;49581:4;49464;63570:38;:::i;:::-;63555:11;:53;;63547:99;;;::::0;-1:-1:-1;;;63547:99:0;;30101:2:1;63547:99:0::1;::::0;::::1;30083:21:1::0;30140:2;30120:18;;;30113:30;30179:34;30159:18;;;30152:62;-1:-1:-1;;;30230:18:1;;;30223:31;30271:19;;63547:99:0::1;29899:397:1::0;63547:99:0::1;-1:-1:-1::0;;;;;63659:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;:30;;-1:-1:-1;;63659:30:0::1;63685:4;63659:30;::::0;;63729:31:::1;63748:11:::0;63729:18:::1;:31::i;:::-;63700:26;::::0;;;:13:::1;:26;::::0;;;;:60;63773:30:::1;63783:6:::0;63714:11;63773:9:::1;:30::i;:::-;-1:-1:-1::0;;14376:1:0;15330:7;:22;-1:-1:-1;63179:632:0:o;32440:295::-;-1:-1:-1;;;;;32543:24:0;;10065:10;32543:24;;32535:62;;;;-1:-1:-1;;;32535:62:0;;29334:2:1;32535:62:0;;;29316:21:1;29373:2;29353:18;;;29346:30;29412:27;29392:18;;;29385:55;29457:18;;32535:62:0;29132:349:1;32535:62:0;10065:10;32610:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32610:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32610:53:0;;;;;;;;;;32679:48;;26093:41:1;;;32610:42:0;;10065:10;32679:48;;26066:18:1;32679:48:0;;;;;;;32440:295;;:::o;33703:328::-;33878:41;10065:10;33911:7;33878:18;:41::i;:::-;33870:103;;;;-1:-1:-1;;;33870:103:0;;;;;;;:::i;:::-;33984:39;33998:4;34004:2;34008:7;34017:5;33984:13;:39::i;:::-;33703:328;;;;:::o;50859:105::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;50923:13:::1;:33:::0;;-1:-1:-1;;;;;;50923:33:0::1;-1:-1:-1::0;;;;;50923:33:0;;;::::1;::::0;;;::::1;::::0;;50859:105::o;60998:2173::-;61063:13;49464:4;61097:7;:25;61089:53;;;;-1:-1:-1;;;61089:53:0;;;;;;;:::i;:::-;43308:10;:17;61172:37;;49464:4;61172:37;:::i;:::-;61161:7;:48;;61153:76;;;;-1:-1:-1;;;61153:76:0;;;;;;;:::i;:::-;61242:21;;:::i;:::-;61289:19;61300:7;61289:10;:19::i;:::-;61274:12;;;:34;61334:19;61345:7;61334:10;:19::i;:::-;61319:12;;;:34;61382:22;61396:7;61382:13;:22::i;:::-;61364:15;;;:40;61428:17;61437:7;61428:8;:17::i;:::-;61415:10;;;:30;61471:19;61482:7;61471:10;:19::i;:::-;61456:12;;;:34;61514:17;61523:7;61514:8;:17::i;:::-;61501:10;;;:30;61557:19;61568:7;61557:10;:19::i;:::-;61542:12;;;:34;61589:23;61639:11;61652:17;61661:7;61652:8;:17::i;:::-;61622:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61589:90;;61690:18;61755:17;61764:7;61755:8;:17::i;:::-;62087:9;61718:379;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;61718:379:0;;;;;;62115:19;;61718:379;;-1:-1:-1;;;;62115:19:0;;;;62111:404;;;62151:20;62174;62186:7;62174:11;:20::i;:::-;62151:43;;62240:4;62293:28;62313:6;62293:13;:28::i;:::-;62223:99;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62209:114;;62136:199;62111:404;;;62345:12;;-1:-1:-1;;;62345:12:0;;;;62341:174;;;62405:4;62460:11;62473:17;62482:7;62473:8;:17::i;:::-;62443:57;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;62443:57:0;;;;;;;;;;62388:114;;;62443:57;62388:114;;:::i;:::-;;;;;;;;;;;;;62374:129;;62341:174;62558:4;62623;:12;;;62683:4;:12;;;62742:25;62751:4;:15;;;62742:8;:25::i;:::-;62813:4;:10;;;62541:283;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;62541:283:0;;;;;;;;;;62919:12;;;;62977:10;;;;63035:12;;;;62541:283;;-1:-1:-1;62850:207:0;;62541:283;;63035:12;62541:283;62850:207;;:::i;:::-;;;;;;;;;;;;;62836:222;;63135:26;63155:4;63135:13;:26::i;:::-;63085:77;;;;;;;;:::i;:::-;;;;;;;;;;;;;63071:92;;;;;60998:2173;;;:::o;12027:201::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12116:22:0;::::1;12108:73;;;::::0;-1:-1:-1;;;12108:73:0;;28165:2:1;12108:73:0::1;::::0;::::1;28147:21:1::0;28204:2;28184:18;;;28177:30;28243:34;28223:18;;;28216:62;-1:-1:-1;;;28294:18:1;;;28287:36;28340:19;;12108:73:0::1;27963:402:1::0;12108:73:0::1;12192:28;12211:8;12192:18;:28::i;:::-;12027:201:::0;:::o;63819:87::-;11191:6;;-1:-1:-1;;;;;11191:6:0;10065:10;11338:23;11330:68;;;;-1:-1:-1;;;11330:68:0;;;;;;;:::i;:::-;63885:13:::1;::::0;;-1:-1:-1;;;;63868:30:0;::::1;-1:-1:-1::0;;;63885:13:0;;;::::1;;;63884:14;63868:30:::0;;::::1;;::::0;;63819:87::o;15715:283::-;15845:4;-1:-1:-1;;;;;;15887:50:0;;-1:-1:-1;;;15887:50:0;;:103;;;15954:36;15978:11;15954:23;:36::i;39523:174::-;39598:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39598:29:0;-1:-1:-1;;;;;39598:29:0;;;;;;;;:24;;39652:23;39598:24;39652:14;:23::i;:::-;-1:-1:-1;;;;;39643:46:0;;;;;;;;;;;39523:174;;:::o;57809:149::-;57913:22;;;;:13;:22;;;;;;57872:13;;57905:45;;:43;:45::i;56456:183::-;56545:7;;56585:25;;;-1:-1:-1;;;56585:25:0;;;;56518:7;;-1:-1:-1;;;;;56545:7:0;;:21;;56567:44;;56576:7;;56545;;56585:23;;:25;;;;;56518:7;;56585:25;;;;;;;56545:7;56585:25;;;;;;;;;;56567:44;56613:17;56622:7;56613:8;:17::i;:::-;56545:86;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56287:161::-;56377:7;;56418:20;;;-1:-1:-1;;;56418:20:0;;;;56344:13;;-1:-1:-1;;;;;56377:7:0;;:22;;56400:39;;56409:7;;56377;;56418:18;;:20;;;;;56377:7;;56418:20;;;;;;;56377:7;56418:20;;;;;;;;;;56400:39;56377:63;;;;;;;;;;;;;35582:25:1;;35570:2;35555:18;;35436:177;56377:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56377:63:0;;;;;;;;;;;;:::i;56647:550::-;56706:13;56732:21;56764:19;56786:17;56795:7;56786:8;:17::i;:::-;56764:39;;56814:18;56835:22;56849:7;56835:13;:22::i;:::-;56814:43;;56868:12;56883:41;56892:7;56901;;;;;;;;;-1:-1:-1;;;;;56901:7:0;-1:-1:-1;;;;;56901:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56883:41;56868:56;;56963:1;56941:10;:24;;:73;;;;;56969:45;56984:5;56991:7;;;;;;;;;-1:-1:-1;;;;;56991:7:0;-1:-1:-1;;;;;56991:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56991:22:0;;;;;;;;;;;;:::i;:::-;56969:14;:45::i;:::-;56937:226;;;57041:7;;:37;;-1:-1:-1;;;57041:37:0;;;;;35582:25:1;;;-1:-1:-1;;;;;57041:7:0;;;;:31;;35555:18:1;;57041:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57041:37:0;;;;;;;;;;;;:::i;:::-;57031:47;;56937:226;;;57121:7;;:30;;-1:-1:-1;;;57121:30:0;;;;;35582:25:1;;;-1:-1:-1;;;;;57121:7:0;;;;:24;;35555:18:1;;57121:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57121:30:0;;;;;;;;;;;;:::i;:::-;57111:40;;56937:226;-1:-1:-1;57182:7:0;;56647:550;-1:-1:-1;;;;56647:550:0:o;57205:161::-;57295:7;;57336:20;;;-1:-1:-1;;;57336:20:0;;;;57262:13;;-1:-1:-1;;;;;57295:7:0;;:22;;57318:39;;57327:7;;57295;;57336:18;;:20;;;;;57295:7;;57336:20;;;;;;;57295:7;57336:20;;;;;;;;;;57374:167;57466:7;;57509:22;;;-1:-1:-1;;;57509:22:0;;;;57433:13;;-1:-1:-1;;;;;57466:7:0;;:24;;57491:41;;57500:7;;57466;;57509:20;;:22;;;;;57466:7;;57509:22;;;;;;;57466:7;57509:22;;;;;;;;;;35835:348;35928:4;35630:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35630:16:0;35945:73;;;;-1:-1:-1;;;35945:73:0;;29688:2:1;35945:73:0;;;29670:21:1;29727:2;29707:18;;;29700:30;29766:34;29746:18;;;29739:62;-1:-1:-1;;;29817:18:1;;;29810:42;29869:19;;35945:73:0;29486:408:1;35945:73:0;36029:13;36045:23;36060:7;36045:14;:23::i;:::-;36029:39;;36098:5;-1:-1:-1;;;;;36087:16:0;:7;-1:-1:-1;;;;;36087:16:0;;:51;;;;36131:7;-1:-1:-1;;;;;36107:31:0;:20;36119:7;36107:11;:20::i;:::-;-1:-1:-1;;;;;36107:31:0;;36087:51;:87;;;-1:-1:-1;;;;;;32927:25:0;;;32903:4;32927:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36142:32;36079:96;35835:348;-1:-1:-1;;;;35835:348:0:o;38827:578::-;38986:4;-1:-1:-1;;;;;38959:31:0;:23;38974:7;38959:14;:23::i;:::-;-1:-1:-1;;;;;38959:31:0;;38951:85;;;;-1:-1:-1;;;38951:85:0;;33635:2:1;38951:85:0;;;33617:21:1;33674:2;33654:18;;;33647:30;33713:34;33693:18;;;33686:62;-1:-1:-1;;;33764:18:1;;;33757:39;33813:19;;38951:85:0;33433:405:1;38951:85:0;-1:-1:-1;;;;;39055:16:0;;39047:65;;;;-1:-1:-1;;;39047:65:0;;28929:2:1;39047:65:0;;;28911:21:1;28968:2;28948:18;;;28941:30;29007:34;28987:18;;;28980:62;-1:-1:-1;;;29058:18:1;;;29051:34;29102:19;;39047:65:0;28727:400:1;39047:65:0;39125:39;39146:4;39152:2;39156:7;39125:20;:39::i;:::-;39229:29;39246:1;39250:7;39229:8;:29::i;:::-;-1:-1:-1;;;;;39271:15:0;;;;;;:9;:15;;;;;:20;;39290:1;;39271:15;:20;;39290:1;;39271:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39302:13:0;;;;;;:9;:13;;;;;:18;;39319:1;;39302:13;:18;;39319:1;;39302:18;:::i;:::-;;;;-1:-1:-1;;39331:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39331:21:0;-1:-1:-1;;;;;39331:21:0;;;;;;;;;39370:27;;39331:16;;39370:27;;;;;;;38827:578;;;:::o;51147:188::-;51239:7;;51282:22;;;-1:-1:-1;;;51282:22:0;;;;51206:13;;-1:-1:-1;;;;;51239:7:0;;:24;;51264:41;;51273:7;;51239;;51282:20;;:22;;;;;51239:7;;51282:22;;;;;;;51239:7;51282:22;;;;;;;;;;51264:41;51307:19;51318:7;51307:10;:19::i;:::-;51239:88;;;;;;;;;;;;;;;;:::i;58276:161::-;58352:7;58424:4;58392:21;58400:7;58409:3;58392:7;:21::i;:::-;:37;;;;:::i;:::-;58379:50;;58387:1;58379:50;:::i;:::-;58372:57;58276:161;-1:-1:-1;;;58276:161:0:o;64640:715::-;64696:13;64909:10;64905:53;;-1:-1:-1;;64936:10:0;;;;;;;;;;;;-1:-1:-1;;;64936:10:0;;;;;64640:715::o;64905:53::-;64983:5;64968:12;65024:78;65031:9;;65024:78;;65057:8;;;;:::i;:::-;;-1:-1:-1;65080:10:0;;-1:-1:-1;65088:2:0;65080:10;;:::i;:::-;;;65024:78;;;65112:19;65144:6;65134:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65134:17:0;;65112:39;;65162:154;65169:10;;65162:154;;65196:11;65206:1;65196:11;;:::i;:::-;;-1:-1:-1;65265:10:0;65273:2;65265:5;:10;:::i;:::-;65252:24;;:2;:24;:::i;:::-;65239:39;;65222:6;65229;65222:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;65222:56:0;;;;;;;;-1:-1:-1;65293:11:0;65302:2;65293:11;;:::i;:::-;;;65162:154;;53717:2336;53811:7;53831:22;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53831:22:0;53906:3;53891:2;53874:20;;;53873:37;;53864:46;;53948:1;53931:19;;;53930:36;;53921:6;;;:45;53986:20;;;53977:6;;;:29;54073:7;;54032:77;;54040:7;;-1:-1:-1;;;;;54073:7:0;:16;54091:15;54100:5;54091:8;:15::i;:::-;54056:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54032:7;:77::i;:::-;:90;;;;:::i;:::-;54017:12;;;:105;54189:7;;54238:1;;54148:79;;54156:7;;-1:-1:-1;;;;;54189:7:0;:18;54209:15;54218:5;54209:8;:15::i;54148:79::-;:92;;;;:::i;:::-;54133:12;;;:107;54307:7;;54355:1;;54266:78;;54274:7;;-1:-1:-1;;;;;54307:7:0;:17;54326:15;54335:5;54326:8;:15::i;54266:78::-;:91;;;;:::i;:::-;54251:12;;;:106;54427:7;;54477:1;;54386:80;;54394:7;;-1:-1:-1;;;;;54427:7:0;:19;54448:15;54457:5;54448:8;:15::i;54386:80::-;:93;;;;:::i;:::-;54368:15;;;:111;54549:7;;54601:1;;54508:82;;54516:7;;-1:-1:-1;;;;;54549:7:0;:21;54572:15;54581:5;54572:8;:15::i;54508:82::-;:95;;;;:::i;:::-;54490:15;;;:113;54673:7;;54724:1;;54632:81;;54640:7;;-1:-1:-1;;;;;54673:7:0;:20;54695:15;54704:5;54695:8;:15::i;54632:81::-;:94;;;;:::i;:::-;54614:15;;;:112;54743:15;;;;54739:399;;54802:12;;;;54793:6;;:21;54789:144;;;54845:12;;;;54835:22;;54845:4;;54835:22;;54845:12;;54835:22;:::i;:::-;;;-1:-1:-1;54739:399:0;;54789:144;54915:1;54898:19;;54739:399;;;54978:12;;;;54969:6;;55002:3;;54969:21;;;:::i;:::-;:37;54965:162;;55037:12;;;;55027:22;;55037:4;;55027:22;;55037:12;;55027:22;:::i;54965:162::-;55107:3;55090:21;;54965:162;55154:15;;;;55150:399;;55213:4;:12;;;55204:4;:6;;;:21;55200:144;;;55256:4;:12;;;55246:4;:6;;:22;;;;;;;:::i;:::-;;;-1:-1:-1;55150:399:0;;55200:144;55326:1;55309:6;;;:19;55150:399;;;55413:3;55389:4;:12;;;55380:4;:6;;;:21;;;;:::i;:::-;:37;55376:162;;55448:4;:12;;;55438:4;:6;;:22;;;;;;;:::i;55376:162::-;55518:3;55501:6;;;:21;55376:162;55565:15;;;;55561:399;;55624:4;:12;;;55615:4;:6;;;:21;55611:144;;;55667:4;:12;;;55657:4;:6;;:22;;;;;;;:::i;:::-;;;-1:-1:-1;55561:399:0;;55611:144;55737:1;55720:6;;;:19;55561:399;;;55824:3;55800:4;:12;;;55791:4;:6;;;:21;;;;:::i;:::-;:37;55787:162;;55859:4;:12;;;55849:4;:6;;:22;;;;;;;:::i;55787:162::-;55929:3;55912:6;;;:21;55787:162;56038:4;:6;;;56032:1;56014:4;:6;;;:20;;56006:2;55988:4;:6;;;:21;;55987:48;:57;55972:73;;;53717:2336;;;;;:::o;56061:218::-;56207:7;;56139;;56262:8;;56166:85;;56174:7;;-1:-1:-1;;;;;56207:7:0;:24;56233:15;56242:5;56233:8;:15::i;56166:85::-;:105;;;;:::i;12571:191::-;12664:6;;;-1:-1:-1;;;;;12681:17:0;;;-1:-1:-1;;;;;;12681:17:0;;;;;;;12714:40;;12664:6;;;12681:17;12664:6;;12714:40;;12645:16;;12714:40;12634:128;12571:191;:::o;57549:252::-;57616:7;;57675:16;57690:1;57675:12;:16;:::i;:::-;57657:13;57667:3;57657:7;:13;:::i;:::-;57656:36;;;;:::i;:::-;57636:56;-1:-1:-1;57703:18:0;57740:13;57636:56;57752:1;57740:13;:::i;:::-;57724:30;;:12;:30;:::i;:::-;57772:21;;57549:252;-1:-1:-1;;;;57549:252:0:o;36525:110::-;36601:26;36611:2;36615:7;36601:26;;;;;;;;;;;;:9;:26::i;34913:315::-;35070:28;35080:4;35086:2;35090:7;35070:9;:28::i;:::-;35117:48;35140:4;35146:2;35150:7;35159:5;35117:22;:48::i;:::-;35109:111;;;;-1:-1:-1;;;35109:111:0;;;;;;;:::i;50972:167::-;51064:7;;51107:22;;;-1:-1:-1;;;51107:22:0;;;;51031:13;;-1:-1:-1;;;;;51064:7:0;;:24;;51089:41;;51098:7;;51064;;51107:20;;:22;;;;;51064:7;;51107:22;;;;;;;51064:7;51107:22;;;;;;;;;;26802:1607;26900:11;;26860:13;;26926:8;26922:23;;-1:-1:-1;;26936:9:0;;;;;;;;;-1:-1:-1;26936:9:0;;;26802:1607;-1:-1:-1;26802:1607:0:o;26922:23::-;26997:18;27035:1;27024:7;:3;27030:1;27024:7;:::i;:::-;27023:13;;;;:::i;:::-;27018:19;;:1;:19;:::i;:::-;26997:40;-1:-1:-1;27095:19:0;27127:15;26997:40;27140:2;27127:15;:::i;:::-;27117:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27117:26:0;;27095:48;;27156:18;27177:5;;;;;;;;;;;;;;;;;27156:26;;27246:1;27239:5;27235:13;27291:2;27283:6;27279:15;27342:1;27310:777;27365:3;27362:1;27359:10;27310:777;;;27420:1;27463:12;;;;;27457:19;27558:4;27546:2;27542:14;;;;;27524:40;;27518:47;27667:2;27663:14;;;27659:25;;27645:40;;27639:47;27796:1;27792:13;;;27788:24;;27774:39;;27768:46;27916:16;;;;27902:31;;27896:38;27594:1;27590:11;;;27688:4;27635:58;;;27626:68;27719:11;;27764:57;;;27755:67;;;;27847:11;;27892:49;;27883:59;27971:3;27967:13;28000:22;;28070:1;28055:17;;;;27413:9;27310:777;;;27314:44;28119:1;28114:3;28110:11;28140:1;28135:84;;;;28238:1;28233:82;;;;28103:212;;28135:84;-1:-1:-1;;;;;28168:17:0;;28161:43;28135:84;;28233:82;-1:-1:-1;;;;;28266:17:0;;28259:41;28103:212;-1:-1:-1;;;28331:26:0;;;28338:6;26802:1607;-1:-1:-1;;;;26802:1607:0:o;42580:224::-;42682:4;-1:-1:-1;;;;;;42706:50:0;;-1:-1:-1;;;42706:50:0;;:90;;;42760:36;42784:11;42760:23;:36::i;25529:340::-;25588:13;25618:10;25614:56;;-1:-1:-1;;25645:13:0;;;;;;;;;;;;-1:-1:-1;;;25645:13:0;;;;;25529:340::o;25614:56::-;25695:5;25680:12;25740:78;25747:9;;25740:78;;25773:8;;;;:::i;:::-;;;;25805:1;25796:10;;;;;25740:78;;;25835:26;25847:5;25854:6;25835:11;:26::i;58590:177::-;58671:4;58756:1;58739:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;58729:30;;;;;;58722:1;58705:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;58695:30;;;;;;:64;58688:71;;58590:177;;;;:::o;44256:589::-;-1:-1:-1;;;;;44462:18:0;;44458:187;;44497:40;44529:7;45672:10;:17;;45645:24;;;;:15;:24;;;;;:44;;;45700:24;;;;;;;;;;;;45568:164;44497:40;44458:187;;;44567:2;-1:-1:-1;;;;;44559:10:0;:4;-1:-1:-1;;;;;44559:10:0;;44555:90;;44586:47;44619:4;44625:7;44586:32;:47::i;:::-;-1:-1:-1;;;;;44659:16:0;;44655:183;;44692:45;44729:7;44692:36;:45::i;44655:183::-;44765:4;-1:-1:-1;;;;;44759:10:0;:2;-1:-1:-1;;;;;44759:10:0;;44755:83;;44786:40;44814:2;44818:7;44786:27;:40::i;57966:302::-;58041:7;58061:25;58089:23;58104:7;58089:14;:23::i;:::-;58061:51;;58123:26;58176:3;58181:17;58190:7;58181:8;:17::i;:::-;58159:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58123:77;;58240:20;58247:12;58240:6;:20::i;:::-;58218:19;58225:11;58218:6;:19::i;:::-;:42;;57966:302;-1:-1:-1;;;;;57966:302:0:o;36862:321::-;36992:18;36998:2;37002:7;36992:5;:18::i;:::-;37043:54;37074:1;37078:2;37082:7;37091:5;37043:22;:54::i;:::-;37021:154;;;;-1:-1:-1;;;37021:154:0;;;;;;;:::i;40262:799::-;40417:4;-1:-1:-1;;;;;40438:13:0;;17680:20;17728:8;40434:620;;40474:72;;-1:-1:-1;;;40474:72:0;;-1:-1:-1;;;;;40474:36:0;;;;;:72;;10065:10;;40525:4;;40531:7;;40540:5;;40474:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40474:72:0;;;;;;;;-1:-1:-1;;40474:72:0;;;;;;;;;;;;:::i;:::-;;;40470:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40716:13:0;;40712:272;;40759:60;;-1:-1:-1;;;40759:60:0;;;;;;;:::i;40712:272::-;40934:6;40928:13;40919:6;40915:2;40911:15;40904:38;40470:529;-1:-1:-1;;;;;;40597:51:0;-1:-1:-1;;;40597:51:0;;-1:-1:-1;40590:58:0;;40434:620;-1:-1:-1;41038:4:0;40262:799;;;;;;:::o;29643:305::-;29745:4;-1:-1:-1;;;;;;29782:40:0;;-1:-1:-1;;;29782:40:0;;:105;;-1:-1:-1;;;;;;;29839:48:0;;-1:-1:-1;;;29839:48:0;29782:105;:158;;;-1:-1:-1;;;;;;;;;;9390:40:0;;;29904:36;9281:157;25997:451;26072:13;26098:19;26130:10;26134:6;26130:1;:10;:::i;:::-;:14;;26143:1;26130:14;:::i;:::-;26120:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26120:25:0;;26098:47;;-1:-1:-1;;;26156:6:0;26163:1;26156:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;26156:15:0;;;;;;;;;-1:-1:-1;;;26182:6:0;26189:1;26182:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;26182:15:0;;;;;;;;-1:-1:-1;26213:9:0;26225:10;26229:6;26225:1;:10;:::i;:::-;:14;;26238:1;26225:14;:::i;:::-;26213:26;;26208:135;26245:1;26241;:5;26208:135;;;-1:-1:-1;;;26293:5:0;26301:3;26293:11;26280:25;;;;;;;:::i;:::-;;;;26268:6;26275:1;26268:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;26268:37:0;;;;;;;;-1:-1:-1;26330:1:0;26320:11;;;;;26248:3;;;:::i;:::-;;;26208:135;;;-1:-1:-1;26361:10:0;;26353:55;;;;-1:-1:-1;;;26353:55:0;;26571:2:1;26353:55:0;;;26553:21:1;;;26590:18;;;26583:30;26649:34;26629:18;;;26622:62;26701:18;;26353:55:0;26369:356:1;46359:988:0;46625:22;46675:1;46650:22;46667:4;46650:16;:22::i;:::-;:26;;;;:::i;:::-;46687:18;46708:26;;;:17;:26;;;;;;46625:51;;-1:-1:-1;46841:28:0;;;46837:328;;-1:-1:-1;;;;;46908:18:0;;46886:19;46908:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46959:30;;;;;;:44;;;47076:30;;:17;:30;;;;;:43;;;46837:328;-1:-1:-1;47261:26:0;;;;:17;:26;;;;;;;;47254:33;;;-1:-1:-1;;;;;47305:18:0;;;;;:12;:18;;;;;:34;;;;;;;47298:41;46359:988::o;47642:1079::-;47920:10;:17;47895:22;;47920:21;;47940:1;;47920:21;:::i;:::-;47952:18;47973:24;;;:15;:24;;;;;;48346:10;:26;;47895:46;;-1:-1:-1;47973:24:0;;47895:46;;48346:26;;;;;;:::i;:::-;;;;;;;;;48324:48;;48410:11;48385:10;48396;48385:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48490:28;;;:15;:28;;;;;;;:41;;;48662:24;;;;;48655:31;48697:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47713:1008;;;47642:1079;:::o;45146:221::-;45231:14;45248:20;45265:2;45248:16;:20::i;:::-;-1:-1:-1;;;;;45279:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45324:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45146:221:0:o;58445:137::-;58504:7;58566:5;58549:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;58549:23:0;;;;;;;;;58539:34;;58549:23;58539:34;;;;;58445:137;-1:-1:-1;;58445:137:0:o;37519:382::-;-1:-1:-1;;;;;37599:16:0;;37591:61;;;;-1:-1:-1;;;37591:61:0;;32500:2:1;37591:61:0;;;32482:21:1;;;32519:18;;;32512:30;32578:34;32558:18;;;32551:62;32630:18;;37591:61:0;32298:356:1;37591:61:0;35606:4;35630:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35630:16:0;:30;37663:58;;;;-1:-1:-1;;;37663:58:0;;28572:2:1;37663:58:0;;;28554:21:1;28611:2;28591:18;;;28584:30;28650;28630:18;;;28623:58;28698:18;;37663:58:0;28370:352:1;37663:58:0;37734:45;37763:1;37767:2;37771:7;37734:20;:45::i;:::-;-1:-1:-1;;;;;37792:13:0;;;;;;:9;:13;;;;;:18;;37809:1;;37792:13;:18;;37809:1;;37792:18;:::i;:::-;;;;-1:-1:-1;;37821:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37821:21:0;-1:-1:-1;;;;;37821:21:0;;;;;;;;37860:33;;37821:16;;;37860:33;;37821:16;;37860:33;37519:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:173::-;423:20;;-1:-1:-1;;;;;472:31:1;;462:42;;452:70;;518:1;515;508:12;452:70;355:173;;;:::o;533:132::-;609:13;;631:28;609:13;631:28;:::i;670:186::-;729:6;782:2;770:9;761:7;757:23;753:32;750:52;;;798:1;795;788:12;750:52;821:29;840:9;821:29;:::i;861:260::-;929:6;937;990:2;978:9;969:7;965:23;961:32;958:52;;;1006:1;1003;996:12;958:52;1029:29;1048:9;1029:29;:::i;:::-;1019:39;;1077:38;1111:2;1100:9;1096:18;1077:38;:::i;:::-;1067:48;;861:260;;;;;:::o;1126:328::-;1203:6;1211;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;;1359:38;1393:2;1382:9;1378:18;1359:38;:::i;:::-;1349:48;;1444:2;1433:9;1429:18;1416:32;1406:42;;1126:328;;;;;:::o;1459:666::-;1554:6;1562;1570;1578;1631:3;1619:9;1610:7;1606:23;1602:33;1599:53;;;1648:1;1645;1638:12;1599:53;1671:29;1690:9;1671:29;:::i;:::-;1661:39;;1719:38;1753:2;1742:9;1738:18;1719:38;:::i;:::-;1709:48;;1804:2;1793:9;1789:18;1776:32;1766:42;;1859:2;1848:9;1844:18;1831:32;1886:18;1878:6;1875:30;1872:50;;;1918:1;1915;1908:12;1872:50;1941:22;;1994:4;1986:13;;1982:27;-1:-1:-1;1972:55:1;;2023:1;2020;2013:12;1972:55;2046:73;2111:7;2106:2;2093:16;2088:2;2084;2080:11;2046:73;:::i;:::-;2036:83;;;1459:666;;;;;;;:::o;2130:315::-;2195:6;2203;2256:2;2244:9;2235:7;2231:23;2227:32;2224:52;;;2272:1;2269;2262:12;2224:52;2295:29;2314:9;2295:29;:::i;:::-;2285:39;;2374:2;2363:9;2359:18;2346:32;2387:28;2409:5;2387:28;:::i;:::-;2434:5;2424:15;;;2130:315;;;;;:::o;2450:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;2694:2;2679:18;;;;2666:32;;-1:-1:-1;;;2450:254:1:o;2709:1249::-;2831:6;2839;2847;2855;2863;2916:3;2904:9;2895:7;2891:23;2887:33;2884:53;;;2933:1;2930;2923:12;2884:53;2966:9;2960:16;2995:18;3036:2;3028:6;3025:14;3022:34;;;3052:1;3049;3042:12;3022:34;3090:6;3079:9;3075:22;3065:32;;3135:7;3128:4;3124:2;3120:13;3116:27;3106:55;;3157:1;3154;3147:12;3106:55;3186:2;3180:9;3208:4;3231:2;3227;3224:10;3221:36;;;3237:18;;:::i;:::-;3283:2;3280:1;3276:10;3266:20;;3306:28;3330:2;3326;3322:11;3306:28;:::i;:::-;3368:15;;;3399:12;;;;3431:11;;;3461;;;3457:20;;3454:33;-1:-1:-1;3451:53:1;;;3500:1;3497;3490:12;3451:53;3522:1;3513:10;;3532:156;3546:2;3543:1;3540:9;3532:156;;;3603:10;;3591:23;;3564:1;3557:9;;;;;3634:12;;;;3666;;3532:156;;;3536:3;3707:5;3697:15;;;;3752:2;3741:9;3737:18;3731:25;3721:35;;;;;;3775:46;3817:2;3806:9;3802:18;3775:46;:::i;:::-;3765:56;;3840:46;3882:2;3871:9;3867:18;3840:46;:::i;:::-;3830:56;;3905:47;3947:3;3936:9;3932:19;3905:47;:::i;:::-;3895:57;;2709:1249;;;;;;;;:::o;3963:245::-;4021:6;4074:2;4062:9;4053:7;4049:23;4045:32;4042:52;;;4090:1;4087;4080:12;4042:52;4129:9;4116:23;4148:30;4172:5;4148:30;:::i;4213:249::-;4282:6;4335:2;4323:9;4314:7;4310:23;4306:32;4303:52;;;4351:1;4348;4341:12;4303:52;4383:9;4377:16;4402:30;4426:5;4402:30;:::i;4467:450::-;4536:6;4589:2;4577:9;4568:7;4564:23;4560:32;4557:52;;;4605:1;4602;4595:12;4557:52;4645:9;4632:23;4678:18;4670:6;4667:30;4664:50;;;4710:1;4707;4700:12;4664:50;4733:22;;4786:4;4778:13;;4774:27;-1:-1:-1;4764:55:1;;4815:1;4812;4805:12;4764:55;4838:73;4903:7;4898:2;4885:16;4880:2;4876;4872:11;4838:73;:::i;4922:635::-;5002:6;5055:2;5043:9;5034:7;5030:23;5026:32;5023:52;;;5071:1;5068;5061:12;5023:52;5104:9;5098:16;5137:18;5129:6;5126:30;5123:50;;;5169:1;5166;5159:12;5123:50;5192:22;;5245:4;5237:13;;5233:27;-1:-1:-1;5223:55:1;;5274:1;5271;5264:12;5223:55;5303:2;5297:9;5328:48;5344:31;5372:2;5344:31;:::i;5328:48::-;5399:2;5392:5;5385:17;5439:7;5434:2;5429;5425;5421:11;5417:20;5414:33;5411:53;;;5460:1;5457;5450:12;5411:53;5473:54;5524:2;5519;5512:5;5508:14;5503:2;5499;5495:11;5473:54;:::i;:::-;5546:5;4922:635;-1:-1:-1;;;;;4922:635:1:o;5562:180::-;5621:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:52;;;5690:1;5687;5680:12;5642:52;-1:-1:-1;5713:23:1;;5562:180;-1:-1:-1;5562:180:1:o;5747:184::-;5817:6;5870:2;5858:9;5849:7;5845:23;5841:32;5838:52;;;5886:1;5883;5876:12;5838:52;-1:-1:-1;5909:16:1;;5747:184;-1:-1:-1;5747:184:1:o;5936:248::-;6004:6;6012;6065:2;6053:9;6044:7;6040:23;6036:32;6033:52;;;6081:1;6078;6071:12;6033:52;-1:-1:-1;;6104:23:1;;;6174:2;6159:18;;;6146:32;;-1:-1:-1;5936:248:1:o;6189:257::-;6230:3;6268:5;6262:12;6295:6;6290:3;6283:19;6311:63;6367:6;6360:4;6355:3;6351:14;6344:4;6337:5;6333:16;6311:63;:::i;:::-;6428:2;6407:15;-1:-1:-1;;6403:29:1;6394:39;;;;6435:4;6390:50;;6189:257;-1:-1:-1;;6189:257:1:o;6451:185::-;6493:3;6531:5;6525:12;6546:52;6591:6;6586:3;6579:4;6572:5;6568:16;6546:52;:::i;:::-;6614:16;;;;;6451:185;-1:-1:-1;;6451:185:1:o;6641:973::-;6726:12;;6691:3;;6781:1;6801:18;;;;6854;;;;6881:61;;6935:4;6927:6;6923:17;6913:27;;6881:61;6961:2;7009;7001:6;6998:14;6978:18;6975:38;6972:161;;;7055:10;7050:3;7046:20;7043:1;7036:31;7090:4;7087:1;7080:15;7118:4;7115:1;7108:15;6972:161;7149:18;7176:104;;;;7294:1;7289:319;;;;7142:466;;7176:104;-1:-1:-1;;7209:24:1;;7197:37;;7254:16;;;;-1:-1:-1;7176:104:1;;7289:319;36457:1;36450:14;;;36494:4;36481:18;;7383:1;7397:165;7411:6;7408:1;7405:13;7397:165;;;7489:14;;7476:11;;;7469:35;7532:16;;;;7426:10;;7397:165;;;7401:3;;7591:6;7586:3;7582:16;7575:23;;7142:466;;;;;;;6641:973;;;;:::o;7619:501::-;7954:10;7946:6;7942:23;7933:6;7929:2;7925:15;7922:44;7918:2;7914:53;7909:3;7902:66;7884:3;7997:6;7991:13;8013:60;8066:6;8061:2;8056:3;8052:12;8047:2;8039:6;8035:15;8013:60;:::i;:::-;8093:16;;;;8111:2;8089:25;;7619:501;-1:-1:-1;;;;7619:501:1:o;8125:276::-;8256:3;8294:6;8288:13;8310:53;8356:6;8351:3;8344:4;8336:6;8332:17;8310:53;:::i;:::-;8379:16;;;;;8125:276;-1:-1:-1;;8125:276:1:o;8406:470::-;8585:3;8623:6;8617:13;8639:53;8685:6;8680:3;8673:4;8665:6;8661:17;8639:53;:::i;:::-;8755:13;;8714:16;;;;8777:57;8755:13;8714:16;8811:4;8799:17;;8777:57;:::i;:::-;8850:20;;8406:470;-1:-1:-1;;;;8406:470:1:o;8881:1449::-;9300:3;9338:6;9332:13;9364:4;9377:51;9421:6;9416:3;9411:2;9403:6;9399:15;9377:51;:::i;:::-;9491:13;;9450:16;;;;9513:55;9491:13;9450:16;9535:15;;;9513:55;:::i;:::-;9635:13;;9590:20;;;9657:55;9635:13;9590:20;9679:15;;;9657:55;:::i;:::-;9779:13;;9734:20;;;9801:55;9779:13;9734:20;9823:15;;;9801:55;:::i;:::-;9923:13;;9878:20;;;9945:55;9923:13;9878:20;9967:15;;;9945:55;:::i;:::-;10067:13;;10022:20;;;10089:55;10067:13;10022:20;10111:15;;;10089:55;:::i;:::-;10211:13;;10166:20;;;10233:55;10211:13;10166:20;10255:15;;;10233:55;:::i;:::-;10304:20;;;;;8881:1449;-1:-1:-1;;;;;;;;;;8881:1449:1:o;10335:1641::-;10802:3;10840:6;10834:13;10866:4;10879:51;10923:6;10918:3;10913:2;10905:6;10901:15;10879:51;:::i;:::-;10993:13;;10952:16;;;;11015:55;10993:13;10952:16;11037:15;;;11015:55;:::i;:::-;11137:13;;11092:20;;;11159:55;11137:13;11092:20;11181:15;;;11159:55;:::i;:::-;11281:13;;11236:20;;;11303:55;11281:13;11236:20;11325:15;;;11303:55;:::i;:::-;11425:13;;11380:20;;;11447:55;11425:13;11380:20;11469:15;;;11447:55;:::i;:::-;11569:13;;11524:20;;;11591:55;11569:13;11524:20;11613:15;;;11591:55;:::i;:::-;11713:13;;11668:20;;;11735:55;11713:13;11668:20;11757:15;;;11735:55;:::i;:::-;11857:13;;11812:20;;;11879:55;11857:13;11812:20;11901:15;;;11879:55;:::i;:::-;11950:20;;;;;10335:1641;-1:-1:-1;;;;;;;;;;;10335:1641:1:o;11981:727::-;12261:3;12299:6;12293:13;12315:53;12361:6;12356:3;12349:4;12341:6;12337:17;12315:53;:::i;:::-;12399:6;12394:3;12390:16;12377:29;;12429:66;12422:5;12415:81;-1:-1:-1;;;12523:4:1;12516:5;12512:16;12505:39;12575:6;12569:13;12591:66;12648:8;12643:2;12636:5;12632:14;12625:4;12617:6;12613:17;12591:66;:::i;:::-;12677:20;12699:2;12673:29;;11981:727;-1:-1:-1;;;;11981:727:1:o;12713:1817::-;13392:3;13430:6;13424:13;13446:53;13492:6;13487:3;13480:4;13472:6;13468:17;13446:53;:::i;:::-;13530:6;13525:3;13521:16;13508:29;;13560:66;13553:5;13546:81;13655:22;13650:3;13646:32;13712:2;13705:4;13698:5;13694:16;13687:28;13746:6;13740:13;13762:66;13819:8;13814:2;13807:5;13803:14;13796:4;13788:6;13784:17;13762:66;:::i;:::-;13896;13891:2;13847:20;;;;13883:11;;;13876:87;-1:-1:-1;;;13987:2:1;13979:11;;13972:49;14046:13;;14068:63;14046:13;14117:2;14109:11;;14102:4;14090:17;;14068:63;:::i;:::-;14196:66;14191:2;14150:17;;;;14183:11;;;14176:87;14287:3;14279:12;;14272:24;14321:13;;14343:64;14321:13;14392:3;14384:12;;14377:4;14365:17;;14343:64;:::i;:::-;-1:-1:-1;;;14467:3:1;14426:17;;;;14459:12;;;14452:44;14520:3;14512:12;;12713:1817;-1:-1:-1;;;;;;12713:1817:1:o;14535:2040::-;15262:3;15300:6;15294:13;15316:53;15362:6;15357:3;15350:4;15342:6;15338:17;15316:53;:::i;:::-;15400:6;15395:3;15391:16;15378:29;;15430:66;15423:5;15416:81;15531:66;15524:4;15517:5;15513:16;15506:92;15629:6;15623:13;15645:66;15702:8;15697:2;15690:5;15686:14;15679:4;15671:6;15667:17;15645:66;:::i;:::-;15779;15774:2;15730:20;;;;15766:11;;;15759:87;-1:-1:-1;;;15870:2:1;15862:11;;15855:53;15933:13;;15955:63;15933:13;16004:2;15996:11;;15989:4;15977:17;;15955:63;:::i;:::-;16083:66;16078:2;16037:17;;;;16070:11;;;16063:87;-1:-1:-1;;;16174:3:1;16166:12;;16159:52;16236:13;;16258:64;16236:13;16307:3;16299:12;;16292:4;16280:17;;16258:64;:::i;:::-;16388:66;16382:3;16341:17;;;;16374:12;;;16367:88;-1:-1:-1;;;16479:3:1;16471:12;;16464:50;16530:39;16564:3;16556:12;;16548:6;16530:39;:::i;:::-;16523:46;14535:2040;-1:-1:-1;;;;;;;;14535:2040:1:o;16580:666::-;16860:3;16898:6;16892:13;16914:53;16960:6;16955:3;16948:4;16940:6;16936:17;16914:53;:::i;:::-;-1:-1:-1;;;16989:16:1;;;17014:68;;;17107:13;;17129:66;17107:13;17181:2;17170:14;;17163:4;17151:17;;17129:66;:::i;:::-;17215:20;17237:2;17211:29;;16580:666;-1:-1:-1;;;;16580:666:1:o;17251:543::-;17528:3;17556:38;17590:3;17582:6;17556:38;:::i;:::-;17623:6;17617:13;17639:52;17684:6;17680:2;17673:4;17665:6;17661:17;17639:52;:::i;:::-;-1:-1:-1;;;17713:15:1;;17737:22;;;17786:1;17775:13;;17251:543;-1:-1:-1;;;;17251:543:1:o;17799:542::-;18076:3;18104:38;18138:3;18130:6;18104:38;:::i;:::-;18171:6;18165:13;18187:52;18232:6;18228:2;18221:4;18213:6;18209:17;18187:52;:::i;:::-;-1:-1:-1;;;18261:15:1;;18285:21;;;18333:1;18322:13;;17799:542;-1:-1:-1;;;;17799:542:1:o;18346:597::-;-1:-1:-1;;;18697:30:1;;18750:13;;18679:3;;18772:61;18750:13;18822:1;18813:11;;18806:4;18794:17;;18772:61;:::i;:::-;-1:-1:-1;;;18892:1:1;18852:16;;;;18884:10;;;18877:34;-1:-1:-1;18935:1:1;18927:10;;18346:597;-1:-1:-1;18346:597:1:o;18948:::-;-1:-1:-1;;;19299:30:1;;19352:13;;19281:3;;19374:61;19352:13;19424:1;19415:11;;19408:4;19396:17;;19374:61;:::i;19550:597::-;-1:-1:-1;;;19901:30:1;;19954:13;;19883:3;;19976:61;19954:13;20026:1;20017:11;;20010:4;19998:17;;19976:61;:::i;20152:592::-;-1:-1:-1;;;20503:25:1;;20551:13;;20485:3;;20573:61;20551:13;20623:1;20614:11;;20607:4;20595:17;;20573:61;:::i;:::-;-1:-1:-1;;;20693:1:1;20653:16;;;;20685:10;;;20678:34;-1:-1:-1;20736:1:1;20728:10;;20152:592;-1:-1:-1;20152:592:1:o;20749:595::-;-1:-1:-1;;;21100:25:1;;21148:13;;21082:3;;21170:61;21148:13;21220:1;21211:11;;21204:4;21192:17;;21170:61;:::i;:::-;-1:-1:-1;;;21290:1:1;21250:16;;;;21282:10;;;21275:37;-1:-1:-1;21336:1:1;21328:10;;20749:595;-1:-1:-1;20749:595:1:o;21349:448::-;21611:31;21606:3;21599:44;21581:3;21672:6;21666:13;21688:62;21743:6;21738:2;21733:3;21729:12;21722:4;21714:6;21710:17;21688:62;:::i;:::-;21770:16;;;;21788:2;21766:25;;21349:448;-1:-1:-1;;21349:448:1:o;21802:597::-;-1:-1:-1;;;22153:30:1;;22206:13;;22135:3;;22228:61;22206:13;22278:1;22269:11;;22262:4;22250:17;;22228:61;:::i;22404:597::-;-1:-1:-1;;;22755:30:1;;22808:13;;22737:3;;22830:61;22808:13;22880:1;22871:11;;22864:4;22852:17;;22830:61;:::i;23006:1357::-;-1:-1:-1;;;23405:57:1;;23485:13;;23387:3;;23507:62;23485:13;23557:2;23548:12;;23541:4;23529:17;;23507:62;:::i;:::-;23633:66;23628:2;23588:16;;;23620:11;;;23613:87;23729:34;23724:2;23716:11;;23709:55;23793:34;23788:2;23780:11;;23773:55;23858:34;23852:3;23844:12;;23837:56;23923:34;23917:3;23909:12;;23902:56;23988:34;23982:3;23974:12;;23967:56;24053:34;24047:3;24039:12;;24032:56;24118:34;24112:3;24104:12;;24097:56;24183:34;24177:3;24169:12;;24162:56;-1:-1:-1;;;24242:3:1;24234:12;;24227:75;24318:39;24352:3;24344:12;;24336:6;24318:39;:::i;24368:600::-;-1:-1:-1;;;24719:33:1;;24775:13;;24701:3;;24797:61;24775:13;24847:1;24838:11;;24831:4;24819:17;;24797:61;:::i;:::-;-1:-1:-1;;;24917:1:1;24877:16;;;;24909:10;;;24902:34;-1:-1:-1;24960:1:1;24952:10;;24368:600;-1:-1:-1;24368:600:1:o;25181:488::-;-1:-1:-1;;;;;25450:15:1;;;25432:34;;25502:15;;25497:2;25482:18;;25475:43;25549:2;25534:18;;25527:34;;;25597:3;25592:2;25577:18;;25570:31;;;25375:4;;25618:45;;25643:19;;25635:6;25618:45;:::i;:::-;25610:53;25181:488;-1:-1:-1;;;;;;25181:488:1:o;26145:219::-;26294:2;26283:9;26276:21;26257:4;26314:44;26354:2;26343:9;26339:18;26331:6;26314:44;:::i;27544:414::-;27746:2;27728:21;;;27785:2;27765:18;;;27758:30;27824:34;27819:2;27804:18;;27797:62;-1:-1:-1;;;27890:2:1;27875:18;;27868:48;27948:3;27933:19;;27544:414::o;31547:339::-;31749:2;31731:21;;;31788:2;31768:18;;;31761:30;-1:-1:-1;;;31822:2:1;31807:18;;31800:45;31877:2;31862:18;;31547:339::o;33072:356::-;33274:2;33256:21;;;33293:18;;;33286:30;33352:34;33347:2;33332:18;;33325:62;33419:2;33404:18;;33072:356::o;34245:413::-;34447:2;34429:21;;;34486:2;34466:18;;;34459:30;34525:34;34520:2;34505:18;;34498:62;-1:-1:-1;;;34591:2:1;34576:18;;34569:47;34648:3;34633:19;;34245:413::o;35618:290::-;35795:6;35784:9;35777:25;35838:2;35833;35822:9;35818:18;35811:30;35758:4;35858:44;35898:2;35887:9;35883:18;35875:6;35858:44;:::i;35913:275::-;35984:2;35978:9;36049:2;36030:13;;-1:-1:-1;;36026:27:1;36014:40;;36084:18;36069:34;;36105:22;;;36066:62;36063:88;;;36131:18;;:::i;:::-;36167:2;36160:22;35913:275;;-1:-1:-1;35913:275:1:o;36193:186::-;36241:4;36274:18;36266:6;36263:30;36260:56;;;36296:18;;:::i;:::-;-1:-1:-1;36362:2:1;36341:15;-1:-1:-1;;36337:29:1;36368:4;36333:40;;36193:186::o;36510:128::-;36550:3;36581:1;36577:6;36574:1;36571:13;36568:39;;;36587:18;;:::i;:::-;-1:-1:-1;36623:9:1;;36510:128::o;36643:120::-;36683:1;36709;36699:35;;36714:18;;:::i;:::-;-1:-1:-1;36748:9:1;;36643:120::o;36768:168::-;36808:7;36874:1;36870;36866:6;36862:14;36859:1;36856:21;36851:1;36844:9;36837:17;36833:45;36830:71;;;36881:18;;:::i;:::-;-1:-1:-1;36921:9:1;;36768:168::o;36941:125::-;36981:4;37009:1;37006;37003:8;37000:34;;;37014:18;;:::i;:::-;-1:-1:-1;37051:9:1;;36941:125::o;37071:258::-;37143:1;37153:113;37167:6;37164:1;37161:13;37153:113;;;37243:11;;;37237:18;37224:11;;;37217:39;37189:2;37182:10;37153:113;;;37284:6;37281:1;37278:13;37275:48;;;-1:-1:-1;;37319:1:1;37301:16;;37294:27;37071:258::o;37334:136::-;37373:3;37401:5;37391:39;;37410:18;;:::i;:::-;-1:-1:-1;;;37446:18:1;;37334:136::o;37475:380::-;37554:1;37550:12;;;;37597;;;37618:61;;37672:4;37664:6;37660:17;37650:27;;37618:61;37725:2;37717:6;37714:14;37694:18;37691:38;37688:161;;;37771:10;37766:3;37762:20;37759:1;37752:31;37806:4;37803:1;37796:15;37834:4;37831:1;37824:15;37688:161;;37475:380;;;:::o;37860:135::-;37899:3;-1:-1:-1;;37920:17:1;;37917:43;;;37940:18;;:::i;:::-;-1:-1:-1;37987:1:1;37976:13;;37860:135::o;38000:112::-;38032:1;38058;38048:35;;38063:18;;:::i;:::-;-1:-1:-1;38097:9:1;;38000:112::o;38117:127::-;38178:10;38173:3;38169:20;38166:1;38159:31;38209:4;38206:1;38199:15;38233:4;38230:1;38223:15;38249:127;38310:10;38305:3;38301:20;38298:1;38291:31;38341:4;38338:1;38331:15;38365:4;38362:1;38355:15;38381:127;38442:10;38437:3;38433:20;38430:1;38423:31;38473:4;38470:1;38463:15;38497:4;38494:1;38487:15;38513:127;38574:10;38569:3;38565:20;38562:1;38555:31;38605:4;38602:1;38595:15;38629:4;38626:1;38619:15;38645:127;38706:10;38701:3;38697:20;38694:1;38687:31;38737:4;38734:1;38727:15;38761:4;38758:1;38751:15;38777:118;38863:5;38856:13;38849:21;38842:5;38839:32;38829:60;;38885:1;38882;38875:12;38900:131;-1:-1:-1;;;;;;38974:32:1;;38964:43;;38954:71;;39021:1;39018;39011:12

Swarm Source

ipfs://553cd8e6a1f89ccf53271ac99799e3d21130ba1d83156e08546f59670d720b69
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.