ETH Price: $2,945.39 (-6.71%)
Gas: 7 Gwei

Token

MimicShhans (MS)
 

Overview

Max Total Supply

10,012 MS

Holders

2,451

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MS
0xadf9e26e125d64dd1df6482d8f3a62f704122cc3
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:
MimicShhans

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev 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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

// File: contracts/MimicShhans.sol



pragma solidity >=0.7.0 <0.9.0;







contract MimicShhans is ERC721, Ownable, ERC721Burnable, ERC721URIStorage, ERC2981 {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "https://ipfs.filebase.io/ipfs/QmX3v9fNcEFikN6Wc6FvFKqcWD3RxwNhWiX6qzR7Yx6gpK/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 10020;
  uint256 public maxMintAmountPerTx = 2000;
  
  string public contractURI;
  bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

  bool public paused = false;
  bool public revealed = true;

  constructor(uint96 _royaltyFeesInBips, string memory _contractURI) ERC721("MimicShhans", "MS") {
    setHiddenMetadataUri("https://ipfs.filebase.io/ipfs/QmX3v9fNcEFikN6Wc6FvFKqcWD3RxwNhWiX6qzR7Yx6gpK/hidden.json");
    setRoyaltyInfo(msg.sender, _royaltyFeesInBips);
    contractURI = _contractURI;

  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount, uint256 tokenId) public payable onlyOwner mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    _mintMS(msg.sender, tokenId);
  }
  function bulkmint(uint256 _mintAmount, uint256 tokenId) public payable onlyOwner mintCompliance(_mintAmount){
    require(!paused, "The contract is paused!");
    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }
    for (uint256 i = tokenId; i < tokenId + _mintAmount; i++) {
      _mintMS(msg.sender, i);
    } 
  }

  function _mintMS(address _receiver, uint256 tokenId) internal onlyOwner{
    supply.increment();
    _safeMint(_receiver, tokenId);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override(ERC721, ERC721URIStorage)
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
   (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os, "Transfer failed");
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
}

     
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC2981)
        returns (bool)
    {
        return interfaceId == _INTERFACE_ID_ERC2981 ||
        ERC721.supportsInterface(interfaceId) ||
        super.supportsInterface(interfaceId);
    }

    function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner
    {
        _setDefaultRoyalty(_receiver,_royaltyFeesInBips);
    }

    function setContractURI(string calldata _contractURI) public onlyOwner{
        contractURI =_contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"string","name":"_contractURI","type":"string"}],"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":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"bulkmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604d81526020016200528a604d9139600b908051906020019062000035929190620005aa565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000083929190620005aa565b5066470de4df820000600e55612724600f556107d06010556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000de57600080fd5b506040516200532f3803806200532f8339818101604052810190620001049190620006ef565b6040518060400160405280600b81526020017f4d696d6963536868616e730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d53000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000188929190620005aa565b508060019080519060200190620001a1929190620005aa565b505050620001c4620001b86200022160201b60201c565b6200022960201b60201c565b620001ee604051806080016040528060588152602001620052d760589139620002ef60201b60201c565b6200020033836200031b60201b60201c565b806011908051906020019062000218929190620005aa565b50505062000a98565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ff6200034160201b60201c565b80600d908051906020019062000317929190620005aa565b5050565b6200032b6200034160201b60201c565b6200033d8282620003d260201b60201c565b5050565b620003516200022160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003776200057660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c790620007ca565b60405180910390fd5b565b620003e2620005a060201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043a90620007ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ad906200080e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b828054620005b890620008ee565b90600052602060002090601f016020900481019282620005dc576000855562000628565b82601f10620005f757805160ff191683800117855562000628565b8280016001018555821562000628579182015b82811115620006275782518255916020019190600101906200060a565b5b5090506200063791906200063b565b5090565b5b80821115620006565760008160009055506001016200063c565b5090565b6000620006716200066b8462000859565b62000830565b90508281526020810184848401111562000690576200068f620009bd565b5b6200069d848285620008b8565b509392505050565b600082601f830112620006bd57620006bc620009b8565b5b8151620006cf8482602086016200065a565b91505092915050565b600081519050620006e98162000a7e565b92915050565b60008060408385031215620007095762000708620009c7565b5b60006200071985828601620006d8565b925050602083015167ffffffffffffffff8111156200073d576200073c620009c2565b5b6200074b85828601620006a5565b9150509250929050565b6000620007646020836200088f565b91506200077182620009dd565b602082019050919050565b60006200078b602a836200088f565b9150620007988262000a06565b604082019050919050565b6000620007b26019836200088f565b9150620007bf8262000a55565b602082019050919050565b60006020820190508181036000830152620007e58162000755565b9050919050565b6000602082019050818103600083015262000807816200077c565b9050919050565b600060208201905081810360008301526200082981620007a3565b9050919050565b60006200083c6200084f565b90506200084a828262000924565b919050565b6000604051905090565b600067ffffffffffffffff82111562000877576200087662000989565b5b6200088282620009cc565b9050602081019050919050565b600082825260208201905092915050565b60006bffffffffffffffffffffffff82169050919050565b60005b83811015620008d8578082015181840152602081019050620008bb565b83811115620008e8576000848401525b50505050565b600060028204905060018216806200090757607f821691505b602082108114156200091e576200091d6200095a565b5b50919050565b6200092f82620009cc565b810181811067ffffffffffffffff8211171562000951576200095062000989565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b62000a8981620008a0565b811462000a9557600080fd5b50565b6147e28062000aa86000396000f3fe60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610840578063e0a808531461086b578063e8a3d48514610894578063e985e9c5146108bf578063f2fde38b146108fc5761023b565b8063a22cb4651461075d578063a45ba8e714610786578063b071401b146107b1578063b88d4fde146107da578063c87b56dd146108035761023b565b80637ec4a659116100f25780637ec4a6591461068a5780638da5cb5b146106b3578063938e3d7b146106de57806394354fd01461070757806395d89b41146107325761023b565b80635c975abb146105a357806362b99ad4146105ce5780636352211e146105f957806370a0823114610636578063715018a6146106735761023b565b806323b872dd116101bc578063438b630011610180578063438b6300146104cb5780634fdd43cb1461050857806351830227146105315780635503a0e81461055c57806359428450146105875761023b565b806323b872dd146103fb5780632a55205a146104245780633ccfd60b1461046257806342842e0e1461047957806342966c68146104a25761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b45780631b2ef1ca146103df5761023b565b806301ffc9a71461024057806302fa7c471461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906133a9565b610925565b6040516102749190613ab1565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061333c565b610996565b005b3480156102b257600080fd5b506102bb6109ac565b6040516102c89190613acc565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613499565b610a3e565b60405161030591906139ff565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906132fc565b610a84565b005b34801561034357600080fd5b5061034c610b9c565b6040516103599190613d6e565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613450565b610ba2565b005b34801561039757600080fd5b506103b260048036038101906103ad919061337c565b610bc4565b005b3480156103c057600080fd5b506103c9610be9565b6040516103d69190613d6e565b60405180910390f35b6103f960048036038101906103f491906134c6565b610bfa565b005b34801561040757600080fd5b50610422600480360381019061041d91906131e6565b610d61565b005b34801561043057600080fd5b5061044b600480360381019061044691906134c6565b610dc1565b604051610459929190613a66565b60405180910390f35b34801561046e57600080fd5b50610477610fac565b005b34801561048557600080fd5b506104a0600480360381019061049b91906131e6565b61106a565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613499565b61108a565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613179565b6110e6565b6040516104ff9190613a8f565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613450565b6111f1565b005b34801561053d57600080fd5b50610546611213565b6040516105539190613ab1565b60405180910390f35b34801561056857600080fd5b50610571611226565b60405161057e9190613acc565b60405180910390f35b6105a1600480360381019061059c91906134c6565b6112b4565b005b3480156105af57600080fd5b506105b8611448565b6040516105c59190613ab1565b60405180910390f35b3480156105da57600080fd5b506105e361145b565b6040516105f09190613acc565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613499565b6114e9565b60405161062d91906139ff565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613179565b61159b565b60405161066a9190613d6e565b60405180910390f35b34801561067f57600080fd5b50610688611653565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613450565b611667565b005b3480156106bf57600080fd5b506106c8611689565b6040516106d591906139ff565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190613403565b6116b3565b005b34801561071357600080fd5b5061071c6116d1565b6040516107299190613d6e565b60405180910390f35b34801561073e57600080fd5b506107476116d7565b6040516107549190613acc565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906132bc565b611769565b005b34801561079257600080fd5b5061079b61177f565b6040516107a89190613acc565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613499565b61180d565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613239565b61181f565b005b34801561080f57600080fd5b5061082a60048036038101906108259190613499565b611881565b6040516108379190613acc565b60405180910390f35b34801561084c57600080fd5b506108556119da565b6040516108629190613d6e565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d919061337c565b6119e0565b005b3480156108a057600080fd5b506108a9611a05565b6040516108b69190613acc565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906131a6565b611a93565b6040516108f39190613ab1565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613179565b611b27565b005b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097f575061097e82611bab565b5b8061098f575061098e82611c8d565b5b9050919050565b61099e611d07565b6109a88282611d85565b5050565b6060600080546109bb9061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546109e79061408f565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a4982611f1b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8f826114e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613cce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1f611f66565b73ffffffffffffffffffffffffffffffffffffffff161480610b4e5750610b4d81610b48611f66565b611a93565b5b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613c0e565b60405180910390fd5b610b978383611f6e565b505050565b600e5481565b610baa611d07565b80600c9080519060200190610bc0929190612e5c565b5050565b610bcc611d07565b80601260006101000a81548160ff02191690831515021790555050565b6000610bf5600a612027565b905090565b610c02611d07565b81600081118015610c1557506010548111155b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613b8e565b60405180910390fd5b600f5481610c62600a612027565b610c6c9190613eac565b1115610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613cee565b60405180910390fd5b601260009054906101000a900460ff1615610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490613c6e565b60405180910390fd5b610d05611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d525782600e54610d459190613f33565b341015610d5157600080fd5b5b610d5c3383612035565b505050565b610d72610d6c611f66565b82612055565b610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890613d2e565b60405180910390fd5b610dbc8383836120ea565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610f575760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f61612351565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f8d9190613f33565b610f979190613f02565b90508160000151819350935050509250929050565b610fb4611d07565b6000610fbe611689565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe1906139ea565b60006040518083038185875af1925050503d806000811461101e576040519150601f19603f3d011682016040523d82523d6000602084013e611023565b606091505b5050905080611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613b2e565b60405180910390fd5b50565b6110858383836040518060200160405280600081525061181f565b505050565b61109b611095611f66565b82612055565b6110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613d2e565b60405180910390fd5b6110e38161235b565b50565b606060006110f38361159b565b905060008167ffffffffffffffff81111561111157611110614228565b5b60405190808252806020026020018201604052801561113f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115c5750600f548211155b156111e557600061116c836114e9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d157828483815181106111b6576111b56141f9565b5b60200260200101818152505081806111cd906140f2565b9250505b82806111dc906140f2565b9350505061114b565b82945050505050919050565b6111f9611d07565b80600d908051906020019061120f929190612e5c565b5050565b601260019054906101000a900460ff1681565b600c80546112339061408f565b80601f016020809104026020016040519081016040528092919081815260200182805461125f9061408f565b80156112ac5780601f10611281576101008083540402835291602001916112ac565b820191906000526020600020905b81548152906001019060200180831161128f57829003601f168201915b505050505081565b6112bc611d07565b816000811180156112cf57506010548111155b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613b8e565b60405180910390fd5b600f548161131c600a612027565b6113269190613eac565b1115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613cee565b60405180910390fd5b601260009054906101000a900460ff16156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613c6e565b60405180910390fd5b6113bf611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461140c5782600e546113ff9190613f33565b34101561140b57600080fd5b5b60008290505b838361141e9190613eac565b8110156114425761142f3382612035565b808061143a906140f2565b915050611412565b50505050565b601260009054906101000a900460ff1681565b600b80546114689061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546114949061408f565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613cae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613bee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61165b611d07565b6116656000612367565b565b61166f611d07565b80600b9080519060200190611685929190612e5c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bb611d07565b8181601191906116cc929190612ee2565b505050565b60105481565b6060600180546116e69061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546117129061408f565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b61177b611774611f66565b838361242d565b5050565b600d805461178c9061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b89061408f565b80156118055780601f106117da57610100808354040283529160200191611805565b820191906000526020600020905b8154815290600101906020018083116117e857829003601f168201915b505050505081565b611815611d07565b8060108190555050565b61183061182a611f66565b83612055565b61186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613d2e565b60405180910390fd5b61187b8484848461259a565b50505050565b606061188c826125f6565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613c8e565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561197957600d80546118f49061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546119209061408f565b801561196d5780601f106119425761010080835404028352916020019161196d565b820191906000526020600020905b81548152906001019060200180831161195057829003601f168201915b505050505090506119d5565b6000611983612662565b905060008151116119a357604051806020016040528060008152506119d1565b806119ad846126f4565b600c6040516020016119c1939291906139b9565b6040516020818303038152906040525b9150505b919050565b600f5481565b6119e8611d07565b80601260016101000a81548160ff02191690831515021790555050565b60118054611a129061408f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e9061408f565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611d07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613b0e565b60405180910390fd5b611ba881612367565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c865750611c8582612855565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d005750611cff82611bab565b5b9050919050565b611d0f611f66565b73ffffffffffffffffffffffffffffffffffffffff16611d2d611689565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613c4e565b60405180910390fd5b565b611d8d612351565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613d4e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611f24816125f6565b611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613cae565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fe1836114e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b61203d611d07565b612047600a6128bf565b61205182826128d5565b5050565b600080612061836114e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a357506120a28185611a93565b5b806120e157508373ffffffffffffffffffffffffffffffffffffffff166120c984610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661210a826114e9565b73ffffffffffffffffffffffffffffffffffffffff1614612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790613b4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613bae565b60405180910390fd5b6121db8383836128f3565b6121e6600082611f6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122369190613f8d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228d9190613eac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234c8383836128f8565b505050565b6000612710905090565b612364816128fd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613bce565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258d9190613ab1565b60405180910390a3505050565b6125a58484846120ea565b6125b184848484612950565b6125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790613aee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546126719061408f565b80601f016020809104026020016040519081016040528092919081815260200182805461269d9061408f565b80156126ea5780601f106126bf576101008083540402835291602001916126ea565b820191906000526020600020905b8154815290600101906020018083116126cd57829003601f168201915b5050505050905090565b6060600082141561273c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612850565b600082905060005b6000821461276e578080612757906140f2565b915050600a826127679190613f02565b9150612744565b60008167ffffffffffffffff81111561278a57612789614228565b5b6040519080825280601f01601f1916602001820160405280156127bc5781602001600182028036833780820191505090505b5090505b60008514612849576001826127d59190613f8d565b9150600a856127e4919061413b565b60306127f09190613eac565b60f81b818381518110612806576128056141f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128429190613f02565b94506127c0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b6128ef828260405180602001604052806000815250612ae7565b5050565b505050565b505050565b61290681612b42565b60006007600083815260200190815260200160002080546129269061408f565b90501461294d5760076000828152602001908152602001600020600061294c9190612f68565b5b50565b60006129718473ffffffffffffffffffffffffffffffffffffffff16612c5f565b15612ada578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299a611f66565b8786866040518563ffffffff1660e01b81526004016129bc9493929190613a1a565b602060405180830381600087803b1580156129d657600080fd5b505af1925050508015612a0757506040513d601f19601f82011682018060405250810190612a0491906133d6565b60015b612a8a573d8060008114612a37576040519150601f19603f3d011682016040523d82523d6000602084013e612a3c565b606091505b50600081511415612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613aee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612adf565b600190505b949350505050565b612af18383612c82565b612afe6000848484612950565b612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3490613aee565b60405180910390fd5b505050565b6000612b4d826114e9565b9050612b5b816000846128f3565b612b66600083611f6e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb69190613f8d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b816000846128f8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce990613c2e565b60405180910390fd5b612cfb816125f6565b15612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290613b6e565b60405180910390fd5b612d47600083836128f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d979190613eac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e58600083836128f8565b5050565b828054612e689061408f565b90600052602060002090601f016020900481019282612e8a5760008555612ed1565b82601f10612ea357805160ff1916838001178555612ed1565b82800160010185558215612ed1579182015b82811115612ed0578251825591602001919060010190612eb5565b5b509050612ede9190612fa8565b5090565b828054612eee9061408f565b90600052602060002090601f016020900481019282612f105760008555612f57565b82601f10612f2957803560ff1916838001178555612f57565b82800160010185558215612f57579182015b82811115612f56578235825591602001919060010190612f3b565b5b509050612f649190612fa8565b5090565b508054612f749061408f565b6000825580601f10612f865750612fa5565b601f016020900490600052602060002090810190612fa49190612fa8565b5b50565b5b80821115612fc1576000816000905550600101612fa9565b5090565b6000612fd8612fd384613dae565b613d89565b905082815260208101848484011115612ff457612ff3614266565b5b612fff84828561404d565b509392505050565b600061301a61301584613ddf565b613d89565b90508281526020810184848401111561303657613035614266565b5b61304184828561404d565b509392505050565b60008135905061305881614739565b92915050565b60008135905061306d81614750565b92915050565b60008135905061308281614767565b92915050565b60008151905061309781614767565b92915050565b600082601f8301126130b2576130b161425c565b5b81356130c2848260208601612fc5565b91505092915050565b60008083601f8401126130e1576130e061425c565b5b8235905067ffffffffffffffff8111156130fe576130fd614257565b5b60208301915083600182028301111561311a57613119614261565b5b9250929050565b600082601f8301126131365761313561425c565b5b8135613146848260208601613007565b91505092915050565b60008135905061315e8161477e565b92915050565b60008135905061317381614795565b92915050565b60006020828403121561318f5761318e614270565b5b600061319d84828501613049565b91505092915050565b600080604083850312156131bd576131bc614270565b5b60006131cb85828601613049565b92505060206131dc85828601613049565b9150509250929050565b6000806000606084860312156131ff576131fe614270565b5b600061320d86828701613049565b935050602061321e86828701613049565b925050604061322f8682870161314f565b9150509250925092565b6000806000806080858703121561325357613252614270565b5b600061326187828801613049565b945050602061327287828801613049565b93505060406132838782880161314f565b925050606085013567ffffffffffffffff8111156132a4576132a361426b565b5b6132b08782880161309d565b91505092959194509250565b600080604083850312156132d3576132d2614270565b5b60006132e185828601613049565b92505060206132f28582860161305e565b9150509250929050565b6000806040838503121561331357613312614270565b5b600061332185828601613049565b92505060206133328582860161314f565b9150509250929050565b6000806040838503121561335357613352614270565b5b600061336185828601613049565b925050602061337285828601613164565b9150509250929050565b60006020828403121561339257613391614270565b5b60006133a08482850161305e565b91505092915050565b6000602082840312156133bf576133be614270565b5b60006133cd84828501613073565b91505092915050565b6000602082840312156133ec576133eb614270565b5b60006133fa84828501613088565b91505092915050565b6000806020838503121561341a57613419614270565b5b600083013567ffffffffffffffff8111156134385761343761426b565b5b613444858286016130cb565b92509250509250929050565b60006020828403121561346657613465614270565b5b600082013567ffffffffffffffff8111156134845761348361426b565b5b61349084828501613121565b91505092915050565b6000602082840312156134af576134ae614270565b5b60006134bd8482850161314f565b91505092915050565b600080604083850312156134dd576134dc614270565b5b60006134eb8582860161314f565b92505060206134fc8582860161314f565b9150509250929050565b6000613512838361399b565b60208301905092915050565b61352781613fc1565b82525050565b600061353882613e35565b6135428185613e63565b935061354d83613e10565b8060005b8381101561357e5781516135658882613506565b975061357083613e56565b925050600181019050613551565b5085935050505092915050565b61359481613fd3565b82525050565b60006135a582613e40565b6135af8185613e74565b93506135bf81856020860161405c565b6135c881614275565b840191505092915050565b60006135de82613e4b565b6135e88185613e90565b93506135f881856020860161405c565b61360181614275565b840191505092915050565b600061361782613e4b565b6136218185613ea1565b935061363181856020860161405c565b80840191505092915050565b6000815461364a8161408f565b6136548186613ea1565b9450600182166000811461366f5760018114613680576136b3565b60ff198316865281860193506136b3565b61368985613e20565b60005b838110156136ab5781548189015260018201915060208101905061368c565b838801955050505b50505092915050565b60006136c9603283613e90565b91506136d482614286565b604082019050919050565b60006136ec602683613e90565b91506136f7826142d5565b604082019050919050565b600061370f600f83613e90565b915061371a82614324565b602082019050919050565b6000613732602583613e90565b915061373d8261434d565b604082019050919050565b6000613755601c83613e90565b91506137608261439c565b602082019050919050565b6000613778601483613e90565b9150613783826143c5565b602082019050919050565b600061379b602483613e90565b91506137a6826143ee565b604082019050919050565b60006137be601983613e90565b91506137c98261443d565b602082019050919050565b60006137e1602983613e90565b91506137ec82614466565b604082019050919050565b6000613804603e83613e90565b915061380f826144b5565b604082019050919050565b6000613827602083613e90565b915061383282614504565b602082019050919050565b600061384a602083613e90565b91506138558261452d565b602082019050919050565b600061386d601783613e90565b915061387882614556565b602082019050919050565b6000613890602f83613e90565b915061389b8261457f565b604082019050919050565b60006138b3601883613e90565b91506138be826145ce565b602082019050919050565b60006138d6602183613e90565b91506138e1826145f7565b604082019050919050565b60006138f9600083613e85565b915061390482614646565b600082019050919050565b600061391c601483613e90565b915061392782614649565b602082019050919050565b600061393f602a83613e90565b915061394a82614672565b604082019050919050565b6000613962602e83613e90565b915061396d826146c1565b604082019050919050565b6000613985601983613e90565b915061399082614710565b602082019050919050565b6139a48161402b565b82525050565b6139b38161402b565b82525050565b60006139c5828661360c565b91506139d1828561360c565b91506139dd828461363d565b9150819050949350505050565b60006139f5826138ec565b9150819050919050565b6000602082019050613a14600083018461351e565b92915050565b6000608082019050613a2f600083018761351e565b613a3c602083018661351e565b613a4960408301856139aa565b8181036060830152613a5b818461359a565b905095945050505050565b6000604082019050613a7b600083018561351e565b613a8860208301846139aa565b9392505050565b60006020820190508181036000830152613aa9818461352d565b905092915050565b6000602082019050613ac6600083018461358b565b92915050565b60006020820190508181036000830152613ae681846135d3565b905092915050565b60006020820190508181036000830152613b07816136bc565b9050919050565b60006020820190508181036000830152613b27816136df565b9050919050565b60006020820190508181036000830152613b4781613702565b9050919050565b60006020820190508181036000830152613b6781613725565b9050919050565b60006020820190508181036000830152613b8781613748565b9050919050565b60006020820190508181036000830152613ba78161376b565b9050919050565b60006020820190508181036000830152613bc78161378e565b9050919050565b60006020820190508181036000830152613be7816137b1565b9050919050565b60006020820190508181036000830152613c07816137d4565b9050919050565b60006020820190508181036000830152613c27816137f7565b9050919050565b60006020820190508181036000830152613c478161381a565b9050919050565b60006020820190508181036000830152613c678161383d565b9050919050565b60006020820190508181036000830152613c8781613860565b9050919050565b60006020820190508181036000830152613ca781613883565b9050919050565b60006020820190508181036000830152613cc7816138a6565b9050919050565b60006020820190508181036000830152613ce7816138c9565b9050919050565b60006020820190508181036000830152613d078161390f565b9050919050565b60006020820190508181036000830152613d2781613932565b9050919050565b60006020820190508181036000830152613d4781613955565b9050919050565b60006020820190508181036000830152613d6781613978565b9050919050565b6000602082019050613d8360008301846139aa565b92915050565b6000613d93613da4565b9050613d9f82826140c1565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc957613dc8614228565b5b613dd282614275565b9050602081019050919050565b600067ffffffffffffffff821115613dfa57613df9614228565b5b613e0382614275565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613eb78261402b565b9150613ec28361402b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ef757613ef661416c565b5b828201905092915050565b6000613f0d8261402b565b9150613f188361402b565b925082613f2857613f2761419b565b5b828204905092915050565b6000613f3e8261402b565b9150613f498361402b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8257613f8161416c565b5b828202905092915050565b6000613f988261402b565b9150613fa38361402b565b925082821015613fb657613fb561416c565b5b828203905092915050565b6000613fcc8261400b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561407a57808201518184015260208101905061405f565b83811115614089576000848401525b50505050565b600060028204905060018216806140a757607f821691505b602082108114156140bb576140ba6141ca565b5b50919050565b6140ca82614275565b810181811067ffffffffffffffff821117156140e9576140e8614228565b5b80604052505050565b60006140fd8261402b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141305761412f61416c565b5b600182019050919050565b60006141468261402b565b91506141518361402b565b9250826141615761416061419b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61474281613fc1565b811461474d57600080fd5b50565b61475981613fd3565b811461476457600080fd5b50565b61477081613fdf565b811461477b57600080fd5b50565b6147878161402b565b811461479257600080fd5b50565b61479e81614035565b81146147a957600080fd5b5056fea26469706673582212208ef23d3f1b432b81cecb870a3beb1bf71f325ef8886f987eb3bb545e9491c06b64736f6c6343000807003368747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d58337639664e634546696b4e365763364676464b71635744335278774e6857695836717a523759783667704b2f68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d58337639664e634546696b4e365763364676464b71635744335278774e6857695836717a523759783667704b2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d52667554755541576566706652665562766235596d737631686b57374a317674775772577556523843796e380000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610840578063e0a808531461086b578063e8a3d48514610894578063e985e9c5146108bf578063f2fde38b146108fc5761023b565b8063a22cb4651461075d578063a45ba8e714610786578063b071401b146107b1578063b88d4fde146107da578063c87b56dd146108035761023b565b80637ec4a659116100f25780637ec4a6591461068a5780638da5cb5b146106b3578063938e3d7b146106de57806394354fd01461070757806395d89b41146107325761023b565b80635c975abb146105a357806362b99ad4146105ce5780636352211e146105f957806370a0823114610636578063715018a6146106735761023b565b806323b872dd116101bc578063438b630011610180578063438b6300146104cb5780634fdd43cb1461050857806351830227146105315780635503a0e81461055c57806359428450146105875761023b565b806323b872dd146103fb5780632a55205a146104245780633ccfd60b1461046257806342842e0e1461047957806342966c68146104a25761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b45780631b2ef1ca146103df5761023b565b806301ffc9a71461024057806302fa7c471461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906133a9565b610925565b6040516102749190613ab1565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061333c565b610996565b005b3480156102b257600080fd5b506102bb6109ac565b6040516102c89190613acc565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613499565b610a3e565b60405161030591906139ff565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906132fc565b610a84565b005b34801561034357600080fd5b5061034c610b9c565b6040516103599190613d6e565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613450565b610ba2565b005b34801561039757600080fd5b506103b260048036038101906103ad919061337c565b610bc4565b005b3480156103c057600080fd5b506103c9610be9565b6040516103d69190613d6e565b60405180910390f35b6103f960048036038101906103f491906134c6565b610bfa565b005b34801561040757600080fd5b50610422600480360381019061041d91906131e6565b610d61565b005b34801561043057600080fd5b5061044b600480360381019061044691906134c6565b610dc1565b604051610459929190613a66565b60405180910390f35b34801561046e57600080fd5b50610477610fac565b005b34801561048557600080fd5b506104a0600480360381019061049b91906131e6565b61106a565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613499565b61108a565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613179565b6110e6565b6040516104ff9190613a8f565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613450565b6111f1565b005b34801561053d57600080fd5b50610546611213565b6040516105539190613ab1565b60405180910390f35b34801561056857600080fd5b50610571611226565b60405161057e9190613acc565b60405180910390f35b6105a1600480360381019061059c91906134c6565b6112b4565b005b3480156105af57600080fd5b506105b8611448565b6040516105c59190613ab1565b60405180910390f35b3480156105da57600080fd5b506105e361145b565b6040516105f09190613acc565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613499565b6114e9565b60405161062d91906139ff565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613179565b61159b565b60405161066a9190613d6e565b60405180910390f35b34801561067f57600080fd5b50610688611653565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613450565b611667565b005b3480156106bf57600080fd5b506106c8611689565b6040516106d591906139ff565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190613403565b6116b3565b005b34801561071357600080fd5b5061071c6116d1565b6040516107299190613d6e565b60405180910390f35b34801561073e57600080fd5b506107476116d7565b6040516107549190613acc565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906132bc565b611769565b005b34801561079257600080fd5b5061079b61177f565b6040516107a89190613acc565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613499565b61180d565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613239565b61181f565b005b34801561080f57600080fd5b5061082a60048036038101906108259190613499565b611881565b6040516108379190613acc565b60405180910390f35b34801561084c57600080fd5b506108556119da565b6040516108629190613d6e565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d919061337c565b6119e0565b005b3480156108a057600080fd5b506108a9611a05565b6040516108b69190613acc565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906131a6565b611a93565b6040516108f39190613ab1565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613179565b611b27565b005b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097f575061097e82611bab565b5b8061098f575061098e82611c8d565b5b9050919050565b61099e611d07565b6109a88282611d85565b5050565b6060600080546109bb9061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546109e79061408f565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a4982611f1b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8f826114e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613cce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1f611f66565b73ffffffffffffffffffffffffffffffffffffffff161480610b4e5750610b4d81610b48611f66565b611a93565b5b610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613c0e565b60405180910390fd5b610b978383611f6e565b505050565b600e5481565b610baa611d07565b80600c9080519060200190610bc0929190612e5c565b5050565b610bcc611d07565b80601260006101000a81548160ff02191690831515021790555050565b6000610bf5600a612027565b905090565b610c02611d07565b81600081118015610c1557506010548111155b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613b8e565b60405180910390fd5b600f5481610c62600a612027565b610c6c9190613eac565b1115610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613cee565b60405180910390fd5b601260009054906101000a900460ff1615610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490613c6e565b60405180910390fd5b610d05611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d525782600e54610d459190613f33565b341015610d5157600080fd5b5b610d5c3383612035565b505050565b610d72610d6c611f66565b82612055565b610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890613d2e565b60405180910390fd5b610dbc8383836120ea565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610f575760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f61612351565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f8d9190613f33565b610f979190613f02565b90508160000151819350935050509250929050565b610fb4611d07565b6000610fbe611689565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe1906139ea565b60006040518083038185875af1925050503d806000811461101e576040519150601f19603f3d011682016040523d82523d6000602084013e611023565b606091505b5050905080611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613b2e565b60405180910390fd5b50565b6110858383836040518060200160405280600081525061181f565b505050565b61109b611095611f66565b82612055565b6110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613d2e565b60405180910390fd5b6110e38161235b565b50565b606060006110f38361159b565b905060008167ffffffffffffffff81111561111157611110614228565b5b60405190808252806020026020018201604052801561113f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115c5750600f548211155b156111e557600061116c836114e9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d157828483815181106111b6576111b56141f9565b5b60200260200101818152505081806111cd906140f2565b9250505b82806111dc906140f2565b9350505061114b565b82945050505050919050565b6111f9611d07565b80600d908051906020019061120f929190612e5c565b5050565b601260019054906101000a900460ff1681565b600c80546112339061408f565b80601f016020809104026020016040519081016040528092919081815260200182805461125f9061408f565b80156112ac5780601f10611281576101008083540402835291602001916112ac565b820191906000526020600020905b81548152906001019060200180831161128f57829003601f168201915b505050505081565b6112bc611d07565b816000811180156112cf57506010548111155b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613b8e565b60405180910390fd5b600f548161131c600a612027565b6113269190613eac565b1115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613cee565b60405180910390fd5b601260009054906101000a900460ff16156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613c6e565b60405180910390fd5b6113bf611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461140c5782600e546113ff9190613f33565b34101561140b57600080fd5b5b60008290505b838361141e9190613eac565b8110156114425761142f3382612035565b808061143a906140f2565b915050611412565b50505050565b601260009054906101000a900460ff1681565b600b80546114689061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546114949061408f565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613cae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613bee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61165b611d07565b6116656000612367565b565b61166f611d07565b80600b9080519060200190611685929190612e5c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bb611d07565b8181601191906116cc929190612ee2565b505050565b60105481565b6060600180546116e69061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546117129061408f565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b61177b611774611f66565b838361242d565b5050565b600d805461178c9061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b89061408f565b80156118055780601f106117da57610100808354040283529160200191611805565b820191906000526020600020905b8154815290600101906020018083116117e857829003601f168201915b505050505081565b611815611d07565b8060108190555050565b61183061182a611f66565b83612055565b61186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613d2e565b60405180910390fd5b61187b8484848461259a565b50505050565b606061188c826125f6565b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613c8e565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561197957600d80546118f49061408f565b80601f01602080910402602001604051908101604052809291908181526020018280546119209061408f565b801561196d5780601f106119425761010080835404028352916020019161196d565b820191906000526020600020905b81548152906001019060200180831161195057829003601f168201915b505050505090506119d5565b6000611983612662565b905060008151116119a357604051806020016040528060008152506119d1565b806119ad846126f4565b600c6040516020016119c1939291906139b9565b6040516020818303038152906040525b9150505b919050565b600f5481565b6119e8611d07565b80601260016101000a81548160ff02191690831515021790555050565b60118054611a129061408f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e9061408f565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611d07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613b0e565b60405180910390fd5b611ba881612367565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c865750611c8582612855565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d005750611cff82611bab565b5b9050919050565b611d0f611f66565b73ffffffffffffffffffffffffffffffffffffffff16611d2d611689565b73ffffffffffffffffffffffffffffffffffffffff1614611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613c4e565b60405180910390fd5b565b611d8d612351565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613d4e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611f24816125f6565b611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613cae565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fe1836114e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b61203d611d07565b612047600a6128bf565b61205182826128d5565b5050565b600080612061836114e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a357506120a28185611a93565b5b806120e157508373ffffffffffffffffffffffffffffffffffffffff166120c984610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661210a826114e9565b73ffffffffffffffffffffffffffffffffffffffff1614612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790613b4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613bae565b60405180910390fd5b6121db8383836128f3565b6121e6600082611f6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122369190613f8d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228d9190613eac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234c8383836128f8565b505050565b6000612710905090565b612364816128fd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613bce565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258d9190613ab1565b60405180910390a3505050565b6125a58484846120ea565b6125b184848484612950565b6125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790613aee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546126719061408f565b80601f016020809104026020016040519081016040528092919081815260200182805461269d9061408f565b80156126ea5780601f106126bf576101008083540402835291602001916126ea565b820191906000526020600020905b8154815290600101906020018083116126cd57829003601f168201915b5050505050905090565b6060600082141561273c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612850565b600082905060005b6000821461276e578080612757906140f2565b915050600a826127679190613f02565b9150612744565b60008167ffffffffffffffff81111561278a57612789614228565b5b6040519080825280601f01601f1916602001820160405280156127bc5781602001600182028036833780820191505090505b5090505b60008514612849576001826127d59190613f8d565b9150600a856127e4919061413b565b60306127f09190613eac565b60f81b818381518110612806576128056141f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128429190613f02565b94506127c0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b6128ef828260405180602001604052806000815250612ae7565b5050565b505050565b505050565b61290681612b42565b60006007600083815260200190815260200160002080546129269061408f565b90501461294d5760076000828152602001908152602001600020600061294c9190612f68565b5b50565b60006129718473ffffffffffffffffffffffffffffffffffffffff16612c5f565b15612ada578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299a611f66565b8786866040518563ffffffff1660e01b81526004016129bc9493929190613a1a565b602060405180830381600087803b1580156129d657600080fd5b505af1925050508015612a0757506040513d601f19601f82011682018060405250810190612a0491906133d6565b60015b612a8a573d8060008114612a37576040519150601f19603f3d011682016040523d82523d6000602084013e612a3c565b606091505b50600081511415612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613aee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612adf565b600190505b949350505050565b612af18383612c82565b612afe6000848484612950565b612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3490613aee565b60405180910390fd5b505050565b6000612b4d826114e9565b9050612b5b816000846128f3565b612b66600083611f6e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb69190613f8d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b816000846128f8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce990613c2e565b60405180910390fd5b612cfb816125f6565b15612d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3290613b6e565b60405180910390fd5b612d47600083836128f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d979190613eac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e58600083836128f8565b5050565b828054612e689061408f565b90600052602060002090601f016020900481019282612e8a5760008555612ed1565b82601f10612ea357805160ff1916838001178555612ed1565b82800160010185558215612ed1579182015b82811115612ed0578251825591602001919060010190612eb5565b5b509050612ede9190612fa8565b5090565b828054612eee9061408f565b90600052602060002090601f016020900481019282612f105760008555612f57565b82601f10612f2957803560ff1916838001178555612f57565b82800160010185558215612f57579182015b82811115612f56578235825591602001919060010190612f3b565b5b509050612f649190612fa8565b5090565b508054612f749061408f565b6000825580601f10612f865750612fa5565b601f016020900490600052602060002090810190612fa49190612fa8565b5b50565b5b80821115612fc1576000816000905550600101612fa9565b5090565b6000612fd8612fd384613dae565b613d89565b905082815260208101848484011115612ff457612ff3614266565b5b612fff84828561404d565b509392505050565b600061301a61301584613ddf565b613d89565b90508281526020810184848401111561303657613035614266565b5b61304184828561404d565b509392505050565b60008135905061305881614739565b92915050565b60008135905061306d81614750565b92915050565b60008135905061308281614767565b92915050565b60008151905061309781614767565b92915050565b600082601f8301126130b2576130b161425c565b5b81356130c2848260208601612fc5565b91505092915050565b60008083601f8401126130e1576130e061425c565b5b8235905067ffffffffffffffff8111156130fe576130fd614257565b5b60208301915083600182028301111561311a57613119614261565b5b9250929050565b600082601f8301126131365761313561425c565b5b8135613146848260208601613007565b91505092915050565b60008135905061315e8161477e565b92915050565b60008135905061317381614795565b92915050565b60006020828403121561318f5761318e614270565b5b600061319d84828501613049565b91505092915050565b600080604083850312156131bd576131bc614270565b5b60006131cb85828601613049565b92505060206131dc85828601613049565b9150509250929050565b6000806000606084860312156131ff576131fe614270565b5b600061320d86828701613049565b935050602061321e86828701613049565b925050604061322f8682870161314f565b9150509250925092565b6000806000806080858703121561325357613252614270565b5b600061326187828801613049565b945050602061327287828801613049565b93505060406132838782880161314f565b925050606085013567ffffffffffffffff8111156132a4576132a361426b565b5b6132b08782880161309d565b91505092959194509250565b600080604083850312156132d3576132d2614270565b5b60006132e185828601613049565b92505060206132f28582860161305e565b9150509250929050565b6000806040838503121561331357613312614270565b5b600061332185828601613049565b92505060206133328582860161314f565b9150509250929050565b6000806040838503121561335357613352614270565b5b600061336185828601613049565b925050602061337285828601613164565b9150509250929050565b60006020828403121561339257613391614270565b5b60006133a08482850161305e565b91505092915050565b6000602082840312156133bf576133be614270565b5b60006133cd84828501613073565b91505092915050565b6000602082840312156133ec576133eb614270565b5b60006133fa84828501613088565b91505092915050565b6000806020838503121561341a57613419614270565b5b600083013567ffffffffffffffff8111156134385761343761426b565b5b613444858286016130cb565b92509250509250929050565b60006020828403121561346657613465614270565b5b600082013567ffffffffffffffff8111156134845761348361426b565b5b61349084828501613121565b91505092915050565b6000602082840312156134af576134ae614270565b5b60006134bd8482850161314f565b91505092915050565b600080604083850312156134dd576134dc614270565b5b60006134eb8582860161314f565b92505060206134fc8582860161314f565b9150509250929050565b6000613512838361399b565b60208301905092915050565b61352781613fc1565b82525050565b600061353882613e35565b6135428185613e63565b935061354d83613e10565b8060005b8381101561357e5781516135658882613506565b975061357083613e56565b925050600181019050613551565b5085935050505092915050565b61359481613fd3565b82525050565b60006135a582613e40565b6135af8185613e74565b93506135bf81856020860161405c565b6135c881614275565b840191505092915050565b60006135de82613e4b565b6135e88185613e90565b93506135f881856020860161405c565b61360181614275565b840191505092915050565b600061361782613e4b565b6136218185613ea1565b935061363181856020860161405c565b80840191505092915050565b6000815461364a8161408f565b6136548186613ea1565b9450600182166000811461366f5760018114613680576136b3565b60ff198316865281860193506136b3565b61368985613e20565b60005b838110156136ab5781548189015260018201915060208101905061368c565b838801955050505b50505092915050565b60006136c9603283613e90565b91506136d482614286565b604082019050919050565b60006136ec602683613e90565b91506136f7826142d5565b604082019050919050565b600061370f600f83613e90565b915061371a82614324565b602082019050919050565b6000613732602583613e90565b915061373d8261434d565b604082019050919050565b6000613755601c83613e90565b91506137608261439c565b602082019050919050565b6000613778601483613e90565b9150613783826143c5565b602082019050919050565b600061379b602483613e90565b91506137a6826143ee565b604082019050919050565b60006137be601983613e90565b91506137c98261443d565b602082019050919050565b60006137e1602983613e90565b91506137ec82614466565b604082019050919050565b6000613804603e83613e90565b915061380f826144b5565b604082019050919050565b6000613827602083613e90565b915061383282614504565b602082019050919050565b600061384a602083613e90565b91506138558261452d565b602082019050919050565b600061386d601783613e90565b915061387882614556565b602082019050919050565b6000613890602f83613e90565b915061389b8261457f565b604082019050919050565b60006138b3601883613e90565b91506138be826145ce565b602082019050919050565b60006138d6602183613e90565b91506138e1826145f7565b604082019050919050565b60006138f9600083613e85565b915061390482614646565b600082019050919050565b600061391c601483613e90565b915061392782614649565b602082019050919050565b600061393f602a83613e90565b915061394a82614672565b604082019050919050565b6000613962602e83613e90565b915061396d826146c1565b604082019050919050565b6000613985601983613e90565b915061399082614710565b602082019050919050565b6139a48161402b565b82525050565b6139b38161402b565b82525050565b60006139c5828661360c565b91506139d1828561360c565b91506139dd828461363d565b9150819050949350505050565b60006139f5826138ec565b9150819050919050565b6000602082019050613a14600083018461351e565b92915050565b6000608082019050613a2f600083018761351e565b613a3c602083018661351e565b613a4960408301856139aa565b8181036060830152613a5b818461359a565b905095945050505050565b6000604082019050613a7b600083018561351e565b613a8860208301846139aa565b9392505050565b60006020820190508181036000830152613aa9818461352d565b905092915050565b6000602082019050613ac6600083018461358b565b92915050565b60006020820190508181036000830152613ae681846135d3565b905092915050565b60006020820190508181036000830152613b07816136bc565b9050919050565b60006020820190508181036000830152613b27816136df565b9050919050565b60006020820190508181036000830152613b4781613702565b9050919050565b60006020820190508181036000830152613b6781613725565b9050919050565b60006020820190508181036000830152613b8781613748565b9050919050565b60006020820190508181036000830152613ba78161376b565b9050919050565b60006020820190508181036000830152613bc78161378e565b9050919050565b60006020820190508181036000830152613be7816137b1565b9050919050565b60006020820190508181036000830152613c07816137d4565b9050919050565b60006020820190508181036000830152613c27816137f7565b9050919050565b60006020820190508181036000830152613c478161381a565b9050919050565b60006020820190508181036000830152613c678161383d565b9050919050565b60006020820190508181036000830152613c8781613860565b9050919050565b60006020820190508181036000830152613ca781613883565b9050919050565b60006020820190508181036000830152613cc7816138a6565b9050919050565b60006020820190508181036000830152613ce7816138c9565b9050919050565b60006020820190508181036000830152613d078161390f565b9050919050565b60006020820190508181036000830152613d2781613932565b9050919050565b60006020820190508181036000830152613d4781613955565b9050919050565b60006020820190508181036000830152613d6781613978565b9050919050565b6000602082019050613d8360008301846139aa565b92915050565b6000613d93613da4565b9050613d9f82826140c1565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc957613dc8614228565b5b613dd282614275565b9050602081019050919050565b600067ffffffffffffffff821115613dfa57613df9614228565b5b613e0382614275565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613eb78261402b565b9150613ec28361402b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ef757613ef661416c565b5b828201905092915050565b6000613f0d8261402b565b9150613f188361402b565b925082613f2857613f2761419b565b5b828204905092915050565b6000613f3e8261402b565b9150613f498361402b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8257613f8161416c565b5b828202905092915050565b6000613f988261402b565b9150613fa38361402b565b925082821015613fb657613fb561416c565b5b828203905092915050565b6000613fcc8261400b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561407a57808201518184015260208101905061405f565b83811115614089576000848401525b50505050565b600060028204905060018216806140a757607f821691505b602082108114156140bb576140ba6141ca565b5b50919050565b6140ca82614275565b810181811067ffffffffffffffff821117156140e9576140e8614228565b5b80604052505050565b60006140fd8261402b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141305761412f61416c565b5b600182019050919050565b60006141468261402b565b91506141518361402b565b9250826141615761416061419b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61474281613fc1565b811461474d57600080fd5b50565b61475981613fd3565b811461476457600080fd5b50565b61477081613fdf565b811461477b57600080fd5b50565b6147878161402b565b811461479257600080fd5b50565b61479e81614035565b81146147a957600080fd5b5056fea26469706673582212208ef23d3f1b432b81cecb870a3beb1bf71f325ef8886f987eb3bb545e9491c06b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d52667554755541576566706652665562766235596d737631686b57374a317674775772577556523843796e380000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 750
Arg [1] : _contractURI (string): https://ipfs.filebase.io/ipfs/QmRfuTuUAWefpfRfUbvb5Ymsv1hkW7J1vtwWrWuVR8Cyn8

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [3] : 68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d
Arg [4] : 52667554755541576566706652665562766235596d737631686b57374a317674
Arg [5] : 775772577556523843796e380000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47306:4930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51642:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51952:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33726:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33243:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47692:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51058:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51164:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48529:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48624:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34426:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21695:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;51247:155;;;;;;;;;;;;;:::i;:::-;;34833:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46967:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49424:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50814:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47941:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47614:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48916:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47910:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47504:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31924:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31655:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6771:103;;;;;;;;;;;;;:::i;:::-;;50952:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6123:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52119:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47766:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32382:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33969:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47652:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50678:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35089:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50065:520;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47729:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50591:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47815:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34195:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7029:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51642:302;51772:4;47893:10;51816:21;;51801:36;;;:11;:36;;;;:86;;;;51850:37;51875:11;51850:24;:37::i;:::-;51801:86;:135;;;;51900:36;51924:11;51900:23;:36::i;:::-;51801:135;51794:142;;51642:302;;;:::o;51952:159::-;6009:13;:11;:13::i;:::-;52055:48:::1;52074:9;52084:18;52055;:48::i;:::-;51952:159:::0;;:::o;32213:100::-;32267:13;32300:5;32293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32213:100;:::o;33726:171::-;33802:7;33822:23;33837:7;33822:14;:23::i;:::-;33865:15;:24;33881:7;33865:24;;;;;;;;;;;;;;;;;;;;;33858:31;;33726:171;;;:::o;33243:417::-;33324:13;33340:23;33355:7;33340:14;:23::i;:::-;33324:39;;33388:5;33382:11;;:2;:11;;;;33374:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33482:5;33466:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33491:37;33508:5;33515:12;:10;:12::i;:::-;33491:16;:37::i;:::-;33466:62;33444:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;33631:21;33640:2;33644:7;33631:8;:21::i;:::-;33313:347;33243:417;;:::o;47692:32::-;;;;:::o;51058:100::-;6009:13;:11;:13::i;:::-;51142:10:::1;51130:9;:22;;;;;;;;;;;;:::i;:::-;;51058:100:::0;:::o;51164:77::-;6009:13;:11;:13::i;:::-;51229:6:::1;51220;;:15;;;;;;;;;;;;;;;;;;51164:77:::0;:::o;48529:89::-;48573:7;48596:16;:6;:14;:16::i;:::-;48589:23;;48529:89;:::o;48624:288::-;6009:13;:11;:13::i;:::-;48716:11:::1;48363:1;48349:11;:15;:52;;;;;48383:18;;48368:11;:33;;48349:52;48341:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48475:9;;48460:11;48441:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;48433:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48745:6:::2;;;;;;;;;;;48744:7;48736:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48804:7;:5;:7::i;:::-;48790:21;;:10;:21;;;48786:84;;48850:11;48843:4;;:18;;;;:::i;:::-;48830:9;:31;;48822:40;;;::::0;::::2;;48786:84;48878:28;48886:10;48898:7;48878;:28::i;:::-;6033:1:::1;48624:288:::0;;:::o;34426:336::-;34621:41;34640:12;:10;:12::i;:::-;34654:7;34621:18;:41::i;:::-;34613:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;34726:28;34736:4;34742:2;34746:7;34726:9;:28::i;:::-;34426:336;;;:::o;21695:442::-;21792:7;21801;21821:26;21850:17;:27;21868:8;21850:27;;;;;;;;;;;21821:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21922:1;21894:30;;:7;:16;;;:30;;;21890:92;;;21951:19;21941:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21890:92;21994:21;22059:17;:15;:17::i;:::-;22018:58;;22032:7;:23;;;22019:36;;:10;:36;;;;:::i;:::-;22018:58;;;;:::i;:::-;21994:82;;22097:7;:16;;;22115:13;22089:40;;;;;;21695:442;;;;;:::o;51247:155::-;6009:13;:11;:13::i;:::-;51291:7:::1;51312;:5;:7::i;:::-;51304:21;;51333;51304:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51290:69;;;51374:2;51366:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;51284:118;51247:155::o:0;34833:185::-;34971:39;34988:4;34994:2;34998:7;34971:39;;;;;;;;;;;;:16;:39::i;:::-;34833:185;;;:::o;46967:243::-;47085:41;47104:12;:10;:12::i;:::-;47118:7;47085:18;:41::i;:::-;47077:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47188:14;47194:7;47188:5;:14::i;:::-;46967:243;:::o;49424:635::-;49499:16;49527:23;49553:17;49563:6;49553:9;:17::i;:::-;49527:43;;49577:30;49624:15;49610:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49577:63;;49647:22;49672:1;49647:26;;49680:23;49716:309;49741:15;49723;:33;:64;;;;;49778:9;;49760:14;:27;;49723:64;49716:309;;;49798:25;49826:23;49834:14;49826:7;:23::i;:::-;49798:51;;49885:6;49864:27;;:17;:27;;;49860:131;;;49937:14;49904:13;49918:15;49904:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;49964:17;;;;;:::i;:::-;;;;49860:131;50001:16;;;;;:::i;:::-;;;;49789:236;49716:309;;;50040:13;50033:20;;;;;;49424:635;;;:::o;50814:132::-;6009:13;:11;:13::i;:::-;50922:18:::1;50902:17;:38;;;;;;;;;;;;:::i;:::-;;50814:132:::0;:::o;47941:27::-;;;;;;;;;;;;;:::o;47614:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48916:358::-;6009:13;:11;:13::i;:::-;49012:11:::1;48363:1;48349:11;:15;:52;;;;;48383:18;;48368:11;:33;;48349:52;48341:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48475:9;;48460:11;48441:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;48433:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49040:6:::2;;;;;;;;;;;49039:7;49031:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49099:7;:5;:7::i;:::-;49085:21;;:10;:21;;;49081:84;;49145:11;49138:4;;:18;;;;:::i;:::-;49125:9;:31;;49117:40;;;::::0;::::2;;49081:84;49176:9;49188:7;49176:19;;49171:97;49211:11;49201:7;:21;;;;:::i;:::-;49197:1;:25;49171:97;;;49238:22;49246:10;49258:1;49238:7;:22::i;:::-;49224:3;;;;;:::i;:::-;;;;49171:97;;;;6033:1:::1;48916:358:::0;;:::o;47910:26::-;;;;;;;;;;;;;:::o;47504:105::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31924:222::-;31996:7;32016:13;32032:7;:16;32040:7;32032:16;;;;;;;;;;;;;;;;;;;;;32016:32;;32084:1;32067:19;;:5;:19;;;;32059:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;32133:5;32126:12;;;31924:222;;;:::o;31655:207::-;31727:7;31772:1;31755:19;;:5;:19;;;;31747:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31838:9;:16;31848:5;31838:16;;;;;;;;;;;;;;;;31831:23;;31655:207;;;:::o;6771:103::-;6009:13;:11;:13::i;:::-;6836:30:::1;6863:1;6836:18;:30::i;:::-;6771:103::o:0;50952:100::-;6009:13;:11;:13::i;:::-;51036:10:::1;51024:9;:22;;;;;;;;;;;;:::i;:::-;;50952:100:::0;:::o;6123:87::-;6169:7;6196:6;;;;;;;;;;;6189:13;;6123:87;:::o;52119:114::-;6009:13;:11;:13::i;:::-;52213:12:::1;;52200:11;:25;;;;;;;:::i;:::-;;52119:114:::0;;:::o;47766:40::-;;;;:::o;32382:104::-;32438:13;32471:7;32464:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32382:104;:::o;33969:155::-;34064:52;34083:12;:10;:12::i;:::-;34097:8;34107;34064:18;:52::i;:::-;33969:155;;:::o;47652:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50678:130::-;6009:13;:11;:13::i;:::-;50783:19:::1;50762:18;:40;;;;50678:130:::0;:::o;35089:323::-;35263:41;35282:12;:10;:12::i;:::-;35296:7;35263:18;:41::i;:::-;35255:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;35366:38;35380:4;35386:2;35390:7;35399:4;35366:13;:38::i;:::-;35089:323;;;;:::o;50065:520::-;50190:13;50231:17;50239:8;50231:7;:17::i;:::-;50215:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50338:5;50326:17;;:8;;;;;;;;;;;:17;;;50322:64;;;50361:17;50354:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50322:64;50394:28;50425:10;:8;:10::i;:::-;50394:41;;50480:1;50455:14;50449:28;:32;:130;;;;;;;;;;;;;;;;;50517:14;50533:19;:8;:17;:19::i;:::-;50554:9;50500:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50449:130;50442:137;;;50065:520;;;;:::o;47729:32::-;;;;:::o;50591:81::-;6009:13;:11;:13::i;:::-;50660:6:::1;50649:8;;:17;;;;;;;;;;;;;;;;;;50591:81:::0;:::o;47815:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34195:164::-;34292:4;34316:18;:25;34335:5;34316:25;;;;;;;;;;;;;;;:35;34342:8;34316:35;;;;;;;;;;;;;;;;;;;;;;;;;34309:42;;34195:164;;;;:::o;7029:201::-;6009:13;:11;:13::i;:::-;7138:1:::1;7118:22;;:8;:22;;;;7110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7194:28;7213:8;7194:18;:28::i;:::-;7029:201:::0;:::o;31286:305::-;31388:4;31440:25;31425:40;;;:11;:40;;;;:105;;;;31497:33;31482:48;;;:11;:48;;;;31425:105;:158;;;;31547:36;31571:11;31547:23;:36::i;:::-;31425:158;31405:178;;31286:305;;;:::o;21425:215::-;21527:4;21566:26;21551:41;;;:11;:41;;;;:81;;;;21596:36;21620:11;21596:23;:36::i;:::-;21551:81;21544:88;;21425:215;;;:::o;6288:132::-;6363:12;:10;:12::i;:::-;6352:23;;:7;:5;:7::i;:::-;:23;;;6344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6288:132::o;22787:332::-;22906:17;:15;:17::i;:::-;22890:33;;:12;:33;;;;22882:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;23009:1;22989:22;;:8;:22;;;;22981:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23076:35;;;;;;;;23088:8;23076:35;;;;;;23098:12;23076:35;;;;;23054:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22787:332;;:::o;41701:135::-;41783:16;41791:7;41783;:16::i;:::-;41775:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;41701:135;:::o;4674:98::-;4727:7;4754:10;4747:17;;4674:98;:::o;40980:174::-;41082:2;41055:15;:24;41071:7;41055:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41138:7;41134:2;41100:46;;41109:23;41124:7;41109:14;:23::i;:::-;41100:46;;;;;;;;;;;;40980:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;49280:138::-;6009:13;:11;:13::i;:::-;49358:18:::1;:6;:16;:18::i;:::-;49383:29;49393:9;49404:7;49383:9;:29::i;:::-;49280:138:::0;;:::o;37213:264::-;37306:4;37323:13;37339:23;37354:7;37339:14;:23::i;:::-;37323:39;;37392:5;37381:16;;:7;:16;;;:52;;;;37401:32;37418:5;37425:7;37401:16;:32::i;:::-;37381:52;:87;;;;37461:7;37437:31;;:20;37449:7;37437:11;:20::i;:::-;:31;;;37381:87;37373:96;;;37213:264;;;;:::o;40236:625::-;40395:4;40368:31;;:23;40383:7;40368:14;:23::i;:::-;:31;;;40360:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40474:1;40460:16;;:2;:16;;;;40452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40530:39;40551:4;40557:2;40561:7;40530:20;:39::i;:::-;40634:29;40651:1;40655:7;40634:8;:29::i;:::-;40695:1;40676:9;:15;40686:4;40676:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40724:1;40707:9;:13;40717:2;40707:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40755:2;40736:7;:16;40744:7;40736:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40794:7;40790:2;40775:27;;40784:4;40775:27;;;;;;;;;;;;40815:38;40835:4;40841:2;40845:7;40815:19;:38::i;:::-;40236:625;;;:::o;22419:97::-;22477:6;22503:5;22496:12;;22419:97;:::o;51516:111::-;51603:20;51615:7;51603:11;:20::i;:::-;51516:111;:::o;7390:191::-;7464:16;7483:6;;;;;;;;;;;7464:25;;7509:8;7500:6;;:17;;;;;;;;;;;;;;;;;;7564:8;7533:40;;7554:8;7533:40;;;;;;;;;;;;7453:128;7390:191;:::o;41297:315::-;41452:8;41443:17;;:5;:17;;;;41435:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41539:8;41501:18;:25;41520:5;41501:25;;;;;;;;;;;;;;;:35;41527:8;41501:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41585:8;41563:41;;41578:5;41563:41;;;41595:8;41563:41;;;;;;:::i;:::-;;;;;;;;41297:315;;;:::o;36293:313::-;36449:28;36459:4;36465:2;36469:7;36449:9;:28::i;:::-;36496:47;36519:4;36525:2;36529:7;36538:4;36496:22;:47::i;:::-;36488:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;36293:313;;;;:::o;36919:127::-;36984:4;37036:1;37008:30;;:7;:16;37016:7;37008:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37001:37;;36919:127;;;:::o;51408:104::-;51468:13;51497:9;51490:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51408:104;:::o;1928:723::-;1984:13;2214:1;2205:5;:10;2201:53;;;2232:10;;;;;;;;;;;;;;;;;;;;;2201:53;2264:12;2279:5;2264:20;;2295:14;2320:78;2335:1;2327:4;:9;2320:78;;2353:8;;;;;:::i;:::-;;;;2384:2;2376:10;;;;;:::i;:::-;;;2320:78;;;2408:19;2440:6;2430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:39;;2458:154;2474:1;2465:5;:10;2458:154;;2502:1;2492:11;;;;;:::i;:::-;;;2569:2;2561:5;:10;;;;:::i;:::-;2548:2;:24;;;;:::i;:::-;2535:39;;2518:6;2525;2518:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2598:2;2589:11;;;;;:::i;:::-;;;2458:154;;;2636:6;2622:21;;;;;1928:723;;;;:::o;19875:157::-;19960:4;19999:25;19984:40;;;:11;:40;;;;19977:47;;19875:157;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;37819:110::-;37895:26;37905:2;37909:7;37895:26;;;;;;;;;;;;:9;:26::i;:::-;37819:110;;:::o;43825:126::-;;;;:::o;44336:125::-;;;;:::o;46216:206::-;46285:20;46297:7;46285:11;:20::i;:::-;46359:1;46328:10;:19;46339:7;46328:19;;;;;;;;;;;46322:33;;;;;:::i;:::-;;;:38;46318:97;;46384:10;:19;46395:7;46384:19;;;;;;;;;;;;46377:26;;;;:::i;:::-;46318:97;46216:206;:::o;42400:853::-;42554:4;42575:15;:2;:13;;;:15::i;:::-;42571:675;;;42627:2;42611:36;;;42648:12;:10;:12::i;:::-;42662:4;42668:7;42677:4;42611:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42607:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42869:1;42852:6;:13;:18;42848:328;;;42895:60;;;;;;;;;;:::i;:::-;;;;;;;;42848:328;43126:6;43120:13;43111:6;43107:2;43103:15;43096:38;42607:584;42743:41;;;42733:51;;;:6;:51;;;;42726:58;;;;;42571:675;43230:4;43223:11;;42400:853;;;;;;;:::o;38156:319::-;38285:18;38291:2;38295:7;38285:5;:18::i;:::-;38336:53;38367:1;38371:2;38375:7;38384:4;38336:22;:53::i;:::-;38314:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;38156:319;;;:::o;39479:420::-;39539:13;39555:23;39570:7;39555:14;:23::i;:::-;39539:39;;39591:48;39612:5;39627:1;39631:7;39591:20;:48::i;:::-;39680:29;39697:1;39701:7;39680:8;:29::i;:::-;39742:1;39722:9;:16;39732:5;39722:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;39761:7;:16;39769:7;39761:16;;;;;;;;;;;;39754:23;;;;;;;;;;;39823:7;39819:1;39795:36;;39804:5;39795:36;;;;;;;;;;;;39844:47;39864:5;39879:1;39883:7;39844:19;:47::i;:::-;39528:371;39479:420;:::o;8821:326::-;8881:4;9138:1;9116:7;:19;;;:23;9109:30;;8821:326;;;:::o;38811:439::-;38905:1;38891:16;;:2;:16;;;;38883:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38964:16;38972:7;38964;:16::i;:::-;38963:17;38955:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39026:45;39055:1;39059:2;39063:7;39026:20;:45::i;:::-;39101:1;39084:9;:13;39094:2;39084:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39132:2;39113:7;:16;39121:7;39113:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39177:7;39173:2;39152:33;;39169:1;39152:33;;;;;;;;;;;;39198:44;39226:1;39230:2;39234:7;39198:19;:44::i;:::-;38811:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:137::-;2895:5;2933:6;2920:20;2911:29;;2949:32;2975:5;2949:32;:::i;:::-;2850:137;;;;:::o;2993:329::-;3052:6;3101:2;3089:9;3080:7;3076:23;3072:32;3069:119;;;3107:79;;:::i;:::-;3069:119;3227:1;3252:53;3297:7;3288:6;3277:9;3273:22;3252:53;:::i;:::-;3242:63;;3198:117;2993:329;;;;:::o;3328:474::-;3396:6;3404;3453:2;3441:9;3432:7;3428:23;3424:32;3421:119;;;3459:79;;:::i;:::-;3421:119;3579:1;3604:53;3649:7;3640:6;3629:9;3625:22;3604:53;:::i;:::-;3594:63;;3550:117;3706:2;3732:53;3777:7;3768:6;3757:9;3753:22;3732:53;:::i;:::-;3722:63;;3677:118;3328:474;;;;;:::o;3808:619::-;3885:6;3893;3901;3950:2;3938:9;3929:7;3925:23;3921:32;3918:119;;;3956:79;;:::i;:::-;3918:119;4076:1;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4047:117;4203:2;4229:53;4274:7;4265:6;4254:9;4250:22;4229:53;:::i;:::-;4219:63;;4174:118;4331:2;4357:53;4402:7;4393:6;4382:9;4378:22;4357:53;:::i;:::-;4347:63;;4302:118;3808:619;;;;;:::o;4433:943::-;4528:6;4536;4544;4552;4601:3;4589:9;4580:7;4576:23;4572:33;4569:120;;;4608:79;;:::i;:::-;4569:120;4728:1;4753:53;4798:7;4789:6;4778:9;4774:22;4753:53;:::i;:::-;4743:63;;4699:117;4855:2;4881:53;4926:7;4917:6;4906:9;4902:22;4881:53;:::i;:::-;4871:63;;4826:118;4983:2;5009:53;5054:7;5045:6;5034:9;5030:22;5009:53;:::i;:::-;4999:63;;4954:118;5139:2;5128:9;5124:18;5111:32;5170:18;5162:6;5159:30;5156:117;;;5192:79;;:::i;:::-;5156:117;5297:62;5351:7;5342:6;5331:9;5327:22;5297:62;:::i;:::-;5287:72;;5082:287;4433:943;;;;;;;:::o;5382:468::-;5447:6;5455;5504:2;5492:9;5483:7;5479:23;5475:32;5472:119;;;5510:79;;:::i;:::-;5472:119;5630:1;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5601:117;5757:2;5783:50;5825:7;5816:6;5805:9;5801:22;5783:50;:::i;:::-;5773:60;;5728:115;5382:468;;;;;:::o;5856:474::-;5924:6;5932;5981:2;5969:9;5960:7;5956:23;5952:32;5949:119;;;5987:79;;:::i;:::-;5949:119;6107:1;6132:53;6177:7;6168:6;6157:9;6153:22;6132:53;:::i;:::-;6122:63;;6078:117;6234:2;6260:53;6305:7;6296:6;6285:9;6281:22;6260:53;:::i;:::-;6250:63;;6205:118;5856:474;;;;;:::o;6336:472::-;6403:6;6411;6460:2;6448:9;6439:7;6435:23;6431:32;6428:119;;;6466:79;;:::i;:::-;6428:119;6586:1;6611:53;6656:7;6647:6;6636:9;6632:22;6611:53;:::i;:::-;6601:63;;6557:117;6713:2;6739:52;6783:7;6774:6;6763:9;6759:22;6739:52;:::i;:::-;6729:62;;6684:117;6336:472;;;;;:::o;6814:323::-;6870:6;6919:2;6907:9;6898:7;6894:23;6890:32;6887:119;;;6925:79;;:::i;:::-;6887:119;7045:1;7070:50;7112:7;7103:6;7092:9;7088:22;7070:50;:::i;:::-;7060:60;;7016:114;6814:323;;;;:::o;7143:327::-;7201:6;7250:2;7238:9;7229:7;7225:23;7221:32;7218:119;;;7256:79;;:::i;:::-;7218:119;7376:1;7401:52;7445:7;7436:6;7425:9;7421:22;7401:52;:::i;:::-;7391:62;;7347:116;7143:327;;;;:::o;7476:349::-;7545:6;7594:2;7582:9;7573:7;7569:23;7565:32;7562:119;;;7600:79;;:::i;:::-;7562:119;7720:1;7745:63;7800:7;7791:6;7780:9;7776:22;7745:63;:::i;:::-;7735:73;;7691:127;7476:349;;;;:::o;7831:529::-;7902:6;7910;7959:2;7947:9;7938:7;7934:23;7930:32;7927:119;;;7965:79;;:::i;:::-;7927:119;8113:1;8102:9;8098:17;8085:31;8143:18;8135:6;8132:30;8129:117;;;8165:79;;:::i;:::-;8129:117;8278:65;8335:7;8326:6;8315:9;8311:22;8278:65;:::i;:::-;8260:83;;;;8056:297;7831:529;;;;;:::o;8366:509::-;8435:6;8484:2;8472:9;8463:7;8459:23;8455:32;8452:119;;;8490:79;;:::i;:::-;8452:119;8638:1;8627:9;8623:17;8610:31;8668:18;8660:6;8657:30;8654:117;;;8690:79;;:::i;:::-;8654:117;8795:63;8850:7;8841:6;8830:9;8826:22;8795:63;:::i;:::-;8785:73;;8581:287;8366:509;;;;:::o;8881:329::-;8940:6;8989:2;8977:9;8968:7;8964:23;8960:32;8957:119;;;8995:79;;:::i;:::-;8957:119;9115:1;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9086:117;8881:329;;;;:::o;9216:474::-;9284:6;9292;9341:2;9329:9;9320:7;9316:23;9312:32;9309:119;;;9347:79;;:::i;:::-;9309:119;9467:1;9492:53;9537:7;9528:6;9517:9;9513:22;9492:53;:::i;:::-;9482:63;;9438:117;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9216:474;;;;;:::o;9696:179::-;9765:10;9786:46;9828:3;9820:6;9786:46;:::i;:::-;9864:4;9859:3;9855:14;9841:28;;9696:179;;;;:::o;9881:118::-;9968:24;9986:5;9968:24;:::i;:::-;9963:3;9956:37;9881:118;;:::o;10035:732::-;10154:3;10183:54;10231:5;10183:54;:::i;:::-;10253:86;10332:6;10327:3;10253:86;:::i;:::-;10246:93;;10363:56;10413:5;10363:56;:::i;:::-;10442:7;10473:1;10458:284;10483:6;10480:1;10477:13;10458:284;;;10559:6;10553:13;10586:63;10645:3;10630:13;10586:63;:::i;:::-;10579:70;;10672:60;10725:6;10672:60;:::i;:::-;10662:70;;10518:224;10505:1;10502;10498:9;10493:14;;10458:284;;;10462:14;10758:3;10751:10;;10159:608;;;10035:732;;;;:::o;10773:109::-;10854:21;10869:5;10854:21;:::i;:::-;10849:3;10842:34;10773:109;;:::o;10888:360::-;10974:3;11002:38;11034:5;11002:38;:::i;:::-;11056:70;11119:6;11114:3;11056:70;:::i;:::-;11049:77;;11135:52;11180:6;11175:3;11168:4;11161:5;11157:16;11135:52;:::i;:::-;11212:29;11234:6;11212:29;:::i;:::-;11207:3;11203:39;11196:46;;10978:270;10888:360;;;;:::o;11254:364::-;11342:3;11370:39;11403:5;11370:39;:::i;:::-;11425:71;11489:6;11484:3;11425:71;:::i;:::-;11418:78;;11505:52;11550:6;11545:3;11538:4;11531:5;11527:16;11505:52;:::i;:::-;11582:29;11604:6;11582:29;:::i;:::-;11577:3;11573:39;11566:46;;11346:272;11254:364;;;;:::o;11624:377::-;11730:3;11758:39;11791:5;11758:39;:::i;:::-;11813:89;11895:6;11890:3;11813:89;:::i;:::-;11806:96;;11911:52;11956:6;11951:3;11944:4;11937:5;11933:16;11911:52;:::i;:::-;11988:6;11983:3;11979:16;11972:23;;11734:267;11624:377;;;;:::o;12031:845::-;12134:3;12171:5;12165:12;12200:36;12226:9;12200:36;:::i;:::-;12252:89;12334:6;12329:3;12252:89;:::i;:::-;12245:96;;12372:1;12361:9;12357:17;12388:1;12383:137;;;;12534:1;12529:341;;;;12350:520;;12383:137;12467:4;12463:9;12452;12448:25;12443:3;12436:38;12503:6;12498:3;12494:16;12487:23;;12383:137;;12529:341;12596:38;12628:5;12596:38;:::i;:::-;12656:1;12670:154;12684:6;12681:1;12678:13;12670:154;;;12758:7;12752:14;12748:1;12743:3;12739:11;12732:35;12808:1;12799:7;12795:15;12784:26;;12706:4;12703:1;12699:12;12694:17;;12670:154;;;12853:6;12848:3;12844:16;12837:23;;12536:334;;12350:520;;12138:738;;12031:845;;;;:::o;12882:366::-;13024:3;13045:67;13109:2;13104:3;13045:67;:::i;:::-;13038:74;;13121:93;13210:3;13121:93;:::i;:::-;13239:2;13234:3;13230:12;13223:19;;12882:366;;;:::o;13254:::-;13396:3;13417:67;13481:2;13476:3;13417:67;:::i;:::-;13410:74;;13493:93;13582:3;13493:93;:::i;:::-;13611:2;13606:3;13602:12;13595:19;;13254:366;;;:::o;13626:::-;13768:3;13789:67;13853:2;13848:3;13789:67;:::i;:::-;13782:74;;13865:93;13954:3;13865:93;:::i;:::-;13983:2;13978:3;13974:12;13967:19;;13626:366;;;:::o;13998:::-;14140:3;14161:67;14225:2;14220:3;14161:67;:::i;:::-;14154:74;;14237:93;14326:3;14237:93;:::i;:::-;14355:2;14350:3;14346:12;14339:19;;13998:366;;;:::o;14370:::-;14512:3;14533:67;14597:2;14592:3;14533:67;:::i;:::-;14526:74;;14609:93;14698:3;14609:93;:::i;:::-;14727:2;14722:3;14718:12;14711:19;;14370:366;;;:::o;14742:::-;14884:3;14905:67;14969:2;14964:3;14905:67;:::i;:::-;14898:74;;14981:93;15070:3;14981:93;:::i;:::-;15099:2;15094:3;15090:12;15083:19;;14742:366;;;:::o;15114:::-;15256:3;15277:67;15341:2;15336:3;15277:67;:::i;:::-;15270:74;;15353:93;15442:3;15353:93;:::i;:::-;15471:2;15466:3;15462:12;15455:19;;15114:366;;;:::o;15486:::-;15628:3;15649:67;15713:2;15708:3;15649:67;:::i;:::-;15642:74;;15725:93;15814:3;15725:93;:::i;:::-;15843:2;15838:3;15834:12;15827:19;;15486:366;;;:::o;15858:::-;16000:3;16021:67;16085:2;16080:3;16021:67;:::i;:::-;16014:74;;16097:93;16186:3;16097:93;:::i;:::-;16215:2;16210:3;16206:12;16199:19;;15858:366;;;:::o;16230:::-;16372:3;16393:67;16457:2;16452:3;16393:67;:::i;:::-;16386:74;;16469:93;16558:3;16469:93;:::i;:::-;16587:2;16582:3;16578:12;16571:19;;16230:366;;;:::o;16602:::-;16744:3;16765:67;16829:2;16824:3;16765:67;:::i;:::-;16758:74;;16841:93;16930:3;16841:93;:::i;:::-;16959:2;16954:3;16950:12;16943:19;;16602:366;;;:::o;16974:::-;17116:3;17137:67;17201:2;17196:3;17137:67;:::i;:::-;17130:74;;17213:93;17302:3;17213:93;:::i;:::-;17331:2;17326:3;17322:12;17315:19;;16974:366;;;:::o;17346:::-;17488:3;17509:67;17573:2;17568:3;17509:67;:::i;:::-;17502:74;;17585:93;17674:3;17585:93;:::i;:::-;17703:2;17698:3;17694:12;17687:19;;17346:366;;;:::o;17718:::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17718:366;;;:::o;18090:::-;18232:3;18253:67;18317:2;18312:3;18253:67;:::i;:::-;18246:74;;18329:93;18418:3;18329:93;:::i;:::-;18447:2;18442:3;18438:12;18431:19;;18090:366;;;:::o;18462:::-;18604:3;18625:67;18689:2;18684:3;18625:67;:::i;:::-;18618:74;;18701:93;18790:3;18701:93;:::i;:::-;18819:2;18814:3;18810:12;18803:19;;18462:366;;;:::o;18834:398::-;18993:3;19014:83;19095:1;19090:3;19014:83;:::i;:::-;19007:90;;19106:93;19195:3;19106:93;:::i;:::-;19224:1;19219:3;19215:11;19208:18;;18834:398;;;:::o;19238:366::-;19380:3;19401:67;19465:2;19460:3;19401:67;:::i;:::-;19394:74;;19477:93;19566:3;19477:93;:::i;:::-;19595:2;19590:3;19586:12;19579:19;;19238:366;;;:::o;19610:::-;19752:3;19773:67;19837:2;19832:3;19773:67;:::i;:::-;19766:74;;19849:93;19938:3;19849:93;:::i;:::-;19967:2;19962:3;19958:12;19951:19;;19610:366;;;:::o;19982:::-;20124:3;20145:67;20209:2;20204:3;20145:67;:::i;:::-;20138:74;;20221:93;20310:3;20221:93;:::i;:::-;20339:2;20334:3;20330:12;20323:19;;19982:366;;;:::o;20354:::-;20496:3;20517:67;20581:2;20576:3;20517:67;:::i;:::-;20510:74;;20593:93;20682:3;20593:93;:::i;:::-;20711:2;20706:3;20702:12;20695:19;;20354:366;;;:::o;20726:108::-;20803:24;20821:5;20803:24;:::i;:::-;20798:3;20791:37;20726:108;;:::o;20840:118::-;20927:24;20945:5;20927:24;:::i;:::-;20922:3;20915:37;20840:118;;:::o;20964:589::-;21189:3;21211:95;21302:3;21293:6;21211:95;:::i;:::-;21204:102;;21323:95;21414:3;21405:6;21323:95;:::i;:::-;21316:102;;21435:92;21523:3;21514:6;21435:92;:::i;:::-;21428:99;;21544:3;21537:10;;20964:589;;;;;;:::o;21559:379::-;21743:3;21765:147;21908:3;21765:147;:::i;:::-;21758:154;;21929:3;21922:10;;21559:379;;;:::o;21944:222::-;22037:4;22075:2;22064:9;22060:18;22052:26;;22088:71;22156:1;22145:9;22141:17;22132:6;22088:71;:::i;:::-;21944:222;;;;:::o;22172:640::-;22367:4;22405:3;22394:9;22390:19;22382:27;;22419:71;22487:1;22476:9;22472:17;22463:6;22419:71;:::i;:::-;22500:72;22568:2;22557:9;22553:18;22544:6;22500:72;:::i;:::-;22582;22650:2;22639:9;22635:18;22626:6;22582:72;:::i;:::-;22701:9;22695:4;22691:20;22686:2;22675:9;22671:18;22664:48;22729:76;22800:4;22791:6;22729:76;:::i;:::-;22721:84;;22172:640;;;;;;;:::o;22818:332::-;22939:4;22977:2;22966:9;22962:18;22954:26;;22990:71;23058:1;23047:9;23043:17;23034:6;22990:71;:::i;:::-;23071:72;23139:2;23128:9;23124:18;23115:6;23071:72;:::i;:::-;22818:332;;;;;:::o;23156:373::-;23299:4;23337:2;23326:9;23322:18;23314:26;;23386:9;23380:4;23376:20;23372:1;23361:9;23357:17;23350:47;23414:108;23517:4;23508:6;23414:108;:::i;:::-;23406:116;;23156:373;;;;:::o;23535:210::-;23622:4;23660:2;23649:9;23645:18;23637:26;;23673:65;23735:1;23724:9;23720:17;23711:6;23673:65;:::i;:::-;23535:210;;;;:::o;23751:313::-;23864:4;23902:2;23891:9;23887:18;23879:26;;23951:9;23945:4;23941:20;23937:1;23926:9;23922:17;23915:47;23979:78;24052:4;24043:6;23979:78;:::i;:::-;23971:86;;23751:313;;;;:::o;24070:419::-;24236:4;24274:2;24263:9;24259:18;24251:26;;24323:9;24317:4;24313:20;24309:1;24298:9;24294:17;24287:47;24351:131;24477:4;24351:131;:::i;:::-;24343:139;;24070:419;;;:::o;24495:::-;24661:4;24699:2;24688:9;24684:18;24676:26;;24748:9;24742:4;24738:20;24734:1;24723:9;24719:17;24712:47;24776:131;24902:4;24776:131;:::i;:::-;24768:139;;24495:419;;;:::o;24920:::-;25086:4;25124:2;25113:9;25109:18;25101:26;;25173:9;25167:4;25163:20;25159:1;25148:9;25144:17;25137:47;25201:131;25327:4;25201:131;:::i;:::-;25193:139;;24920:419;;;:::o;25345:::-;25511:4;25549:2;25538:9;25534:18;25526:26;;25598:9;25592:4;25588:20;25584:1;25573:9;25569:17;25562:47;25626:131;25752:4;25626:131;:::i;:::-;25618:139;;25345:419;;;:::o;25770:::-;25936:4;25974:2;25963:9;25959:18;25951:26;;26023:9;26017:4;26013:20;26009:1;25998:9;25994:17;25987:47;26051:131;26177:4;26051:131;:::i;:::-;26043:139;;25770:419;;;:::o;26195:::-;26361:4;26399:2;26388:9;26384:18;26376:26;;26448:9;26442:4;26438:20;26434:1;26423:9;26419:17;26412:47;26476:131;26602:4;26476:131;:::i;:::-;26468:139;;26195:419;;;:::o;26620:::-;26786:4;26824:2;26813:9;26809:18;26801:26;;26873:9;26867:4;26863:20;26859:1;26848:9;26844:17;26837:47;26901:131;27027:4;26901:131;:::i;:::-;26893:139;;26620:419;;;:::o;27045:::-;27211:4;27249:2;27238:9;27234:18;27226:26;;27298:9;27292:4;27288:20;27284:1;27273:9;27269:17;27262:47;27326:131;27452:4;27326:131;:::i;:::-;27318:139;;27045:419;;;:::o;27470:::-;27636:4;27674:2;27663:9;27659:18;27651:26;;27723:9;27717:4;27713:20;27709:1;27698:9;27694:17;27687:47;27751:131;27877:4;27751:131;:::i;:::-;27743:139;;27470:419;;;:::o;27895:::-;28061:4;28099:2;28088:9;28084:18;28076:26;;28148:9;28142:4;28138:20;28134:1;28123:9;28119:17;28112:47;28176:131;28302:4;28176:131;:::i;:::-;28168:139;;27895:419;;;:::o;28320:::-;28486:4;28524:2;28513:9;28509:18;28501:26;;28573:9;28567:4;28563:20;28559:1;28548:9;28544:17;28537:47;28601:131;28727:4;28601:131;:::i;:::-;28593:139;;28320:419;;;:::o;28745:::-;28911:4;28949:2;28938:9;28934:18;28926:26;;28998:9;28992:4;28988:20;28984:1;28973:9;28969:17;28962:47;29026:131;29152:4;29026:131;:::i;:::-;29018:139;;28745:419;;;:::o;29170:::-;29336:4;29374:2;29363:9;29359:18;29351:26;;29423:9;29417:4;29413:20;29409:1;29398:9;29394:17;29387:47;29451:131;29577:4;29451:131;:::i;:::-;29443:139;;29170:419;;;:::o;29595:::-;29761:4;29799:2;29788:9;29784:18;29776:26;;29848:9;29842:4;29838:20;29834:1;29823:9;29819:17;29812:47;29876:131;30002:4;29876:131;:::i;:::-;29868:139;;29595:419;;;:::o;30020:::-;30186:4;30224:2;30213:9;30209:18;30201:26;;30273:9;30267:4;30263:20;30259:1;30248:9;30244:17;30237:47;30301:131;30427:4;30301:131;:::i;:::-;30293:139;;30020:419;;;:::o;30445:::-;30611:4;30649:2;30638:9;30634:18;30626:26;;30698:9;30692:4;30688:20;30684:1;30673:9;30669:17;30662:47;30726:131;30852:4;30726:131;:::i;:::-;30718:139;;30445:419;;;:::o;30870:::-;31036:4;31074:2;31063:9;31059:18;31051:26;;31123:9;31117:4;31113:20;31109:1;31098:9;31094:17;31087:47;31151:131;31277:4;31151:131;:::i;:::-;31143:139;;30870:419;;;:::o;31295:::-;31461:4;31499:2;31488:9;31484:18;31476:26;;31548:9;31542:4;31538:20;31534:1;31523:9;31519:17;31512:47;31576:131;31702:4;31576:131;:::i;:::-;31568:139;;31295:419;;;:::o;31720:::-;31886:4;31924:2;31913:9;31909:18;31901:26;;31973:9;31967:4;31963:20;31959:1;31948:9;31944:17;31937:47;32001:131;32127:4;32001:131;:::i;:::-;31993:139;;31720:419;;;:::o;32145:::-;32311:4;32349:2;32338:9;32334:18;32326:26;;32398:9;32392:4;32388:20;32384:1;32373:9;32369:17;32362:47;32426:131;32552:4;32426:131;:::i;:::-;32418:139;;32145:419;;;:::o;32570:222::-;32663:4;32701:2;32690:9;32686:18;32678:26;;32714:71;32782:1;32771:9;32767:17;32758:6;32714:71;:::i;:::-;32570:222;;;;:::o;32798:129::-;32832:6;32859:20;;:::i;:::-;32849:30;;32888:33;32916:4;32908:6;32888:33;:::i;:::-;32798:129;;;:::o;32933:75::-;32966:6;32999:2;32993:9;32983:19;;32933:75;:::o;33014:307::-;33075:4;33165:18;33157:6;33154:30;33151:56;;;33187:18;;:::i;:::-;33151:56;33225:29;33247:6;33225:29;:::i;:::-;33217:37;;33309:4;33303;33299:15;33291:23;;33014:307;;;:::o;33327:308::-;33389:4;33479:18;33471:6;33468:30;33465:56;;;33501:18;;:::i;:::-;33465:56;33539:29;33561:6;33539:29;:::i;:::-;33531:37;;33623:4;33617;33613:15;33605:23;;33327:308;;;:::o;33641:132::-;33708:4;33731:3;33723:11;;33761:4;33756:3;33752:14;33744:22;;33641:132;;;:::o;33779:141::-;33828:4;33851:3;33843:11;;33874:3;33871:1;33864:14;33908:4;33905:1;33895:18;33887:26;;33779:141;;;:::o;33926:114::-;33993:6;34027:5;34021:12;34011:22;;33926:114;;;:::o;34046:98::-;34097:6;34131:5;34125:12;34115:22;;34046:98;;;:::o;34150:99::-;34202:6;34236:5;34230:12;34220:22;;34150:99;;;:::o;34255:113::-;34325:4;34357;34352:3;34348:14;34340:22;;34255:113;;;:::o;34374:184::-;34473:11;34507:6;34502:3;34495:19;34547:4;34542:3;34538:14;34523:29;;34374:184;;;;:::o;34564:168::-;34647:11;34681:6;34676:3;34669:19;34721:4;34716:3;34712:14;34697:29;;34564:168;;;;:::o;34738:147::-;34839:11;34876:3;34861:18;;34738:147;;;;:::o;34891:169::-;34975:11;35009:6;35004:3;34997:19;35049:4;35044:3;35040:14;35025:29;;34891:169;;;;:::o;35066:148::-;35168:11;35205:3;35190:18;;35066:148;;;;:::o;35220:305::-;35260:3;35279:20;35297:1;35279:20;:::i;:::-;35274:25;;35313:20;35331:1;35313:20;:::i;:::-;35308:25;;35467:1;35399:66;35395:74;35392:1;35389:81;35386:107;;;35473:18;;:::i;:::-;35386:107;35517:1;35514;35510:9;35503:16;;35220:305;;;;:::o;35531:185::-;35571:1;35588:20;35606:1;35588:20;:::i;:::-;35583:25;;35622:20;35640:1;35622:20;:::i;:::-;35617:25;;35661:1;35651:35;;35666:18;;:::i;:::-;35651:35;35708:1;35705;35701:9;35696:14;;35531:185;;;;:::o;35722:348::-;35762:7;35785:20;35803:1;35785:20;:::i;:::-;35780:25;;35819:20;35837:1;35819:20;:::i;:::-;35814:25;;36007:1;35939:66;35935:74;35932:1;35929:81;35924:1;35917:9;35910:17;35906:105;35903:131;;;36014:18;;:::i;:::-;35903:131;36062:1;36059;36055:9;36044:20;;35722:348;;;;:::o;36076:191::-;36116:4;36136:20;36154:1;36136:20;:::i;:::-;36131:25;;36170:20;36188:1;36170:20;:::i;:::-;36165:25;;36209:1;36206;36203:8;36200:34;;;36214:18;;:::i;:::-;36200:34;36259:1;36256;36252:9;36244:17;;36076:191;;;;:::o;36273:96::-;36310:7;36339:24;36357:5;36339:24;:::i;:::-;36328:35;;36273:96;;;:::o;36375:90::-;36409:7;36452:5;36445:13;36438:21;36427:32;;36375:90;;;:::o;36471:149::-;36507:7;36547:66;36540:5;36536:78;36525:89;;36471:149;;;:::o;36626:126::-;36663:7;36703:42;36696:5;36692:54;36681:65;;36626:126;;;:::o;36758:77::-;36795:7;36824:5;36813:16;;36758:77;;;:::o;36841:109::-;36877:7;36917:26;36910:5;36906:38;36895:49;;36841:109;;;:::o;36956:154::-;37040:6;37035:3;37030;37017:30;37102:1;37093:6;37088:3;37084:16;37077:27;36956:154;;;:::o;37116:307::-;37184:1;37194:113;37208:6;37205:1;37202:13;37194:113;;;37293:1;37288:3;37284:11;37278:18;37274:1;37269:3;37265:11;37258:39;37230:2;37227:1;37223:10;37218:15;;37194:113;;;37325:6;37322:1;37319:13;37316:101;;;37405:1;37396:6;37391:3;37387:16;37380:27;37316:101;37165:258;37116:307;;;:::o;37429:320::-;37473:6;37510:1;37504:4;37500:12;37490:22;;37557:1;37551:4;37547:12;37578:18;37568:81;;37634:4;37626:6;37622:17;37612:27;;37568:81;37696:2;37688:6;37685:14;37665:18;37662:38;37659:84;;;37715:18;;:::i;:::-;37659:84;37480:269;37429:320;;;:::o;37755:281::-;37838:27;37860:4;37838:27;:::i;:::-;37830:6;37826:40;37968:6;37956:10;37953:22;37932:18;37920:10;37917:34;37914:62;37911:88;;;37979:18;;:::i;:::-;37911:88;38019:10;38015:2;38008:22;37798:238;37755:281;;:::o;38042:233::-;38081:3;38104:24;38122:5;38104:24;:::i;:::-;38095:33;;38150:66;38143:5;38140:77;38137:103;;;38220:18;;:::i;:::-;38137:103;38267:1;38260:5;38256:13;38249:20;;38042:233;;;:::o;38281:176::-;38313:1;38330:20;38348:1;38330:20;:::i;:::-;38325:25;;38364:20;38382:1;38364:20;:::i;:::-;38359:25;;38403:1;38393:35;;38408:18;;:::i;:::-;38393:35;38449:1;38446;38442:9;38437:14;;38281:176;;;;:::o;38463:180::-;38511:77;38508:1;38501:88;38608:4;38605:1;38598:15;38632:4;38629:1;38622:15;38649:180;38697:77;38694:1;38687:88;38794:4;38791:1;38784:15;38818:4;38815:1;38808:15;38835:180;38883:77;38880:1;38873:88;38980:4;38977:1;38970:15;39004:4;39001:1;38994:15;39021:180;39069:77;39066:1;39059:88;39166:4;39163:1;39156:15;39190:4;39187:1;39180:15;39207:180;39255:77;39252:1;39245:88;39352:4;39349:1;39342:15;39376:4;39373:1;39366:15;39393:117;39502:1;39499;39492:12;39516:117;39625:1;39622;39615:12;39639:117;39748:1;39745;39738:12;39762:117;39871:1;39868;39861:12;39885:117;39994:1;39991;39984:12;40008:117;40117:1;40114;40107:12;40131:102;40172:6;40223:2;40219:7;40214:2;40207:5;40203:14;40199:28;40189:38;;40131:102;;;:::o;40239:237::-;40379:34;40375:1;40367:6;40363:14;40356:58;40448:20;40443:2;40435:6;40431:15;40424:45;40239:237;:::o;40482:225::-;40622:34;40618:1;40610:6;40606:14;40599:58;40691:8;40686:2;40678:6;40674:15;40667:33;40482:225;:::o;40713:165::-;40853:17;40849:1;40841:6;40837:14;40830:41;40713:165;:::o;40884:224::-;41024:34;41020:1;41012:6;41008:14;41001:58;41093:7;41088:2;41080:6;41076:15;41069:32;40884:224;:::o;41114:178::-;41254:30;41250:1;41242:6;41238:14;41231:54;41114:178;:::o;41298:170::-;41438:22;41434:1;41426:6;41422:14;41415:46;41298:170;:::o;41474:223::-;41614:34;41610:1;41602:6;41598:14;41591:58;41683:6;41678:2;41670:6;41666:15;41659:31;41474:223;:::o;41703:175::-;41843:27;41839:1;41831:6;41827:14;41820:51;41703:175;:::o;41884:228::-;42024:34;42020:1;42012:6;42008:14;42001:58;42093:11;42088:2;42080:6;42076:15;42069:36;41884:228;:::o;42118:249::-;42258:34;42254:1;42246:6;42242:14;42235:58;42327:32;42322:2;42314:6;42310:15;42303:57;42118:249;:::o;42373:182::-;42513:34;42509:1;42501:6;42497:14;42490:58;42373:182;:::o;42561:::-;42701:34;42697:1;42689:6;42685:14;42678:58;42561:182;:::o;42749:173::-;42889:25;42885:1;42877:6;42873:14;42866:49;42749:173;:::o;42928:234::-;43068:34;43064:1;43056:6;43052:14;43045:58;43137:17;43132:2;43124:6;43120:15;43113:42;42928:234;:::o;43168:174::-;43308:26;43304:1;43296:6;43292:14;43285:50;43168:174;:::o;43348:220::-;43488:34;43484:1;43476:6;43472:14;43465:58;43557:3;43552:2;43544:6;43540:15;43533:28;43348:220;:::o;43574:114::-;;:::o;43694:170::-;43834:22;43830:1;43822:6;43818:14;43811:46;43694:170;:::o;43870:229::-;44010:34;44006:1;43998:6;43994:14;43987:58;44079:12;44074:2;44066:6;44062:15;44055:37;43870:229;:::o;44105:233::-;44245:34;44241:1;44233:6;44229:14;44222:58;44314:16;44309:2;44301:6;44297:15;44290:41;44105:233;:::o;44344:175::-;44484:27;44480:1;44472:6;44468:14;44461:51;44344:175;:::o;44525:122::-;44598:24;44616:5;44598:24;:::i;:::-;44591:5;44588:35;44578:63;;44637:1;44634;44627:12;44578:63;44525:122;:::o;44653:116::-;44723:21;44738:5;44723:21;:::i;:::-;44716:5;44713:32;44703:60;;44759:1;44756;44749:12;44703:60;44653:116;:::o;44775:120::-;44847:23;44864:5;44847:23;:::i;:::-;44840:5;44837:34;44827:62;;44885:1;44882;44875:12;44827:62;44775:120;:::o;44901:122::-;44974:24;44992:5;44974:24;:::i;:::-;44967:5;44964:35;44954:63;;45013:1;45010;45003:12;44954:63;44901:122;:::o;45029:120::-;45101:23;45118:5;45101:23;:::i;:::-;45094:5;45091:34;45081:62;;45139:1;45136;45129:12;45081:62;45029:120;:::o

Swarm Source

ipfs://8ef23d3f1b432b81cecb870a3beb1bf71f325ef8886f987eb3bb545e9491c06b
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.