ETH Price: $3,209.39 (-1.40%)
Gas: 1 Gwei

Token

NFTRESOR (NFTRESOR)
 

Overview

Max Total Supply

61 NFTRESOR

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x08fa23a70c881bfad4c52d2b50e3df3a39b5608d
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:
NFTresor

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv2.1 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

// 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: NFTRESOR.sol


pragma solidity >=0.8.4;
pragma experimental ABIEncoderV2;







/* Ceci est mon premier contrat déployé sur la Blockchain, je crée aujourd'hui et de de façon intemporel la collection genesis de NFTRESOR
Première étape du groupe alpha français de référence. 
Nous sommes en plein bear market en cette fin d'année 2022. 
Voyons dans quelques années ou nous en sommes :)
Quentin Riviera - #RKLNQKL22
*/

contract NFTresor is ERC1155Pausable, ERC1155Supply, ERC1155Burnable, Ownable, ReentrancyGuard {

    /**
     * @notice Name of the collection
     */
    string public name_;

    /**
     * @notice Symbol of the collection
     */
    string public symbol_;

    string public ipfsMetadataHash;
    uint256 public publicPrice = 0.3 ether;
    uint256 public maxSupply = 100;

    mapping(address => uint256) numberNFTPerUsers;

    constructor(
        string memory _name, 
        string memory _symbol
    ) ERC1155("ipfs://QmZoJDy7Aj1XMKCdxDdX4T5BHReWHyULcosRxJ9FbE4Gyd/") {
        name_ = _name;
        symbol_ = _symbol;
    }

    /**
     * @notice Mint tokens
     * @param amount The amount of tokens to mint
     */
    function publicMint(uint256 amount) external payable nonReentrant {
        // Check that the user sent the correct amount
        require(msg.value == amount * publicPrice, "Incorrect ETH amount sent");
        
        // Check that there are tokens left
        require(totalSupply(0) + amount <= maxSupply, "Not enough tokens left");

        // Mint amount of token to msg.sender
        _mint(msg.sender, 0, amount, "");
    }

    /**
     * @notice Return the URI of the token
     * @param _id The ID of the token
     */
    function uri(uint256 _id) public view override returns (string memory) {
        require(totalSupply(_id) > 0, "URI: nonexistent token");
        return string(abi.encodePacked(super.uri(_id), ipfsMetadataHash));
    }

    /****  Owner Methods  ****/

    /**
     * @notice Mint a token
     * @param account The recipient of the token minted
     * @dev This is the equivalent of mintToken() but with some checks
     */
    function giveMint(address account) external onlyOwner {
        // 1 by default
        uint256 amount = 1;

        // Check that there are tokens left
        require(totalSupply(0) + amount <= maxSupply, "Not enough tokens left");

        // Check that the user didn't previously get the gift
        require(numberNFTPerUsers[account] == 0, "User already received the gift");

        numberNFTPerUsers[account] = amount;

        // Mint amount of tokens to account
        _mint(account, 0, amount, "");
    }

    /**
     * @notice Mint a token to several accounts
     * @param accounts Recipients of the token minted
     */
    function batchGiveMint(address[] memory accounts) external onlyOwner {
        // 1 by default
        uint256 amount = 1;
        
        uint256 totalAmount = amount * accounts.length;

        // Check that there are tokens left
        require(totalSupply(0) + totalAmount <= maxSupply, "Not enough tokens left");

        for(uint256 i; i < accounts.length; i++) {
            address account = accounts[i];

            // Check that the user didn't previously get the gift
            require(numberNFTPerUsers[account] == 0, "User already received the gift");

            numberNFTPerUsers[account] = amount;

            // Mint amount of tokens (defined by tokenIndex) to account
            _mint(account, 0, amount, "");
        }
    }

    /**
     * @notice Set token definition
     * @param _ipfsMetadataHash The IPFS hash of the token
     * @param _maxSupply The maximum supply of this token
     * @param _publicPrice The public mint price of this token
     */
    function setTokenDefinition(string memory _ipfsMetadataHash, uint256 _maxSupply, uint256 _publicPrice) external onlyOwner {
        ipfsMetadataHash = _ipfsMetadataHash;
        publicPrice = _publicPrice;
        maxSupply = _maxSupply;
    }

    /**
     * @notice Update the IPFS hash of a token
     * @param _ipfsMetadataHash The new IPFS hash of the token
     */
    function updateTokenMetadata(string memory _ipfsMetadataHash) external onlyOwner {
        ipfsMetadataHash = _ipfsMetadataHash;
    }

    /**
     * @notice Update the public price of a token
     * @param _publicPrice The new public mint price of the token
     */
    function updateTokenPublicPrice(uint256 _publicPrice) external onlyOwner {
        publicPrice = _publicPrice;
    }

    /**
     * @notice Mint tokens
     * @param account The recipient of tokens minted
     * @param amount The amount of tokens to mint
     * @dev This doesn't take account of the maxSupply limit
     */
    function mintToken(address account, uint256 amount) external onlyOwner {
        _mint(account, 0, amount, "");
    }

    /**
     * @notice Burn tokens
     * @param account The owner of tokens to be burnt
     * @param amount The amount of tokens to burn
     * @dev With this method, the owner can burn anybody's tokens
     */
    function burnToken(address account, uint256 amount) external onlyOwner {
        _burn(account, 0, amount);
    }

    /**
     * @notice Withdraw ETHs
     */
    function withdraw() external payable onlyOwner returns (bool success) {
        (success,) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "withdraw failed");
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }    

    function setURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }   

    /****  Helpers Methods  ****/

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    } 

    /****  Override Methods  ****/

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override(ERC1155) {
        super._mint(account, id, amount, data);
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155) {
        super._mintBatch(to, ids, amounts, data);
    }

    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override(ERC1155) {
        super._burn(account, id, amount);
    }

    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override(ERC1155) {
        super._burnBatch(account, ids, amounts);
    }  

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Pausable, ERC1155Supply, ERC1155) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"batchGiveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"giveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ipfsMetadataHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"_ipfsMetadataHash","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setTokenDefinition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsMetadataHash","type":"string"}],"name":"updateTokenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"updateTokenPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"payable","type":"function"}]

6080604052670429d069189e0000600a556064600b553480156200002257600080fd5b506040516200578438038062005784833981810160405281019062000048919062000359565b6040518060600160405280603681526020016200574e603691396200007381620000e360201b60201c565b506000600360006101000a81548160ff021916908315150217905550620000af620000a3620000f860201b60201c565b6200010060201b60201c565b60016006819055508160079081620000c8919062000629565b508060089081620000da919062000629565b50505062000710565b8060029081620000f4919062000629565b5050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200022f82620001e4565b810181811067ffffffffffffffff82111715620002515762000250620001f5565b5b80604052505050565b600062000266620001c6565b905062000274828262000224565b919050565b600067ffffffffffffffff821115620002975762000296620001f5565b5b620002a282620001e4565b9050602081019050919050565b60005b83811015620002cf578082015181840152602081019050620002b2565b60008484015250505050565b6000620002f2620002ec8462000279565b6200025a565b905082815260208101848484011115620003115762000310620001df565b5b6200031e848285620002af565b509392505050565b600082601f8301126200033e576200033d620001da565b5b815162000350848260208601620002db565b91505092915050565b60008060408385031215620003735762000372620001d0565b5b600083015167ffffffffffffffff811115620003945762000393620001d5565b5b620003a28582860162000326565b925050602083015167ffffffffffffffff811115620003c657620003c5620001d5565b5b620003d48582860162000326565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043157607f821691505b602082108103620004475762000446620003e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000472565b620004bd868362000472565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200050a62000504620004fe84620004d5565b620004df565b620004d5565b9050919050565b6000819050919050565b6200052683620004e9565b6200053e620005358262000511565b8484546200047f565b825550505050565b600090565b6200055562000546565b620005628184846200051b565b505050565b5b818110156200058a576200057e6000826200054b565b60018101905062000568565b5050565b601f821115620005d957620005a3816200044d565b620005ae8462000462565b81016020851015620005be578190505b620005d6620005cd8562000462565b83018262000567565b50505b505050565b600082821c905092915050565b6000620005fe60001984600802620005de565b1980831691505092915050565b6000620006198383620005eb565b9150826002028217905092915050565b6200063482620003de565b67ffffffffffffffff81111562000650576200064f620001f5565b5b6200065c825462000418565b620006698282856200058e565b600060209050601f831160018114620006a157600084156200068c578287015190505b6200069885826200060b565b86555062000708565b601f198416620006b1866200044d565b60005b82811015620006db57848901518255600182019150602085019450602081019050620006b4565b86831015620006fb5784890151620006f7601f891682620005eb565b8355505b6001600288020188555050505b505050505050565b61502e80620007206000396000f3fe6080604052600436106102035760003560e01c8063715018a611610118578063bd85b039116100a0578063e985e9c51161006f578063e985e9c514610710578063f22043f31461074d578063f242432a14610778578063f2fde38b146107a1578063f5298aca146107ca57610203565b8063bd85b03914610654578063d1df306c14610691578063d5abeb01146106ba578063e2b9e186146106e557610203565b806395d89b41116100e757806395d89b41146105815780639785d775146105ac578063a22cb465146105d5578063a945bf80146105fe578063af17dea61461062957610203565b8063715018a6146104ff57806379c65068146105165780638456cb591461053f5780638da5cb5b1461055657610203565b80632eb2c2d61161019b5780634e1273f41161016a5780634e1273f4146104085780634f558e79146104455780635c975abb146104825780636262f7e0146104ad5780636b20c454146104d657610203565b80632eb2c2d6146103815780633b77853d146103aa5780633ccfd60b146103d35780633f4ba83a146103f157610203565b80630c4a902d116101d75780630c4a902d146102d65780630e89341c146102ff57806317a4bf311461033c5780632db115441461036557610203565b8062fdd58e1461020857806301ffc9a71461024557806302fe53051461028257806306fdde03146102ab575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a91906130fe565b6107f3565b60405161023c919061314d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906131c0565b6108bb565b6040516102799190613208565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613369565b61099d565b005b3480156102b757600080fd5b506102c06109b1565b6040516102cd9190613431565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613453565b610a43565b005b34801561030b57600080fd5b5061032660048036038101906103219190613453565b610a55565b6040516103339190613431565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613369565b610ad4565b005b61037f600480360381019061037a9190613453565b610aef565b005b34801561038d57600080fd5b506103a860048036038101906103a391906135e9565b610bc6565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906136b8565b610c67565b005b6103db610c92565b6040516103e89190613208565b60405180910390f35b3480156103fd57600080fd5b50610406610d4b565b005b34801561041457600080fd5b5061042f600480360381019061042a91906137ea565b610d5d565b60405161043c9190613920565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613453565b610e76565b6040516104799190613208565b60405180910390f35b34801561048e57600080fd5b50610497610e8a565b6040516104a49190613208565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613942565b610ea1565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061396f565b610fee565b005b34801561050b57600080fd5b5061051461108b565b005b34801561052257600080fd5b5061053d600480360381019061053891906130fe565b61109f565b005b34801561054b57600080fd5b506105546110c7565b005b34801561056257600080fd5b5061056b6110d9565b6040516105789190613a09565b60405180910390f35b34801561058d57600080fd5b50610596611103565b6040516105a39190613431565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613a24565b611195565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613a99565b611334565b005b34801561060a57600080fd5b5061061361134a565b604051610620919061314d565b60405180910390f35b34801561063557600080fd5b5061063e611350565b60405161064b9190613431565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613453565b6113de565b604051610688919061314d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906130fe565b6113fb565b005b3480156106c657600080fd5b506106cf611413565b6040516106dc919061314d565b60405180910390f35b3480156106f157600080fd5b506106fa611419565b6040516107079190613431565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613ad9565b6114a7565b6040516107449190613208565b60405180910390f35b34801561075957600080fd5b5061076261153b565b60405161076f9190613431565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613b19565b6115c9565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613942565b61166a565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613bb0565b6116ed565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a90613c75565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657506109958261178a565b5b9050919050565b6109a56117f4565b6109ae81611872565b50565b6060600780546109c090613cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90613cc4565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b610a4b6117f4565b80600a8190555050565b60606000610a62836113de565b11610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613d41565b60405180910390fd5b610aab82611885565b6009604051602001610abe929190613e35565b6040516020818303038152906040529050919050565b610adc6117f4565b8060099081610aeb9190613ff0565b5050565b610af7611919565b600a5481610b0591906140f1565b3414610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d9061417f565b60405180910390fd5b600b5481610b5460006113de565b610b5e919061419f565b1115610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061421f565b60405180910390fd5b610bbb3360008360405180602001604052806000815250611968565b610bc361197a565b50565b610bce611984565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c145750610c1385610c0e611984565b6114a7565b5b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906142b1565b60405180910390fd5b610c60858585858561198c565b5050505050565b610c6f6117f4565b8260099081610c7e9190613ff0565b5080600a8190555081600b81905550505050565b6000610c9c6117f4565b3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc090614302565b60006040518083038185875af1925050503d8060008114610cfd576040519150601f19603f3d011682016040523d82523d6000602084013e610d02565b606091505b50508091505080610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614363565b60405180910390fd5b90565b610d536117f4565b610d5b611cad565b565b60608151835114610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906143f5565b60405180910390fd5b6000835167ffffffffffffffff811115610dc057610dbf61323e565b5b604051908082528060200260200182016040528015610dee5781602001602082028036833780820191505090505b50905060005b8451811015610e6b57610e3b858281518110610e1357610e12614415565b5b6020026020010151858381518110610e2e57610e2d614415565b5b60200260200101516107f3565b828281518110610e4e57610e4d614415565b5b60200260200101818152505080610e6490614444565b9050610df4565b508091505092915050565b600080610e82836113de565b119050919050565b6000600360009054906101000a900460ff16905090565b610ea96117f4565b600060019050600b5481610ebd60006113de565b610ec7919061419f565b1115610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061421f565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906144d8565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fea8260008360405180602001604052806000815250611968565b5050565b610ff6611984565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061103c575061103b83611036611984565b6114a7565b5b61107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906142b1565b60405180910390fd5b611086838383611d10565b505050565b6110936117f4565b61109d6000611d20565b565b6110a76117f4565b6110c38260008360405180602001604052806000815250611968565b5050565b6110cf6117f4565b6110d7611de6565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461111290613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461113e90613cc4565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b61119d6117f4565b60006001905060008251826111b291906140f1565b9050600b54816111c260006113de565b6111cc919061419f565b111561120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112049061421f565b60405180910390fd5b60005b835181101561132e57600084828151811061122e5761122d614415565b5b602002602001015190506000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b1906144d8565b60405180910390fd5b83600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a8160008660405180602001604052806000815250611968565b50808061132690614444565b915050611210565b50505050565b61134661133f611984565b8383611e49565b5050565b600a5481565b6008805461135d90613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613cc4565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b505050505081565b600060046000838152602001908152602001600020549050919050565b6114036117f4565b61140f82600083611fb5565b5050565b600b5481565b6007805461142690613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461145290613cc4565b801561149f5780601f106114745761010080835404028352916020019161149f565b820191906000526020600020905b81548152906001019060200180831161148257829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6009805461154890613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461157490613cc4565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b505050505081565b6115d1611984565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611617575061161685611611611984565b6114a7565b5b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906142b1565b60405180910390fd5b6116638585858585611fc5565b5050505050565b6116726117f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061456a565b60405180910390fd5b6116ea81611d20565b50565b6116f5611984565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061173b575061173a83611735611984565b6114a7565b5b61177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906142b1565b60405180910390fd5b611785838383611fb5565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117fc611984565b73ffffffffffffffffffffffffffffffffffffffff1661181a6110d9565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906145d6565b60405180910390fd5b565b80600290816118819190613ff0565b5050565b60606002805461189490613cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090613cc4565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b60026006540361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614642565b60405180910390fd5b6002600681905550565b61197484848484612260565b50505050565b6001600681905550565b600033905090565b81518351146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906146d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690614766565b60405180910390fd5b6000611a49611984565b9050611a59818787878787612410565b60005b8451811015611c0a576000858281518110611a7a57611a79614415565b5b602002602001015190506000858381518110611a9957611a98614415565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906147f8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bef919061419f565b9250508190555050505080611c0390614444565b9050611a5c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c81929190614818565b60405180910390a4611c97818787878787612426565b611ca581878787878761242e565b505050505050565b611cb5612605565b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cf9611984565b604051611d069190613a09565b60405180910390a1565b611d1b83838361264e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dee61291c565b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e32611984565b604051611e3f9190613a09565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906148c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa89190613208565b60405180910390a3505050565b611fc0838383612966565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90614766565b60405180910390fd5b600061203e611984565b9050600061204b85612bac565b9050600061205885612bac565b9050612068838989858589612410565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906147f8565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b4919061419f565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516122319291906148e1565b60405180910390a4612247848a8a86868a612426565b612255848a8a8a8a8a612c26565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c69061497c565b60405180910390fd5b60006122d9611984565b905060006122e685612bac565b905060006122f385612bac565b905061230483600089858589612410565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612363919061419f565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516123e19291906148e1565b60405180910390a46123f883600089858589612426565b61240783600089898989612c26565b50505050505050565b61241e868686868686612dfd565b505050505050565b505050505050565b61244d8473ffffffffffffffffffffffffffffffffffffffff16612fcd565b156125fd578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124939594939291906149f1565b6020604051808303816000875af19250505080156124cf57506040513d601f19601f820116820180604052508101906124cc9190614a6e565b60015b612574576124db614aa8565b806308c379a00361253757506124ef614aca565b806124fa5750612539565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9190613431565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614bcc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614c5e565b60405180910390fd5b505b505050505050565b61260d610e8a565b61264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614cca565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614d5c565b60405180910390fd5b8051825114612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906146d4565b60405180910390fd5b600061270b611984565b905061272b81856000868660405180602001604052806000815250612410565b60005b835181101561287857600084828151811061274c5761274b614415565b5b60200260200101519050600084838151811061276b5761276a614415565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614dee565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061287090614444565b91505061272e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128f0929190614818565b60405180910390a461291681856000868660405180602001604052806000815250612426565b50505050565b612924610e8a565b15612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614e5a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614d5c565b60405180910390fd5b60006129df611984565b905060006129ec84612bac565b905060006129f984612bac565b9050612a1983876000858560405180602001604052806000815250612410565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614dee565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612b7d9291906148e1565b60405180910390a4612ba384886000868660405180602001604052806000815250612426565b50505050505050565b60606000600167ffffffffffffffff811115612bcb57612bca61323e565b5b604051908082528060200260200182016040528015612bf95781602001602082028036833780820191505090505b5090508281600081518110612c1157612c10614415565b5b60200260200101818152505080915050919050565b612c458473ffffffffffffffffffffffffffffffffffffffff16612fcd565b15612df5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612c8b959493929190614e7a565b6020604051808303816000875af1925050508015612cc757506040513d601f19601f82011682018060405250810190612cc49190614a6e565b60015b612d6c57612cd3614aa8565b806308c379a003612d2f5750612ce7614aca565b80612cf25750612d31565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d269190613431565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6390614bcc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90614c5e565b60405180910390fd5b505b505050505050565b612e0b868686868686612ff0565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ebc5760005b8351811015612eba57828181518110612e5e57612e5d614415565b5b602002602001015160046000868481518110612e7d57612e7c614415565b5b602002602001015181526020019081526020016000206000828254612ea2919061419f565b9250508190555080612eb390614444565b9050612e42565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fc55760005b8351811015612fc3576000848281518110612f1157612f10614415565b5b602002602001015190506000848381518110612f3057612f2f614415565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c90614f46565b60405180910390fd5b818103600460008581526020019081526020016000208190555050505080612fbc90614444565b9050612ef3565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612ffe86868686868661304e565b613006610e8a565b15613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d90614fd8565b60405180910390fd5b505050505050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130958261306a565b9050919050565b6130a58161308a565b81146130b057600080fd5b50565b6000813590506130c28161309c565b92915050565b6000819050919050565b6130db816130c8565b81146130e657600080fd5b50565b6000813590506130f8816130d2565b92915050565b6000806040838503121561311557613114613060565b5b6000613123858286016130b3565b9250506020613134858286016130e9565b9150509250929050565b613147816130c8565b82525050565b6000602082019050613162600083018461313e565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61319d81613168565b81146131a857600080fd5b50565b6000813590506131ba81613194565b92915050565b6000602082840312156131d6576131d5613060565b5b60006131e4848285016131ab565b91505092915050565b60008115159050919050565b613202816131ed565b82525050565b600060208201905061321d60008301846131f9565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132768261322d565b810181811067ffffffffffffffff821117156132955761329461323e565b5b80604052505050565b60006132a8613056565b90506132b4828261326d565b919050565b600067ffffffffffffffff8211156132d4576132d361323e565b5b6132dd8261322d565b9050602081019050919050565b82818337600083830152505050565b600061330c613307846132b9565b61329e565b90508281526020810184848401111561332857613327613228565b5b6133338482856132ea565b509392505050565b600082601f8301126133505761334f613223565b5b81356133608482602086016132f9565b91505092915050565b60006020828403121561337f5761337e613060565b5b600082013567ffffffffffffffff81111561339d5761339c613065565b5b6133a98482850161333b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133ec5780820151818401526020810190506133d1565b60008484015250505050565b6000613403826133b2565b61340d81856133bd565b935061341d8185602086016133ce565b6134268161322d565b840191505092915050565b6000602082019050818103600083015261344b81846133f8565b905092915050565b60006020828403121561346957613468613060565b5b6000613477848285016130e9565b91505092915050565b600067ffffffffffffffff82111561349b5761349a61323e565b5b602082029050602081019050919050565b600080fd5b60006134c46134bf84613480565b61329e565b905080838252602082019050602084028301858111156134e7576134e66134ac565b5b835b8181101561351057806134fc88826130e9565b8452602084019350506020810190506134e9565b5050509392505050565b600082601f83011261352f5761352e613223565b5b813561353f8482602086016134b1565b91505092915050565b600067ffffffffffffffff8211156135635761356261323e565b5b61356c8261322d565b9050602081019050919050565b600061358c61358784613548565b61329e565b9050828152602081018484840111156135a8576135a7613228565b5b6135b38482856132ea565b509392505050565b600082601f8301126135d0576135cf613223565b5b81356135e0848260208601613579565b91505092915050565b600080600080600060a0868803121561360557613604613060565b5b6000613613888289016130b3565b9550506020613624888289016130b3565b945050604086013567ffffffffffffffff81111561364557613644613065565b5b6136518882890161351a565b935050606086013567ffffffffffffffff81111561367257613671613065565b5b61367e8882890161351a565b925050608086013567ffffffffffffffff81111561369f5761369e613065565b5b6136ab888289016135bb565b9150509295509295909350565b6000806000606084860312156136d1576136d0613060565b5b600084013567ffffffffffffffff8111156136ef576136ee613065565b5b6136fb8682870161333b565b935050602061370c868287016130e9565b925050604061371d868287016130e9565b9150509250925092565b600067ffffffffffffffff8211156137425761374161323e565b5b602082029050602081019050919050565b600061376661376184613727565b61329e565b90508083825260208201905060208402830185811115613789576137886134ac565b5b835b818110156137b2578061379e88826130b3565b84526020840193505060208101905061378b565b5050509392505050565b600082601f8301126137d1576137d0613223565b5b81356137e1848260208601613753565b91505092915050565b6000806040838503121561380157613800613060565b5b600083013567ffffffffffffffff81111561381f5761381e613065565b5b61382b858286016137bc565b925050602083013567ffffffffffffffff81111561384c5761384b613065565b5b6138588582860161351a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613897816130c8565b82525050565b60006138a9838361388e565b60208301905092915050565b6000602082019050919050565b60006138cd82613862565b6138d7818561386d565b93506138e28361387e565b8060005b838110156139135781516138fa888261389d565b9750613905836138b5565b9250506001810190506138e6565b5085935050505092915050565b6000602082019050818103600083015261393a81846138c2565b905092915050565b60006020828403121561395857613957613060565b5b6000613966848285016130b3565b91505092915050565b60008060006060848603121561398857613987613060565b5b6000613996868287016130b3565b935050602084013567ffffffffffffffff8111156139b7576139b6613065565b5b6139c38682870161351a565b925050604084013567ffffffffffffffff8111156139e4576139e3613065565b5b6139f08682870161351a565b9150509250925092565b613a038161308a565b82525050565b6000602082019050613a1e60008301846139fa565b92915050565b600060208284031215613a3a57613a39613060565b5b600082013567ffffffffffffffff811115613a5857613a57613065565b5b613a64848285016137bc565b91505092915050565b613a76816131ed565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b60008060408385031215613ab057613aaf613060565b5b6000613abe858286016130b3565b9250506020613acf85828601613a84565b9150509250929050565b60008060408385031215613af057613aef613060565b5b6000613afe858286016130b3565b9250506020613b0f858286016130b3565b9150509250929050565b600080600080600060a08688031215613b3557613b34613060565b5b6000613b43888289016130b3565b9550506020613b54888289016130b3565b9450506040613b65888289016130e9565b9350506060613b76888289016130e9565b925050608086013567ffffffffffffffff811115613b9757613b96613065565b5b613ba3888289016135bb565b9150509295509295909350565b600080600060608486031215613bc957613bc8613060565b5b6000613bd7868287016130b3565b9350506020613be8868287016130e9565b9250506040613bf9868287016130e9565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613c5f602a836133bd565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cdc57607f821691505b602082108103613cef57613cee613c95565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b6000613d2b6016836133bd565b9150613d3682613cf5565b602082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b600081905092915050565b6000613d77826133b2565b613d818185613d61565b9350613d918185602086016133ce565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613dbf81613cc4565b613dc98186613d61565b94506001821660008114613de45760018114613df957613e2c565b60ff1983168652811515820286019350613e2c565b613e0285613d9d565b60005b83811015613e2457815481890152600182019150602081019050613e05565b838801955050505b50505092915050565b6000613e418285613d6c565b9150613e4d8284613db2565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ea67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e69565b613eb08683613e69565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613eed613ee8613ee3846130c8565b613ec8565b6130c8565b9050919050565b6000819050919050565b613f0783613ed2565b613f1b613f1382613ef4565b848454613e76565b825550505050565b600090565b613f30613f23565b613f3b818484613efe565b505050565b5b81811015613f5f57613f54600082613f28565b600181019050613f41565b5050565b601f821115613fa457613f7581613d9d565b613f7e84613e59565b81016020851015613f8d578190505b613fa1613f9985613e59565b830182613f40565b50505b505050565b600082821c905092915050565b6000613fc760001984600802613fa9565b1980831691505092915050565b6000613fe08383613fb6565b9150826002028217905092915050565b613ff9826133b2565b67ffffffffffffffff8111156140125761401161323e565b5b61401c8254613cc4565b614027828285613f63565b600060209050601f83116001811461405a5760008415614048578287015190505b6140528582613fd4565b8655506140ba565b601f19841661406886613d9d565b60005b828110156140905784890151825560018201915060208501945060208101905061406b565b868310156140ad57848901516140a9601f891682613fb6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140fc826130c8565b9150614107836130c8565b9250828202614115816130c8565b9150828204841483151761412c5761412b6140c2565b5b5092915050565b7f496e636f72726563742045544820616d6f756e742073656e7400000000000000600082015250565b60006141696019836133bd565b915061417482614133565b602082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b60006141aa826130c8565b91506141b5836130c8565b92508282019050808211156141cd576141cc6140c2565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006142096016836133bd565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061429b602e836133bd565b91506142a68261423f565b604082019050919050565b600060208201905081810360008301526142ca8161428e565b9050919050565b600081905092915050565b50565b60006142ec6000836142d1565b91506142f7826142dc565b600082019050919050565b600061430d826142df565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b600061434d600f836133bd565b915061435882614317565b602082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006143df6029836133bd565b91506143ea82614383565b604082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061444f826130c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614481576144806140c2565b5b600182019050919050565b7f5573657220616c72656164792072656365697665642074686520676966740000600082015250565b60006144c2601e836133bd565b91506144cd8261448c565b602082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145546026836133bd565b915061455f826144f8565b604082019050919050565b6000602082019050818103600083015261458381614547565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145c06020836133bd565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061462c601f836133bd565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006146be6028836133bd565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147506025836133bd565b915061475b826146f4565b604082019050919050565b6000602082019050818103600083015261477f81614743565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006147e2602a836133bd565b91506147ed82614786565b604082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b6000604082019050818103600083015261483281856138c2565b9050818103602083015261484681846138c2565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148ab6029836133bd565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b60006040820190506148f6600083018561313e565b614903602083018461313e565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149666021836133bd565b91506149718261490a565b604082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149c38261499c565b6149cd81856149a7565b93506149dd8185602086016133ce565b6149e68161322d565b840191505092915050565b600060a082019050614a0660008301886139fa565b614a1360208301876139fa565b8181036040830152614a2581866138c2565b90508181036060830152614a3981856138c2565b90508181036080830152614a4d81846149b8565b90509695505050505050565b600081519050614a6881613194565b92915050565b600060208284031215614a8457614a83613060565b5b6000614a9284828501614a59565b91505092915050565b60008160e01c9050919050565b600060033d1115614ac75760046000803e614ac4600051614a9b565b90505b90565b600060443d10614b5757614adc613056565b60043d036004823e80513d602482011167ffffffffffffffff82111715614b04575050614b57565b808201805167ffffffffffffffff811115614b225750505050614b57565b80602083010160043d038501811115614b3f575050505050614b57565b614b4e8260200185018661326d565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614bb66034836133bd565b9150614bc182614b5a565b604082019050919050565b60006020820190508181036000830152614be581614ba9565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614c486028836133bd565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614cb46014836133bd565b9150614cbf82614c7e565b602082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d466023836133bd565b9150614d5182614cea565b604082019050919050565b60006020820190508181036000830152614d7581614d39565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614dd86024836133bd565b9150614de382614d7c565b604082019050919050565b60006020820190508181036000830152614e0781614dcb565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614e446010836133bd565b9150614e4f82614e0e565b602082019050919050565b60006020820190508181036000830152614e7381614e37565b9050919050565b600060a082019050614e8f60008301886139fa565b614e9c60208301876139fa565b614ea9604083018661313e565b614eb6606083018561313e565b8181036080830152614ec881846149b8565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614f306028836133bd565b9150614f3b82614ed4565b604082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000614fc2602c836133bd565b9150614fcd82614f66565b604082019050919050565b60006020820190508181036000830152614ff181614fb5565b905091905056fea2646970667358221220baf5b77cc2a5a1b9aa7c132948e5541ba549df1085e974b660713c06fa01fc0e64736f6c63430008110033697066733a2f2f516d5a6f4a447937416a31584d4b43647844645834543542485265574879554c636f7352784a39466245344779642f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084e46545245534f5200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e46545245534f52000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102035760003560e01c8063715018a611610118578063bd85b039116100a0578063e985e9c51161006f578063e985e9c514610710578063f22043f31461074d578063f242432a14610778578063f2fde38b146107a1578063f5298aca146107ca57610203565b8063bd85b03914610654578063d1df306c14610691578063d5abeb01146106ba578063e2b9e186146106e557610203565b806395d89b41116100e757806395d89b41146105815780639785d775146105ac578063a22cb465146105d5578063a945bf80146105fe578063af17dea61461062957610203565b8063715018a6146104ff57806379c65068146105165780638456cb591461053f5780638da5cb5b1461055657610203565b80632eb2c2d61161019b5780634e1273f41161016a5780634e1273f4146104085780634f558e79146104455780635c975abb146104825780636262f7e0146104ad5780636b20c454146104d657610203565b80632eb2c2d6146103815780633b77853d146103aa5780633ccfd60b146103d35780633f4ba83a146103f157610203565b80630c4a902d116101d75780630c4a902d146102d65780630e89341c146102ff57806317a4bf311461033c5780632db115441461036557610203565b8062fdd58e1461020857806301ffc9a71461024557806302fe53051461028257806306fdde03146102ab575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a91906130fe565b6107f3565b60405161023c919061314d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906131c0565b6108bb565b6040516102799190613208565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613369565b61099d565b005b3480156102b757600080fd5b506102c06109b1565b6040516102cd9190613431565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613453565b610a43565b005b34801561030b57600080fd5b5061032660048036038101906103219190613453565b610a55565b6040516103339190613431565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190613369565b610ad4565b005b61037f600480360381019061037a9190613453565b610aef565b005b34801561038d57600080fd5b506103a860048036038101906103a391906135e9565b610bc6565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906136b8565b610c67565b005b6103db610c92565b6040516103e89190613208565b60405180910390f35b3480156103fd57600080fd5b50610406610d4b565b005b34801561041457600080fd5b5061042f600480360381019061042a91906137ea565b610d5d565b60405161043c9190613920565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613453565b610e76565b6040516104799190613208565b60405180910390f35b34801561048e57600080fd5b50610497610e8a565b6040516104a49190613208565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613942565b610ea1565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061396f565b610fee565b005b34801561050b57600080fd5b5061051461108b565b005b34801561052257600080fd5b5061053d600480360381019061053891906130fe565b61109f565b005b34801561054b57600080fd5b506105546110c7565b005b34801561056257600080fd5b5061056b6110d9565b6040516105789190613a09565b60405180910390f35b34801561058d57600080fd5b50610596611103565b6040516105a39190613431565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613a24565b611195565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613a99565b611334565b005b34801561060a57600080fd5b5061061361134a565b604051610620919061314d565b60405180910390f35b34801561063557600080fd5b5061063e611350565b60405161064b9190613431565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613453565b6113de565b604051610688919061314d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906130fe565b6113fb565b005b3480156106c657600080fd5b506106cf611413565b6040516106dc919061314d565b60405180910390f35b3480156106f157600080fd5b506106fa611419565b6040516107079190613431565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613ad9565b6114a7565b6040516107449190613208565b60405180910390f35b34801561075957600080fd5b5061076261153b565b60405161076f9190613431565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613b19565b6115c9565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613942565b61166a565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613bb0565b6116ed565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a90613c75565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657506109958261178a565b5b9050919050565b6109a56117f4565b6109ae81611872565b50565b6060600780546109c090613cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90613cc4565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b610a4b6117f4565b80600a8190555050565b60606000610a62836113de565b11610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613d41565b60405180910390fd5b610aab82611885565b6009604051602001610abe929190613e35565b6040516020818303038152906040529050919050565b610adc6117f4565b8060099081610aeb9190613ff0565b5050565b610af7611919565b600a5481610b0591906140f1565b3414610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d9061417f565b60405180910390fd5b600b5481610b5460006113de565b610b5e919061419f565b1115610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061421f565b60405180910390fd5b610bbb3360008360405180602001604052806000815250611968565b610bc361197a565b50565b610bce611984565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c145750610c1385610c0e611984565b6114a7565b5b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906142b1565b60405180910390fd5b610c60858585858561198c565b5050505050565b610c6f6117f4565b8260099081610c7e9190613ff0565b5080600a8190555081600b81905550505050565b6000610c9c6117f4565b3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc090614302565b60006040518083038185875af1925050503d8060008114610cfd576040519150601f19603f3d011682016040523d82523d6000602084013e610d02565b606091505b50508091505080610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614363565b60405180910390fd5b90565b610d536117f4565b610d5b611cad565b565b60608151835114610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906143f5565b60405180910390fd5b6000835167ffffffffffffffff811115610dc057610dbf61323e565b5b604051908082528060200260200182016040528015610dee5781602001602082028036833780820191505090505b50905060005b8451811015610e6b57610e3b858281518110610e1357610e12614415565b5b6020026020010151858381518110610e2e57610e2d614415565b5b60200260200101516107f3565b828281518110610e4e57610e4d614415565b5b60200260200101818152505080610e6490614444565b9050610df4565b508091505092915050565b600080610e82836113de565b119050919050565b6000600360009054906101000a900460ff16905090565b610ea96117f4565b600060019050600b5481610ebd60006113de565b610ec7919061419f565b1115610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061421f565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906144d8565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fea8260008360405180602001604052806000815250611968565b5050565b610ff6611984565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061103c575061103b83611036611984565b6114a7565b5b61107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906142b1565b60405180910390fd5b611086838383611d10565b505050565b6110936117f4565b61109d6000611d20565b565b6110a76117f4565b6110c38260008360405180602001604052806000815250611968565b5050565b6110cf6117f4565b6110d7611de6565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461111290613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461113e90613cc4565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b61119d6117f4565b60006001905060008251826111b291906140f1565b9050600b54816111c260006113de565b6111cc919061419f565b111561120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112049061421f565b60405180910390fd5b60005b835181101561132e57600084828151811061122e5761122d614415565b5b602002602001015190506000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b1906144d8565b60405180910390fd5b83600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a8160008660405180602001604052806000815250611968565b50808061132690614444565b915050611210565b50505050565b61134661133f611984565b8383611e49565b5050565b600a5481565b6008805461135d90613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613cc4565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b505050505081565b600060046000838152602001908152602001600020549050919050565b6114036117f4565b61140f82600083611fb5565b5050565b600b5481565b6007805461142690613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461145290613cc4565b801561149f5780601f106114745761010080835404028352916020019161149f565b820191906000526020600020905b81548152906001019060200180831161148257829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6009805461154890613cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461157490613cc4565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b505050505081565b6115d1611984565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611617575061161685611611611984565b6114a7565b5b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906142b1565b60405180910390fd5b6116638585858585611fc5565b5050505050565b6116726117f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061456a565b60405180910390fd5b6116ea81611d20565b50565b6116f5611984565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061173b575061173a83611735611984565b6114a7565b5b61177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906142b1565b60405180910390fd5b611785838383611fb5565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117fc611984565b73ffffffffffffffffffffffffffffffffffffffff1661181a6110d9565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906145d6565b60405180910390fd5b565b80600290816118819190613ff0565b5050565b60606002805461189490613cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090613cc4565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b60026006540361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614642565b60405180910390fd5b6002600681905550565b61197484848484612260565b50505050565b6001600681905550565b600033905090565b81518351146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906146d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690614766565b60405180910390fd5b6000611a49611984565b9050611a59818787878787612410565b60005b8451811015611c0a576000858281518110611a7a57611a79614415565b5b602002602001015190506000858381518110611a9957611a98614415565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906147f8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bef919061419f565b9250508190555050505080611c0390614444565b9050611a5c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c81929190614818565b60405180910390a4611c97818787878787612426565b611ca581878787878761242e565b505050505050565b611cb5612605565b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cf9611984565b604051611d069190613a09565b60405180910390a1565b611d1b83838361264e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dee61291c565b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e32611984565b604051611e3f9190613a09565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906148c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa89190613208565b60405180910390a3505050565b611fc0838383612966565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90614766565b60405180910390fd5b600061203e611984565b9050600061204b85612bac565b9050600061205885612bac565b9050612068838989858589612410565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906147f8565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b4919061419f565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516122319291906148e1565b60405180910390a4612247848a8a86868a612426565b612255848a8a8a8a8a612c26565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c69061497c565b60405180910390fd5b60006122d9611984565b905060006122e685612bac565b905060006122f385612bac565b905061230483600089858589612410565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612363919061419f565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516123e19291906148e1565b60405180910390a46123f883600089858589612426565b61240783600089898989612c26565b50505050505050565b61241e868686868686612dfd565b505050505050565b505050505050565b61244d8473ffffffffffffffffffffffffffffffffffffffff16612fcd565b156125fd578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124939594939291906149f1565b6020604051808303816000875af19250505080156124cf57506040513d601f19601f820116820180604052508101906124cc9190614a6e565b60015b612574576124db614aa8565b806308c379a00361253757506124ef614aca565b806124fa5750612539565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9190613431565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614bcc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614c5e565b60405180910390fd5b505b505050505050565b61260d610e8a565b61264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614cca565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614d5c565b60405180910390fd5b8051825114612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906146d4565b60405180910390fd5b600061270b611984565b905061272b81856000868660405180602001604052806000815250612410565b60005b835181101561287857600084828151811061274c5761274b614415565b5b60200260200101519050600084838151811061276b5761276a614415565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614dee565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061287090614444565b91505061272e565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128f0929190614818565b60405180910390a461291681856000868660405180602001604052806000815250612426565b50505050565b612924610e8a565b15612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614e5a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614d5c565b60405180910390fd5b60006129df611984565b905060006129ec84612bac565b905060006129f984612bac565b9050612a1983876000858560405180602001604052806000815250612410565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614dee565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612b7d9291906148e1565b60405180910390a4612ba384886000868660405180602001604052806000815250612426565b50505050505050565b60606000600167ffffffffffffffff811115612bcb57612bca61323e565b5b604051908082528060200260200182016040528015612bf95781602001602082028036833780820191505090505b5090508281600081518110612c1157612c10614415565b5b60200260200101818152505080915050919050565b612c458473ffffffffffffffffffffffffffffffffffffffff16612fcd565b15612df5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612c8b959493929190614e7a565b6020604051808303816000875af1925050508015612cc757506040513d601f19601f82011682018060405250810190612cc49190614a6e565b60015b612d6c57612cd3614aa8565b806308c379a003612d2f5750612ce7614aca565b80612cf25750612d31565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d269190613431565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6390614bcc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90614c5e565b60405180910390fd5b505b505050505050565b612e0b868686868686612ff0565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ebc5760005b8351811015612eba57828181518110612e5e57612e5d614415565b5b602002602001015160046000868481518110612e7d57612e7c614415565b5b602002602001015181526020019081526020016000206000828254612ea2919061419f565b9250508190555080612eb390614444565b9050612e42565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612fc55760005b8351811015612fc3576000848281518110612f1157612f10614415565b5b602002602001015190506000848381518110612f3057612f2f614415565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c90614f46565b60405180910390fd5b818103600460008581526020019081526020016000208190555050505080612fbc90614444565b9050612ef3565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612ffe86868686868661304e565b613006610e8a565b15613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d90614fd8565b60405180910390fd5b505050505050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130958261306a565b9050919050565b6130a58161308a565b81146130b057600080fd5b50565b6000813590506130c28161309c565b92915050565b6000819050919050565b6130db816130c8565b81146130e657600080fd5b50565b6000813590506130f8816130d2565b92915050565b6000806040838503121561311557613114613060565b5b6000613123858286016130b3565b9250506020613134858286016130e9565b9150509250929050565b613147816130c8565b82525050565b6000602082019050613162600083018461313e565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61319d81613168565b81146131a857600080fd5b50565b6000813590506131ba81613194565b92915050565b6000602082840312156131d6576131d5613060565b5b60006131e4848285016131ab565b91505092915050565b60008115159050919050565b613202816131ed565b82525050565b600060208201905061321d60008301846131f9565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132768261322d565b810181811067ffffffffffffffff821117156132955761329461323e565b5b80604052505050565b60006132a8613056565b90506132b4828261326d565b919050565b600067ffffffffffffffff8211156132d4576132d361323e565b5b6132dd8261322d565b9050602081019050919050565b82818337600083830152505050565b600061330c613307846132b9565b61329e565b90508281526020810184848401111561332857613327613228565b5b6133338482856132ea565b509392505050565b600082601f8301126133505761334f613223565b5b81356133608482602086016132f9565b91505092915050565b60006020828403121561337f5761337e613060565b5b600082013567ffffffffffffffff81111561339d5761339c613065565b5b6133a98482850161333b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133ec5780820151818401526020810190506133d1565b60008484015250505050565b6000613403826133b2565b61340d81856133bd565b935061341d8185602086016133ce565b6134268161322d565b840191505092915050565b6000602082019050818103600083015261344b81846133f8565b905092915050565b60006020828403121561346957613468613060565b5b6000613477848285016130e9565b91505092915050565b600067ffffffffffffffff82111561349b5761349a61323e565b5b602082029050602081019050919050565b600080fd5b60006134c46134bf84613480565b61329e565b905080838252602082019050602084028301858111156134e7576134e66134ac565b5b835b8181101561351057806134fc88826130e9565b8452602084019350506020810190506134e9565b5050509392505050565b600082601f83011261352f5761352e613223565b5b813561353f8482602086016134b1565b91505092915050565b600067ffffffffffffffff8211156135635761356261323e565b5b61356c8261322d565b9050602081019050919050565b600061358c61358784613548565b61329e565b9050828152602081018484840111156135a8576135a7613228565b5b6135b38482856132ea565b509392505050565b600082601f8301126135d0576135cf613223565b5b81356135e0848260208601613579565b91505092915050565b600080600080600060a0868803121561360557613604613060565b5b6000613613888289016130b3565b9550506020613624888289016130b3565b945050604086013567ffffffffffffffff81111561364557613644613065565b5b6136518882890161351a565b935050606086013567ffffffffffffffff81111561367257613671613065565b5b61367e8882890161351a565b925050608086013567ffffffffffffffff81111561369f5761369e613065565b5b6136ab888289016135bb565b9150509295509295909350565b6000806000606084860312156136d1576136d0613060565b5b600084013567ffffffffffffffff8111156136ef576136ee613065565b5b6136fb8682870161333b565b935050602061370c868287016130e9565b925050604061371d868287016130e9565b9150509250925092565b600067ffffffffffffffff8211156137425761374161323e565b5b602082029050602081019050919050565b600061376661376184613727565b61329e565b90508083825260208201905060208402830185811115613789576137886134ac565b5b835b818110156137b2578061379e88826130b3565b84526020840193505060208101905061378b565b5050509392505050565b600082601f8301126137d1576137d0613223565b5b81356137e1848260208601613753565b91505092915050565b6000806040838503121561380157613800613060565b5b600083013567ffffffffffffffff81111561381f5761381e613065565b5b61382b858286016137bc565b925050602083013567ffffffffffffffff81111561384c5761384b613065565b5b6138588582860161351a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613897816130c8565b82525050565b60006138a9838361388e565b60208301905092915050565b6000602082019050919050565b60006138cd82613862565b6138d7818561386d565b93506138e28361387e565b8060005b838110156139135781516138fa888261389d565b9750613905836138b5565b9250506001810190506138e6565b5085935050505092915050565b6000602082019050818103600083015261393a81846138c2565b905092915050565b60006020828403121561395857613957613060565b5b6000613966848285016130b3565b91505092915050565b60008060006060848603121561398857613987613060565b5b6000613996868287016130b3565b935050602084013567ffffffffffffffff8111156139b7576139b6613065565b5b6139c38682870161351a565b925050604084013567ffffffffffffffff8111156139e4576139e3613065565b5b6139f08682870161351a565b9150509250925092565b613a038161308a565b82525050565b6000602082019050613a1e60008301846139fa565b92915050565b600060208284031215613a3a57613a39613060565b5b600082013567ffffffffffffffff811115613a5857613a57613065565b5b613a64848285016137bc565b91505092915050565b613a76816131ed565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b60008060408385031215613ab057613aaf613060565b5b6000613abe858286016130b3565b9250506020613acf85828601613a84565b9150509250929050565b60008060408385031215613af057613aef613060565b5b6000613afe858286016130b3565b9250506020613b0f858286016130b3565b9150509250929050565b600080600080600060a08688031215613b3557613b34613060565b5b6000613b43888289016130b3565b9550506020613b54888289016130b3565b9450506040613b65888289016130e9565b9350506060613b76888289016130e9565b925050608086013567ffffffffffffffff811115613b9757613b96613065565b5b613ba3888289016135bb565b9150509295509295909350565b600080600060608486031215613bc957613bc8613060565b5b6000613bd7868287016130b3565b9350506020613be8868287016130e9565b9250506040613bf9868287016130e9565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613c5f602a836133bd565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cdc57607f821691505b602082108103613cef57613cee613c95565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b6000613d2b6016836133bd565b9150613d3682613cf5565b602082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b600081905092915050565b6000613d77826133b2565b613d818185613d61565b9350613d918185602086016133ce565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613dbf81613cc4565b613dc98186613d61565b94506001821660008114613de45760018114613df957613e2c565b60ff1983168652811515820286019350613e2c565b613e0285613d9d565b60005b83811015613e2457815481890152600182019150602081019050613e05565b838801955050505b50505092915050565b6000613e418285613d6c565b9150613e4d8284613db2565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ea67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e69565b613eb08683613e69565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613eed613ee8613ee3846130c8565b613ec8565b6130c8565b9050919050565b6000819050919050565b613f0783613ed2565b613f1b613f1382613ef4565b848454613e76565b825550505050565b600090565b613f30613f23565b613f3b818484613efe565b505050565b5b81811015613f5f57613f54600082613f28565b600181019050613f41565b5050565b601f821115613fa457613f7581613d9d565b613f7e84613e59565b81016020851015613f8d578190505b613fa1613f9985613e59565b830182613f40565b50505b505050565b600082821c905092915050565b6000613fc760001984600802613fa9565b1980831691505092915050565b6000613fe08383613fb6565b9150826002028217905092915050565b613ff9826133b2565b67ffffffffffffffff8111156140125761401161323e565b5b61401c8254613cc4565b614027828285613f63565b600060209050601f83116001811461405a5760008415614048578287015190505b6140528582613fd4565b8655506140ba565b601f19841661406886613d9d565b60005b828110156140905784890151825560018201915060208501945060208101905061406b565b868310156140ad57848901516140a9601f891682613fb6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140fc826130c8565b9150614107836130c8565b9250828202614115816130c8565b9150828204841483151761412c5761412b6140c2565b5b5092915050565b7f496e636f72726563742045544820616d6f756e742073656e7400000000000000600082015250565b60006141696019836133bd565b915061417482614133565b602082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b60006141aa826130c8565b91506141b5836130c8565b92508282019050808211156141cd576141cc6140c2565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006142096016836133bd565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b600061429b602e836133bd565b91506142a68261423f565b604082019050919050565b600060208201905081810360008301526142ca8161428e565b9050919050565b600081905092915050565b50565b60006142ec6000836142d1565b91506142f7826142dc565b600082019050919050565b600061430d826142df565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b600061434d600f836133bd565b915061435882614317565b602082019050919050565b6000602082019050818103600083015261437c81614340565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006143df6029836133bd565b91506143ea82614383565b604082019050919050565b6000602082019050818103600083015261440e816143d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061444f826130c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614481576144806140c2565b5b600182019050919050565b7f5573657220616c72656164792072656365697665642074686520676966740000600082015250565b60006144c2601e836133bd565b91506144cd8261448c565b602082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145546026836133bd565b915061455f826144f8565b604082019050919050565b6000602082019050818103600083015261458381614547565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145c06020836133bd565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061462c601f836133bd565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006146be6028836133bd565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147506025836133bd565b915061475b826146f4565b604082019050919050565b6000602082019050818103600083015261477f81614743565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006147e2602a836133bd565b91506147ed82614786565b604082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b6000604082019050818103600083015261483281856138c2565b9050818103602083015261484681846138c2565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148ab6029836133bd565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b60006040820190506148f6600083018561313e565b614903602083018461313e565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149666021836133bd565b91506149718261490a565b604082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149c38261499c565b6149cd81856149a7565b93506149dd8185602086016133ce565b6149e68161322d565b840191505092915050565b600060a082019050614a0660008301886139fa565b614a1360208301876139fa565b8181036040830152614a2581866138c2565b90508181036060830152614a3981856138c2565b90508181036080830152614a4d81846149b8565b90509695505050505050565b600081519050614a6881613194565b92915050565b600060208284031215614a8457614a83613060565b5b6000614a9284828501614a59565b91505092915050565b60008160e01c9050919050565b600060033d1115614ac75760046000803e614ac4600051614a9b565b90505b90565b600060443d10614b5757614adc613056565b60043d036004823e80513d602482011167ffffffffffffffff82111715614b04575050614b57565b808201805167ffffffffffffffff811115614b225750505050614b57565b80602083010160043d038501811115614b3f575050505050614b57565b614b4e8260200185018661326d565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614bb66034836133bd565b9150614bc182614b5a565b604082019050919050565b60006020820190508181036000830152614be581614ba9565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614c486028836133bd565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614cb46014836133bd565b9150614cbf82614c7e565b602082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d466023836133bd565b9150614d5182614cea565b604082019050919050565b60006020820190508181036000830152614d7581614d39565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614dd86024836133bd565b9150614de382614d7c565b604082019050919050565b60006020820190508181036000830152614e0781614dcb565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614e446010836133bd565b9150614e4f82614e0e565b602082019050919050565b60006020820190508181036000830152614e7381614e37565b9050919050565b600060a082019050614e8f60008301886139fa565b614e9c60208301876139fa565b614ea9604083018661313e565b614eb6606083018561313e565b8181036080830152614ec881846149b8565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614f306028836133bd565b9150614f3b82614ed4565b604082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000614fc2602c836133bd565b9150614fcd82614f66565b604082019050919050565b60006020820190508181036000830152614ff181614fb5565b905091905056fea2646970667358221220baf5b77cc2a5a1b9aa7c132948e5541ba549df1085e974b660713c06fa01fc0e64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084e46545245534f5200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e46545245534f52000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFTRESOR
Arg [1] : _symbol (string): NFTRESOR

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4e46545245534f52000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4e46545245534f52000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50463:6916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26456:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55780:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55921:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54560:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51779:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54280:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51229:441;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29376:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53895:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55416:206;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55701:67;;;;;;;;;;;;;:::i;:::-;;27829:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43909:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24382:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52219:530;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46941:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49189:103;;;;;;;;;;;;;:::i;:::-;;54899:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55630:63;;;;;;;;;;;;;:::i;:::-;;48541:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56012;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52879:770;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28426:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50778:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50711:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43698:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55245:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50823:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50624:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28653:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50741:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28893:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49447:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46607:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27433:230;27519:7;27566:1;27547:21;;:7;:21;;;27539:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27633:9;:13;27643:2;27633:13;;;;;;;;;;;:22;27647:7;27633:22;;;;;;;;;;;;;;;;27626:29;;27433:230;;;;:::o;26456:310::-;26558:4;26610:26;26595:41;;;:11;:41;;;;:110;;;;26668:37;26653:52;;;:11;:52;;;;26595:110;:163;;;;26722:36;26746:11;26722:23;:36::i;:::-;26595:163;26575:183;;26456:310;;;:::o;55780:93::-;48427:13;:11;:13::i;:::-;55849:16:::1;55857:7;55849;:16::i;:::-;55780:93:::0;:::o;55921:83::-;55958:13;55991:5;55984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55921:83;:::o;54560:118::-;48427:13;:11;:13::i;:::-;54658:12:::1;54644:11;:26;;;;54560:118:::0;:::o;51779:221::-;51835:13;51888:1;51869:16;51881:3;51869:11;:16::i;:::-;:20;51861:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51958:14;51968:3;51958:9;:14::i;:::-;51974:16;51941:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51927:65;;51779:221;;;:::o;54280:136::-;48427:13;:11;:13::i;:::-;54391:17:::1;54372:16;:36;;;;;;:::i;:::-;;54280:136:::0;:::o;51229:441::-;2378:21;:19;:21::i;:::-;51392:11:::1;;51383:6;:20;;;;:::i;:::-;51370:9;:33;51362:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51534:9;;51524:6;51507:14;51519:1;51507:11;:14::i;:::-;:23;;;;:::i;:::-;:36;;51499:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51630:32;51636:10;51648:1;51651:6;51630:32;;;;;;;;;;;::::0;:5:::1;:32::i;:::-;2422:20:::0;:18;:20::i;:::-;51229:441;:::o;29376:438::-;29617:12;:10;:12::i;:::-;29609:20;;:4;:20;;;:60;;;;29633:36;29650:4;29656:12;:10;:12::i;:::-;29633:16;:36::i;:::-;29609:60;29587:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;29754:52;29777:4;29783:2;29787:3;29792:7;29801:4;29754:22;:52::i;:::-;29376:438;;;;;:::o;53895:247::-;48427:13;:11;:13::i;:::-;54047:17:::1;54028:16;:36;;;;;;:::i;:::-;;54089:12;54075:11;:26;;;;54124:10;54112:9;:22;;;;53895:247:::0;;;:::o;55416:206::-;55472:12;48427:13;:11;:13::i;:::-;55518:10:::1;55510:24;;55542:21;55510:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55497:71;;;;;55587:7;55579:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;55416:206:::0;:::o;55701:67::-;48427:13;:11;:13::i;:::-;55750:10:::1;:8;:10::i;:::-;55701:67::o:0;27829:524::-;27985:16;28046:3;:10;28027:8;:15;:29;28019:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;28115:30;28162:8;:15;28148:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28115:63;;28196:9;28191:122;28215:8;:15;28211:1;:19;28191:122;;;28271:30;28281:8;28290:1;28281:11;;;;;;;;:::i;:::-;;;;;;;;28294:3;28298:1;28294:6;;;;;;;;:::i;:::-;;;;;;;;28271:9;:30::i;:::-;28252:13;28266:1;28252:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;28232:3;;;;:::i;:::-;;;28191:122;;;;28332:13;28325:20;;;27829:524;;;;:::o;43909:122::-;43966:4;44022:1;43990:29;44016:2;43990:25;:29::i;:::-;:33;43983:40;;43909:122;;;:::o;24382:86::-;24429:4;24453:7;;;;;;;;;;;24446:14;;24382:86;:::o;52219:530::-;48427:13;:11;:13::i;:::-;52309:14:::1;52326:1;52309:18;;52420:9;;52410:6;52393:14;52405:1;52393:11;:14::i;:::-;:23;;;;:::i;:::-;:36;;52385:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52570:1;52540:17;:26;52558:7;52540:26;;;;;;;;;;;;;;;;:31;52532:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52648:6;52619:17;:26;52637:7;52619:26;;;;;;;;;;;;;;;:35;;;;52712:29;52718:7;52727:1;52730:6;52712:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;52273:476;52219:530:::0;:::o;46941:358::-;47117:12;:10;:12::i;:::-;47106:23;;:7;:23;;;:66;;;;47133:39;47150:7;47159:12;:10;:12::i;:::-;47133:16;:39::i;:::-;47106:66;47084:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;47259:32;47270:7;47279:3;47284:6;47259:10;:32::i;:::-;46941:358;;;:::o;49189:103::-;48427:13;:11;:13::i;:::-;49254:30:::1;49281:1;49254:18;:30::i;:::-;49189:103::o:0;54899:119::-;48427:13;:11;:13::i;:::-;54981:29:::1;54987:7;54996:1;54999:6;54981:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;54899:119:::0;;:::o;55630:63::-;48427:13;:11;:13::i;:::-;55677:8:::1;:6;:8::i;:::-;55630:63::o:0;48541:87::-;48587:7;48614:6;;;;;;;;;;;48607:13;;48541:87;:::o;56012:::-;56051:13;56084:7;56077:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56012:87;:::o;52879:770::-;48427:13;:11;:13::i;:::-;52984:14:::1;53001:1;52984:18;;53023:19;53054:8;:15;53045:6;:24;;;;:::i;:::-;53023:46;;53167:9;;53152:11;53135:14;53147:1;53135:11;:14::i;:::-;:28;;;;:::i;:::-;:41;;53127:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53220:9;53216:426;53235:8;:15;53231:1;:19;53216:426;;;53272:15;53290:8;53299:1;53290:11;;;;;;;;:::i;:::-;;;;;;;;53272:29;;53423:1;53393:17;:26;53411:7;53393:26;;;;;;;;;;;;;;;;:31;53385:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53505:6;53476:17;:26;53494:7;53476:26;;;;;;;;;;;;;;;:35;;;;53601:29;53607:7;53616:1;53619:6;53601:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;53257:385;53252:3;;;;;:::i;:::-;;;;53216:426;;;;52948:701;;52879:770:::0;:::o;28426:155::-;28521:52;28540:12;:10;:12::i;:::-;28554:8;28564;28521:18;:52::i;:::-;28426:155;;:::o;50778:38::-;;;;:::o;50711:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43698:113::-;43760:7;43787:12;:16;43800:2;43787:16;;;;;;;;;;;;43780:23;;43698:113;;;:::o;55245:115::-;48427:13;:11;:13::i;:::-;55327:25:::1;55333:7;55342:1;55345:6;55327:5;:25::i;:::-;55245:115:::0;;:::o;50823:30::-;;;;:::o;50624:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28653:168::-;28752:4;28776:18;:27;28795:7;28776:27;;;;;;;;;;;;;;;:37;28804:8;28776:37;;;;;;;;;;;;;;;;;;;;;;;;;28769:44;;28653:168;;;;:::o;50741:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28893:406::-;29109:12;:10;:12::i;:::-;29101:20;;:4;:20;;;:60;;;;29125:36;29142:4;29148:12;:10;:12::i;:::-;29125:16;:36::i;:::-;29101:60;29079:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;29246:45;29264:4;29270:2;29274;29278:6;29286:4;29246:17;:45::i;:::-;28893:406;;;;;:::o;49447:201::-;48427:13;:11;:13::i;:::-;49556:1:::1;49536:22;;:8;:22;;::::0;49528:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;49612:28;49631:8;49612:18;:28::i;:::-;49447:201:::0;:::o;46607:326::-;46758:12;:10;:12::i;:::-;46747:23;;:7;:23;;;:66;;;;46774:39;46791:7;46800:12;:10;:12::i;:::-;46774:16;:39::i;:::-;46747:66;46725:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;46900:25;46906:7;46915:2;46919:5;46900;:25::i;:::-;46607:326;;;:::o;14189:157::-;14274:4;14313:25;14298:40;;;:11;:40;;;;14291:47;;14189:157;;;:::o;48706:132::-;48781:12;:10;:12::i;:::-;48770:23;;:7;:5;:7::i;:::-;:23;;;48762:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48706:132::o;33600:88::-;33674:6;33667:4;:13;;;;;;:::i;:::-;;33600:88;:::o;27177:105::-;27237:13;27270:4;27263:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27177:105;;;:::o;2458:293::-;1860:1;2592:7;;:19;2584:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1860:1;2725:7;:18;;;;2458:293::o;56146:214::-;56314:38;56326:7;56335:2;56339:6;56347:4;56314:11;:38::i;:::-;56146:214;;;;:::o;2759:213::-;1816:1;2942:7;:22;;;;2759:213::o;22495:98::-;22548:7;22575:10;22568:17;;22495:98;:::o;31610:1146::-;31837:7;:14;31823:3;:10;:28;31815:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31929:1;31915:16;;:2;:16;;;31907:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31986:16;32005:12;:10;:12::i;:::-;31986:31;;32030:60;32051:8;32061:4;32067:2;32071:3;32076:7;32085:4;32030:20;:60::i;:::-;32108:9;32103:421;32127:3;:10;32123:1;:14;32103:421;;;32159:10;32172:3;32176:1;32172:6;;;;;;;;:::i;:::-;;;;;;;;32159:19;;32193:14;32210:7;32218:1;32210:10;;;;;;;;:::i;:::-;;;;;;;;32193:27;;32237:19;32259:9;:13;32269:2;32259:13;;;;;;;;;;;:19;32273:4;32259:19;;;;;;;;;;;;;;;;32237:41;;32316:6;32301:11;:21;;32293:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32449:6;32435:11;:20;32413:9;:13;32423:2;32413:13;;;;;;;;;;;:19;32427:4;32413:19;;;;;;;;;;;;;;;:42;;;;32506:6;32485:9;:13;32495:2;32485:13;;;;;;;;;;;:17;32499:2;32485:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;32144:380;;;32139:3;;;;:::i;:::-;;;32103:421;;;;32571:2;32541:47;;32565:4;32541:47;;32555:8;32541:47;;;32575:3;32580:7;32541:47;;;;;;;:::i;:::-;;;;;;;;32601:59;32621:8;32631:4;32637:2;32641:3;32646:7;32655:4;32601:19;:59::i;:::-;32673:75;32709:8;32719:4;32725:2;32729:3;32734:7;32743:4;32673:35;:75::i;:::-;31804:952;31610:1146;;;;;:::o;25237:120::-;24246:16;:14;:16::i;:::-;25306:5:::1;25296:7;;:15;;;;;;;;;;;;;;;;;;25327:22;25336:12;:10;:12::i;:::-;25327:22;;;;;;:::i;:::-;;;;;;;;25237:120::o:0;56800:212::-;56965:39;56982:7;56991:3;56996:7;56965:16;:39::i;:::-;56800:212;;;:::o;49808:191::-;49882:16;49901:6;;;;;;;;;;;49882:25;;49927:8;49918:6;;:17;;;;;;;;;;;;;;;;;;49982:8;49951:40;;49972:8;49951:40;;;;;;;;;;;;49871:128;49808:191;:::o;24978:118::-;23987:19;:17;:19::i;:::-;25048:4:::1;25038:7;;:14;;;;;;;;;;;;;;;;;;25068:20;25075:12;:10;:12::i;:::-;25068:20;;;;;;:::i;:::-;;;;;;;;24978:118::o:0;38487:331::-;38642:8;38633:17;;:5;:17;;;38625:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38745:8;38707:18;:25;38726:5;38707:25;;;;;;;;;;;;;;;:35;38733:8;38707:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38791:8;38769:41;;38784:5;38769:41;;;38801:8;38769:41;;;;;;:::i;:::-;;;;;;;;38487:331;;;:::o;56612:180::-;56752:32;56764:7;56773:2;56777:6;56752:11;:32::i;:::-;56612:180;;;:::o;30278:974::-;30480:1;30466:16;;:2;:16;;;30458:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30537:16;30556:12;:10;:12::i;:::-;30537:31;;30579:20;30602:21;30620:2;30602:17;:21::i;:::-;30579:44;;30634:24;30661:25;30679:6;30661:17;:25::i;:::-;30634:52;;30699:60;30720:8;30730:4;30736:2;30740:3;30745:7;30754:4;30699:20;:60::i;:::-;30772:19;30794:9;:13;30804:2;30794:13;;;;;;;;;;;:19;30808:4;30794:19;;;;;;;;;;;;;;;;30772:41;;30847:6;30832:11;:21;;30824:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30972:6;30958:11;:20;30936:9;:13;30946:2;30936:13;;;;;;;;;;;:19;30950:4;30936:19;;;;;;;;;;;;;;;:42;;;;31021:6;31000:9;:13;31010:2;31000:13;;;;;;;;;;;:17;31014:2;31000:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31076:2;31045:46;;31070:4;31045:46;;31060:8;31045:46;;;31080:2;31084:6;31045:46;;;;;;;:::i;:::-;;;;;;;;31104:59;31124:8;31134:4;31140:2;31144:3;31149:7;31158:4;31104:19;:59::i;:::-;31176:68;31207:8;31217:4;31223:2;31227;31231:6;31239:4;31176:30;:68::i;:::-;30447:805;;;;30278:974;;;;;:::o;34074:729::-;34241:1;34227:16;;:2;:16;;;34219:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34294:16;34313:12;:10;:12::i;:::-;34294:31;;34336:20;34359:21;34377:2;34359:17;:21::i;:::-;34336:44;;34391:24;34418:25;34436:6;34418:17;:25::i;:::-;34391:52;;34456:66;34477:8;34495:1;34499:2;34503:3;34508:7;34517:4;34456:20;:66::i;:::-;34556:6;34535:9;:13;34545:2;34535:13;;;;;;;;;;;:17;34549:2;34535:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;34615:2;34578:52;;34611:1;34578:52;;34593:8;34578:52;;;34619:2;34623:6;34578:52;;;;;;;:::i;:::-;;;;;;;;34643:65;34663:8;34681:1;34685:2;34689:3;34694:7;34703:4;34643:19;:65::i;:::-;34721:74;34752:8;34770:1;34774:2;34778;34782:6;34790:4;34721:30;:74::i;:::-;34208:595;;;34074:729;;;;:::o;57022:354::-;57302:66;57329:8;57339:4;57345:2;57349:3;57354:7;57363:4;57302:26;:66::i;:::-;57022:354;;;;;;:::o;40952:220::-;;;;;;;:::o;41932:813::-;42172:15;:2;:13;;;:15::i;:::-;42168:570;;;42225:2;42208:43;;;42252:8;42262:4;42268:3;42273:7;42282:4;42208:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;42600:6;42593:14;;;;;;;;;;;:::i;:::-;;;;;;;;42204:523;;;42649:62;;;;;;;;;;:::i;:::-;;;;;;;;42204:523;42381:48;;;42369:60;;;:8;:60;;;;42365:159;;42454:50;;;;;;;;;;:::i;:::-;;;;;;;;42365:159;42288:251;42168:570;41932:813;;;;;;:::o;24726:108::-;24793:8;:6;:8::i;:::-;24785:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;24726:108::o;37375:969::-;37543:1;37527:18;;:4;:18;;;37519:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37618:7;:14;37604:3;:10;:28;37596:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37690:16;37709:12;:10;:12::i;:::-;37690:31;;37734:66;37755:8;37765:4;37779:1;37783:3;37788:7;37734:66;;;;;;;;;;;;:20;:66::i;:::-;37818:9;37813:373;37837:3;:10;37833:1;:14;37813:373;;;37869:10;37882:3;37886:1;37882:6;;;;;;;;:::i;:::-;;;;;;;;37869:19;;37903:14;37920:7;37928:1;37920:10;;;;;;;;:::i;:::-;;;;;;;;37903:27;;37947:19;37969:9;:13;37979:2;37969:13;;;;;;;;;;;:19;37983:4;37969:19;;;;;;;;;;;;;;;;37947:41;;38026:6;38011:11;:21;;38003:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;38153:6;38139:11;:20;38117:9;:13;38127:2;38117:13;;;;;;;;;;;:19;38131:4;38117:19;;;;;;;;;;;;;;;:42;;;;37854:332;;;37849:3;;;;;:::i;:::-;;;;37813:373;;;;38241:1;38203:55;;38227:4;38203:55;;38217:8;38203:55;;;38245:3;38250:7;38203:55;;;;;;;:::i;:::-;;;;;;;;38271:65;38291:8;38301:4;38315:1;38319:3;38324:7;38271:65;;;;;;;;;;;;:19;:65::i;:::-;37508:836;37375:969;;;:::o;24541:108::-;24612:8;:6;:8::i;:::-;24611:9;24603:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;24541:108::o;36317:808::-;36460:1;36444:18;;:4;:18;;;36436:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36515:16;36534:12;:10;:12::i;:::-;36515:31;;36557:20;36580:21;36598:2;36580:17;:21::i;:::-;36557:44;;36612:24;36639:25;36657:6;36639:17;:25::i;:::-;36612:52;;36677:66;36698:8;36708:4;36722:1;36726:3;36731:7;36677:66;;;;;;;;;;;;:20;:66::i;:::-;36756:19;36778:9;:13;36788:2;36778:13;;;;;;;;;;;:19;36792:4;36778:19;;;;;;;;;;;;;;;;36756:41;;36831:6;36816:11;:21;;36808:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;36950:6;36936:11;:20;36914:9;:13;36924:2;36914:13;;;;;;;;;;;:19;36928:4;36914:19;;;;;;;;;;;;;;;:42;;;;37024:1;36985:54;;37010:4;36985:54;;37000:8;36985:54;;;37028:2;37032:6;36985:54;;;;;;;:::i;:::-;;;;;;;;37052:65;37072:8;37082:4;37096:1;37100:3;37105:7;37052:65;;;;;;;;;;;;:19;:65::i;:::-;36425:700;;;;36317:808;;;:::o;42753:198::-;42819:16;42848:22;42887:1;42873:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42848:41;;42911:7;42900:5;42906:1;42900:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;42938:5;42931:12;;;42753:198;;;:::o;41180:744::-;41395:15;:2;:13;;;:15::i;:::-;41391:526;;;41448:2;41431:38;;;41470:8;41480:4;41486:2;41490:6;41498:4;41431:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41427:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;41779:6;41772:14;;;;;;;;;;;:::i;:::-;;;;;;;;41427:479;;;41828:62;;;;;;;;;;:::i;:::-;;;;;;;;41427:479;41565:43;;;41553:55;;;:8;:55;;;;41549:154;;41633:50;;;;;;;;;;:::i;:::-;;;;;;;;41549:154;41504:214;41391:526;41180:744;;;;;;:::o;44106:931::-;44345:66;44372:8;44382:4;44388:2;44392:3;44397:7;44406:4;44345:26;:66::i;:::-;44444:1;44428:18;;:4;:18;;;44424:160;;44468:9;44463:110;44487:3;:10;44483:1;:14;44463:110;;;44547:7;44555:1;44547:10;;;;;;;;:::i;:::-;;;;;;;;44523:12;:20;44536:3;44540:1;44536:6;;;;;;;;:::i;:::-;;;;;;;;44523:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;44499:3;;;;:::i;:::-;;;44463:110;;;;44424:160;44614:1;44600:16;;:2;:16;;;44596:434;;44638:9;44633:386;44657:3;:10;44653:1;:14;44633:386;;;44693:10;44706:3;44710:1;44706:6;;;;;;;;:::i;:::-;;;;;;;;44693:19;;44731:14;44748:7;44756:1;44748:10;;;;;;;;:::i;:::-;;;;;;;;44731:27;;44777:14;44794:12;:16;44807:2;44794:16;;;;;;;;;;;;44777:33;;44847:6;44837;:16;;44829:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44978:6;44969;:15;44950:12;:16;44963:2;44950:16;;;;;;;;;;;:34;;;;44674:345;;;44669:3;;;;:::i;:::-;;;44633:386;;;;44596:434;44106:931;;;;;;:::o;4212:326::-;4272:4;4529:1;4507:7;:19;;;:23;4500:30;;4212:326;;;:::o;45762:392::-;46001:66;46028:8;46038:4;46044:2;46048:3;46053:7;46062:4;46001:26;:66::i;:::-;46089:8;:6;:8::i;:::-;46088:9;46080:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45762:392;;;;;;:::o;39776:221::-;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:146::-;4586:6;4581:3;4576;4563:30;4627:1;4618:6;4613:3;4609:16;4602:27;4489:146;;;:::o;4641:425::-;4719:5;4744:66;4760:49;4802:6;4760:49;:::i;:::-;4744:66;:::i;:::-;4735:75;;4833:6;4826:5;4819:21;4871:4;4864:5;4860:16;4909:3;4900:6;4895:3;4891:16;4888:25;4885:112;;;4916:79;;:::i;:::-;4885:112;5006:54;5053:6;5048:3;5043;5006:54;:::i;:::-;4725:341;4641:425;;;;;:::o;5086:340::-;5142:5;5191:3;5184:4;5176:6;5172:17;5168:27;5158:122;;5199:79;;:::i;:::-;5158:122;5316:6;5303:20;5341:79;5416:3;5408:6;5401:4;5393:6;5389:17;5341:79;:::i;:::-;5332:88;;5148:278;5086:340;;;;:::o;5432:509::-;5501:6;5550:2;5538:9;5529:7;5525:23;5521:32;5518:119;;;5556:79;;:::i;:::-;5518:119;5704:1;5693:9;5689:17;5676:31;5734:18;5726:6;5723:30;5720:117;;;5756:79;;:::i;:::-;5720:117;5861:63;5916:7;5907:6;5896:9;5892:22;5861:63;:::i;:::-;5851:73;;5647:287;5432:509;;;;:::o;5947:99::-;5999:6;6033:5;6027:12;6017:22;;5947:99;;;:::o;6052:169::-;6136:11;6170:6;6165:3;6158:19;6210:4;6205:3;6201:14;6186:29;;6052:169;;;;:::o;6227:246::-;6308:1;6318:113;6332:6;6329:1;6326:13;6318:113;;;6417:1;6412:3;6408:11;6402:18;6398:1;6393:3;6389:11;6382:39;6354:2;6351:1;6347:10;6342:15;;6318:113;;;6465:1;6456:6;6451:3;6447:16;6440:27;6289:184;6227:246;;;:::o;6479:377::-;6567:3;6595:39;6628:5;6595:39;:::i;:::-;6650:71;6714:6;6709:3;6650:71;:::i;:::-;6643:78;;6730:65;6788:6;6783:3;6776:4;6769:5;6765:16;6730:65;:::i;:::-;6820:29;6842:6;6820:29;:::i;:::-;6815:3;6811:39;6804:46;;6571:285;6479:377;;;;:::o;6862:313::-;6975:4;7013:2;7002:9;6998:18;6990:26;;7062:9;7056:4;7052:20;7048:1;7037:9;7033:17;7026:47;7090:78;7163:4;7154:6;7090:78;:::i;:::-;7082:86;;6862:313;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:311::-;7593:4;7683:18;7675:6;7672:30;7669:56;;;7705:18;;:::i;:::-;7669:56;7755:4;7747:6;7743:17;7735:25;;7815:4;7809;7805:15;7797:23;;7516:311;;;:::o;7833:117::-;7942:1;7939;7932:12;7973:710;8069:5;8094:81;8110:64;8167:6;8110:64;:::i;:::-;8094:81;:::i;:::-;8085:90;;8195:5;8224:6;8217:5;8210:21;8258:4;8251:5;8247:16;8240:23;;8311:4;8303:6;8299:17;8291:6;8287:30;8340:3;8332:6;8329:15;8326:122;;;8359:79;;:::i;:::-;8326:122;8474:6;8457:220;8491:6;8486:3;8483:15;8457:220;;;8566:3;8595:37;8628:3;8616:10;8595:37;:::i;:::-;8590:3;8583:50;8662:4;8657:3;8653:14;8646:21;;8533:144;8517:4;8512:3;8508:14;8501:21;;8457:220;;;8461:21;8075:608;;7973:710;;;;;:::o;8706:370::-;8777:5;8826:3;8819:4;8811:6;8807:17;8803:27;8793:122;;8834:79;;:::i;:::-;8793:122;8951:6;8938:20;8976:94;9066:3;9058:6;9051:4;9043:6;9039:17;8976:94;:::i;:::-;8967:103;;8783:293;8706:370;;;;:::o;9082:307::-;9143:4;9233:18;9225:6;9222:30;9219:56;;;9255:18;;:::i;:::-;9219:56;9293:29;9315:6;9293:29;:::i;:::-;9285:37;;9377:4;9371;9367:15;9359:23;;9082:307;;;:::o;9395:423::-;9472:5;9497:65;9513:48;9554:6;9513:48;:::i;:::-;9497:65;:::i;:::-;9488:74;;9585:6;9578:5;9571:21;9623:4;9616:5;9612:16;9661:3;9652:6;9647:3;9643:16;9640:25;9637:112;;;9668:79;;:::i;:::-;9637:112;9758:54;9805:6;9800:3;9795;9758:54;:::i;:::-;9478:340;9395:423;;;;;:::o;9837:338::-;9892:5;9941:3;9934:4;9926:6;9922:17;9918:27;9908:122;;9949:79;;:::i;:::-;9908:122;10066:6;10053:20;10091:78;10165:3;10157:6;10150:4;10142:6;10138:17;10091:78;:::i;:::-;10082:87;;9898:277;9837:338;;;;:::o;10181:1509::-;10335:6;10343;10351;10359;10367;10416:3;10404:9;10395:7;10391:23;10387:33;10384:120;;;10423:79;;:::i;:::-;10384:120;10543:1;10568:53;10613:7;10604:6;10593:9;10589:22;10568:53;:::i;:::-;10558:63;;10514:117;10670:2;10696:53;10741:7;10732:6;10721:9;10717:22;10696:53;:::i;:::-;10686:63;;10641:118;10826:2;10815:9;10811:18;10798:32;10857:18;10849:6;10846:30;10843:117;;;10879:79;;:::i;:::-;10843:117;10984:78;11054:7;11045:6;11034:9;11030:22;10984:78;:::i;:::-;10974:88;;10769:303;11139:2;11128:9;11124:18;11111:32;11170:18;11162:6;11159:30;11156:117;;;11192:79;;:::i;:::-;11156:117;11297:78;11367:7;11358:6;11347:9;11343:22;11297:78;:::i;:::-;11287:88;;11082:303;11452:3;11441:9;11437:19;11424:33;11484:18;11476:6;11473:30;11470:117;;;11506:79;;:::i;:::-;11470:117;11611:62;11665:7;11656:6;11645:9;11641:22;11611:62;:::i;:::-;11601:72;;11395:288;10181:1509;;;;;;;;:::o;11696:799::-;11783:6;11791;11799;11848:2;11836:9;11827:7;11823:23;11819:32;11816:119;;;11854:79;;:::i;:::-;11816:119;12002:1;11991:9;11987:17;11974:31;12032:18;12024:6;12021:30;12018:117;;;12054:79;;:::i;:::-;12018:117;12159:63;12214:7;12205:6;12194:9;12190:22;12159:63;:::i;:::-;12149:73;;11945:287;12271:2;12297:53;12342:7;12333:6;12322:9;12318:22;12297:53;:::i;:::-;12287:63;;12242:118;12399:2;12425:53;12470:7;12461:6;12450:9;12446:22;12425:53;:::i;:::-;12415:63;;12370:118;11696:799;;;;;:::o;12501:311::-;12578:4;12668:18;12660:6;12657:30;12654:56;;;12690:18;;:::i;:::-;12654:56;12740:4;12732:6;12728:17;12720:25;;12800:4;12794;12790:15;12782:23;;12501:311;;;:::o;12835:710::-;12931:5;12956:81;12972:64;13029:6;12972:64;:::i;:::-;12956:81;:::i;:::-;12947:90;;13057:5;13086:6;13079:5;13072:21;13120:4;13113:5;13109:16;13102:23;;13173:4;13165:6;13161:17;13153:6;13149:30;13202:3;13194:6;13191:15;13188:122;;;13221:79;;:::i;:::-;13188:122;13336:6;13319:220;13353:6;13348:3;13345:15;13319:220;;;13428:3;13457:37;13490:3;13478:10;13457:37;:::i;:::-;13452:3;13445:50;13524:4;13519:3;13515:14;13508:21;;13395:144;13379:4;13374:3;13370:14;13363:21;;13319:220;;;13323:21;12937:608;;12835:710;;;;;:::o;13568:370::-;13639:5;13688:3;13681:4;13673:6;13669:17;13665:27;13655:122;;13696:79;;:::i;:::-;13655:122;13813:6;13800:20;13838:94;13928:3;13920:6;13913:4;13905:6;13901:17;13838:94;:::i;:::-;13829:103;;13645:293;13568:370;;;;:::o;13944:894::-;14062:6;14070;14119:2;14107:9;14098:7;14094:23;14090:32;14087:119;;;14125:79;;:::i;:::-;14087:119;14273:1;14262:9;14258:17;14245:31;14303:18;14295:6;14292:30;14289:117;;;14325:79;;:::i;:::-;14289:117;14430:78;14500:7;14491:6;14480:9;14476:22;14430:78;:::i;:::-;14420:88;;14216:302;14585:2;14574:9;14570:18;14557:32;14616:18;14608:6;14605:30;14602:117;;;14638:79;;:::i;:::-;14602:117;14743:78;14813:7;14804:6;14793:9;14789:22;14743:78;:::i;:::-;14733:88;;14528:303;13944:894;;;;;:::o;14844:114::-;14911:6;14945:5;14939:12;14929:22;;14844:114;;;:::o;14964:184::-;15063:11;15097:6;15092:3;15085:19;15137:4;15132:3;15128:14;15113:29;;14964:184;;;;:::o;15154:132::-;15221:4;15244:3;15236:11;;15274:4;15269:3;15265:14;15257:22;;15154:132;;;:::o;15292:108::-;15369:24;15387:5;15369:24;:::i;:::-;15364:3;15357:37;15292:108;;:::o;15406:179::-;15475:10;15496:46;15538:3;15530:6;15496:46;:::i;:::-;15574:4;15569:3;15565:14;15551:28;;15406:179;;;;:::o;15591:113::-;15661:4;15693;15688:3;15684:14;15676:22;;15591:113;;;:::o;15740:732::-;15859:3;15888:54;15936:5;15888:54;:::i;:::-;15958:86;16037:6;16032:3;15958:86;:::i;:::-;15951:93;;16068:56;16118:5;16068:56;:::i;:::-;16147:7;16178:1;16163:284;16188:6;16185:1;16182:13;16163:284;;;16264:6;16258:13;16291:63;16350:3;16335:13;16291:63;:::i;:::-;16284:70;;16377:60;16430:6;16377:60;:::i;:::-;16367:70;;16223:224;16210:1;16207;16203:9;16198:14;;16163:284;;;16167:14;16463:3;16456:10;;15864:608;;;15740:732;;;;:::o;16478:373::-;16621:4;16659:2;16648:9;16644:18;16636:26;;16708:9;16702:4;16698:20;16694:1;16683:9;16679:17;16672:47;16736:108;16839:4;16830:6;16736:108;:::i;:::-;16728:116;;16478:373;;;;:::o;16857:329::-;16916:6;16965:2;16953:9;16944:7;16940:23;16936:32;16933:119;;;16971:79;;:::i;:::-;16933:119;17091:1;17116:53;17161:7;17152:6;17141:9;17137:22;17116:53;:::i;:::-;17106:63;;17062:117;16857:329;;;;:::o;17192:1039::-;17319:6;17327;17335;17384:2;17372:9;17363:7;17359:23;17355:32;17352:119;;;17390:79;;:::i;:::-;17352:119;17510:1;17535:53;17580:7;17571:6;17560:9;17556:22;17535:53;:::i;:::-;17525:63;;17481:117;17665:2;17654:9;17650:18;17637:32;17696:18;17688:6;17685:30;17682:117;;;17718:79;;:::i;:::-;17682:117;17823:78;17893:7;17884:6;17873:9;17869:22;17823:78;:::i;:::-;17813:88;;17608:303;17978:2;17967:9;17963:18;17950:32;18009:18;18001:6;17998:30;17995:117;;;18031:79;;:::i;:::-;17995:117;18136:78;18206:7;18197:6;18186:9;18182:22;18136:78;:::i;:::-;18126:88;;17921:303;17192:1039;;;;;:::o;18237:118::-;18324:24;18342:5;18324:24;:::i;:::-;18319:3;18312:37;18237:118;;:::o;18361:222::-;18454:4;18492:2;18481:9;18477:18;18469:26;;18505:71;18573:1;18562:9;18558:17;18549:6;18505:71;:::i;:::-;18361:222;;;;:::o;18589:539::-;18673:6;18722:2;18710:9;18701:7;18697:23;18693:32;18690:119;;;18728:79;;:::i;:::-;18690:119;18876:1;18865:9;18861:17;18848:31;18906:18;18898:6;18895:30;18892:117;;;18928:79;;:::i;:::-;18892:117;19033:78;19103:7;19094:6;19083:9;19079:22;19033:78;:::i;:::-;19023:88;;18819:302;18589:539;;;;:::o;19134:116::-;19204:21;19219:5;19204:21;:::i;:::-;19197:5;19194:32;19184:60;;19240:1;19237;19230:12;19184:60;19134:116;:::o;19256:133::-;19299:5;19337:6;19324:20;19315:29;;19353:30;19377:5;19353:30;:::i;:::-;19256:133;;;;:::o;19395:468::-;19460:6;19468;19517:2;19505:9;19496:7;19492:23;19488:32;19485:119;;;19523:79;;:::i;:::-;19485:119;19643:1;19668:53;19713:7;19704:6;19693:9;19689:22;19668:53;:::i;:::-;19658:63;;19614:117;19770:2;19796:50;19838:7;19829:6;19818:9;19814:22;19796:50;:::i;:::-;19786:60;;19741:115;19395:468;;;;;:::o;19869:474::-;19937:6;19945;19994:2;19982:9;19973:7;19969:23;19965:32;19962:119;;;20000:79;;:::i;:::-;19962:119;20120:1;20145:53;20190:7;20181:6;20170:9;20166:22;20145:53;:::i;:::-;20135:63;;20091:117;20247:2;20273:53;20318:7;20309:6;20298:9;20294:22;20273:53;:::i;:::-;20263:63;;20218:118;19869:474;;;;;:::o;20349:1089::-;20453:6;20461;20469;20477;20485;20534:3;20522:9;20513:7;20509:23;20505:33;20502:120;;;20541:79;;:::i;:::-;20502:120;20661:1;20686:53;20731:7;20722:6;20711:9;20707:22;20686:53;:::i;:::-;20676:63;;20632:117;20788:2;20814:53;20859:7;20850:6;20839:9;20835:22;20814:53;:::i;:::-;20804:63;;20759:118;20916:2;20942:53;20987:7;20978:6;20967:9;20963:22;20942:53;:::i;:::-;20932:63;;20887:118;21044:2;21070:53;21115:7;21106:6;21095:9;21091:22;21070:53;:::i;:::-;21060:63;;21015:118;21200:3;21189:9;21185:19;21172:33;21232:18;21224:6;21221:30;21218:117;;;21254:79;;:::i;:::-;21218:117;21359:62;21413:7;21404:6;21393:9;21389:22;21359:62;:::i;:::-;21349:72;;21143:288;20349:1089;;;;;;;;:::o;21444:619::-;21521:6;21529;21537;21586:2;21574:9;21565:7;21561:23;21557:32;21554:119;;;21592:79;;:::i;:::-;21554:119;21712:1;21737:53;21782:7;21773:6;21762:9;21758:22;21737:53;:::i;:::-;21727:63;;21683:117;21839:2;21865:53;21910:7;21901:6;21890:9;21886:22;21865:53;:::i;:::-;21855:63;;21810:118;21967:2;21993:53;22038:7;22029:6;22018:9;22014:22;21993:53;:::i;:::-;21983:63;;21938:118;21444:619;;;;;:::o;22069:229::-;22209:34;22205:1;22197:6;22193:14;22186:58;22278:12;22273:2;22265:6;22261:15;22254:37;22069:229;:::o;22304:366::-;22446:3;22467:67;22531:2;22526:3;22467:67;:::i;:::-;22460:74;;22543:93;22632:3;22543:93;:::i;:::-;22661:2;22656:3;22652:12;22645:19;;22304:366;;;:::o;22676:419::-;22842:4;22880:2;22869:9;22865:18;22857:26;;22929:9;22923:4;22919:20;22915:1;22904:9;22900:17;22893:47;22957:131;23083:4;22957:131;:::i;:::-;22949:139;;22676:419;;;:::o;23101:180::-;23149:77;23146:1;23139:88;23246:4;23243:1;23236:15;23270:4;23267:1;23260:15;23287:320;23331:6;23368:1;23362:4;23358:12;23348:22;;23415:1;23409:4;23405:12;23436:18;23426:81;;23492:4;23484:6;23480:17;23470:27;;23426:81;23554:2;23546:6;23543:14;23523:18;23520:38;23517:84;;23573:18;;:::i;:::-;23517:84;23338:269;23287:320;;;:::o;23613:172::-;23753:24;23749:1;23741:6;23737:14;23730:48;23613:172;:::o;23791:366::-;23933:3;23954:67;24018:2;24013:3;23954:67;:::i;:::-;23947:74;;24030:93;24119:3;24030:93;:::i;:::-;24148:2;24143:3;24139:12;24132:19;;23791:366;;;:::o;24163:419::-;24329:4;24367:2;24356:9;24352:18;24344:26;;24416:9;24410:4;24406:20;24402:1;24391:9;24387:17;24380:47;24444:131;24570:4;24444:131;:::i;:::-;24436:139;;24163:419;;;:::o;24588:148::-;24690:11;24727:3;24712:18;;24588:148;;;;:::o;24742:390::-;24848:3;24876:39;24909:5;24876:39;:::i;:::-;24931:89;25013:6;25008:3;24931:89;:::i;:::-;24924:96;;25029:65;25087:6;25082:3;25075:4;25068:5;25064:16;25029:65;:::i;:::-;25119:6;25114:3;25110:16;25103:23;;24852:280;24742:390;;;;:::o;25138:141::-;25187:4;25210:3;25202:11;;25233:3;25230:1;25223:14;25267:4;25264:1;25254:18;25246:26;;25138:141;;;:::o;25309:874::-;25412:3;25449:5;25443:12;25478:36;25504:9;25478:36;:::i;:::-;25530:89;25612:6;25607:3;25530:89;:::i;:::-;25523:96;;25650:1;25639:9;25635:17;25666:1;25661:166;;;;25841:1;25836:341;;;;25628:549;;25661:166;25745:4;25741:9;25730;25726:25;25721:3;25714:38;25807:6;25800:14;25793:22;25785:6;25781:35;25776:3;25772:45;25765:52;;25661:166;;25836:341;25903:38;25935:5;25903:38;:::i;:::-;25963:1;25977:154;25991:6;25988:1;25985:13;25977:154;;;26065:7;26059:14;26055:1;26050:3;26046:11;26039:35;26115:1;26106:7;26102:15;26091:26;;26013:4;26010:1;26006:12;26001:17;;25977:154;;;26160:6;26155:3;26151:16;26144:23;;25843:334;;25628:549;;25416:767;;25309:874;;;;:::o;26189:429::-;26366:3;26388:95;26479:3;26470:6;26388:95;:::i;:::-;26381:102;;26500:92;26588:3;26579:6;26500:92;:::i;:::-;26493:99;;26609:3;26602:10;;26189:429;;;;;:::o;26624:93::-;26661:6;26708:2;26703;26696:5;26692:14;26688:23;26678:33;;26624:93;;;:::o;26723:107::-;26767:8;26817:5;26811:4;26807:16;26786:37;;26723:107;;;;:::o;26836:393::-;26905:6;26955:1;26943:10;26939:18;26978:97;27008:66;26997:9;26978:97;:::i;:::-;27096:39;27126:8;27115:9;27096:39;:::i;:::-;27084:51;;27168:4;27164:9;27157:5;27153:21;27144:30;;27217:4;27207:8;27203:19;27196:5;27193:30;27183:40;;26912:317;;26836:393;;;;;:::o;27235:60::-;27263:3;27284:5;27277:12;;27235:60;;;:::o;27301:142::-;27351:9;27384:53;27402:34;27411:24;27429:5;27411:24;:::i;:::-;27402:34;:::i;:::-;27384:53;:::i;:::-;27371:66;;27301:142;;;:::o;27449:75::-;27492:3;27513:5;27506:12;;27449:75;;;:::o;27530:269::-;27640:39;27671:7;27640:39;:::i;:::-;27701:91;27750:41;27774:16;27750:41;:::i;:::-;27742:6;27735:4;27729:11;27701:91;:::i;:::-;27695:4;27688:105;27606:193;27530:269;;;:::o;27805:73::-;27850:3;27805:73;:::o;27884:189::-;27961:32;;:::i;:::-;28002:65;28060:6;28052;28046:4;28002:65;:::i;:::-;27937:136;27884:189;;:::o;28079:186::-;28139:120;28156:3;28149:5;28146:14;28139:120;;;28210:39;28247:1;28240:5;28210:39;:::i;:::-;28183:1;28176:5;28172:13;28163:22;;28139:120;;;28079:186;;:::o;28271:543::-;28372:2;28367:3;28364:11;28361:446;;;28406:38;28438:5;28406:38;:::i;:::-;28490:29;28508:10;28490:29;:::i;:::-;28480:8;28476:44;28673:2;28661:10;28658:18;28655:49;;;28694:8;28679:23;;28655:49;28717:80;28773:22;28791:3;28773:22;:::i;:::-;28763:8;28759:37;28746:11;28717:80;:::i;:::-;28376:431;;28361:446;28271:543;;;:::o;28820:117::-;28874:8;28924:5;28918:4;28914:16;28893:37;;28820:117;;;;:::o;28943:169::-;28987:6;29020:51;29068:1;29064:6;29056:5;29053:1;29049:13;29020:51;:::i;:::-;29016:56;29101:4;29095;29091:15;29081:25;;28994:118;28943:169;;;;:::o;29117:295::-;29193:4;29339:29;29364:3;29358:4;29339:29;:::i;:::-;29331:37;;29401:3;29398:1;29394:11;29388:4;29385:21;29377:29;;29117:295;;;;:::o;29417:1395::-;29534:37;29567:3;29534:37;:::i;:::-;29636:18;29628:6;29625:30;29622:56;;;29658:18;;:::i;:::-;29622:56;29702:38;29734:4;29728:11;29702:38;:::i;:::-;29787:67;29847:6;29839;29833:4;29787:67;:::i;:::-;29881:1;29905:4;29892:17;;29937:2;29929:6;29926:14;29954:1;29949:618;;;;30611:1;30628:6;30625:77;;;30677:9;30672:3;30668:19;30662:26;30653:35;;30625:77;30728:67;30788:6;30781:5;30728:67;:::i;:::-;30722:4;30715:81;30584:222;29919:887;;29949:618;30001:4;29997:9;29989:6;29985:22;30035:37;30067:4;30035:37;:::i;:::-;30094:1;30108:208;30122:7;30119:1;30116:14;30108:208;;;30201:9;30196:3;30192:19;30186:26;30178:6;30171:42;30252:1;30244:6;30240:14;30230:24;;30299:2;30288:9;30284:18;30271:31;;30145:4;30142:1;30138:12;30133:17;;30108:208;;;30344:6;30335:7;30332:19;30329:179;;;30402:9;30397:3;30393:19;30387:26;30445:48;30487:4;30479:6;30475:17;30464:9;30445:48;:::i;:::-;30437:6;30430:64;30352:156;30329:179;30554:1;30550;30542:6;30538:14;30534:22;30528:4;30521:36;29956:611;;;29919:887;;29509:1303;;;29417:1395;;:::o;30818:180::-;30866:77;30863:1;30856:88;30963:4;30960:1;30953:15;30987:4;30984:1;30977:15;31004:410;31044:7;31067:20;31085:1;31067:20;:::i;:::-;31062:25;;31101:20;31119:1;31101:20;:::i;:::-;31096:25;;31156:1;31153;31149:9;31178:30;31196:11;31178:30;:::i;:::-;31167:41;;31357:1;31348:7;31344:15;31341:1;31338:22;31318:1;31311:9;31291:83;31268:139;;31387:18;;:::i;:::-;31268:139;31052:362;31004:410;;;;:::o;31420:175::-;31560:27;31556:1;31548:6;31544:14;31537:51;31420:175;:::o;31601:366::-;31743:3;31764:67;31828:2;31823:3;31764:67;:::i;:::-;31757:74;;31840:93;31929:3;31840:93;:::i;:::-;31958:2;31953:3;31949:12;31942:19;;31601:366;;;:::o;31973:419::-;32139:4;32177:2;32166:9;32162:18;32154:26;;32226:9;32220:4;32216:20;32212:1;32201:9;32197:17;32190:47;32254:131;32380:4;32254:131;:::i;:::-;32246:139;;31973:419;;;:::o;32398:191::-;32438:3;32457:20;32475:1;32457:20;:::i;:::-;32452:25;;32491:20;32509:1;32491:20;:::i;:::-;32486:25;;32534:1;32531;32527:9;32520:16;;32555:3;32552:1;32549:10;32546:36;;;32562:18;;:::i;:::-;32546:36;32398:191;;;;:::o;32595:172::-;32735:24;32731:1;32723:6;32719:14;32712:48;32595:172;:::o;32773:366::-;32915:3;32936:67;33000:2;32995:3;32936:67;:::i;:::-;32929:74;;33012:93;33101:3;33012:93;:::i;:::-;33130:2;33125:3;33121:12;33114:19;;32773:366;;;:::o;33145:419::-;33311:4;33349:2;33338:9;33334:18;33326:26;;33398:9;33392:4;33388:20;33384:1;33373:9;33369:17;33362:47;33426:131;33552:4;33426:131;:::i;:::-;33418:139;;33145:419;;;:::o;33570:233::-;33710:34;33706:1;33698:6;33694:14;33687:58;33779:16;33774:2;33766:6;33762:15;33755:41;33570:233;:::o;33809:366::-;33951:3;33972:67;34036:2;34031:3;33972:67;:::i;:::-;33965:74;;34048:93;34137:3;34048:93;:::i;:::-;34166:2;34161:3;34157:12;34150:19;;33809:366;;;:::o;34181:419::-;34347:4;34385:2;34374:9;34370:18;34362:26;;34434:9;34428:4;34424:20;34420:1;34409:9;34405:17;34398:47;34462:131;34588:4;34462:131;:::i;:::-;34454:139;;34181:419;;;:::o;34606:147::-;34707:11;34744:3;34729:18;;34606:147;;;;:::o;34759:114::-;;:::o;34879:398::-;35038:3;35059:83;35140:1;35135:3;35059:83;:::i;:::-;35052:90;;35151:93;35240:3;35151:93;:::i;:::-;35269:1;35264:3;35260:11;35253:18;;34879:398;;;:::o;35283:379::-;35467:3;35489:147;35632:3;35489:147;:::i;:::-;35482:154;;35653:3;35646:10;;35283:379;;;:::o;35668:165::-;35808:17;35804:1;35796:6;35792:14;35785:41;35668:165;:::o;35839:366::-;35981:3;36002:67;36066:2;36061:3;36002:67;:::i;:::-;35995:74;;36078:93;36167:3;36078:93;:::i;:::-;36196:2;36191:3;36187:12;36180:19;;35839:366;;;:::o;36211:419::-;36377:4;36415:2;36404:9;36400:18;36392:26;;36464:9;36458:4;36454:20;36450:1;36439:9;36435:17;36428:47;36492:131;36618:4;36492:131;:::i;:::-;36484:139;;36211:419;;;:::o;36636:228::-;36776:34;36772:1;36764:6;36760:14;36753:58;36845:11;36840:2;36832:6;36828:15;36821:36;36636:228;:::o;36870:366::-;37012:3;37033:67;37097:2;37092:3;37033:67;:::i;:::-;37026:74;;37109:93;37198:3;37109:93;:::i;:::-;37227:2;37222:3;37218:12;37211:19;;36870:366;;;:::o;37242:419::-;37408:4;37446:2;37435:9;37431:18;37423:26;;37495:9;37489:4;37485:20;37481:1;37470:9;37466:17;37459:47;37523:131;37649:4;37523:131;:::i;:::-;37515:139;;37242:419;;;:::o;37667:180::-;37715:77;37712:1;37705:88;37812:4;37809:1;37802:15;37836:4;37833:1;37826:15;37853:233;37892:3;37915:24;37933:5;37915:24;:::i;:::-;37906:33;;37961:66;37954:5;37951:77;37948:103;;38031:18;;:::i;:::-;37948:103;38078:1;38071:5;38067:13;38060:20;;37853:233;;;:::o;38092:180::-;38232:32;38228:1;38220:6;38216:14;38209:56;38092:180;:::o;38278:366::-;38420:3;38441:67;38505:2;38500:3;38441:67;:::i;:::-;38434:74;;38517:93;38606:3;38517:93;:::i;:::-;38635:2;38630:3;38626:12;38619:19;;38278:366;;;:::o;38650:419::-;38816:4;38854:2;38843:9;38839:18;38831:26;;38903:9;38897:4;38893:20;38889:1;38878:9;38874:17;38867:47;38931:131;39057:4;38931:131;:::i;:::-;38923:139;;38650:419;;;:::o;39075:225::-;39215:34;39211:1;39203:6;39199:14;39192:58;39284:8;39279:2;39271:6;39267:15;39260:33;39075:225;:::o;39306:366::-;39448:3;39469:67;39533:2;39528:3;39469:67;:::i;:::-;39462:74;;39545:93;39634:3;39545:93;:::i;:::-;39663:2;39658:3;39654:12;39647:19;;39306:366;;;:::o;39678:419::-;39844:4;39882:2;39871:9;39867:18;39859:26;;39931:9;39925:4;39921:20;39917:1;39906:9;39902:17;39895:47;39959:131;40085:4;39959:131;:::i;:::-;39951:139;;39678:419;;;:::o;40103:182::-;40243:34;40239:1;40231:6;40227:14;40220:58;40103:182;:::o;40291:366::-;40433:3;40454:67;40518:2;40513:3;40454:67;:::i;:::-;40447:74;;40530:93;40619:3;40530:93;:::i;:::-;40648:2;40643:3;40639:12;40632:19;;40291:366;;;:::o;40663:419::-;40829:4;40867:2;40856:9;40852:18;40844:26;;40916:9;40910:4;40906:20;40902:1;40891:9;40887:17;40880:47;40944:131;41070:4;40944:131;:::i;:::-;40936:139;;40663:419;;;:::o;41088:181::-;41228:33;41224:1;41216:6;41212:14;41205:57;41088:181;:::o;41275:366::-;41417:3;41438:67;41502:2;41497:3;41438:67;:::i;:::-;41431:74;;41514:93;41603:3;41514:93;:::i;:::-;41632:2;41627:3;41623:12;41616:19;;41275:366;;;:::o;41647:419::-;41813:4;41851:2;41840:9;41836:18;41828:26;;41900:9;41894:4;41890:20;41886:1;41875:9;41871:17;41864:47;41928:131;42054:4;41928:131;:::i;:::-;41920:139;;41647:419;;;:::o;42072:227::-;42212:34;42208:1;42200:6;42196:14;42189:58;42281:10;42276:2;42268:6;42264:15;42257:35;42072:227;:::o;42305:366::-;42447:3;42468:67;42532:2;42527:3;42468:67;:::i;:::-;42461:74;;42544:93;42633:3;42544:93;:::i;:::-;42662:2;42657:3;42653:12;42646:19;;42305:366;;;:::o;42677:419::-;42843:4;42881:2;42870:9;42866:18;42858:26;;42930:9;42924:4;42920:20;42916:1;42905:9;42901:17;42894:47;42958:131;43084:4;42958:131;:::i;:::-;42950:139;;42677:419;;;:::o;43102:224::-;43242:34;43238:1;43230:6;43226:14;43219:58;43311:7;43306:2;43298:6;43294:15;43287:32;43102:224;:::o;43332:366::-;43474:3;43495:67;43559:2;43554:3;43495:67;:::i;:::-;43488:74;;43571:93;43660:3;43571:93;:::i;:::-;43689:2;43684:3;43680:12;43673:19;;43332:366;;;:::o;43704:419::-;43870:4;43908:2;43897:9;43893:18;43885:26;;43957:9;43951:4;43947:20;43943:1;43932:9;43928:17;43921:47;43985:131;44111:4;43985:131;:::i;:::-;43977:139;;43704:419;;;:::o;44129:229::-;44269:34;44265:1;44257:6;44253:14;44246:58;44338:12;44333:2;44325:6;44321:15;44314:37;44129:229;:::o;44364:366::-;44506:3;44527:67;44591:2;44586:3;44527:67;:::i;:::-;44520:74;;44603:93;44692:3;44603:93;:::i;:::-;44721:2;44716:3;44712:12;44705:19;;44364:366;;;:::o;44736:419::-;44902:4;44940:2;44929:9;44925:18;44917:26;;44989:9;44983:4;44979:20;44975:1;44964:9;44960:17;44953:47;45017:131;45143:4;45017:131;:::i;:::-;45009:139;;44736:419;;;:::o;45161:634::-;45382:4;45420:2;45409:9;45405:18;45397:26;;45469:9;45463:4;45459:20;45455:1;45444:9;45440:17;45433:47;45497:108;45600:4;45591:6;45497:108;:::i;:::-;45489:116;;45652:9;45646:4;45642:20;45637:2;45626:9;45622:18;45615:48;45680:108;45783:4;45774:6;45680:108;:::i;:::-;45672:116;;45161:634;;;;;:::o;45801:228::-;45941:34;45937:1;45929:6;45925:14;45918:58;46010:11;46005:2;45997:6;45993:15;45986:36;45801:228;:::o;46035:366::-;46177:3;46198:67;46262:2;46257:3;46198:67;:::i;:::-;46191:74;;46274:93;46363:3;46274:93;:::i;:::-;46392:2;46387:3;46383:12;46376:19;;46035:366;;;:::o;46407:419::-;46573:4;46611:2;46600:9;46596:18;46588:26;;46660:9;46654:4;46650:20;46646:1;46635:9;46631:17;46624:47;46688:131;46814:4;46688:131;:::i;:::-;46680:139;;46407:419;;;:::o;46832:332::-;46953:4;46991:2;46980:9;46976:18;46968:26;;47004:71;47072:1;47061:9;47057:17;47048:6;47004:71;:::i;:::-;47085:72;47153:2;47142:9;47138:18;47129:6;47085:72;:::i;:::-;46832:332;;;;;:::o;47170:220::-;47310:34;47306:1;47298:6;47294:14;47287:58;47379:3;47374:2;47366:6;47362:15;47355:28;47170:220;:::o;47396:366::-;47538:3;47559:67;47623:2;47618:3;47559:67;:::i;:::-;47552:74;;47635:93;47724:3;47635:93;:::i;:::-;47753:2;47748:3;47744:12;47737:19;;47396:366;;;:::o;47768:419::-;47934:4;47972:2;47961:9;47957:18;47949:26;;48021:9;48015:4;48011:20;48007:1;47996:9;47992:17;47985:47;48049:131;48175:4;48049:131;:::i;:::-;48041:139;;47768:419;;;:::o;48193:98::-;48244:6;48278:5;48272:12;48262:22;;48193:98;;;:::o;48297:168::-;48380:11;48414:6;48409:3;48402:19;48454:4;48449:3;48445:14;48430:29;;48297:168;;;;:::o;48471:373::-;48557:3;48585:38;48617:5;48585:38;:::i;:::-;48639:70;48702:6;48697:3;48639:70;:::i;:::-;48632:77;;48718:65;48776:6;48771:3;48764:4;48757:5;48753:16;48718:65;:::i;:::-;48808:29;48830:6;48808:29;:::i;:::-;48803:3;48799:39;48792:46;;48561:283;48471:373;;;;:::o;48850:1053::-;49173:4;49211:3;49200:9;49196:19;49188:27;;49225:71;49293:1;49282:9;49278:17;49269:6;49225:71;:::i;:::-;49306:72;49374:2;49363:9;49359:18;49350:6;49306:72;:::i;:::-;49425:9;49419:4;49415:20;49410:2;49399:9;49395:18;49388:48;49453:108;49556:4;49547:6;49453:108;:::i;:::-;49445:116;;49608:9;49602:4;49598:20;49593:2;49582:9;49578:18;49571:48;49636:108;49739:4;49730:6;49636:108;:::i;:::-;49628:116;;49792:9;49786:4;49782:20;49776:3;49765:9;49761:19;49754:49;49820:76;49891:4;49882:6;49820:76;:::i;:::-;49812:84;;48850:1053;;;;;;;;:::o;49909:141::-;49965:5;49996:6;49990:13;49981:22;;50012:32;50038:5;50012:32;:::i;:::-;49909:141;;;;:::o;50056:349::-;50125:6;50174:2;50162:9;50153:7;50149:23;50145:32;50142:119;;;50180:79;;:::i;:::-;50142:119;50300:1;50325:63;50380:7;50371:6;50360:9;50356:22;50325:63;:::i;:::-;50315:73;;50271:127;50056:349;;;;:::o;50411:106::-;50455:8;50504:5;50499:3;50495:15;50474:36;;50411:106;;;:::o;50523:183::-;50558:3;50596:1;50578:16;50575:23;50572:128;;;50634:1;50631;50628;50613:23;50656:34;50687:1;50681:8;50656:34;:::i;:::-;50649:41;;50572:128;50523:183;:::o;50712:711::-;50751:3;50789:4;50771:16;50768:26;50797:5;50765:39;50826:20;;:::i;:::-;50901:1;50883:16;50879:24;50876:1;50870:4;50855:49;50934:4;50928:11;51033:16;51026:4;51018:6;51014:17;51011:39;50978:18;50970:6;50967:30;50951:113;50948:146;;;51079:5;;;;50948:146;51125:6;51119:4;51115:17;51161:3;51155:10;51188:18;51180:6;51177:30;51174:43;;;51210:5;;;;;;51174:43;51258:6;51251:4;51246:3;51242:14;51238:27;51317:1;51299:16;51295:24;51289:4;51285:35;51280:3;51277:44;51274:57;;;51324:5;;;;;;;51274:57;51341;51389:6;51383:4;51379:17;51371:6;51367:30;51361:4;51341:57;:::i;:::-;51414:3;51407:10;;50755:668;;;;;50712:711;;:::o;51429:239::-;51569:34;51565:1;51557:6;51553:14;51546:58;51638:22;51633:2;51625:6;51621:15;51614:47;51429:239;:::o;51674:366::-;51816:3;51837:67;51901:2;51896:3;51837:67;:::i;:::-;51830:74;;51913:93;52002:3;51913:93;:::i;:::-;52031:2;52026:3;52022:12;52015:19;;51674:366;;;:::o;52046:419::-;52212:4;52250:2;52239:9;52235:18;52227:26;;52299:9;52293:4;52289:20;52285:1;52274:9;52270:17;52263:47;52327:131;52453:4;52327:131;:::i;:::-;52319:139;;52046:419;;;:::o;52471:227::-;52611:34;52607:1;52599:6;52595:14;52588:58;52680:10;52675:2;52667:6;52663:15;52656:35;52471:227;:::o;52704:366::-;52846:3;52867:67;52931:2;52926:3;52867:67;:::i;:::-;52860:74;;52943:93;53032:3;52943:93;:::i;:::-;53061:2;53056:3;53052:12;53045:19;;52704:366;;;:::o;53076:419::-;53242:4;53280:2;53269:9;53265:18;53257:26;;53329:9;53323:4;53319:20;53315:1;53304:9;53300:17;53293:47;53357:131;53483:4;53357:131;:::i;:::-;53349:139;;53076:419;;;:::o;53501:170::-;53641:22;53637:1;53629:6;53625:14;53618:46;53501:170;:::o;53677:366::-;53819:3;53840:67;53904:2;53899:3;53840:67;:::i;:::-;53833:74;;53916:93;54005:3;53916:93;:::i;:::-;54034:2;54029:3;54025:12;54018:19;;53677:366;;;:::o;54049:419::-;54215:4;54253:2;54242:9;54238:18;54230:26;;54302:9;54296:4;54292:20;54288:1;54277:9;54273:17;54266:47;54330:131;54456:4;54330:131;:::i;:::-;54322:139;;54049:419;;;:::o;54474:222::-;54614:34;54610:1;54602:6;54598:14;54591:58;54683:5;54678:2;54670:6;54666:15;54659:30;54474:222;:::o;54702:366::-;54844:3;54865:67;54929:2;54924:3;54865:67;:::i;:::-;54858:74;;54941:93;55030:3;54941:93;:::i;:::-;55059:2;55054:3;55050:12;55043:19;;54702:366;;;:::o;55074:419::-;55240:4;55278:2;55267:9;55263:18;55255:26;;55327:9;55321:4;55317:20;55313:1;55302:9;55298:17;55291:47;55355:131;55481:4;55355:131;:::i;:::-;55347:139;;55074:419;;;:::o;55499:223::-;55639:34;55635:1;55627:6;55623:14;55616:58;55708:6;55703:2;55695:6;55691:15;55684:31;55499:223;:::o;55728:366::-;55870:3;55891:67;55955:2;55950:3;55891:67;:::i;:::-;55884:74;;55967:93;56056:3;55967:93;:::i;:::-;56085:2;56080:3;56076:12;56069:19;;55728:366;;;:::o;56100:419::-;56266:4;56304:2;56293:9;56289:18;56281:26;;56353:9;56347:4;56343:20;56339:1;56328:9;56324:17;56317:47;56381:131;56507:4;56381:131;:::i;:::-;56373:139;;56100:419;;;:::o;56525:166::-;56665:18;56661:1;56653:6;56649:14;56642:42;56525:166;:::o;56697:366::-;56839:3;56860:67;56924:2;56919:3;56860:67;:::i;:::-;56853:74;;56936:93;57025:3;56936:93;:::i;:::-;57054:2;57049:3;57045:12;57038:19;;56697:366;;;:::o;57069:419::-;57235:4;57273:2;57262:9;57258:18;57250:26;;57322:9;57316:4;57312:20;57308:1;57297:9;57293:17;57286:47;57350:131;57476:4;57350:131;:::i;:::-;57342:139;;57069:419;;;:::o;57494:751::-;57717:4;57755:3;57744:9;57740:19;57732:27;;57769:71;57837:1;57826:9;57822:17;57813:6;57769:71;:::i;:::-;57850:72;57918:2;57907:9;57903:18;57894:6;57850:72;:::i;:::-;57932;58000:2;57989:9;57985:18;57976:6;57932:72;:::i;:::-;58014;58082:2;58071:9;58067:18;58058:6;58014:72;:::i;:::-;58134:9;58128:4;58124:20;58118:3;58107:9;58103:19;58096:49;58162:76;58233:4;58224:6;58162:76;:::i;:::-;58154:84;;57494:751;;;;;;;;:::o;58251:227::-;58391:34;58387:1;58379:6;58375:14;58368:58;58460:10;58455:2;58447:6;58443:15;58436:35;58251:227;:::o;58484:366::-;58626:3;58647:67;58711:2;58706:3;58647:67;:::i;:::-;58640:74;;58723:93;58812:3;58723:93;:::i;:::-;58841:2;58836:3;58832:12;58825:19;;58484:366;;;:::o;58856:419::-;59022:4;59060:2;59049:9;59045:18;59037:26;;59109:9;59103:4;59099:20;59095:1;59084:9;59080:17;59073:47;59137:131;59263:4;59137:131;:::i;:::-;59129:139;;58856:419;;;:::o;59281:231::-;59421:34;59417:1;59409:6;59405:14;59398:58;59490:14;59485:2;59477:6;59473:15;59466:39;59281:231;:::o;59518:366::-;59660:3;59681:67;59745:2;59740:3;59681:67;:::i;:::-;59674:74;;59757:93;59846:3;59757:93;:::i;:::-;59875:2;59870:3;59866:12;59859:19;;59518:366;;;:::o;59890:419::-;60056:4;60094:2;60083:9;60079:18;60071:26;;60143:9;60137:4;60133:20;60129:1;60118:9;60114:17;60107:47;60171:131;60297:4;60171:131;:::i;:::-;60163:139;;59890:419;;;:::o

Swarm Source

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