ETH Price: $3,365.21 (+0.09%)

Contract

0x88552269817D23E2d62247287Aa9F9913ac3b2F8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OpenFundShareDelegate

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1 runs

Other Settings:
london EvmVersion, MIT license
File 1 of 45 : OpenFundShareDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@solvprotocol/contracts-v3-sft-earn/contracts/EarnDelegate.sol";
import "@solvprotocol/contracts-v3-sft-abilities/contracts/value-issuable/SFTValueIssuableDelegate.sol";
import "./IOpenFundShareDelegate.sol";
import "./IOpenFundShareConcrete.sol";

contract OpenFundShareDelegate is IOpenFundShareDelegate, EarnDelegate, SFTValueIssuableDelegate {

	bytes32 internal constant CONTRACT_OPEN_FUND_MARKET = "OpenFundMarket"; 

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() { 
        _disableInitializers();
    }

	function _beforeValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual override(ERC3525SlotEnumerableUpgradeable, EarnDelegate) {
        EarnDelegate._beforeValueTransfer(from_, to_, fromTokenId_, toTokenId_, slot_, value_);
    }

	function _resolverAddressesRequired() internal view virtual override returns (bytes32[] memory addressNames) {
		addressNames = new bytes32[](1);
		addressNames[0] = CONTRACT_OPEN_FUND_MARKET;
	}

	function _issueMarket() internal view virtual override returns (address) {
		return getRequiredAddress(CONTRACT_OPEN_FUND_MARKET, "OFSD: Market not set");
	}

	function contractType() external view virtual override(BaseSFTDelegateUpgradeable, EarnDelegate) returns (string memory) {
        return "Open Fund Shares";
    }
}

File 2 of 45 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

File 3 of 45 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ReentrancyGuardUpgradeable is Initializable {
    // 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;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _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;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 4 of 45 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// 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 AddressUpgradeable {
    /**
     * @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 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 5 of 45 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 6 of 45 : CountersUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 45 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/MathUpgradeable.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = MathUpgradeable.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, MathUpgradeable.log256(value) + 1);
        }
    }

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

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

File 8 of 45 : IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// 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 IERC165Upgradeable {
    /**
     * @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 9 of 45 : MathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 10 of 45 : IAddressResolver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IAddressResolver {
	function getAddress(bytes32 name) external view returns (address);
	function getRequiredAddress(bytes32 name, string calldata reason) external view returns (address);
}

File 11 of 45 : ResolverCache.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "./IAddressResolver.sol";

abstract contract ResolverCache is Initializable {
	IAddressResolver public resolver;
	mapping(bytes32 => address) private _addressCache;

	function __ResolverCache_init(address resolver_) internal onlyInitializing {
		resolver = IAddressResolver(resolver_);
	}

	function getAddress(bytes32 name_) public view returns (address) {
		return _addressCache[name_];
	}

	function getRequiredAddress(bytes32 name_, string memory reason_) public view returns (address) {
		address addr = getAddress(name_);
		require(addr != address(0), reason_);
		return addr;
	}

	function rebuildCache() public virtual {
		bytes32[] memory requiredAddresses = _resolverAddressesRequired();
		for (uint256 i = 0; i < requiredAddresses.length; i++) {
			bytes32 name = requiredAddresses[i];
			address addr = resolver.getRequiredAddress(name, "AddressCache: address not found");
			_addressCache[name] = addr;
		}
	}

	function isResolverCached() external view returns (bool) {
        bytes32[] memory requiredAddresses = _resolverAddressesRequired();
        for (uint256 i = 0; i < requiredAddresses.length; i++) {
            bytes32 name = requiredAddresses[i];
            // false if our cache is invalid or if the resolver doesn't have the required address
            if (resolver.getAddress(name) != _addressCache[name] || _addressCache[name] == address(0)) {
                return false;
            }
        }

        return true;
    }

    function _combineArrays(bytes32[] memory first, bytes32[] memory second)
        internal
        pure
        returns (bytes32[] memory combination)
    {
        combination = new bytes32[](first.length + second.length);

        for (uint i = 0; i < first.length; i++) {
            combination[i] = first[i];
        }

        for (uint j = 0; j < second.length; j++) {
            combination[first.length + j] = second[j];
        }
    }

    function _resolverAddressesRequired() internal view virtual returns (bytes32[] memory addresses) {}

    uint256[48] private __gap;
}

File 12 of 45 : ISFTIssuableConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface ISFTIssuableConcrete {
    function createSlotOnlyDelegate(address txSender_, bytes calldata inputSlotInfo_) external returns (uint256 slot_);
    function mintOnlyDelegate(address txSender_, address currency_, address mintTo_, uint256 slot_, uint256 tokenId_, uint256 amount_) external;
}

File 13 of 45 : ISFTIssuableDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface ISFTIssuableDelegate {
    function createSlotOnlyIssueMarket(address txSender, bytes calldata inputSlotInfo) external returns(uint256 slot);
	function mintOnlyIssueMarket(address txSender, address currency, address mintTo, uint256 slot, uint256 value) external payable returns(uint256 tokenId);
}

File 14 of 45 : SFTIssuableDelegate.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@solvprotocol/contracts-v3-solidity-utils/contracts/misc/Constants.sol";
import "@solvprotocol/contracts-v3-address-resolver/contracts/ResolverCache.sol";
import "@solvprotocol/contracts-v3-sft-core/contracts/BaseSFTDelegateUpgradeable.sol";
import "./ISFTIssuableDelegate.sol";
import "./ISFTIssuableConcrete.sol";

abstract contract SFTIssuableDelegate is ISFTIssuableDelegate, BaseSFTDelegateUpgradeable, ResolverCache {
	function __SFTIssuableDelegate_init(address resolver_, string memory name_, string memory symbol_, uint8 decimals_, 
		address concrete_, address metadata_, address owner_) internal onlyInitializing {
			__BaseSFTDelegate_init(name_, symbol_, decimals_, concrete_, metadata_, owner_);
			__ResolverCache_init(resolver_);
	}

	function __SFTIssuableDelegate_init_unchained() internal onlyInitializing {
	}

	function createSlotOnlyIssueMarket(address txSender_, bytes calldata inputSlotInfo_) external virtual override nonReentrant returns(uint256 slot_) {
		require(_msgSender() == _issueMarket(), "SFTIssuableDelegate: only issue market");
		slot_ = ISFTIssuableConcrete(concrete()).createSlotOnlyDelegate(txSender_, inputSlotInfo_);
		require(!_slotExists(slot_), "SFTIssuableDelegate: slot already exists");
		ERC3525SlotEnumerableUpgradeable._createSlot(slot_);
		emit CreateSlot(slot_, txSender_, inputSlotInfo_);
	}

	function mintOnlyIssueMarket(address txSender_, address currency_, address mintTo_, uint256 slot_, uint256 value_) external payable virtual override nonReentrant returns(uint256 tokenId_) {
		require(_msgSender() == _issueMarket(), "SFTIssuableDelegate: only issue market");
		tokenId_ = ERC3525Upgradeable._mint(mintTo_, slot_, value_);
		ISFTIssuableConcrete(concrete()).mintOnlyDelegate(txSender_, currency_, mintTo_, slot_, tokenId_, value_);
		emit MintValue(tokenId_, slot_, value_);
	}	

	function _resolverAddressesRequired() internal view virtual override returns (bytes32[] memory) {
		bytes32[] memory existAddresses = super._resolverAddressesRequired();
		bytes32[] memory newAddresses = new bytes32[](1);
		newAddresses[0] = Constants.CONTRACT_ISSUE_MARKET;
		return _combineArrays(existAddresses, newAddresses);
	}

	function _issueMarket() internal view virtual returns (address) {
		return getRequiredAddress(Constants.CONTRACT_ISSUE_MARKET, "SFTIssuableDelegate: issueMarket not set");
	}

	uint256[50] private __gap;
}

File 15 of 45 : IMultiRepayableConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IMultiRepayableConcrete {

    struct SlotRepayInfo {
        uint256 initialValue;
        uint256 totalValue;
        uint256 repaidCurrencyAmount;
    }

    struct TokenRepayInfo {
        uint256 initialValue;
    }

    function repayOnlyDelegate(address txSender_, uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable;
    function repayWithBalanceOnlyDelegate(address txSender_, uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable;
    function mintOnlyDelegate(uint256 tokenId_, uint256 slot_, uint256 mintValue_) external;
    function claimOnlyDelegate(uint256 tokenId_, uint256 slot_, address currency_, uint256 claimValue_) external returns (uint256);

    function transferOnlyDelegate(uint256 fromTokenId_, uint256 toTokenId_, uint256 fromTokenBalance_, uint256 transferValue_) external;
    
    function slotInitialValue(uint256 slot_) external view returns (uint256);
    function slotTotalValue(uint256 slot_) external view returns (uint256);
    function repaidCurrencyAmount(uint256 slot_) external view returns (uint256);

    function tokenInitialValue(uint256 tokenId_) external view returns (uint256);
    function claimableValue(uint256 tokenId_) external view returns (uint256);
}

File 16 of 45 : IMultiRepayableDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IMultiRepayableDelegate {
    event Repay(uint256 indexed slot, address indexed payer, uint256 repayCurrencyAmount);
    event Claim(address indexed to, uint256 indexed tokenId, uint256 claimValue);

    function repay(uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable;
    function repayWithBalance(uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable;
    function claimTo(address to_, uint256 tokenId_, address currency_, uint256 claimValue_) external;
}

File 17 of 45 : MultiRepayableDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@solvprotocol/contracts-v3-sft-core/contracts/BaseSFTDelegateUpgradeable.sol";
import "@solvprotocol/contracts-v3-solidity-utils/contracts/helpers/ERC20TransferHelper.sol";
import "./IMultiRepayableDelegate.sol";
import "./IMultiRepayableConcrete.sol";

abstract contract MultiRepayableDelegate is IMultiRepayableDelegate, BaseSFTDelegateUpgradeable {

    function repay(uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable virtual override nonReentrant {
        IMultiRepayableConcrete(concrete()).repayOnlyDelegate(_msgSender(), slot_, currency_, repayCurrencyAmount_);
        ERC20TransferHelper.doTransferIn(currency_, _msgSender(), repayCurrencyAmount_);
        emit Repay(slot_, _msgSender(), repayCurrencyAmount_);
    }

    function repayWithBalance(uint256 slot_, address currency_, uint256 repayCurrencyAmount_) external payable virtual override nonReentrant {
        require(allowRepayWithBalance(), "MultiRepayableDelegate: cannot repay with balance");
        IMultiRepayableConcrete(concrete()).repayWithBalanceOnlyDelegate(_msgSender(), slot_, currency_, repayCurrencyAmount_);
        emit Repay(slot_, _msgSender(), repayCurrencyAmount_);
    }

    function claimTo(address to_, uint256 tokenId_, address currency_, uint256 claimValue_) external virtual override nonReentrant {
        require(claimValue_ > 0, "MultiRepayableDelegate: claim value is zero");
        require(_isApprovedOrOwner(_msgSender(), tokenId_), "MultiRepayableDelegate: caller is not owner nor approved");
        uint256 slot = ERC3525Upgradeable.slotOf(tokenId_);
        uint256 claimableValue = IMultiRepayableConcrete(concrete()).claimableValue(tokenId_);
        require(claimValue_ <= claimableValue, "MultiRepayableDelegate: over claim");
        
        if (claimValue_ == ERC3525Upgradeable.balanceOf(tokenId_)) {
            ERC3525Upgradeable._burn(tokenId_);
        } else {
            ERC3525Upgradeable._burnValue(tokenId_, claimValue_);
        }
        
        uint256 claimCurrencyAmount = IMultiRepayableConcrete(concrete()).claimOnlyDelegate(tokenId_, slot, currency_, claimValue_);
        ERC20TransferHelper.doTransferOut(currency_, payable(to_), claimCurrencyAmount);
        emit Claim(to_, tokenId_, claimValue_);
    }

    function _beforeValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual override(ERC3525SlotEnumerableUpgradeable) {
        super._beforeValueTransfer(from_, to_, fromTokenId_, toTokenId_, slot_, value_);

        if (from_ == address(0) && fromTokenId_ == 0) {
            IMultiRepayableConcrete(concrete()).mintOnlyDelegate(toTokenId_, slot_, value_);
        } 
        
		if (from_ != address(0) && fromTokenId_ != 0 && to_ != address(0) && toTokenId_ != 0) { 
            IMultiRepayableConcrete(concrete()).transferOnlyDelegate(fromTokenId_, toTokenId_, 
                ERC3525Upgradeable.balanceOf(fromTokenId_), value_);
		}
    }

    function allowRepayWithBalance() public view virtual returns (bool) {
        return true;
    }

    uint256[50] private __gap;
}

File 18 of 45 : ISFTValueIssuableConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../issuable/ISFTIssuableConcrete.sol";

interface ISFTValueIssuableConcrete is ISFTIssuableConcrete {
    function burnOnlyDelegate(uint256 tokenId, uint256 burnValue) external;
}

File 19 of 45 : ISFTValueIssuableDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../issuable/ISFTIssuableDelegate.sol";

interface ISFTValueIssuableDelegate is ISFTIssuableDelegate {
    function mintValueOnlyIssueMarket(address txSender, address currency, uint256 tokenId, uint256 mintValue) external payable;
    function burnOnlyIssueMarket(uint256 tokenId, uint256 burnValue) external;
}

File 20 of 45 : SFTValueIssuableDelegate.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@solvprotocol/contracts-v3-solidity-utils/contracts/misc/Constants.sol";
import "@solvprotocol/contracts-v3-address-resolver/contracts/ResolverCache.sol";
import "@solvprotocol/contracts-v3-sft-core/contracts/BaseSFTDelegateUpgradeable.sol";
import "./ISFTValueIssuableDelegate.sol";
import "./ISFTValueIssuableConcrete.sol";
import "../issuable/SFTIssuableDelegate.sol";

error OnlyMarket();

abstract contract SFTValueIssuableDelegate is ISFTValueIssuableDelegate, SFTIssuableDelegate {

	event BurnValue(uint256 indexed tokenId, uint256 burnValue);

	function __SFTValueIssuableDelegate_init(
		address resolver_, string memory name_, string memory symbol_, uint8 decimals_, 
		address concrete_, address metadata_, address owner_
	) internal onlyInitializing {
		__SFTIssuableDelegate_init(resolver_, name_, symbol_, decimals_, concrete_, metadata_, owner_);
	}

	function __SFTValueIssuableDelegate_init_unchained() internal onlyInitializing {
	}

	function mintValueOnlyIssueMarket(
		address txSender_, address currency_, uint256 tokenId_, uint256 mintValue_
	) external payable virtual override nonReentrant {
		if (_msgSender() != _issueMarket()) {
			revert OnlyMarket();
		}

		address owner = ERC3525Upgradeable.ownerOf(tokenId_);
		uint256 slot = ERC3525Upgradeable.slotOf(tokenId_);

		ERC3525Upgradeable._mintValue(tokenId_, mintValue_);
		ISFTIssuableConcrete(concrete()).mintOnlyDelegate(txSender_, currency_, owner, slot, tokenId_, mintValue_);
		emit MintValue(tokenId_, slot, mintValue_);
	}

	function burnOnlyIssueMarket(uint256 tokenId_, uint256 burnValue_) external virtual override nonReentrant {
		if (_msgSender() != _issueMarket()) {
			revert OnlyMarket();
		}

		uint256 actualBurnValue = burnValue_ == 0 ? ERC3525Upgradeable.balanceOf(tokenId_) : burnValue_;
		ISFTValueIssuableConcrete(concrete()).burnOnlyDelegate(tokenId_, actualBurnValue);

		if (burnValue_ == 0) {
			ERC3525Upgradeable._burn(tokenId_);
		} else {
			ERC3525Upgradeable._burnValue(tokenId_, burnValue_);
		}
		emit BurnValue(tokenId_, actualBurnValue);
	}

	uint256[50] private __gap;
}

File 21 of 45 : BaseSFTDelegateUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@solvprotocol/erc-3525/ERC3525SlotEnumerableUpgradeable.sol";
import "@solvprotocol/contracts-v3-solidity-utils/contracts/access/ISFTConcreteControl.sol";
import "@solvprotocol/contracts-v3-solidity-utils/contracts/access/SFTDelegateControl.sol";
import "@solvprotocol/contracts-v3-solidity-utils/contracts/access/OwnControl.sol";
import "@solvprotocol/contracts-v3-solidity-utils/contracts/misc/Constants.sol";
import "./interface/IBaseSFTDelegate.sol";
import "./interface/IBaseSFTConcrete.sol";

abstract contract BaseSFTDelegateUpgradeable is IBaseSFTDelegate, ERC3525SlotEnumerableUpgradeable, 
	OwnControl, SFTDelegateControl, ReentrancyGuardUpgradeable {

	event CreateSlot(uint256 indexed _slot, address indexed _creator, bytes _slotInfo);
	event MintValue(uint256 indexed _tokenId, uint256 indexed _slot, uint256 _value);

	function __BaseSFTDelegate_init(
		string memory name_, string memory symbol_, uint8 decimals_, 
		address concrete_, address metadata_, address owner_
	) internal onlyInitializing {
		ERC3525Upgradeable.__ERC3525_init(name_, symbol_, decimals_);
		OwnControl.__OwnControl_init(owner_);
		ERC3525Upgradeable._setMetadataDescriptor(metadata_);

		SFTDelegateControl.__SFTDelegateControl_init(concrete_);
		__ReentrancyGuard_init();

		//address of concrete must be zero when initializing impletion contract avoid failed after upgrade
		if (concrete_ != Constants.ZERO_ADDRESS) {
			ISFTConcreteControl(concrete_).setDelegate(address(this));
		}
	}

	function delegateToConcreteView(bytes calldata data) external view override returns (bytes memory) {
		(bool success, bytes memory returnData) = concrete().staticcall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize())
            }
        }
        return returnData;
	}

	function contractType() external view virtual returns (string memory);

	uint256[50] private __gap;
}

File 22 of 45 : IBaseSFTConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IBaseSFTConcrete {
    function isSlotValid(uint256 slot_) external view returns (bool);
}

File 23 of 45 : IBaseSFTDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IBaseSFTDelegate  {
    function delegateToConcreteView(bytes calldata data) external view returns (bytes memory);
}

File 24 of 45 : EarnDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@solvprotocol/contracts-v3-sft-abilities/contracts/issuable/SFTIssuableDelegate.sol";
import "@solvprotocol/contracts-v3-sft-abilities/contracts/multi-repayable/MultiRepayableDelegate.sol";
import "./IEarnConcrete.sol";

contract EarnDelegate is SFTIssuableDelegate, MultiRepayableDelegate {

    event SetCurrency(address indexed currency, bool isAllowed);
    event SetInterestRate(uint256 indexed slot, int32 interestRate);

    bool private __allowRepayWithBalance;

	function initialize(
        address resolver_, string calldata name_, string calldata symbol_, uint8 decimals_, 
		address concrete_, address descriptor_, address owner_, bool allowRepayWithBalance_
    ) external initializer {
		__SFTIssuableDelegate_init(resolver_, name_, symbol_, decimals_, concrete_, descriptor_, owner_);
        __allowRepayWithBalance = allowRepayWithBalance_;
	}

	function _beforeValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual override(ERC3525SlotEnumerableUpgradeable, MultiRepayableDelegate) {
        MultiRepayableDelegate._beforeValueTransfer(from_, to_, fromTokenId_, toTokenId_, slot_, value_);

        // untransferable
        if (from_ != address(0) && to_ != address(0)) {
            require(IEarnConcrete(concrete()).isSlotTransferable(slot_), "untransferable");
        }
    }

    function setCurrencyOnlyOwner(address currency_, bool isAllowed_) external onlyOwner {
        IEarnConcrete(concrete()).setCurrencyOnlyDelegate(currency_, isAllowed_);
        emit SetCurrency(currency_, isAllowed_);
    }

    function setInterestRateOnlySupervisor(uint256 slot_, int32 interestRate_) external {
        IEarnConcrete(concrete()).setInterestRateOnlyDelegate(_msgSender(), slot_, interestRate_);
        emit SetInterestRate(slot_, interestRate_);
    }

    function allowRepayWithBalance() public view virtual override returns (bool) {
        return __allowRepayWithBalance;
    }

    function contractType() external view virtual override returns (string memory) {
        return "Closed-end Fund";
    }
}

File 25 of 45 : IEarnConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IEarnConcrete {
	enum InterestType {
		FIXED,
		FLOATING
	}

	struct InputSlotInfo {
		address currency;
		address supervisor;
		uint256 issueQuota;
		InterestType interestType;
		int32 interestRate;
		uint64 valueDate;
		uint64 maturity;
		uint64 createTime;
		bool transferable;
		string externalURI;
	}

	struct SlotBaseInfo {
		address issuer;
		address currency;
		uint64 valueDate;
		uint64 maturity;
		uint64 createTime;
		bool transferable;
		bool isValid;
	}

	struct SlotExtInfo {
		address supervisor;
		uint256 issueQuota;
		InterestType interestType;
		int32 interestRate;
		bool isInterestRateSet;
		string externalURI;
	}

	function slotBaseInfo(uint256 slot_) external returns (SlotBaseInfo memory);
	function slotExtInfo(uint256 slot_) external returns (SlotExtInfo memory);
	function isSlotTransferable(uint256 slot_) external returns (bool);
	function isCurrencyAllowed(address currency_) external returns (bool);

	function setCurrencyOnlyDelegate(address currency_, bool isAllowed_) external;
	function setInterestRateOnlyDelegate(address txSender_, uint256 slot_, int32 interestRate_) external;
}

File 26 of 45 : AdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";

abstract contract AdminControl is Initializable, ContextUpgradeable {

    event NewAdmin(address oldAdmin, address newAdmin);
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    address public admin;
    address public pendingAdmin;

    modifier onlyAdmin() {
        require(_msgSender() == admin, "only admin");
        _;
    }

    function __AdminControl_init(address admin_) internal onlyInitializing {
        __AdminControl_init_unchained(admin_);
    }

    function __AdminControl_init_unchained(address admin_) internal onlyInitializing {
        admin = admin_;
        emit NewAdmin(address(0), admin_);
    }

    function setPendingAdmin(address newPendingAdmin_) external virtual onlyAdmin {
        emit NewPendingAdmin(pendingAdmin, newPendingAdmin_);
        pendingAdmin = newPendingAdmin_;        
    }

    function acceptAdmin() external virtual {
        require(_msgSender() == pendingAdmin, "only pending admin");
        emit NewAdmin(admin, pendingAdmin);
        admin = pendingAdmin;
        pendingAdmin = address(0);
    }

	uint256[48] private __gap;
}

File 27 of 45 : ISFTConcreteControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


interface ISFTConcreteControl {
	event NewDelegate(address old_, address new_);

	function setDelegate(address newDelegate_) external;
	function delegate() external view returns (address);
}

File 28 of 45 : ISFTDelegateControl.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface ISFTDelegateControl {
	event NewConcrete(address old_, address new_);

	function concrete() external view returns (address);
	function setConcreteOnlyAdmin(address newConcrete_) external;
}

File 29 of 45 : OwnControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./AdminControl.sol";

abstract contract OwnControl is AdminControl {
	event NewOwner(address oldOwner, address newOwner);

	address public owner;

	modifier onlyOwner() {
		require(owner == _msgSender(), "only owner");
		_;
	}

	function __OwnControl_init(address owner_) internal onlyInitializing {
		__OwnControl_init_unchained(owner_);
		__AdminControl_init_unchained(_msgSender());
	}

	function __OwnControl_init_unchained(address owner_) internal onlyInitializing {
		_setOwner(owner_);
	}

	function setOwnerOnlyAdmin(address newOwner_) public onlyAdmin {
		_setOwner(newOwner_);
	}

	function _setOwner(address newOwner_) internal {
		require(newOwner_ != address(0), "Owner address connot be 0");
		emit NewOwner(owner, newOwner_);
		owner = newOwner_;
	}

	uint256[49] private __gap;
}

File 30 of 45 : SFTDelegateControl.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./AdminControl.sol";
import "./ISFTDelegateControl.sol";

abstract contract SFTDelegateControl is ISFTDelegateControl, AdminControl {
    address private _concrete;

    function __SFTDelegateControl_init(address concrete_) internal onlyInitializing {
        __AdminControl_init_unchained(_msgSender());
        __SFTDelegateControl_init_unchained(concrete_);
    }

    function __SFTDelegateControl_init_unchained(address concrete_) internal onlyInitializing {
        _concrete = concrete_;
    }

    function concrete() public view override returns (address) {
        return _concrete;
    }

    function setConcreteOnlyAdmin(address newConcrete_) external override onlyAdmin {
        emit NewConcrete(_concrete, newConcrete_);
        _concrete = newConcrete_;
    }

	uint256[49] private __gap;
}

File 31 of 45 : ERC20TransferHelper.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "../misc/Constants.sol";

interface ERC20Interface {
    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    function approve(address spender, uint256 amount) external returns (bool);
}

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
library ERC20TransferHelper {
    function doApprove(address underlying, address spender, uint256 amount) internal {
        require(underlying.code.length > 0, "invalid underlying");
        (bool success, bytes memory data) = underlying.call(
            abi.encodeWithSelector(
                ERC20Interface.approve.selector,
                spender,
                amount
            )
        );
        require(success && (data.length == 0 || abi.decode(data, (bool))), "SAF");
    }

    function doTransferIn(address underlying, address from, uint256 amount) internal {
        if (underlying == Constants.ETH_ADDRESS) {
            // Sanity checks
            require(tx.origin == from || msg.sender == from, "sender mismatch");
            require(msg.value >= amount, "value mismatch");
        } else {
            require(underlying.code.length > 0, "invalid underlying");
            (bool success, bytes memory data) = underlying.call(
                abi.encodeWithSelector(
                    ERC20Interface.transferFrom.selector,
                    from,
                    address(this),
                    amount
                )
            );
            require(success && (data.length == 0 || abi.decode(data, (bool))), "STF");
        }
    }

    function doTransferOut(address underlying, address payable to, uint256 amount) internal {
        if (underlying == Constants.ETH_ADDRESS) {
            (bool success, ) = to.call{value: amount}(new bytes(0));
            require(success, "STE");
        } else {
            require(underlying.code.length > 0, "invalid underlying");
            (bool success, bytes memory data) = underlying.call(
                abi.encodeWithSelector(
                    ERC20Interface.transfer.selector,
                    to,
                    amount
                )
            );
            require(success && (data.length == 0 || abi.decode(data, (bool))), "ST");
        }
    }

    function getCashPrior(address underlying_) internal view returns (uint256) {
        if (underlying_ == Constants.ETH_ADDRESS) {
            uint256 startingBalance = address(this).balance - msg.value;
            return startingBalance;
        } else {
            ERC20Interface token = ERC20Interface(underlying_);
            return token.balanceOf(address(this));
        }
    }
}

File 32 of 45 : Constants.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library Constants {
    uint32 internal constant FULL_PERCENTAGE = 10000;

    uint32 internal constant SECONDS_PER_YEAR = 360 * 24 * 60 * 60;
    
    address internal constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
    address internal constant ZERO_ADDRESS = 0x0000000000000000000000000000000000000000;

    bytes32 internal constant CONTRACT_ISSUE_MARKET= "IssueMarket";
    bytes32 internal constant CONTRACT_ISSUE_MARKET_PRICE_STRATEGY_MANAGER = "IMPriceStrategyManager";
    bytes32 internal constant CONTRACT_ISSUE_MARKET_WHITELIST_STRATEGY_MANAGER = "IMWhitelistStrategyManager";
	bytes32 internal constant CONTRACT_ISSUE_MARKET_UNDERWRITER_PROFIT_TOKEN = "IMUnderwriterProfitToken";
}

File 33 of 45 : ERC3525SlotEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "./ERC3525Upgradeable.sol";
import "./extensions/IERC3525SlotEnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

contract ERC3525SlotEnumerableUpgradeable is Initializable, ContextUpgradeable, ERC3525Upgradeable, IERC3525SlotEnumerableUpgradeable {
    function __ERC3525SlotEnumerable_init(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) internal onlyInitializing {
        __ERC3525_init_unchained(name_, symbol_, decimals_);
    }

    function __ERC3525SlotEnumerable_init_unchained(
        string memory,
        string memory,
        uint8
    ) internal onlyInitializing {
    }

    struct SlotData {
        uint256 slot;
        uint256[] slotTokens;
    }

    // slot => tokenId => index
    mapping(uint256 => mapping(uint256 => uint256)) private _slotTokensIndex;

    SlotData[] private _allSlots;

    // slot => index
    mapping(uint256 => uint256) private _allSlotsIndex;

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC3525Upgradeable) returns (bool) {
        return
            interfaceId == type(IERC3525SlotEnumerableUpgradeable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function slotCount() public view virtual override returns (uint256) {
        return _allSlots.length;
    }

    function slotByIndex(uint256 index_) public view virtual override returns (uint256) {
        require(index_ < ERC3525SlotEnumerableUpgradeable.slotCount(), "ERC3525SlotEnumerable: slot index out of bounds");
        return _allSlots[index_].slot;
    }

    function _slotExists(uint256 slot_) internal view virtual returns (bool) {
        return _allSlots.length != 0 && _allSlots[_allSlotsIndex[slot_]].slot == slot_;
    }

    function tokenSupplyInSlot(uint256 slot_) public view virtual override returns (uint256) {
        if (!_slotExists(slot_)) {
            return 0;
        }
        return _allSlots[_allSlotsIndex[slot_]].slotTokens.length;
    }

    function tokenInSlotByIndex(uint256 slot_, uint256 index_) public view virtual override returns (uint256) {
        require(index_ < ERC3525SlotEnumerableUpgradeable.tokenSupplyInSlot(slot_), "ERC3525SlotEnumerable: slot token index out of bounds");
        return _allSlots[_allSlotsIndex[slot_]].slotTokens[index_];
    }

    function _tokenExistsInSlot(uint256 slot_, uint256 tokenId_) private view returns (bool) {
        SlotData storage slotData = _allSlots[_allSlotsIndex[slot_]];
        return slotData.slotTokens.length > 0 && slotData.slotTokens[_slotTokensIndex[slot_][tokenId_]] == tokenId_;
    }

    function _createSlot(uint256 slot_) internal virtual {
        require(!_slotExists(slot_), "ERC3525SlotEnumerable: slot already exists");
        SlotData memory slotData = SlotData({
            slot: slot_, 
            slotTokens: new uint256[](0)
        });
        _addSlotToAllSlotsEnumeration(slotData);
        emit SlotChanged(0, 0, slot_);
    }

    function _beforeValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual override {
        super._beforeValueTransfer(from_, to_, fromTokenId_, toTokenId_, slot_, value_);

        if (from_ == address(0) && fromTokenId_ == 0 && !_slotExists(slot_)) {
            _createSlot(slot_);
        }

        //Shh - currently unused
        to_;
        toTokenId_;
        value_;
    }

    function _afterValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual override {
        if (from_ == address(0) && fromTokenId_ == 0 && !_tokenExistsInSlot(slot_, toTokenId_)) {
            _addTokenToSlotEnumeration(slot_, toTokenId_);
        } else if (to_ == address(0) && toTokenId_ == 0 && _tokenExistsInSlot(slot_, fromTokenId_)) {
            _removeTokenFromSlotEnumeration(slot_, fromTokenId_);
        }

        //Shh - currently unused
        value_;

        super._afterValueTransfer(from_, to_, fromTokenId_, toTokenId_, slot_, value_);
    }

    function _addSlotToAllSlotsEnumeration(SlotData memory slotData) private {
        _allSlotsIndex[slotData.slot] = _allSlots.length;
        _allSlots.push(slotData);
    }

    function _addTokenToSlotEnumeration(uint256 slot_, uint256 tokenId_) private {
        SlotData storage slotData = _allSlots[_allSlotsIndex[slot_]];
        _slotTokensIndex[slot_][tokenId_] = slotData.slotTokens.length;
        slotData.slotTokens.push(tokenId_);
    }

    function _removeTokenFromSlotEnumeration(uint256 slot_, uint256 tokenId_) private {
        SlotData storage slotData = _allSlots[_allSlotsIndex[slot_]];
        uint256 lastTokenIndex = slotData.slotTokens.length - 1;
        uint256 lastTokenId = slotData.slotTokens[lastTokenIndex];
        uint256 tokenIndex = _slotTokensIndex[slot_][tokenId_];

        slotData.slotTokens[tokenIndex] = lastTokenId;
        _slotTokensIndex[slot_][lastTokenId] = tokenIndex;

        delete _slotTokensIndex[slot_][tokenId_];
        slotData.slotTokens.pop();
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[47] private __gap;
}

File 34 of 45 : ERC3525Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol";
import "./IERC721Upgradeable.sol";
import "./IERC3525Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./IERC3525ReceiverUpgradeable.sol";
import "./extensions/IERC721EnumerableUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "./extensions/IERC3525MetadataUpgradeable.sol";
import "./periphery/interface/IERC3525MetadataDescriptorUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

contract ERC3525Upgradeable is Initializable, ContextUpgradeable, IERC3525MetadataUpgradeable, IERC721EnumerableUpgradeable {
    using StringsUpgradeable for address;
    using StringsUpgradeable for uint256;
    using AddressUpgradeable for address;
    using CountersUpgradeable for CountersUpgradeable.Counter;

    event SetMetadataDescriptor(address indexed metadataDescriptor);

    struct TokenData {
        uint256 id;
        uint256 slot;
        uint256 balance;
        address owner;
        address approved;
        address[] valueApprovals;
    }

    struct AddressData {
        uint256[] ownedTokens;
        mapping(uint256 => uint256) ownedTokensIndex;
        mapping(address => bool) approvals;
    }

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    CountersUpgradeable.Counter private _tokenIdGenerator;

    // id => (approval => allowance)
    // @dev _approvedValues cannot be defined within TokenData, cause struct containing mappings cannot be constructed.
    mapping(uint256 => mapping(address => uint256)) private _approvedValues;

    TokenData[] private _allTokens;

    // key: id
    mapping(uint256 => uint256) private _allTokensIndex;

    mapping(address => AddressData) private _addressData;

    IERC3525MetadataDescriptorUpgradeable public metadataDescriptor;

    function __ERC3525_init(string memory name_, string memory symbol_, uint8 decimals_) internal onlyInitializing {
        __ERC3525_init_unchained(name_, symbol_, decimals_);
    }

    function __ERC3525_init_unchained(string memory name_, string memory symbol_, uint8 decimals_) internal onlyInitializing {
         _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return
            interfaceId == type(IERC165Upgradeable).interfaceId ||
            interfaceId == type(IERC3525Upgradeable).interfaceId ||
            interfaceId == type(IERC721Upgradeable).interfaceId ||
            interfaceId == type(IERC3525MetadataUpgradeable).interfaceId ||
            interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || 
            interfaceId == type(IERC721MetadataUpgradeable).interfaceId;
    }

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals the token uses for value.
     */
    function valueDecimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function balanceOf(uint256 tokenId_) public view virtual override returns (uint256) {
        _requireMinted(tokenId_);
        return _allTokens[_allTokensIndex[tokenId_]].balance;
    }

    function ownerOf(uint256 tokenId_) public view virtual override returns (address owner_) {
        _requireMinted(tokenId_);
        owner_ = _allTokens[_allTokensIndex[tokenId_]].owner;
        require(owner_ != address(0), "ERC3525: invalid token ID");
    }

    function slotOf(uint256 tokenId_) public view virtual override returns (uint256) {
        _requireMinted(tokenId_);
        return _allTokens[_allTokensIndex[tokenId_]].slot;
    }

    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    function contractURI() public view virtual override returns (string memory) {
        string memory baseURI = _baseURI();
        return 
            address(metadataDescriptor) != address(0) ? 
                metadataDescriptor.constructContractURI() :
                bytes(baseURI).length > 0 ? 
                    string(abi.encodePacked(baseURI, "contract/", StringsUpgradeable.toHexString(address(this)))) : 
                    "";
    }

    function slotURI(uint256 slot_) public view virtual override returns (string memory) {
        string memory baseURI = _baseURI();
        return 
            address(metadataDescriptor) != address(0) ? 
                metadataDescriptor.constructSlotURI(slot_) : 
                bytes(baseURI).length > 0 ? 
                    string(abi.encodePacked(baseURI, "slot/", slot_.toString())) : 
                    "";
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        _requireMinted(tokenId_);
        string memory baseURI = _baseURI();
        return 
            address(metadataDescriptor) != address(0) ? 
                metadataDescriptor.constructTokenURI(tokenId_) : 
                bytes(baseURI).length > 0 ? 
                    string(abi.encodePacked(baseURI, tokenId_.toString())) : 
                    "";
    }

    function approve(uint256 tokenId_, address to_, uint256 value_) public payable virtual override {
        address owner = ERC3525Upgradeable.ownerOf(tokenId_);
        require(to_ != owner, "ERC3525: approval to current owner");

        require(_isApprovedOrOwner(_msgSender(), tokenId_), "ERC3525: approve caller is not owner nor approved");

        _approveValue(tokenId_, to_, value_);
    }

    function allowance(uint256 tokenId_, address operator_) public view virtual override returns (uint256) {
        _requireMinted(tokenId_);
        return _approvedValues[tokenId_][operator_];
    }

    function transferFrom(
        uint256 fromTokenId_,
        address to_,
        uint256 value_
    ) public payable virtual override returns (uint256 newTokenId) {
        _spendAllowance(_msgSender(), fromTokenId_, value_);

        newTokenId = _createDerivedTokenId(fromTokenId_);
        _mint(to_, newTokenId, ERC3525Upgradeable.slotOf(fromTokenId_), 0);
        _transferValue(fromTokenId_, newTokenId, value_);
    }

    function transferFrom(
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 value_
    ) public payable virtual override {
        _spendAllowance(_msgSender(), fromTokenId_, value_);
        _transferValue(fromTokenId_, toTokenId_, value_);
    }

    function balanceOf(address owner_) public view virtual override returns (uint256 balance) {
        require(owner_ != address(0), "ERC3525: balance query for the zero address");
        return _addressData[owner_].ownedTokens.length;
    }

    function transferFrom(
        address from_,
        address to_,
        uint256 tokenId_
    ) public payable virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId_), "ERC3525: transfer caller is not owner nor approved");
        _transferTokenId(from_, to_, tokenId_);
    }

    function safeTransferFrom(
        address from_,
        address to_,
        uint256 tokenId_,
        bytes memory data_
    ) public payable virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId_), "ERC3525: transfer caller is not owner nor approved");
        _safeTransferTokenId(from_, to_, tokenId_, data_);
    }

    function safeTransferFrom(
        address from_,
        address to_,
        uint256 tokenId_
    ) public payable virtual override {
        safeTransferFrom(from_, to_, tokenId_, "");
    }

    function approve(address to_, uint256 tokenId_) public payable virtual override {
        address owner = ERC3525Upgradeable.ownerOf(tokenId_);
        require(to_ != owner, "ERC3525: approval to current owner");

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

        _approve(to_, tokenId_);
    }

    function getApproved(uint256 tokenId_) public view virtual override returns (address) {
        _requireMinted(tokenId_);
        return _allTokens[_allTokensIndex[tokenId_]].approved;
    }

    function setApprovalForAll(address operator_, bool approved_) public virtual override {
        _setApprovalForAll(_msgSender(), operator_, approved_);
    }

    function isApprovedForAll(address owner_, address operator_) public view virtual override returns (bool) {
        return _addressData[owner_].approvals[operator_];
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    function tokenByIndex(uint256 index_) public view virtual override returns (uint256) {
        require(index_ < ERC3525Upgradeable.totalSupply(), "ERC3525: global index out of bounds");
        return _allTokens[index_].id;
    }

    function tokenOfOwnerByIndex(address owner_, uint256 index_) public view virtual override returns (uint256) {
        require(index_ < ERC3525Upgradeable.balanceOf(owner_), "ERC3525: owner index out of bounds");
        return _addressData[owner_].ownedTokens[index_];
    }

    function _setApprovalForAll(
        address owner_,
        address operator_,
        bool approved_
    ) internal virtual {
        require(owner_ != operator_, "ERC3525: approve to caller");

        _addressData[owner_].approvals[operator_] = approved_;

        emit ApprovalForAll(owner_, operator_, approved_);
    }

    function _isApprovedOrOwner(address operator_, uint256 tokenId_) internal view virtual returns (bool) {
        address owner = ERC3525Upgradeable.ownerOf(tokenId_);
        return (
            operator_ == owner ||
            ERC3525Upgradeable.isApprovedForAll(owner, operator_) ||
            ERC3525Upgradeable.getApproved(tokenId_) == operator_
        );
    }

    function _spendAllowance(address operator_, uint256 tokenId_, uint256 value_) internal virtual {
        uint256 currentAllowance = ERC3525Upgradeable.allowance(tokenId_, operator_);
        if (!_isApprovedOrOwner(operator_, tokenId_) && currentAllowance != type(uint256).max) {
            require(currentAllowance >= value_, "ERC3525: insufficient allowance");
            _approveValue(tokenId_, operator_, currentAllowance - value_);
        }
    }

    function _exists(uint256 tokenId_) internal view virtual returns (bool) {
        return _allTokens.length != 0 && _allTokens[_allTokensIndex[tokenId_]].id == tokenId_;
    }

    function _requireMinted(uint256 tokenId_) internal view virtual {
        require(_exists(tokenId_), "ERC3525: invalid token ID");
    }

    function _mint(address to_, uint256 slot_, uint256 value_) internal virtual returns (uint256 tokenId) {
        tokenId = _createOriginalTokenId();
        _mint(to_, tokenId, slot_, value_);  
    }

    function _mint(address to_, uint256 tokenId_, uint256 slot_, uint256 value_) internal virtual {
        require(to_ != address(0), "ERC3525: mint to the zero address");
        require(tokenId_ != 0, "ERC3525: cannot mint zero tokenId");
        require(!_exists(tokenId_), "ERC3525: token already minted");

        _beforeValueTransfer(address(0), to_, 0, tokenId_, slot_, value_);
        __mintToken(to_, tokenId_, slot_);
        __mintValue(tokenId_, value_);
        _afterValueTransfer(address(0), to_, 0, tokenId_, slot_, value_);
    }

    function _mintValue(uint256 tokenId_, uint256 value_) internal virtual {
        address owner = ERC3525Upgradeable.ownerOf(tokenId_);
        uint256 slot = ERC3525Upgradeable.slotOf(tokenId_);
        _beforeValueTransfer(address(0), owner, 0, tokenId_, slot, value_);
        __mintValue(tokenId_, value_);
        _afterValueTransfer(address(0), owner, 0, tokenId_, slot, value_);
    }

    function __mintValue(uint256 tokenId_, uint256 value_) private {
        _allTokens[_allTokensIndex[tokenId_]].balance += value_;
        emit TransferValue(0, tokenId_, value_);
    }

    function __mintToken(address to_, uint256 tokenId_, uint256 slot_) private {
        TokenData memory tokenData = TokenData({
            id: tokenId_,
            slot: slot_,
            balance: 0,
            owner: to_,
            approved: address(0),
            valueApprovals: new address[](0)
        });

        _addTokenToAllTokensEnumeration(tokenData);
        _addTokenToOwnerEnumeration(to_, tokenId_);

        emit Transfer(address(0), to_, tokenId_);
        emit SlotChanged(tokenId_, 0, slot_);
    }

    function _burn(uint256 tokenId_) internal virtual {
        _requireMinted(tokenId_);

        TokenData storage tokenData = _allTokens[_allTokensIndex[tokenId_]];
        address owner = tokenData.owner;
        uint256 slot = tokenData.slot;
        uint256 value = tokenData.balance;

        _beforeValueTransfer(owner, address(0), tokenId_, 0, slot, value);

        _clearApprovedValues(tokenId_);
        _removeTokenFromOwnerEnumeration(owner, tokenId_);
        _removeTokenFromAllTokensEnumeration(tokenId_);

        emit TransferValue(tokenId_, 0, value);
        emit SlotChanged(tokenId_, slot, 0);
        emit Transfer(owner, address(0), tokenId_);

        _afterValueTransfer(owner, address(0), tokenId_, 0, slot, value);
    }

    function _burnValue(uint256 tokenId_, uint256 burnValue_) internal virtual {
        _requireMinted(tokenId_);

        TokenData storage tokenData = _allTokens[_allTokensIndex[tokenId_]];
        address owner = tokenData.owner;
        uint256 slot = tokenData.slot;
        uint256 value = tokenData.balance;

        require(value >= burnValue_, "ERC3525: burn value exceeds balance");

        _beforeValueTransfer(owner, address(0), tokenId_, 0, slot, burnValue_);
        
        tokenData.balance -= burnValue_;
        emit TransferValue(tokenId_, 0, burnValue_);
        
        _afterValueTransfer(owner, address(0), tokenId_, 0, slot, burnValue_);
    }

    function _addTokenToOwnerEnumeration(address to_, uint256 tokenId_) private {
        _allTokens[_allTokensIndex[tokenId_]].owner = to_;

        _addressData[to_].ownedTokensIndex[tokenId_] = _addressData[to_].ownedTokens.length;
        _addressData[to_].ownedTokens.push(tokenId_);
    }

    function _removeTokenFromOwnerEnumeration(address from_, uint256 tokenId_) private {
        _allTokens[_allTokensIndex[tokenId_]].owner = address(0);

        AddressData storage ownerData = _addressData[from_];
        uint256 lastTokenIndex = ownerData.ownedTokens.length - 1;
        uint256 lastTokenId = ownerData.ownedTokens[lastTokenIndex];
        uint256 tokenIndex = ownerData.ownedTokensIndex[tokenId_];

        ownerData.ownedTokens[tokenIndex] = lastTokenId;
        ownerData.ownedTokensIndex[lastTokenId] = tokenIndex;

        delete ownerData.ownedTokensIndex[tokenId_];
        ownerData.ownedTokens.pop();
    }

    function _addTokenToAllTokensEnumeration(TokenData memory tokenData_) private {
        _allTokensIndex[tokenData_.id] = _allTokens.length;
        _allTokens.push(tokenData_);
    }

    function _removeTokenFromAllTokensEnumeration(uint256 tokenId_) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

    function _approve(address to_, uint256 tokenId_) internal virtual {
        _allTokens[_allTokensIndex[tokenId_]].approved = to_;
        emit Approval(ERC3525Upgradeable.ownerOf(tokenId_), to_, tokenId_);
    }

    function _approveValue(
        uint256 tokenId_,
        address to_,
        uint256 value_
    ) internal virtual {
        require(to_ != address(0), "ERC3525: approve value to the zero address");
        if (!_existApproveValue(to_, tokenId_)) {
            _allTokens[_allTokensIndex[tokenId_]].valueApprovals.push(to_);
        }
        _approvedValues[tokenId_][to_] = value_;

        emit ApprovalValue(tokenId_, to_, value_);
    }

    function _clearApprovedValues(uint256 tokenId_) internal virtual {
        TokenData storage tokenData = _allTokens[_allTokensIndex[tokenId_]];
        uint256 length = tokenData.valueApprovals.length;
        for (uint256 i = 0; i < length; i++) {
            address approval = tokenData.valueApprovals[i];
            delete _approvedValues[tokenId_][approval];
        }
        delete tokenData.valueApprovals;
    }

    function _existApproveValue(address to_, uint256 tokenId_) internal view virtual returns (bool) {
        uint256 length = _allTokens[_allTokensIndex[tokenId_]].valueApprovals.length;
        for (uint256 i = 0; i < length; i++) {
            if (_allTokens[_allTokensIndex[tokenId_]].valueApprovals[i] == to_) {
                return true;
            }
        }
        return false;
    }

    function _transferValue(
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 value_
    ) internal virtual {
        require(_exists(fromTokenId_), "ERC3525: transfer from invalid token ID");
        require(_exists(toTokenId_), "ERC3525: transfer to invalid token ID");

        TokenData storage fromTokenData = _allTokens[_allTokensIndex[fromTokenId_]];
        TokenData storage toTokenData = _allTokens[_allTokensIndex[toTokenId_]];

        require(fromTokenData.balance >= value_, "ERC3525: insufficient balance for transfer");
        require(fromTokenData.slot == toTokenData.slot, "ERC3525: transfer to token with different slot");

        _beforeValueTransfer(
            fromTokenData.owner,
            toTokenData.owner,
            fromTokenId_,
            toTokenId_,
            fromTokenData.slot,
            value_
        );

        fromTokenData.balance -= value_;
        toTokenData.balance += value_;

        emit TransferValue(fromTokenId_, toTokenId_, value_);

        _afterValueTransfer(
            fromTokenData.owner,
            toTokenData.owner,
            fromTokenId_,
            toTokenId_,
            fromTokenData.slot,
            value_
        );

        require(
            _checkOnERC3525Received(fromTokenId_, toTokenId_, value_, ""),
            "ERC3525: transfer rejected by ERC3525Receiver"
        );
    }

    function _transferTokenId(
        address from_,
        address to_,
        uint256 tokenId_
    ) internal virtual {
        require(ERC3525Upgradeable.ownerOf(tokenId_) == from_, "ERC3525: transfer from invalid owner");
        require(to_ != address(0), "ERC3525: transfer to the zero address");

        uint256 slot = ERC3525Upgradeable.slotOf(tokenId_);
        uint256 value = ERC3525Upgradeable.balanceOf(tokenId_);

        _beforeValueTransfer(from_, to_, tokenId_, tokenId_, slot, value);

        _approve(address(0), tokenId_);
        _clearApprovedValues(tokenId_);

        _removeTokenFromOwnerEnumeration(from_, tokenId_);
        _addTokenToOwnerEnumeration(to_, tokenId_);

        emit Transfer(from_, to_, tokenId_);

        _afterValueTransfer(from_, to_, tokenId_, tokenId_, slot, value);
    }

    function _safeTransferTokenId(
        address from_,
        address to_,
        uint256 tokenId_,
        bytes memory data_
    ) internal virtual {
        _transferTokenId(from_, to_, tokenId_);
        require(
            _checkOnERC721Received(from_, to_, tokenId_, data_),
            "ERC3525: transfer to non ERC721Receiver"
        );
    }

    function _checkOnERC3525Received( 
        uint256 fromTokenId_, 
        uint256 toTokenId_, 
        uint256 value_, 
        bytes memory data_
    ) internal virtual returns (bool) {
        address to = ERC3525Upgradeable.ownerOf(toTokenId_);
        if (to.isContract()) {
            try IERC165Upgradeable(to).supportsInterface(type(IERC3525ReceiverUpgradeable).interfaceId) returns (bool retval) {
                if (retval) {
                    bytes4 receivedVal = IERC3525ReceiverUpgradeable(to).onERC3525Received(_msgSender(), fromTokenId_, toTokenId_, value_, data_);
                    return receivedVal == IERC3525ReceiverUpgradeable.onERC3525Received.selector;
                } else {
                    return true;
                }
            } catch (bytes memory /** reason */) {
                return true;
            }
        } else {
            return true;
        }
    }

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

    /* solhint-disable */
    function _beforeValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual {}

    function _afterValueTransfer(
        address from_,
        address to_,
        uint256 fromTokenId_,
        uint256 toTokenId_,
        uint256 slot_,
        uint256 value_
    ) internal virtual {}
    /* solhint-enable */

    function _setMetadataDescriptor(address metadataDescriptor_) internal virtual {
        metadataDescriptor = IERC3525MetadataDescriptorUpgradeable(metadataDescriptor_);
        emit SetMetadataDescriptor(metadataDescriptor_);
    }

    function _createOriginalTokenId() internal virtual returns (uint256) {
         _tokenIdGenerator.increment();
        return _tokenIdGenerator.current();
    }

    function _createDerivedTokenId(uint256 fromTokenId_) internal virtual returns (uint256) {
        fromTokenId_;
        return _createOriginalTokenId();
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[41] private __gap;
}

File 35 of 45 : IERC3525ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @title EIP-3525 token receiver interface
 * @dev Interface for a smart contract that wants to be informed by EIP-3525 contracts when 
 *  receiving values from ANY addresses or EIP-3525 tokens.
 * Note: the EIP-165 identifier for this interface is 0x009ce20b.
 */
interface IERC3525ReceiverUpgradeable {
    /**
     * @notice Handle the receipt of an EIP-3525 token value.
     * @dev An EIP-3525 smart contract MUST check whether this function is implemented by the 
     *  recipient contract, if the recipient contract implements this function, the EIP-3525 
     *  contract MUST call this function after a value transfer (i.e. `transferFrom(uint256,
     *  uint256,uint256,bytes)`).
     *  MUST return 0x009ce20b (i.e. `bytes4(keccak256('onERC3525Received(address,uint256,uint256,
     *  uint256,bytes)'))`) if the transfer is accepted.
     *  MUST revert or return any value other than 0x009ce20b if the transfer is rejected.
     * @param _operator The address which triggered the transfer
     * @param _fromTokenId The token id to transfer value from
     * @param _toTokenId The token id to transfer value to
     * @param _value The transferred value
     * @param _data Additional data with no specified format
     * @return `bytes4(keccak256('onERC3525Received(address,uint256,uint256,uint256,bytes)'))` 
     *  unless the transfer is rejected.
     */
    function onERC3525Received(address _operator, uint256 _fromTokenId, uint256 _toTokenId, uint256 _value, bytes calldata _data) external returns (bytes4);

}

File 36 of 45 : IERC3525Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol";
import "./IERC721Upgradeable.sol";

/**
 * @title ERC-3525 Semi-Fungible Token Standard
 * @dev See https://eips.ethereum.org/EIPS/eip-3525
 * Note: the ERC-165 identifier for this interface is 0xd5358140.
 */
interface IERC3525Upgradeable is IERC165Upgradeable, IERC721Upgradeable {
    /**
     * @dev MUST emit when value of a token is transferred to another token with the same slot,
     *  including zero value transfers (_value == 0) as well as transfers when tokens are created
     *  (`_fromTokenId` == 0) or destroyed (`_toTokenId` == 0).
     * @param _fromTokenId The token id to transfer value from
     * @param _toTokenId The token id to transfer value to
     * @param _value The transferred value
     */
    event TransferValue(uint256 indexed _fromTokenId, uint256 indexed _toTokenId, uint256 _value);

    /**
     * @dev MUST emits when the approval value of a token is set or changed.
     * @param _tokenId The token to approve
     * @param _operator The operator to approve for
     * @param _value The maximum value that `_operator` is allowed to manage
     */
    event ApprovalValue(uint256 indexed _tokenId, address indexed _operator, uint256 _value);

    /**
     * @dev MUST emit when the slot of a token is set or changed.
     * @param _tokenId The token of which slot is set or changed
     * @param _oldSlot The previous slot of the token
     * @param _newSlot The updated slot of the token
     */ 
    event SlotChanged(uint256 indexed _tokenId, uint256 indexed _oldSlot, uint256 indexed _newSlot);

    /**
     * @notice Get the number of decimals the token uses for value - e.g. 6, means the user
     *  representation of the value of a token can be calculated by dividing it by 1,000,000.
     *  Considering the compatibility with third-party wallets, this function is defined as
     *  `valueDecimals()` instead of `decimals()` to avoid conflict with ERC20 tokens.
     * @return The number of decimals for value
     */
    function valueDecimals() external view returns (uint8);

    /**
     * @notice Get the value of a token.
     * @param _tokenId The token for which to query the balance
     * @return The value of `_tokenId`
     */
    function balanceOf(uint256 _tokenId) external view returns (uint256);

    /**
     * @notice Get the slot of a token.
     * @param _tokenId The identifier for a token
     * @return The slot of the token
     */
    function slotOf(uint256 _tokenId) external view returns (uint256);

    /**
     * @notice Allow an operator to manage the value of a token, up to the `_value` amount.
     * @dev MUST revert unless caller is the current owner, an authorized operator, or the approved
     *  address for `_tokenId`.
     *  MUST emit ApprovalValue event.
     * @param _tokenId The token to approve
     * @param _operator The operator to be approved
     * @param _value The maximum value of `_toTokenId` that `_operator` is allowed to manage
     */
    function approve(
        uint256 _tokenId,
        address _operator,
        uint256 _value
    ) external payable;

    /**
     * @notice Get the maximum value of a token that an operator is allowed to manage.
     * @param _tokenId The token for which to query the allowance
     * @param _operator The address of an operator
     * @return The current approval value of `_tokenId` that `_operator` is allowed to manage
     */
    function allowance(uint256 _tokenId, address _operator) external view returns (uint256);

    /**
     * @notice Transfer value from a specified token to another specified token with the same slot.
     * @dev Caller MUST be the current owner, an authorized operator or an operator who has been
     *  approved the whole `_fromTokenId` or part of it.
     *  MUST revert if `_fromTokenId` or `_toTokenId` is zero token id or does not exist.
     *  MUST revert if slots of `_fromTokenId` and `_toTokenId` do not match.
     *  MUST revert if `_value` exceeds the balance of `_fromTokenId` or its allowance to the
     *  operator.
     *  MUST emit `TransferValue` event.
     * @param _fromTokenId The token to transfer value from
     * @param _toTokenId The token to transfer value to
     * @param _value The transferred value
     */
    function transferFrom(
        uint256 _fromTokenId,
        uint256 _toTokenId,
        uint256 _value
    ) external payable;

    /**
     * @notice Transfer value from a specified token to an address. The caller should confirm that
     *  `_to` is capable of receiving ERC3525 tokens.
     * @dev This function MUST create a new ERC3525 token with the same slot for `_to` to receive
     *  the transferred value.
     *  MUST revert if `_fromTokenId` is zero token id or does not exist.
     *  MUST revert if `_to` is zero address.
     *  MUST revert if `_value` exceeds the balance of `_fromTokenId` or its allowance to the
     *  operator.
     *  MUST emit `Transfer` and `TransferValue` events.
     * @param _fromTokenId The token to transfer value from
     * @param _to The address to transfer value to
     * @param _value The transferred value
     * @return ID of the new token created for `_to` which receives the transferred value
     */
    function transferFrom(
        uint256 _fromTokenId,
        address _to,
        uint256 _value
    ) external payable returns (uint256);
}

File 37 of 45 : IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.
 *  Note: the ERC-165 identifier for this interface is 0x150b7a02.
 */
interface IERC721ReceiverUpgradeable {
    /** 
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     *  after a `transfer`. This function MAY throw to revert and reject the
     *  transfer. Return of other than the magic value MUST result in the
     *  transaction being reverted.
     *  Note: the contract address is always the message sender.
     * @param _operator The address which called `safeTransferFrom` function
     * @param _from The address which previously owned the token
     * @param _tokenId The NFT identifier which is being transferred
     * @param _data Additional data with no specified format
     * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     *  unless throwing
     */
    function onERC721Received(
        address _operator, 
        address _from, 
        uint256 _tokenId, 
        bytes calldata _data
    ) external returns(bytes4);
}

File 38 of 45 : IERC721Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol";

/** 
 * @title ERC-721 Non-Fungible Token Standard
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 *  Note: the ERC-165 identifier for this interface is 0x80ac58cd.
 */
interface IERC721Upgradeable is IERC165Upgradeable {
    /** 
     * @dev This emits when ownership of any NFT changes by any mechanism.
     *  This event emits when NFTs are created (`from` == 0) and destroyed
     *  (`to` == 0). Exception: during contract creation, any number of NFTs
     *  may be created and assigned without emitting Transfer. At the time of
     *  any transfer, the approved address for that NFT (if any) is reset to none.
     */
    event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId);

    /**
     * @dev This emits when the approved address for an NFT is changed or
     *  reaffirmed. The zero address indicates there is no approved address.
     *  When a Transfer event emits, this also indicates that the approved
     *  address for that NFT (if any) is reset to none.
     */
    event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId);

    /**
     * @dev This emits when an operator is enabled or disabled for an owner.
     *  The operator can manage all NFTs of the owner.
     */
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

    /**
     * @notice Count all NFTs assigned to an owner
     * @dev NFTs assigned to the zero address are considered invalid, and this
     *  function throws for queries about the zero address.
     * @param _owner An address for whom to query the balance
     * @return The number of NFTs owned by `_owner`, possibly zero
     */
    function balanceOf(address _owner) external view returns (uint256);

    /**
     * @notice Find the owner of an NFT
     * @dev NFTs assigned to zero address are considered invalid, and queries
     *  about them do throw.
     * @param _tokenId The identifier for an NFT
     * @return The address of the owner of the NFT
     */
    function ownerOf(uint256 _tokenId) external view returns (address);

    /**
     * @notice Transfers the ownership of an NFT from one address to another address
     * @dev Throws unless `msg.sender` is the current owner, an authorized
     *  operator, or the approved address for this NFT. Throws if `_from` is
     *  not the current owner. Throws if `_to` is the zero address. Throws if
     *  `_tokenId` is not a valid NFT. When transfer is complete, this function
     *  checks if `_to` is a smart contract (code size > 0). If so, it calls
     *  `onERC721Received` on `_to` and throws if the return value is not
     *  `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
     * @param _from The current owner of the NFT
     * @param _to The new owner
     * @param _tokenId The NFT to transfer
     * @param data Additional data with no specified format, sent in call to `_to`
     */
    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes calldata data) external payable;

    /**
     * @notice Transfers the ownership of an NFT from one address to another address
     * @dev This works identically to the other function with an extra data parameter,
     *  except this function just sets data to "".
     * @param _from The current owner of the NFT
     * @param _to The new owner
     * @param _tokenId The NFT to transfer
     */
    function safeTransferFrom(address _from, address _to, uint256 _tokenId) external payable;

    /**
     * @notice Transfer ownership of an NFT -- THE CALLER IS RESPONSIBLE
     *  TO CONFIRM THAT `_to` IS CAPABLE OF RECEIVING NFTS OR ELSE
     *  THEY MAY BE PERMANENTLY LOST
     * @dev Throws unless `msg.sender` is the current owner, an authorized
     *  operator, or the approved address for this NFT. Throws if `_from` is
     *  not the current owner. Throws if `_to` is the zero address. Throws if
     *  `_tokenId` is not a valid NFT.
     * @param _from The current owner of the NFT
     * @param _to The new owner
     * @param _tokenId The NFT to transfer
     */
    function transferFrom(address _from, address _to, uint256 _tokenId) external payable;

    /**
     * @notice Change or reaffirm the approved address for an NFT
     * @dev The zero address indicates there is no approved address.
     *  Throws unless `msg.sender` is the current NFT owner, or an authorized
     *  operator of the current owner.
     * @param _approved The new approved NFT controller
     * @param _tokenId The NFT to approve
     */
    function approve(address _approved, uint256 _tokenId) external payable;

    /**
     * @notice Enable or disable approval for a third party ("operator") to manage
     *  all of `msg.sender`'s assets
     * @dev Emits the ApprovalForAll event. The contract MUST allow
     *  multiple operators per owner.
     * @param _operator Address to add to the set of authorized operators
     * @param _approved True if the operator is approved, false to revoke approval
     */
    function setApprovalForAll(address _operator, bool _approved) external;

    /**
     * @notice Get the approved address for a single NFT
     * @dev Throws if `_tokenId` is not a valid NFT.
     * @param _tokenId The NFT to find the approved address for
     * @return The approved address for this NFT, or the zero address if there is none
     */
    function getApproved(uint256 _tokenId) external view returns (address);

    /**
     * @notice Query if an address is an authorized operator for another address
     * @param _owner The address that owns the NFTs
     * @param _operator The address that acts on behalf of the owner
     * @return True if `_operator` is an approved operator for `_owner`, false otherwise
     */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}

File 39 of 45 : IERC3525MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "../IERC3525Upgradeable.sol";
import "./IERC721MetadataUpgradeable.sol";

/**
 * @title ERC-3525 Semi-Fungible Token Standard, optional extension for metadata
 * @dev Interfaces for any contract that wants to support query of the Uniform Resource Identifier
 *  (URI) for the ERC3525 contract as well as a specified slot.
 *  Because of the higher reliability of data stored in smart contracts compared to data stored in
 *  centralized systems, it is recommended that metadata, including `contractURI`, `slotURI` and
 *  `tokenURI`, be directly returned in JSON format, instead of being returned with a url pointing
 *  to any resource stored in a centralized system.
 *  See https://eips.ethereum.org/EIPS/eip-3525
 * Note: the ERC-165 identifier for this interface is 0xe1600902.
 */
interface IERC3525MetadataUpgradeable is IERC3525Upgradeable, IERC721MetadataUpgradeable {
    /**
     * @notice Returns the Uniform Resource Identifier (URI) for the current ERC3525 contract.
     * @dev This function SHOULD return the URI for this contract in JSON format, starting with
     *  header `data:application/json;`.
     *  See https://eips.ethereum.org/EIPS/eip-3525 for the JSON schema for contract URI.
     * @return The JSON formatted URI of the current ERC3525 contract
     */
    function contractURI() external view returns (string memory);

    /**
     * @notice Returns the Uniform Resource Identifier (URI) for the specified slot.
     * @dev This function SHOULD return the URI for `_slot` in JSON format, starting with header
     *  `data:application/json;`.
     *  See https://eips.ethereum.org/EIPS/eip-3525 for the JSON schema for slot URI.
     * @return The JSON formatted URI of `_slot`
     */
    function slotURI(uint256 _slot) external view returns (string memory);
}

File 40 of 45 : IERC3525SlotEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "../IERC3525Upgradeable.sol";
import "./IERC721EnumerableUpgradeable.sol";
/**
 * @title ERC-3525 Semi-Fungible Token Standard, optional extension for slot enumeration
 * @dev Interfaces for any contract that wants to support enumeration of slots as well as tokens 
 *  with the same slot.
 *  See https://eips.ethereum.org/EIPS/eip-3525
 * Note: the ERC-165 identifier for this interface is 0x3b741b9e.
 */
interface IERC3525SlotEnumerableUpgradeable is IERC3525Upgradeable, IERC721EnumerableUpgradeable {

    /**
     * @notice Get the total amount of slots stored by the contract.
     * @return The total amount of slots
     */
    function slotCount() external view returns (uint256);

    /**
     * @notice Get the slot at the specified index of all slots stored by the contract.
     * @param _index The index in the slot list
     * @return The slot at `index` of all slots.
     */
    function slotByIndex(uint256 _index) external view returns (uint256);

    /**
     * @notice Get the total amount of tokens with the same slot.
     * @param _slot The slot to query token supply for
     * @return The total amount of tokens with the specified `_slot`
     */
    function tokenSupplyInSlot(uint256 _slot) external view returns (uint256);

    /**
     * @notice Get the token at the specified index of all tokens with the same slot.
     * @param _slot The slot to query tokens with
     * @param _index The index in the token list of the slot
     * @return The token ID at `_index` of all tokens with `_slot`
     */
    function tokenInSlotByIndex(uint256 _slot, uint256 _index) external view returns (uint256);
}

File 41 of 45 : IERC721EnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "../IERC721Upgradeable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 *  Note: the ERC-165 identifier for this interface is 0x780e9d63.
 */
interface IERC721EnumerableUpgradeable is IERC721Upgradeable {
    /** 
     * @notice Count NFTs tracked by this contract
     * @return A count of valid NFTs tracked by this contract, where each one of
     *  them has an assigned and queryable owner not equal to the zero address
     */
    function totalSupply() external view returns (uint256);

    /** 
     * @notice Enumerate valid NFTs
     * @dev Throws if `_index` >= `totalSupply()`.
     * @param _index A counter less than `totalSupply()`
     * @return The token identifier for the `_index`th NFT,
     *  (sort order not specified)
     */
    function tokenByIndex(uint256 _index) external view returns (uint256);

    /** 
     * @notice Enumerate NFTs assigned to an owner
     * @dev Throws if `_index` >= `balanceOf(_owner)` or if
     *  `_owner` is the zero address, representing invalid NFTs.
     * @param _owner An address where we are interested in NFTs owned by them
     * @param _index A counter less than `balanceOf(_owner)`
     * @return The token identifier for the `_index`th NFT assigned to `_owner`,
     *  (sort order not specified)
     */
    function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256);
}

File 42 of 45 : IERC721MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "../IERC721Upgradeable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 *  Note: the ERC-165 identifier for this interface is 0x5b5e139f.
 */
interface IERC721MetadataUpgradeable is IERC721Upgradeable {
    /**
     * @notice A descriptive name for a collection of NFTs in this contract
     */
    function name() external view returns (string memory);

    /**
     * @notice An abbreviated name for NFTs in this contract
     */
    function symbol() external view returns (string memory);

    /**
     * @notice A distinct Uniform Resource Identifier (URI) for a given asset.
     * @dev Throws if `_tokenId` is not a valid NFT. URIs are defined in RFC
     *  3986. The URI may point to a JSON file that conforms to the "ERC721
     *  Metadata JSON Schema".
     */
    function tokenURI(uint256 _tokenId) external view returns (string memory);
}

File 43 of 45 : IERC3525MetadataDescriptorUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IERC3525MetadataDescriptorUpgradeable {

    function constructContractURI() external view returns (string memory);

    function constructSlotURI(uint256 slot) external view returns (string memory);
    
    function constructTokenURI(uint256 tokenId) external view returns (string memory);

}

File 44 of 45 : IOpenFundShareConcrete.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@solvprotocol/contracts-v3-sft-earn/contracts/IEarnConcrete.sol";

interface IOpenFundShareConcrete is IEarnConcrete {
}

File 45 of 45 : IOpenFundShareDelegate.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IOpenFundShareDelegate {
	
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OnlyMarket","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ApprovalValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnValue","type":"uint256"}],"name":"BurnValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimValue","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_slot","type":"uint256"},{"indexed":true,"internalType":"address","name":"_creator","type":"address"},{"indexed":false,"internalType":"bytes","name":"_slotInfo","type":"bytes"}],"name":"CreateSlot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_slot","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"MintValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"old_","type":"address"},{"indexed":false,"internalType":"address","name":"new_","type":"address"}],"name":"NewConcrete","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"slot","type":"uint256"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayCurrencyAmount","type":"uint256"}],"name":"Repay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"currency","type":"address"},{"indexed":false,"internalType":"bool","name":"isAllowed","type":"bool"}],"name":"SetCurrency","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"slot","type":"uint256"},{"indexed":false,"internalType":"int32","name":"interestRate","type":"int32"}],"name":"SetInterestRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"metadataDescriptor","type":"address"}],"name":"SetMetadataDescriptor","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_oldSlot","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_newSlot","type":"uint256"}],"name":"SlotChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_toTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"TransferValue","type":"event"},{"inputs":[],"name":"acceptAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowRepayWithBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"address","name":"operator_","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"burnValue_","type":"uint256"}],"name":"burnOnlyIssueMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"address","name":"currency_","type":"address"},{"internalType":"uint256","name":"claimValue_","type":"uint256"}],"name":"claimTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"concrete","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"txSender_","type":"address"},{"internalType":"bytes","name":"inputSlotInfo_","type":"bytes"}],"name":"createSlotOnlyIssueMarket","outputs":[{"internalType":"uint256","name":"slot_","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToConcreteView","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"name_","type":"bytes32"}],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"name_","type":"bytes32"},{"internalType":"string","name":"reason_","type":"string"}],"name":"getRequiredAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"resolver_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"concrete_","type":"address"},{"internalType":"address","name":"descriptor_","type":"address"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"bool","name":"allowRepayWithBalance_","type":"bool"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"operator_","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isResolverCached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataDescriptor","outputs":[{"internalType":"contract IERC3525MetadataDescriptorUpgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"txSender_","type":"address"},{"internalType":"address","name":"currency_","type":"address"},{"internalType":"address","name":"mintTo_","type":"address"},{"internalType":"uint256","name":"slot_","type":"uint256"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"mintOnlyIssueMarket","outputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"txSender_","type":"address"},{"internalType":"address","name":"currency_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"mintValue_","type":"uint256"}],"name":"mintValueOnlyIssueMarket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebuildCache","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"},{"internalType":"address","name":"currency_","type":"address"},{"internalType":"uint256","name":"repayCurrencyAmount_","type":"uint256"}],"name":"repay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"},{"internalType":"address","name":"currency_","type":"address"},{"internalType":"uint256","name":"repayCurrencyAmount_","type":"uint256"}],"name":"repayWithBalance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"resolver","outputs":[{"internalType":"contract IAddressResolver","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator_","type":"address"},{"internalType":"bool","name":"approved_","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newConcrete_","type":"address"}],"name":"setConcreteOnlyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"currency_","type":"address"},{"internalType":"bool","name":"isAllowed_","type":"bool"}],"name":"setCurrencyOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"},{"internalType":"int32","name":"interestRate_","type":"int32"}],"name":"setInterestRateOnlySupervisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"setOwnerOnlyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPendingAdmin_","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"slotByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slotCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"slotOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"}],"name":"slotURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"},{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"tokenInSlotByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"slot_","type":"uint256"}],"name":"tokenSupplyInSlot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"uint256","name":"newTokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId_","type":"uint256"},{"internalType":"uint256","name":"toTokenId_","type":"uint256"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"valueDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506200001c62000022565b620000e4565b600054610100900460ff16156200008f5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff9081161015620000e2576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b615f7780620000f46000396000f3fe60806040526004361061027a5760003560e01c8062cd01101461027f57806301ffc9a7146102b257806304f3bcec146102e257806306fdde0314610310578063081812fc14610332578063095ea7b31461035257806309c3dd87146103675780630e18b681146103875780630f485c021461039c57806310edd3ae146103af57806318160ddd146103cf57806318f41d2f146103e45780631f3a1272146103f75780632127e6b21461040a57806321f8a7211461042a57806323b872dd1461044a578063263f3e7e1461045d578063267822471461047d5780632af64bd31461049d5780632e3c5536146104b25780632f745c59146104d2578063310ed7f0146104f25780633e7e86691461050557806342842e0e14610527578063466525d01461053a5780634dd18bf51461055a5780634f6ccce71461057a5780634f8a0f831461059a5780634ff7b4eb146105ba57806359c54a7c146105da5780636352211e146105ed57806370a082311461060d578063741853601461062d57806378a8875514610642578063840f71131461066257806389e43fbd146106825780638ba34470146106955780638cb0a511146106aa5780638da5cb5b146106bd57806395d89b41146106dd578063993bef8d146106f25780639bc128bf146107125780639cc7f7081461072b578063a22cb4651461074b578063aa6760601461076b578063b88d4fde1461078b578063c87b56dd1461079e578063cb2ef6f7146107be578063d5d049d1146107f7578063d801892814610817578063e345e0bc14610837578063e8a3d48514610857578063e985e9c51461086c578063ed08fa801461088c578063f851a440146108a1578063ffe9b7e2146108c1575b600080fd5b34801561028b57600080fd5b5061029f61029a3660046150fd565b6108e1565b6040519081526020015b60405180910390f35b3480156102be57600080fd5b506102d26102cd366004615135565b6109b7565b60405190151581526020016102a9565b3480156102ee57600080fd5b5061019154610303906001600160a01b031681565b6040516102a99190615152565b34801561031c57600080fd5b506103256109dc565b6040516102a991906151b6565b34801561033e57600080fd5b5061030361034d3660046151c9565b610a6e565b610365610360366004615202565b610ac0565b005b34801561037357600080fd5b506103256103823660046151c9565b610b85565b34801561039357600080fd5b50610365610c6a565b61029f6103aa36600461522e565b610d22565b3480156103bb57600080fd5b5061029f6103ca3660046152ae565b610d5a565b3480156103db57600080fd5b5060385461029f565b6103656103f2366004615302565b610ed7565b61036561040536600461522e565b610fe7565b34801561041657600080fd5b50610365610425366004615361565b6110bb565b34801561043657600080fd5b506103036104453660046151c9565b61125e565b61036561045836600461543d565b61127a565b34801561046957600080fd5b5061029f6104783660046151c9565b6112ab565b34801561048957600080fd5b50609854610303906001600160a01b031681565b3480156104a957600080fd5b506102d26112f3565b3480156104be57600080fd5b506103656104cd36600461546d565b611407565b3480156104de57600080fd5b5061029f6104ed366004615202565b6114c6565b6103656105003660046154a3565b611554565b34801561051157600080fd5b5060355460405160ff90911681526020016102a9565b61036561053536600461543d565b61156a565b34801561054657600080fd5b506103656105553660046154cf565b611585565b34801561056657600080fd5b506103656105753660046154cf565b611621565b34801561058657600080fd5b5061029f6105953660046151c9565b6116bd565b3480156105a657600080fd5b5061029f6105b53660046151c9565b61174e565b3480156105c657600080fd5b506103256105d53660046154ec565b6117a3565b6103656105e836600461522e565b611823565b3480156105f957600080fd5b506103036106083660046151c9565b61190a565b34801561061957600080fd5b5061029f6106283660046154cf565b61197a565b34801561063957600080fd5b50610365611a02565b34801561064e57600080fd5b5061036561065d36600461552d565b611b28565b34801561066e57600080fd5b50603b54610303906001600160a01b031681565b61029f61069036600461555b565b611c19565b3480156106a157600080fd5b50610303611d14565b6103656106b836600461522e565b611d23565b3480156106c957600080fd5b5060c954610303906001600160a01b031681565b3480156106e957600080fd5b50610325611dca565b3480156106fe57600080fd5b5061029f61070d3660046151c9565b611dd9565b34801561071e57600080fd5b506102275460ff166102d2565b34801561073757600080fd5b5061029f6107463660046151c9565b611e76565b34801561075757600080fd5b5061036561076636600461552d565b611ebe565b34801561077757600080fd5b50610303610786366004615661565b611ec9565b6103656107993660046156bb565b611f07565b3480156107aa57600080fd5b506103256107b93660046151c9565b611f39565b3480156107ca57600080fd5b5060408051808201909152601081526f4f70656e2046756e642053686172657360801b6020820152610325565b34801561080357600080fd5b506103656108123660046150fd565b611fcb565b34801561082357600080fd5b5061036561083236600461573a565b6120f6565b34801561084357600080fd5b5061029f610852366004615782565b6123ce565b34801561086357600080fd5b50610325612402565b34801561087857600080fd5b506102d26108873660046157a7565b6124ef565b34801561089857600080fd5b5060665461029f565b3480156108ad57600080fd5b50609754610303906001600160a01b031681565b3480156108cd57600080fd5b506103656108dc3660046154cf565b612521565b60006108ec8361174e565b821061095d5760405162461bcd60e51b815260206004820152603560248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420746f6b656044820152746e20696e646578206f7574206f6620626f756e647360581b60648201526084015b60405180910390fd5b600083815260676020526040902054606680549091908110610981576109816157d5565b906000526020600020906002020160010182815481106109a3576109a36157d5565b906000526020600020015490505b92915050565b60006001600160e01b03198216631dba0dcf60e11b14806109b157506109b182612560565b6060603380546109eb906157eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a17906157eb565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a7982612602565b600082815260396020526040902054603880549091908110610a9d57610a9d6157d5565b60009182526020909120600460069092020101546001600160a01b031692915050565b6000610acb8261190a565b9050806001600160a01b0316836001600160a01b031603610afe5760405162461bcd60e51b815260040161095490615825565b336001600160a01b0382161480610b1a5750610b1a81336124ef565b610b765760405162461bcd60e51b81526020600482015260396024820152600080516020615e828339815191526044820152781ddb995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b603a1b6064820152608401610954565b610b808383612627565b505050565b60606000610b916126be565b603b549091506001600160a01b0316610bf1576000815111610bc25760405180602001604052806000815250610c63565b80610bcc846126d0565b604051602001610bdd929190615867565b604051602081830303815290604052610c63565b603b54604051633601bfc560e11b8152600481018590526001600160a01b0390911690636c037f8a906024015b600060405180830381865afa158015610c3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c6391908101906158a7565b9392505050565b6098546001600160a01b0316336001600160a01b031614610cc25760405162461bcd60e51b815260206004820152601260248201527137b7363c903832b73234b7339030b236b4b760711b6044820152606401610954565b609754609854604051600080516020615ee283398151915292610cf3926001600160a01b0391821692911690615914565b60405180910390a160988054609780546001600160a01b03199081166001600160a01b03841617909155169055565b6000610d2f338584612762565b610d38846127f2565b9050610d4f8382610d48876112ab565b60006127fc565b610c63848284612941565b6000610d64612c7d565b610d6c612cd8565b6001600160a01b0316336001600160a01b031614610d9c5760405162461bcd60e51b81526004016109549061592e565b610da4611d14565b6001600160a01b031663dae85ba38585856040518463ffffffff1660e01b8152600401610dd39392919061599d565b6020604051808303816000875af1158015610df2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1691906159c2565b9050610e2181612d26565b15610e7f5760405162461bcd60e51b815260206004820152602860248201527f5346544973737561626c6544656c65676174653a20736c6f7420616c72656164604482015267792065786973747360c01b6064820152608401610954565b610e8881612d72565b836001600160a01b0316817f812dafd1bbea8aa1e81f2b03677c72a46b0ef2cb6ddf3b401a553bdb4fce5d8c8585604051610ec49291906159db565b60405180910390a3610c63600161012d55565b610edf612c7d565b610ee7612cd8565b6001600160a01b0316336001600160a01b031614610f1857604051639e0125a960e01b815260040160405180910390fd5b6000610f238361190a565b90506000610f30846112ab565b9050610f3c8484612e2f565b610f44611d14565b6001600160a01b03166389197e238787858589896040518763ffffffff1660e01b8152600401610f79969594939291906159ef565b600060405180830381600087803b158015610f9357600080fd5b505af1158015610fa7573d6000803e3d6000fd5b505050508084600080516020615f2283398151915285604051610fcc91815260200190565b60405180910390a35050610fe1600161012d55565b50505050565b610fef612c7d565b610ff7611d14565b6001600160a01b031663a6a978d8338585856040518563ffffffff1660e01b81526004016110289493929190615a28565b600060405180830381600087803b15801561104257600080fd5b505af1158015611056573d6000803e3d6000fd5b5050505061106b826110653390565b83612e73565b335b6001600160a01b0316837fc030da26557a891f33dbaee473c007cdfa269acb9628d7d12e744ec6923ed2b3836040516110a891815260200190565b60405180910390a3610b80600161012d55565b600054610100900460ff16158080156110db5750600054600160ff909116105b806110fc57506110ea30613060565b1580156110fc575060005460ff166001145b61115f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610954565b6000805460ff191660011790558015611182576000805461ff0019166101001790555b6111fc8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8f018190048102820181019092528d815292508d91508c90819084018382808284376000920191909152508c92508b91508a90508961306f565b610227805460ff19168315151790558015611251576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b600090815261019260205260409020546001600160a01b031690565b61128433826130b6565b6112a05760405162461bcd60e51b815260040161095490615a52565b610b80838383613114565b60006112b682612602565b6000828152603960205260409020546038805490919081106112da576112da6157d5565b9060005260206000209060060201600101549050919050565b6000806112fe61327a565b905060005b81518110156113fe576000828281518110611320576113206157d5565b6020908102919091018101516000818152610192909252604091829020546101915492516321f8a72160e01b8152600481018390529193506001600160a01b039081169216906321f8a72190602401602060405180830381865afa15801561138c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b09190615aa4565b6001600160a01b03161415806113dc5750600081815261019260205260409020546001600160a01b0316155b156113eb576000935050505090565b50806113f681615ad7565b915050611303565b50600191505090565b61140f611d14565b6001600160a01b03166398af7bf9336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052600384900b6044820152606401600060405180830381600087803b15801561147057600080fd5b505af1158015611484573d6000803e3d6000fd5b5050604051600384900b81528492507f991dad0c1df4ada34247a5a6fc7afa81f02f3617b3f5d409b5318435d66f5b8d91506020015b60405180910390a25050565b60006114d18361197a565b821061152a5760405162461bcd60e51b815260206004820152602260248201527f455243333532353a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610954565b6001600160a01b0383166000908152603a602052604090208054839081106109a3576109a36157d5565b61155f338483612762565b610b80838383612941565b610b8083838360405180602001604052806000815250611f07565b6097546001600160a01b0316336001600160a01b0316146115b85760405162461bcd60e51b815260040161095490615af0565b60fb546040517f1eeb545565f5659deaedac206fd7c39c875a55001aba786f2a6b7245a301eaa4916115f7916001600160a01b03909116908490615914565b60405180910390a160fb80546001600160a01b0319166001600160a01b0392909216919091179055565b6097546001600160a01b0316336001600160a01b0316146116545760405162461bcd60e51b815260040161095490615af0565b6098546040517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991611693916001600160a01b03909116908490615914565b60405180910390a1609880546001600160a01b0319166001600160a01b0392909216919091179055565b60006116c860385490565b82106117225760405162461bcd60e51b815260206004820152602360248201527f455243333532353a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610954565b60388281548110611735576117356157d5565b9060005260206000209060060201600001549050919050565b600061175982612d26565b61176557506000919050565b600082815260676020526040902054606680549091908110611789576117896157d5565b600091825260209091206001600290920201015492915050565b60606000806117b0611d14565b6001600160a01b031685856040516117c9929190615b14565b600060405180830381855afa9150503d8060008114611804576040519150601f19603f3d011682016040523d82523d6000602084013e611809565b606091505b5090925090508161181b573d60208201fd5b949350505050565b61182b612c7d565b6102275460ff166118985760405162461bcd60e51b815260206004820152603160248201527f4d756c7469526570617961626c6544656c65676174653a2063616e6e6f7420726044820152706570617920776974682062616c616e636560781b6064820152608401610954565b6118a0611d14565b6001600160a01b0316633b2f4830338585856040518563ffffffff1660e01b81526004016118d19493929190615a28565b600060405180830381600087803b1580156118eb57600080fd5b505af11580156118ff573d6000803e3d6000fd5b5050505061106d3390565b600061191582612602565b600082815260396020526040902054603880549091908110611939576119396157d5565b60009182526020909120600360069092020101546001600160a01b03169050806119755760405162461bcd60e51b815260040161095490615b24565b919050565b60006001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602b60248201527f455243333532353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610954565b506001600160a01b03166000908152603a602052604090205490565b6000611a0c61327a565b905060005b8151811015611b24576000828281518110611a2e57611a2e6157d5565b602090810291909101015161019154604080516305533b0360e51b8152600481018490526024810191909152601f60448201527f4164647265737343616368653a2061646472657373206e6f7420666f756e640060648201529192506000916001600160a01b039091169063aa67606090608401602060405180830381865afa158015611abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae39190615aa4565b6000928352610192602052604090922080546001600160a01b0319166001600160a01b03909316929092179091555080611b1c81615ad7565b915050611a11565b5050565b60c9546001600160a01b03163314611b6f5760405162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b6044820152606401610954565b611b77611d14565b60405163e7e9a78560e01b81526001600160a01b0384811660048301528315156024830152919091169063e7e9a78590604401600060405180830381600087803b158015611bc457600080fd5b505af1158015611bd8573d6000803e3d6000fd5b50505050816001600160a01b03167f98c0c4bde5f642566cdaebfb7cd2cdc72a98bc7f3440e38c19e1d58d92388d34826040516114ba911515815260200190565b6000611c23612c7d565b611c2b612cd8565b6001600160a01b0316336001600160a01b031614611c5b5760405162461bcd60e51b81526004016109549061592e565b611c668484846132d0565b9050611c70611d14565b6001600160a01b03166389197e238787878786886040518763ffffffff1660e01b8152600401611ca5969594939291906159ef565b600060405180830381600087803b158015611cbf57600080fd5b505af1158015611cd3573d6000803e3d6000fd5b505050508281600080516020615f2283398151915284604051611cf891815260200190565b60405180910390a3611d0b600161012d55565b95945050505050565b60fb546001600160a01b031690565b6000611d2e8461190a565b9050806001600160a01b0316836001600160a01b031603611d615760405162461bcd60e51b815260040161095490615825565b611d6b33856130b6565b611dbf5760405162461bcd60e51b81526020600482015260316024820152600080516020615e828339815191526044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610954565b610fe18484846132e8565b6060603480546109eb906157eb565b6000611de460665490565b8210611e4a5760405162461bcd60e51b815260206004820152602f60248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420696e646560448201526e78206f7574206f6620626f756e647360881b6064820152608401610954565b60668281548110611e5d57611e5d6157d5565b9060005260206000209060020201600001549050919050565b6000611e8182612602565b600082815260396020526040902054603880549091908110611ea557611ea56157d5565b9060005260206000209060060201600201549050919050565b611b24338383613420565b600080611ed58461125e565b9050826001600160a01b038216611eff5760405162461bcd60e51b815260040161095491906151b6565b509392505050565b611f1133836130b6565b611f2d5760405162461bcd60e51b815260040161095490615a52565b610fe1848484846134e7565b6060611f4482612602565b6000611f4e6126be565b603b549091506001600160a01b0316611f9a576000815111611f7f5760405180602001604052806000815250610c63565b80611f89846126d0565b604051602001610bdd929190615b57565b603b546040516344a5a61760e11b8152600481018590526001600160a01b039091169063894b4c2e90602401610c1e565b611fd3612c7d565b611fdb612cd8565b6001600160a01b0316336001600160a01b03161461200c57604051639e0125a960e01b815260040160405180910390fd5b6000811561201a5781612023565b61202383611e76565b905061202d611d14565b60405163663f60bd60e11b815260048101859052602481018390526001600160a01b03919091169063cc7ec17a90604401600060405180830381600087803b15801561207857600080fd5b505af115801561208c573d6000803e3d6000fd5b50505050816000036120a6576120a18361355a565b6120b0565b6120b08383613661565b827f98ba6768a6df38155451a706e1f1ffb2dd8ea75a1184c3d45acc3b9586ede6d4826040516120e291815260200190565b60405180910390a250611b24600161012d55565b6120fe612c7d565b600081116121625760405162461bcd60e51b815260206004820152602b60248201527f4d756c7469526570617961626c6544656c65676174653a20636c61696d20766160448201526a6c7565206973207a65726f60a81b6064820152608401610954565b61216c33846130b6565b6121d95760405162461bcd60e51b815260206004820152603860248201527f4d756c7469526570617961626c6544656c65676174653a2063616c6c657220696044820152771cc81b9bdd081bdddb995c881b9bdc88185c1c1c9bdd995960421b6064820152608401610954565b60006121e4846112ab565b905060006121f0611d14565b6001600160a01b03166356b04045866040518263ffffffff1660e01b815260040161221d91815260200190565b602060405180830381865afa15801561223a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225e91906159c2565b9050808311156122bb5760405162461bcd60e51b815260206004820152602260248201527f4d756c7469526570617961626c6544656c65676174653a206f76657220636c61604482015261696d60f01b6064820152608401610954565b6122c485611e76565b83036122d8576122d38561355a565b6122e2565b6122e28584613661565b60006122ec611d14565b604051633cc6cee360e21b815260048101889052602481018590526001600160a01b03878116604483015260648201879052919091169063f31b3b8c906084016020604051808303816000875af115801561234b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236f91906159c2565b905061237c85888361377f565b85876001600160a01b03167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf7866040516123b891815260200190565b60405180910390a3505050610fe1600161012d55565b60006123d983612602565b5060009182526037602090815260408084206001600160a01b0393909316845291905290205490565b6060600061240e6126be565b603b549091506001600160a01b031661246e57600081511161243f57604051806020016040528060008152506124e9565b806124493061396a565b60405160200161245a929190615b86565b6040516020818303038152906040526124e9565b603b60009054906101000a90046001600160a01b03166001600160a01b031663725fa09c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156124c1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124e991908101906158a7565b91505090565b6001600160a01b039182166000908152603a602090815260408083209390941682526002909201909152205460ff1690565b6097546001600160a01b0316336001600160a01b0316146125545760405162461bcd60e51b815260040161095490615af0565b61255d81613980565b50565b60006001600160e01b031982166301ffc9a760e01b148061259157506001600160e01b03198216630354d60560e61b145b806125ac57506001600160e01b031982166380ac58cd60e01b145b806125c757506001600160e01b031982166370b0048160e11b145b806125e257506001600160e01b0319821663780e9d6360e01b145b806109b157506001600160e01b03198216635b5e139f60e01b1492915050565b61260b81613a3b565b61255d5760405162461bcd60e51b815260040161095490615b24565b60008181526039602052604090205460388054849290811061264b5761264b6157d5565b6000918252602090912060069091020160040180546001600160a01b0319166001600160a01b03928316179055819083166126858261190a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60408051602081019091526000815290565b606060006126dd83613a87565b60010190506000816001600160401b038111156126fc576126fc6155b6565b6040519080825280601f01601f191660200182016040528015612726576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461273057509392505050565b600061276e83856123ce565b905061277a84846130b6565b15801561278957506000198114155b15610fe157818110156127de5760405162461bcd60e51b815260206004820152601f60248201527f455243333532353a20696e73756666696369656e7420616c6c6f77616e6365006044820152606401610954565b610fe183856127ed8585615bca565b6132e8565b60006109b1613b5d565b6001600160a01b03841661285c5760405162461bcd60e51b815260206004820152602160248201527f455243333532353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610954565b826000036128b65760405162461bcd60e51b815260206004820152602160248201527f455243333532353a2063616e6e6f74206d696e74207a65726f20746f6b656e496044820152601960fa1b6064820152608401610954565b6128bf83613a3b565b1561290c5760405162461bcd60e51b815260206004820152601d60248201527f455243333532353a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610954565b61291c6000856000868686613b74565b612927848484613b82565b6129318382613c24565b610fe16000856000868686613c97565b61294a83613a3b565b6129a65760405162461bcd60e51b815260206004820152602760248201527f455243333532353a207472616e736665722066726f6d20696e76616c696420746044820152661bdad95b88125160ca1b6064820152608401610954565b6129af82613a3b565b612a095760405162461bcd60e51b815260206004820152602560248201527f455243333532353a207472616e7366657220746f20696e76616c696420746f6b604482015264195b88125160da1b6064820152608401610954565b600083815260396020526040812054603880549091908110612a2d57612a2d6157d5565b9060005260206000209060060201905060006038603960008681526020019081526020016000205481548110612a6557612a656157d5565b906000526020600020906006020190508282600201541015612adc5760405162461bcd60e51b815260206004820152602a60248201527f455243333532353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610954565b8060010154826001015414612b4a5760405162461bcd60e51b815260206004820152602e60248201527f455243333532353a207472616e7366657220746f20746f6b656e20776974682060448201526d191a5999995c995b9d081cdb1bdd60921b6064820152608401610954565b600380830154908201546001840154612b75926001600160a01b039081169216908890889088613b74565b82826002016000828254612b899190615bca565b9250508190555082816002016000828254612ba49190615bdd565b909155505060405183815284908690600080516020615ea28339815191529060200160405180910390a3600380830154908201546001840154612bf9926001600160a01b039081169216908890889088613c97565b612c1485858560405180602001604052806000815250613d08565b612c765760405162461bcd60e51b815260206004820152602d60248201527f455243333532353a207472616e736665722072656a656374656420627920455260448201526c21999a991aa932b1b2b4bb32b960991b6064820152608401610954565b5050505050565b600261012d5403612cd05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610954565b600261012d55565b6000612d216d13dc195b919d5b9913585c9ad95d60921b6040518060400160405280601481526020017313d194d10e8813585c9ad95d081b9bdd081cd95d60621b815250611ec9565b905090565b606654600090158015906109b15750600082815260676020526040902054606680548492908110612d5957612d596157d5565b9060005260206000209060020201600001541492915050565b612d7b81612d26565b15612ddb5760405162461bcd60e51b815260206004820152602a60248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420616c72656044820152696164792065786973747360b01b6064820152608401610954565b604080518082018252828152815160008082526020828101909452928201529050612e0581613e84565b81600080600080516020615f0283398151915260405160405180910390a45050565b600161012d55565b6000612e3a8361190a565b90506000612e47846112ab565b9050612e596000836000878588613b74565b612e638484613c24565b610fe16000836000878588613c97565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03841601612f3657326001600160a01b0383161480612eb75750336001600160a01b038316145b612ef55760405162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b6044820152606401610954565b80341015610b805760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b6044820152606401610954565b6000836001600160a01b03163b11612f605760405162461bcd60e51b815260040161095490615bf0565b604080516001600160a01b038481166024830152306044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290871691612fc29190615c1c565b6000604051808303816000865af19150503d8060008114612fff576040519150601f19603f3d011682016040523d82523d6000602084013e613004565b606091505b509150915081801561302e57508051158061302e57508080602001905181019061302e9190615c38565b612c765760405162461bcd60e51b815260206004820152600360248201526229aa2360e91b6044820152606401610954565b6001600160a01b03163b151590565b600054610100900460ff166130965760405162461bcd60e51b815260040161095490615c55565b6130a4868686868686613f09565b6130ad87613fd3565b50505050505050565b6000806130c28361190a565b9050806001600160a01b0316846001600160a01b031614806130e957506130e981856124ef565b8061181b5750836001600160a01b031661310284610a6e565b6001600160a01b031614949350505050565b826001600160a01b03166131278261190a565b6001600160a01b0316146131895760405162461bcd60e51b8152602060048201526024808201527f455243333532353a207472616e736665722066726f6d20696e76616c6964206f6044820152633bb732b960e11b6064820152608401610954565b6001600160a01b0382166131ed5760405162461bcd60e51b815260206004820152602560248201527f455243333532353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610954565b60006131f8826112ab565b9050600061320583611e76565b9050613215858585868686613b74565b613220600084612627565b6132298361401d565b61323385846140c8565b61323d84846141e9565b82846001600160a01b0316866001600160a01b0316600080516020615ec283398151915260405160405180910390a4612c76858585868686613c97565b604080516001808252818301909252606091602080830190803683370190505090506d13dc195b919d5b9913585c9ad95d60921b816000815181106132c1576132c16157d5565b60200260200101818152505090565b60006132da613b5d565b9050610c63848285856127fc565b6001600160a01b0382166133515760405162461bcd60e51b815260206004820152602a60248201527f455243333532353a20617070726f76652076616c756520746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610954565b61335b8284614272565b6133c157600083815260396020526040902054603880549091908110613383576133836157d5565b60009182526020808320600692909202909101600501805460018101825590835291200180546001600160a01b0319166001600160a01b0384161790555b60008381526037602090815260408083206001600160a01b038616808552908352928190208490555183815285917f621b050de0ad08b51d19b48b3e6df75348c4de6bdd93e81b252ca62e28265b1b91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b03160361347e5760405162461bcd60e51b815260206004820152601a60248201527922a921999a991a9d1030b8383937bb32903a379031b0b63632b960311b6044820152606401610954565b6001600160a01b038381166000818152603a602090815260408083209487168084526002909501825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101613413565b6134f2848484613114565b6134fe84848484614345565b610fe15760405162461bcd60e51b815260206004820152602760248201527f455243333532353a207472616e7366657220746f206e6f6e204552433732315260448201526632b1b2b4bb32b960c91b6064820152608401610954565b61356381612602565b600081815260396020526040812054603880549091908110613587576135876157d5565b600091825260208220600360069092020190810154600182015460028301549294506001600160a01b03909116929091906135c790849087818686613b74565b6135d08561401d565b6135da83866140c8565b6135e385614495565b600085600080516020615ea28339815191528360405161360591815260200190565b60405180910390a360008286600080516020615f0283398151915260405160405180910390a460405185906000906001600160a01b03861690600080516020615ec2833981519152908390a4612c768360008760008686613c97565b61366a82612602565b60008281526039602052604081205460388054909190811061368e5761368e6157d5565b600091825260209091206006909102016003810154600182015460028301549293506001600160a01b0390911691848110156137185760405162461bcd60e51b815260206004820152602360248201527f455243333532353a206275726e2076616c756520657863656564732062616c616044820152626e636560e81b6064820152608401610954565b613728836000886000868a613b74565b8484600201600082825461373c9190615bca565b90915550506040518581526000908790600080516020615ea28339815191529060200160405180910390a3613777836000886000868a613c97565b505050505050565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b0384160161384757604080516000808252602082019092526001600160a01b0384169083906040516137ce9190615c1c565b60006040518083038185875af1925050503d806000811461380b576040519150601f19603f3d011682016040523d82523d6000602084013e613810565b606091505b5050905080610fe15760405162461bcd60e51b815260206004820152600360248201526253544560e81b6044820152606401610954565b6000836001600160a01b03163b116138715760405162461bcd60e51b815260040161095490615bf0565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916138cd9190615c1c565b6000604051808303816000865af19150503d806000811461390a576040519150601f19603f3d011682016040523d82523d6000602084013e61390f565b606091505b50915091508180156139395750805115806139395750808060200190518101906139399190615c38565b612c765760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610954565b60606109b16001600160a01b03831660146146a3565b6001600160a01b0381166139d25760405162461bcd60e51b815260206004820152601960248201527804f776e6572206164647265737320636f6e6e6f74206265203603c1b6044820152606401610954565b60c9546040517f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b236491613a11916001600160a01b03909116908490615914565b60405180910390a160c980546001600160a01b0319166001600160a01b0392909216919091179055565b603854600090158015906109b15750600082815260396020526040902054603880548492908110613a6e57613a6e6157d5565b9060005260206000209060060201600001541492915050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613ac65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613af0576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613b0e57662386f26fc10000830492506010015b6305f5e1008310613b26576305f5e100830492506008015b6127108310613b3a57612710830492506004015b60648310613b4c576064830492506002015b600a83106109b15760010192915050565b6000613b6d603680546001019055565b5060365490565b61377786868686868661483e565b6040805160c081018252838152602080820184905260008284018190526001600160a01b038716606084015260808301819052835181815291820190935260a08201529050613bd081614926565b613bda84846141e9565b60405183906001600160a01b03861690600090600080516020615ec2833981519152908290a481600084600080516020615f0283398151915260405160405180910390a450505050565b600082815260396020526040902054603880548392908110613c4857613c486157d5565b90600052602060002090600602016002016000828254613c689190615bdd565b90915550506040518181528290600090600080516020615ea28339815191529060200160405180910390a35050565b6001600160a01b038616158015613cac575083155b8015613cbf5750613cbd8284614a78565b155b15613cd357613cce8284614b04565b613777565b6001600160a01b038516158015613ce8575082155b8015613cf95750613cf98285614a78565b15613cce57613cce8285614b65565b600080613d148561190a565b9050613d28816001600160a01b0316613060565b15613e78576040516301ffc9a760e01b8152629ce20b60e01b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa925050508015613d93575060408051601f3d908101601f19168201909252613d9091810190615c38565b60015b613dd2573d808015613dc1576040519150601f19603f3d011682016040523d82523d6000602084013e613dc6565b606091505b5060019250505061181b565b8015613e6d57604051629ce20b60e01b81526000906001600160a01b03841690629ce20b90613e0d9033908c908c908c908c90600401615ca0565b6020604051808303816000875af1158015613e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e509190615cde565b6001600160e01b031916629ce20b60e01b14935061181b92505050565b60019250505061181b565b50600195945050505050565b60668054825160009081526067602090815260408220839055600183018455929052825160029091027f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e9435481019182558284015180518594610fe1937f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e943550192019061502a565b600054610100900460ff16613f305760405162461bcd60e51b815260040161095490615c55565b613f3b868686614c49565b613f4481614c7b565b613f4d82614cb4565b613f5683614cfe565b613f5e614d37565b6001600160a01b038316156137775760405163ca5eb5e160e01b81526001600160a01b0384169063ca5eb5e190613f99903090600401615152565b600060405180830381600087803b158015613fb357600080fd5b505af1158015613fc7573d6000803e3d6000fd5b50505050505050505050565b600054610100900460ff16613ffa5760405162461bcd60e51b815260040161095490615c55565b61019180546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260396020526040812054603880549091908110614041576140416157d5565b600091825260208220600560069092020190810154909250905b818110156140b957600083600501828154811061407a5761407a6157d5565b60009182526020808320909101548783526037825260408084206001600160a01b039092168452915281205550806140b181615ad7565b91505061405b565b50610b80600583016000615075565b6000818152603960205260408120546038805490919081106140ec576140ec6157d5565b6000918252602080832060069290920290910160030180546001600160a01b0319166001600160a01b039485161790559184168152603a90915260408120805490919061413b90600190615bca565b90506000826000018281548110614154576141546157d5565b90600052602060002001549050600083600101600086815260200190815260200160002054905081846000018281548110614191576141916157d5565b600091825260208083209091019290925583815260018601909152604080822083905586825281205583548490806141cb576141cb615cfb565b60019003818190600052602060002001600090559055505050505050565b60008181526039602052604090205460388054849290811061420d5761420d6157d5565b6000918252602080832060069290920290910160030180546001600160a01b0319166001600160a01b03948516179055939091168152603a80845260408083208054858552600182810188529285208190559286529082018155825292902090910155565b600081815260396020526040812054603880548392908110614296576142966157d5565b6000918252602082206005600690920201015491505b8181101561433a57600084815260396020526040902054603880546001600160a01b038816929081106142e1576142e16157d5565b90600052602060002090600602016005018281548110614303576143036157d5565b6000918252602090912001546001600160a01b031603614328576001925050506109b1565b8061433281615ad7565b9150506142ac565b506000949350505050565b6000614359846001600160a01b0316613060565b1561448d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614390903390899088908890600401615d11565b6020604051808303816000875af19250505080156143cb575060408051601f3d908101601f191682019092526143c891810190615cde565b60015b614473573d8080156143f9576040519150601f19603f3d011682016040523d82523d6000602084013e6143fe565b606091505b50805160000361446b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610954565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181b565b50600161181b565b6038546000906144a790600190615bca565b600083815260396020526040812054603880549394509092849081106144cf576144cf6157d5565b60009182526020918290206040805160c08101825260069093029091018054835260018101548385015260028101548383015260038101546001600160a01b03908116606085015260048201541660808401526005810180548351818702810187019094528084529394919360a08601939283018282801561457a57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161455c575b50505050508152505090508060388381548110614599576145996157d5565b600091825260209182902083516006909202019081558282015160018201556040830151600282015560608301516003820180546001600160a01b039283166001600160a01b031991821617909155608085015160048401805491909316911617905560a08301518051919261461792600585019290910190615093565b5050815160009081526039602052604080822085905586825281205550603880548061464557614645615cfb565b60008281526020812060066000199093019283020181815560018101829055600281018290556003810180546001600160a01b03199081169091556004820180549091169055906146996005830182615075565b5050905550505050565b606060006146b2836002615d4e565b6146bd906002615bdd565b6001600160401b038111156146d4576146d46155b6565b6040519080825280601f01601f1916602001820160405280156146fe576020820181803683370190505b509050600360fc1b81600081518110614719576147196157d5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614748576147486157d5565b60200101906001600160f81b031916908160001a905350600061476c846002615d4e565b614777906001615bdd565b90505b60018111156147ef576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106147ab576147ab6157d5565b1a60f81b8282815181106147c1576147c16157d5565b60200101906001600160f81b031916908160001a90535060049490941c936147e881615d65565b905061477a565b508315610c635760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610954565b61484c868686868686614d68565b6001600160a01b0386161580159061486c57506001600160a01b03851615155b1561377757614879611d14565b6001600160a01b031663d8e4e1d3836040518263ffffffff1660e01b81526004016148a691815260200190565b6020604051808303816000875af11580156148c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148e99190615c38565b6137775760405162461bcd60e51b815260206004820152600e60248201526d756e7472616e7366657261626c6560901b6044820152606401610954565b603880548251600090815260396020908152604080832084905560018401855593909152835160069092027f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f4561998101928355818501517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619a820155928401517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619b84015560608401517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619c840180546001600160a01b039283166001600160a01b03199182161790915560808601517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619d8601805491909316911617905560a084015180518594610fe1937f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619e909101920190615093565b600082815260676020526040812054606680548392908110614a9c57614a9c6157d5565b906000526020600020906002020190506000816001018054905011801561181b575060008481526065602090815260408083208684529091529020546001820180548592908110614aef57614aef6157d5565b90600052602060002001541491505092915050565b600082815260676020526040812054606680549091908110614b2857614b286157d5565b6000918252602080832060016002909302018201805496845260658252604080852087865283528420879055918601825590825290209092015550565b600082815260676020526040812054606680549091908110614b8957614b896157d5565b600091825260208220600160029092020181810154909350614bab9190615bca565b90506000826001018281548110614bc457614bc46157d5565b6000918252602080832090910154878352606582526040808420888552909252912054600185018054929350909183919083908110614c0557614c056157d5565b60009182526020808320919091019290925587815260658252604080822085835290925281812083905586815290812055600184018054806141cb576141cb615cfb565b600054610100900460ff16614c705760405162461bcd60e51b815260040161095490615c55565b610b80838383614e97565b600054610100900460ff16614ca25760405162461bcd60e51b815260040161095490615c55565b614cab81614ef0565b61255d33614f17565b603b80546001600160a01b0319166001600160a01b0383169081179091556040517f5252f52e45fc8ee6a7b43cef3645d23e9a470a34182b8b3a12627556635bfc9c90600090a250565b600054610100900460ff16614d255760405162461bcd60e51b815260040161095490615c55565b614d2e33614f17565b61255d81614f85565b600054610100900460ff16614d5e5760405162461bcd60e51b815260040161095490615c55565b614d66614fce565b565b614d76868686868686614ff5565b6001600160a01b038616158015614d8b575083155b15614e0357614d98611d14565b6040516335f28fa560e01b81526004810185905260248101849052604481018390526001600160a01b0391909116906335f28fa590606401600060405180830381600087803b158015614dea57600080fd5b505af1158015614dfe573d6000803e3d6000fd5b505050505b6001600160a01b03861615801590614e1a57508315155b8015614e2e57506001600160a01b03851615155b8015614e3957508215155b1561377757614e46611d14565b6001600160a01b031663302b586a8585614e5f88611e76565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260648101849052608401613f99565b600054610100900460ff16614ebe5760405162461bcd60e51b815260040161095490615c55565b6033614eca8482615dc2565b506034614ed78382615dc2565b506035805460ff191660ff929092169190911790555050565b600054610100900460ff166125545760405162461bcd60e51b815260040161095490615c55565b600054610100900460ff16614f3e5760405162461bcd60e51b815260040161095490615c55565b609780546001600160a01b0319166001600160a01b038316179055604051600080516020615ee283398151915290614f7a906000908490615914565b60405180910390a150565b600054610100900460ff16614fac5760405162461bcd60e51b815260040161095490615c55565b60fb80546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff16612e275760405162461bcd60e51b815260040161095490615c55565b6001600160a01b03861615801561500a575083155b801561501c575061501a82612d26565b155b156137775761377782612d72565b828054828255906000526020600020908101928215615065579160200282015b8281111561506557825182559160200191906001019061504a565b506150719291506150e8565b5090565b508054600082559060005260206000209081019061255d91906150e8565b828054828255906000526020600020908101928215615065579160200282015b8281111561506557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906150b3565b5b8082111561507157600081556001016150e9565b6000806040838503121561511057600080fd5b50508035926020909101359150565b6001600160e01b03198116811461255d57600080fd5b60006020828403121561514757600080fd5b8135610c638161511f565b6001600160a01b0391909116815260200190565b60005b83811015615181578181015183820152602001615169565b50506000910152565b600081518084526151a2816020860160208601615166565b601f01601f19169290920160200192915050565b602081526000610c63602083018461518a565b6000602082840312156151db57600080fd5b5035919050565b6001600160a01b038116811461255d57600080fd5b8035611975816151e2565b6000806040838503121561521557600080fd5b8235615220816151e2565b946020939093013593505050565b60008060006060848603121561524357600080fd5b833592506020840135615255816151e2565b929592945050506040919091013590565b60008083601f84011261527857600080fd5b5081356001600160401b0381111561528f57600080fd5b6020830191508360208285010111156152a757600080fd5b9250929050565b6000806000604084860312156152c357600080fd5b83356152ce816151e2565b925060208401356001600160401b038111156152e957600080fd5b6152f586828701615266565b9497909650939450505050565b6000806000806080858703121561531857600080fd5b8435615323816151e2565b93506020850135615333816151e2565b93969395505050506040820135916060013590565b801515811461255d57600080fd5b803561197581615348565b6000806000806000806000806000806101008b8d03121561538157600080fd5b8a3561538c816151e2565b995060208b01356001600160401b03808211156153a857600080fd5b6153b48e838f01615266565b909b50995060408d01359150808211156153cd57600080fd5b506153da8d828e01615266565b90985096505060608b013560ff811681146153f457600080fd5b945061540260808c016151f7565b935061541060a08c016151f7565b925061541e60c08c016151f7565b915061542c60e08c01615356565b90509295989b9194979a5092959850565b60008060006060848603121561545257600080fd5b833561545d816151e2565b92506020840135615255816151e2565b6000806040838503121561548057600080fd5b8235915060208301358060030b811461549857600080fd5b809150509250929050565b6000806000606084860312156154b857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156154e157600080fd5b8135610c63816151e2565b600080602083850312156154ff57600080fd5b82356001600160401b0381111561551557600080fd5b61552185828601615266565b90969095509350505050565b6000806040838503121561554057600080fd5b823561554b816151e2565b9150602083013561549881615348565b600080600080600060a0868803121561557357600080fd5b853561557e816151e2565b9450602086013561558e816151e2565b9350604086013561559e816151e2565b94979396509394606081013594506080013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156155f4576155f46155b6565b604052919050565b60006001600160401b03821115615615576156156155b6565b50601f01601f191660200190565b6000615636615631846155fc565b6155cc565b905082815283838301111561564a57600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561567457600080fd5b8235915060208301356001600160401b0381111561569157600080fd5b8301601f810185136156a257600080fd5b6156b185823560208401615623565b9150509250929050565b600080600080608085870312156156d157600080fd5b84356156dc816151e2565b935060208501356156ec816151e2565b92506040850135915060608501356001600160401b0381111561570e57600080fd5b8501601f8101871361571f57600080fd5b61572e87823560208401615623565b91505092959194509250565b6000806000806080858703121561575057600080fd5b843561575b816151e2565b9350602085013592506040850135615772816151e2565b9396929550929360600135925050565b6000806040838503121561579557600080fd5b823591506020830135615498816151e2565b600080604083850312156157ba57600080fd5b82356157c5816151e2565b91506020830135615498816151e2565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806157ff57607f821691505b60208210810361581f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f455243333532353a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60008351615879818460208801615166565b64736c6f742f60d81b908301908152835161589b816005840160208801615166565b01600501949350505050565b6000602082840312156158b957600080fd5b81516001600160401b038111156158cf57600080fd5b8201601f810184136158e057600080fd5b80516158ee615631826155fc565b81815285602083850101111561590357600080fd5b611d0b826020830160208601615166565b6001600160a01b0392831681529116602082015260400190565b60208082526026908201527f5346544973737561626c6544656c65676174653a206f6e6c79206973737565206040820152651b585c9ad95d60d21b606082015260800190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0384168152604060208201819052600090611d0b9083018486615974565b6000602082840312156159d457600080fd5b5051919050565b60208152600061181b602083018486615974565b6001600160a01b03968716815294861660208601529290941660408401526060830152608082019290925260a081019190915260c00190565b6001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b60208082526032908201527f455243333532353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b600060208284031215615ab657600080fd5b8151610c63816151e2565b634e487b7160e01b600052601160045260246000fd5b600060018201615ae957615ae9615ac1565b5060010190565b6020808252600a908201526937b7363c9030b236b4b760b11b604082015260600190565b8183823760009101908152919050565b602080825260199082015278115490cccd4c8d4e881a5b9d985b1a59081d1bdad95b881251603a1b604082015260600190565b60008351615b69818460208801615166565b835190830190615b7d818360208801615166565b01949350505050565b60008351615b98818460208801615166565b68636f6e74726163742f60b81b9083019081528351615bbe816009840160208801615166565b01600901949350505050565b818103818111156109b1576109b1615ac1565b808201808211156109b1576109b1615ac1565b602080825260129082015271696e76616c696420756e6465726c79696e6760701b604082015260600190565b60008251615c2e818460208701615166565b9190910192915050565b600060208284031215615c4a57600080fd5b8151610c6381615348565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60018060a01b038616815284602082015283604082015282606082015260a060808201526000615cd360a083018461518a565b979650505050505050565b600060208284031215615cf057600080fd5b8151610c638161511f565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d449083018461518a565b9695505050505050565b80820281158282048414176109b1576109b1615ac1565b600081615d7457615d74615ac1565b506000190190565b601f821115610b8057600081815260208120601f850160051c81016020861015615da35750805b601f850160051c820191505b8181101561377757828155600101615daf565b81516001600160401b03811115615ddb57615ddb6155b6565b615def81615de984546157eb565b84615d7c565b602080601f831160018114615e245760008415615e0c5750858301515b600019600386901b1c1916600185901b178555613777565b600085815260208120601f198616915b82811015615e5357888601518255948401946001909101908401615e34565b5085821015615e715787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe455243333532353a20617070726f76652063616c6c6572206973206e6f74206f0b2aac84f3ec956911fd78eae5311062972ff949f38412e8da39069d9f068cc6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3eff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dce4f48c240d3b994948aa54f3e2f5fca59263dfe1d52b6e4cf39a5d249b5ccb65db1c3d54d13a327abe6187cf7a8328411546c3b743fd98e8447254318d65ab2ca264697066735822122037bceb3b343c67047b07096ffe8900bcaa5da82d23080efc275d6d6b53b2514964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061027a5760003560e01c8062cd01101461027f57806301ffc9a7146102b257806304f3bcec146102e257806306fdde0314610310578063081812fc14610332578063095ea7b31461035257806309c3dd87146103675780630e18b681146103875780630f485c021461039c57806310edd3ae146103af57806318160ddd146103cf57806318f41d2f146103e45780631f3a1272146103f75780632127e6b21461040a57806321f8a7211461042a57806323b872dd1461044a578063263f3e7e1461045d578063267822471461047d5780632af64bd31461049d5780632e3c5536146104b25780632f745c59146104d2578063310ed7f0146104f25780633e7e86691461050557806342842e0e14610527578063466525d01461053a5780634dd18bf51461055a5780634f6ccce71461057a5780634f8a0f831461059a5780634ff7b4eb146105ba57806359c54a7c146105da5780636352211e146105ed57806370a082311461060d578063741853601461062d57806378a8875514610642578063840f71131461066257806389e43fbd146106825780638ba34470146106955780638cb0a511146106aa5780638da5cb5b146106bd57806395d89b41146106dd578063993bef8d146106f25780639bc128bf146107125780639cc7f7081461072b578063a22cb4651461074b578063aa6760601461076b578063b88d4fde1461078b578063c87b56dd1461079e578063cb2ef6f7146107be578063d5d049d1146107f7578063d801892814610817578063e345e0bc14610837578063e8a3d48514610857578063e985e9c51461086c578063ed08fa801461088c578063f851a440146108a1578063ffe9b7e2146108c1575b600080fd5b34801561028b57600080fd5b5061029f61029a3660046150fd565b6108e1565b6040519081526020015b60405180910390f35b3480156102be57600080fd5b506102d26102cd366004615135565b6109b7565b60405190151581526020016102a9565b3480156102ee57600080fd5b5061019154610303906001600160a01b031681565b6040516102a99190615152565b34801561031c57600080fd5b506103256109dc565b6040516102a991906151b6565b34801561033e57600080fd5b5061030361034d3660046151c9565b610a6e565b610365610360366004615202565b610ac0565b005b34801561037357600080fd5b506103256103823660046151c9565b610b85565b34801561039357600080fd5b50610365610c6a565b61029f6103aa36600461522e565b610d22565b3480156103bb57600080fd5b5061029f6103ca3660046152ae565b610d5a565b3480156103db57600080fd5b5060385461029f565b6103656103f2366004615302565b610ed7565b61036561040536600461522e565b610fe7565b34801561041657600080fd5b50610365610425366004615361565b6110bb565b34801561043657600080fd5b506103036104453660046151c9565b61125e565b61036561045836600461543d565b61127a565b34801561046957600080fd5b5061029f6104783660046151c9565b6112ab565b34801561048957600080fd5b50609854610303906001600160a01b031681565b3480156104a957600080fd5b506102d26112f3565b3480156104be57600080fd5b506103656104cd36600461546d565b611407565b3480156104de57600080fd5b5061029f6104ed366004615202565b6114c6565b6103656105003660046154a3565b611554565b34801561051157600080fd5b5060355460405160ff90911681526020016102a9565b61036561053536600461543d565b61156a565b34801561054657600080fd5b506103656105553660046154cf565b611585565b34801561056657600080fd5b506103656105753660046154cf565b611621565b34801561058657600080fd5b5061029f6105953660046151c9565b6116bd565b3480156105a657600080fd5b5061029f6105b53660046151c9565b61174e565b3480156105c657600080fd5b506103256105d53660046154ec565b6117a3565b6103656105e836600461522e565b611823565b3480156105f957600080fd5b506103036106083660046151c9565b61190a565b34801561061957600080fd5b5061029f6106283660046154cf565b61197a565b34801561063957600080fd5b50610365611a02565b34801561064e57600080fd5b5061036561065d36600461552d565b611b28565b34801561066e57600080fd5b50603b54610303906001600160a01b031681565b61029f61069036600461555b565b611c19565b3480156106a157600080fd5b50610303611d14565b6103656106b836600461522e565b611d23565b3480156106c957600080fd5b5060c954610303906001600160a01b031681565b3480156106e957600080fd5b50610325611dca565b3480156106fe57600080fd5b5061029f61070d3660046151c9565b611dd9565b34801561071e57600080fd5b506102275460ff166102d2565b34801561073757600080fd5b5061029f6107463660046151c9565b611e76565b34801561075757600080fd5b5061036561076636600461552d565b611ebe565b34801561077757600080fd5b50610303610786366004615661565b611ec9565b6103656107993660046156bb565b611f07565b3480156107aa57600080fd5b506103256107b93660046151c9565b611f39565b3480156107ca57600080fd5b5060408051808201909152601081526f4f70656e2046756e642053686172657360801b6020820152610325565b34801561080357600080fd5b506103656108123660046150fd565b611fcb565b34801561082357600080fd5b5061036561083236600461573a565b6120f6565b34801561084357600080fd5b5061029f610852366004615782565b6123ce565b34801561086357600080fd5b50610325612402565b34801561087857600080fd5b506102d26108873660046157a7565b6124ef565b34801561089857600080fd5b5060665461029f565b3480156108ad57600080fd5b50609754610303906001600160a01b031681565b3480156108cd57600080fd5b506103656108dc3660046154cf565b612521565b60006108ec8361174e565b821061095d5760405162461bcd60e51b815260206004820152603560248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420746f6b656044820152746e20696e646578206f7574206f6620626f756e647360581b60648201526084015b60405180910390fd5b600083815260676020526040902054606680549091908110610981576109816157d5565b906000526020600020906002020160010182815481106109a3576109a36157d5565b906000526020600020015490505b92915050565b60006001600160e01b03198216631dba0dcf60e11b14806109b157506109b182612560565b6060603380546109eb906157eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a17906157eb565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a7982612602565b600082815260396020526040902054603880549091908110610a9d57610a9d6157d5565b60009182526020909120600460069092020101546001600160a01b031692915050565b6000610acb8261190a565b9050806001600160a01b0316836001600160a01b031603610afe5760405162461bcd60e51b815260040161095490615825565b336001600160a01b0382161480610b1a5750610b1a81336124ef565b610b765760405162461bcd60e51b81526020600482015260396024820152600080516020615e828339815191526044820152781ddb995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b603a1b6064820152608401610954565b610b808383612627565b505050565b60606000610b916126be565b603b549091506001600160a01b0316610bf1576000815111610bc25760405180602001604052806000815250610c63565b80610bcc846126d0565b604051602001610bdd929190615867565b604051602081830303815290604052610c63565b603b54604051633601bfc560e11b8152600481018590526001600160a01b0390911690636c037f8a906024015b600060405180830381865afa158015610c3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c6391908101906158a7565b9392505050565b6098546001600160a01b0316336001600160a01b031614610cc25760405162461bcd60e51b815260206004820152601260248201527137b7363c903832b73234b7339030b236b4b760711b6044820152606401610954565b609754609854604051600080516020615ee283398151915292610cf3926001600160a01b0391821692911690615914565b60405180910390a160988054609780546001600160a01b03199081166001600160a01b03841617909155169055565b6000610d2f338584612762565b610d38846127f2565b9050610d4f8382610d48876112ab565b60006127fc565b610c63848284612941565b6000610d64612c7d565b610d6c612cd8565b6001600160a01b0316336001600160a01b031614610d9c5760405162461bcd60e51b81526004016109549061592e565b610da4611d14565b6001600160a01b031663dae85ba38585856040518463ffffffff1660e01b8152600401610dd39392919061599d565b6020604051808303816000875af1158015610df2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1691906159c2565b9050610e2181612d26565b15610e7f5760405162461bcd60e51b815260206004820152602860248201527f5346544973737561626c6544656c65676174653a20736c6f7420616c72656164604482015267792065786973747360c01b6064820152608401610954565b610e8881612d72565b836001600160a01b0316817f812dafd1bbea8aa1e81f2b03677c72a46b0ef2cb6ddf3b401a553bdb4fce5d8c8585604051610ec49291906159db565b60405180910390a3610c63600161012d55565b610edf612c7d565b610ee7612cd8565b6001600160a01b0316336001600160a01b031614610f1857604051639e0125a960e01b815260040160405180910390fd5b6000610f238361190a565b90506000610f30846112ab565b9050610f3c8484612e2f565b610f44611d14565b6001600160a01b03166389197e238787858589896040518763ffffffff1660e01b8152600401610f79969594939291906159ef565b600060405180830381600087803b158015610f9357600080fd5b505af1158015610fa7573d6000803e3d6000fd5b505050508084600080516020615f2283398151915285604051610fcc91815260200190565b60405180910390a35050610fe1600161012d55565b50505050565b610fef612c7d565b610ff7611d14565b6001600160a01b031663a6a978d8338585856040518563ffffffff1660e01b81526004016110289493929190615a28565b600060405180830381600087803b15801561104257600080fd5b505af1158015611056573d6000803e3d6000fd5b5050505061106b826110653390565b83612e73565b335b6001600160a01b0316837fc030da26557a891f33dbaee473c007cdfa269acb9628d7d12e744ec6923ed2b3836040516110a891815260200190565b60405180910390a3610b80600161012d55565b600054610100900460ff16158080156110db5750600054600160ff909116105b806110fc57506110ea30613060565b1580156110fc575060005460ff166001145b61115f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610954565b6000805460ff191660011790558015611182576000805461ff0019166101001790555b6111fc8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8f018190048102820181019092528d815292508d91508c90819084018382808284376000920191909152508c92508b91508a90508961306f565b610227805460ff19168315151790558015611251576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b600090815261019260205260409020546001600160a01b031690565b61128433826130b6565b6112a05760405162461bcd60e51b815260040161095490615a52565b610b80838383613114565b60006112b682612602565b6000828152603960205260409020546038805490919081106112da576112da6157d5565b9060005260206000209060060201600101549050919050565b6000806112fe61327a565b905060005b81518110156113fe576000828281518110611320576113206157d5565b6020908102919091018101516000818152610192909252604091829020546101915492516321f8a72160e01b8152600481018390529193506001600160a01b039081169216906321f8a72190602401602060405180830381865afa15801561138c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b09190615aa4565b6001600160a01b03161415806113dc5750600081815261019260205260409020546001600160a01b0316155b156113eb576000935050505090565b50806113f681615ad7565b915050611303565b50600191505090565b61140f611d14565b6001600160a01b03166398af7bf9336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052600384900b6044820152606401600060405180830381600087803b15801561147057600080fd5b505af1158015611484573d6000803e3d6000fd5b5050604051600384900b81528492507f991dad0c1df4ada34247a5a6fc7afa81f02f3617b3f5d409b5318435d66f5b8d91506020015b60405180910390a25050565b60006114d18361197a565b821061152a5760405162461bcd60e51b815260206004820152602260248201527f455243333532353a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610954565b6001600160a01b0383166000908152603a602052604090208054839081106109a3576109a36157d5565b61155f338483612762565b610b80838383612941565b610b8083838360405180602001604052806000815250611f07565b6097546001600160a01b0316336001600160a01b0316146115b85760405162461bcd60e51b815260040161095490615af0565b60fb546040517f1eeb545565f5659deaedac206fd7c39c875a55001aba786f2a6b7245a301eaa4916115f7916001600160a01b03909116908490615914565b60405180910390a160fb80546001600160a01b0319166001600160a01b0392909216919091179055565b6097546001600160a01b0316336001600160a01b0316146116545760405162461bcd60e51b815260040161095490615af0565b6098546040517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991611693916001600160a01b03909116908490615914565b60405180910390a1609880546001600160a01b0319166001600160a01b0392909216919091179055565b60006116c860385490565b82106117225760405162461bcd60e51b815260206004820152602360248201527f455243333532353a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610954565b60388281548110611735576117356157d5565b9060005260206000209060060201600001549050919050565b600061175982612d26565b61176557506000919050565b600082815260676020526040902054606680549091908110611789576117896157d5565b600091825260209091206001600290920201015492915050565b60606000806117b0611d14565b6001600160a01b031685856040516117c9929190615b14565b600060405180830381855afa9150503d8060008114611804576040519150601f19603f3d011682016040523d82523d6000602084013e611809565b606091505b5090925090508161181b573d60208201fd5b949350505050565b61182b612c7d565b6102275460ff166118985760405162461bcd60e51b815260206004820152603160248201527f4d756c7469526570617961626c6544656c65676174653a2063616e6e6f7420726044820152706570617920776974682062616c616e636560781b6064820152608401610954565b6118a0611d14565b6001600160a01b0316633b2f4830338585856040518563ffffffff1660e01b81526004016118d19493929190615a28565b600060405180830381600087803b1580156118eb57600080fd5b505af11580156118ff573d6000803e3d6000fd5b5050505061106d3390565b600061191582612602565b600082815260396020526040902054603880549091908110611939576119396157d5565b60009182526020909120600360069092020101546001600160a01b03169050806119755760405162461bcd60e51b815260040161095490615b24565b919050565b60006001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602b60248201527f455243333532353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610954565b506001600160a01b03166000908152603a602052604090205490565b6000611a0c61327a565b905060005b8151811015611b24576000828281518110611a2e57611a2e6157d5565b602090810291909101015161019154604080516305533b0360e51b8152600481018490526024810191909152601f60448201527f4164647265737343616368653a2061646472657373206e6f7420666f756e640060648201529192506000916001600160a01b039091169063aa67606090608401602060405180830381865afa158015611abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae39190615aa4565b6000928352610192602052604090922080546001600160a01b0319166001600160a01b03909316929092179091555080611b1c81615ad7565b915050611a11565b5050565b60c9546001600160a01b03163314611b6f5760405162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b6044820152606401610954565b611b77611d14565b60405163e7e9a78560e01b81526001600160a01b0384811660048301528315156024830152919091169063e7e9a78590604401600060405180830381600087803b158015611bc457600080fd5b505af1158015611bd8573d6000803e3d6000fd5b50505050816001600160a01b03167f98c0c4bde5f642566cdaebfb7cd2cdc72a98bc7f3440e38c19e1d58d92388d34826040516114ba911515815260200190565b6000611c23612c7d565b611c2b612cd8565b6001600160a01b0316336001600160a01b031614611c5b5760405162461bcd60e51b81526004016109549061592e565b611c668484846132d0565b9050611c70611d14565b6001600160a01b03166389197e238787878786886040518763ffffffff1660e01b8152600401611ca5969594939291906159ef565b600060405180830381600087803b158015611cbf57600080fd5b505af1158015611cd3573d6000803e3d6000fd5b505050508281600080516020615f2283398151915284604051611cf891815260200190565b60405180910390a3611d0b600161012d55565b95945050505050565b60fb546001600160a01b031690565b6000611d2e8461190a565b9050806001600160a01b0316836001600160a01b031603611d615760405162461bcd60e51b815260040161095490615825565b611d6b33856130b6565b611dbf5760405162461bcd60e51b81526020600482015260316024820152600080516020615e828339815191526044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610954565b610fe18484846132e8565b6060603480546109eb906157eb565b6000611de460665490565b8210611e4a5760405162461bcd60e51b815260206004820152602f60248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420696e646560448201526e78206f7574206f6620626f756e647360881b6064820152608401610954565b60668281548110611e5d57611e5d6157d5565b9060005260206000209060020201600001549050919050565b6000611e8182612602565b600082815260396020526040902054603880549091908110611ea557611ea56157d5565b9060005260206000209060060201600201549050919050565b611b24338383613420565b600080611ed58461125e565b9050826001600160a01b038216611eff5760405162461bcd60e51b815260040161095491906151b6565b509392505050565b611f1133836130b6565b611f2d5760405162461bcd60e51b815260040161095490615a52565b610fe1848484846134e7565b6060611f4482612602565b6000611f4e6126be565b603b549091506001600160a01b0316611f9a576000815111611f7f5760405180602001604052806000815250610c63565b80611f89846126d0565b604051602001610bdd929190615b57565b603b546040516344a5a61760e11b8152600481018590526001600160a01b039091169063894b4c2e90602401610c1e565b611fd3612c7d565b611fdb612cd8565b6001600160a01b0316336001600160a01b03161461200c57604051639e0125a960e01b815260040160405180910390fd5b6000811561201a5781612023565b61202383611e76565b905061202d611d14565b60405163663f60bd60e11b815260048101859052602481018390526001600160a01b03919091169063cc7ec17a90604401600060405180830381600087803b15801561207857600080fd5b505af115801561208c573d6000803e3d6000fd5b50505050816000036120a6576120a18361355a565b6120b0565b6120b08383613661565b827f98ba6768a6df38155451a706e1f1ffb2dd8ea75a1184c3d45acc3b9586ede6d4826040516120e291815260200190565b60405180910390a250611b24600161012d55565b6120fe612c7d565b600081116121625760405162461bcd60e51b815260206004820152602b60248201527f4d756c7469526570617961626c6544656c65676174653a20636c61696d20766160448201526a6c7565206973207a65726f60a81b6064820152608401610954565b61216c33846130b6565b6121d95760405162461bcd60e51b815260206004820152603860248201527f4d756c7469526570617961626c6544656c65676174653a2063616c6c657220696044820152771cc81b9bdd081bdddb995c881b9bdc88185c1c1c9bdd995960421b6064820152608401610954565b60006121e4846112ab565b905060006121f0611d14565b6001600160a01b03166356b04045866040518263ffffffff1660e01b815260040161221d91815260200190565b602060405180830381865afa15801561223a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225e91906159c2565b9050808311156122bb5760405162461bcd60e51b815260206004820152602260248201527f4d756c7469526570617961626c6544656c65676174653a206f76657220636c61604482015261696d60f01b6064820152608401610954565b6122c485611e76565b83036122d8576122d38561355a565b6122e2565b6122e28584613661565b60006122ec611d14565b604051633cc6cee360e21b815260048101889052602481018590526001600160a01b03878116604483015260648201879052919091169063f31b3b8c906084016020604051808303816000875af115801561234b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236f91906159c2565b905061237c85888361377f565b85876001600160a01b03167f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf7866040516123b891815260200190565b60405180910390a3505050610fe1600161012d55565b60006123d983612602565b5060009182526037602090815260408084206001600160a01b0393909316845291905290205490565b6060600061240e6126be565b603b549091506001600160a01b031661246e57600081511161243f57604051806020016040528060008152506124e9565b806124493061396a565b60405160200161245a929190615b86565b6040516020818303038152906040526124e9565b603b60009054906101000a90046001600160a01b03166001600160a01b031663725fa09c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156124c1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124e991908101906158a7565b91505090565b6001600160a01b039182166000908152603a602090815260408083209390941682526002909201909152205460ff1690565b6097546001600160a01b0316336001600160a01b0316146125545760405162461bcd60e51b815260040161095490615af0565b61255d81613980565b50565b60006001600160e01b031982166301ffc9a760e01b148061259157506001600160e01b03198216630354d60560e61b145b806125ac57506001600160e01b031982166380ac58cd60e01b145b806125c757506001600160e01b031982166370b0048160e11b145b806125e257506001600160e01b0319821663780e9d6360e01b145b806109b157506001600160e01b03198216635b5e139f60e01b1492915050565b61260b81613a3b565b61255d5760405162461bcd60e51b815260040161095490615b24565b60008181526039602052604090205460388054849290811061264b5761264b6157d5565b6000918252602090912060069091020160040180546001600160a01b0319166001600160a01b03928316179055819083166126858261190a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60408051602081019091526000815290565b606060006126dd83613a87565b60010190506000816001600160401b038111156126fc576126fc6155b6565b6040519080825280601f01601f191660200182016040528015612726576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461273057509392505050565b600061276e83856123ce565b905061277a84846130b6565b15801561278957506000198114155b15610fe157818110156127de5760405162461bcd60e51b815260206004820152601f60248201527f455243333532353a20696e73756666696369656e7420616c6c6f77616e6365006044820152606401610954565b610fe183856127ed8585615bca565b6132e8565b60006109b1613b5d565b6001600160a01b03841661285c5760405162461bcd60e51b815260206004820152602160248201527f455243333532353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610954565b826000036128b65760405162461bcd60e51b815260206004820152602160248201527f455243333532353a2063616e6e6f74206d696e74207a65726f20746f6b656e496044820152601960fa1b6064820152608401610954565b6128bf83613a3b565b1561290c5760405162461bcd60e51b815260206004820152601d60248201527f455243333532353a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610954565b61291c6000856000868686613b74565b612927848484613b82565b6129318382613c24565b610fe16000856000868686613c97565b61294a83613a3b565b6129a65760405162461bcd60e51b815260206004820152602760248201527f455243333532353a207472616e736665722066726f6d20696e76616c696420746044820152661bdad95b88125160ca1b6064820152608401610954565b6129af82613a3b565b612a095760405162461bcd60e51b815260206004820152602560248201527f455243333532353a207472616e7366657220746f20696e76616c696420746f6b604482015264195b88125160da1b6064820152608401610954565b600083815260396020526040812054603880549091908110612a2d57612a2d6157d5565b9060005260206000209060060201905060006038603960008681526020019081526020016000205481548110612a6557612a656157d5565b906000526020600020906006020190508282600201541015612adc5760405162461bcd60e51b815260206004820152602a60248201527f455243333532353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610954565b8060010154826001015414612b4a5760405162461bcd60e51b815260206004820152602e60248201527f455243333532353a207472616e7366657220746f20746f6b656e20776974682060448201526d191a5999995c995b9d081cdb1bdd60921b6064820152608401610954565b600380830154908201546001840154612b75926001600160a01b039081169216908890889088613b74565b82826002016000828254612b899190615bca565b9250508190555082816002016000828254612ba49190615bdd565b909155505060405183815284908690600080516020615ea28339815191529060200160405180910390a3600380830154908201546001840154612bf9926001600160a01b039081169216908890889088613c97565b612c1485858560405180602001604052806000815250613d08565b612c765760405162461bcd60e51b815260206004820152602d60248201527f455243333532353a207472616e736665722072656a656374656420627920455260448201526c21999a991aa932b1b2b4bb32b960991b6064820152608401610954565b5050505050565b600261012d5403612cd05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610954565b600261012d55565b6000612d216d13dc195b919d5b9913585c9ad95d60921b6040518060400160405280601481526020017313d194d10e8813585c9ad95d081b9bdd081cd95d60621b815250611ec9565b905090565b606654600090158015906109b15750600082815260676020526040902054606680548492908110612d5957612d596157d5565b9060005260206000209060020201600001541492915050565b612d7b81612d26565b15612ddb5760405162461bcd60e51b815260206004820152602a60248201527f45524333353235536c6f74456e756d657261626c653a20736c6f7420616c72656044820152696164792065786973747360b01b6064820152608401610954565b604080518082018252828152815160008082526020828101909452928201529050612e0581613e84565b81600080600080516020615f0283398151915260405160405180910390a45050565b600161012d55565b6000612e3a8361190a565b90506000612e47846112ab565b9050612e596000836000878588613b74565b612e638484613c24565b610fe16000836000878588613c97565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03841601612f3657326001600160a01b0383161480612eb75750336001600160a01b038316145b612ef55760405162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b6044820152606401610954565b80341015610b805760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b6044820152606401610954565b6000836001600160a01b03163b11612f605760405162461bcd60e51b815260040161095490615bf0565b604080516001600160a01b038481166024830152306044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290871691612fc29190615c1c565b6000604051808303816000865af19150503d8060008114612fff576040519150601f19603f3d011682016040523d82523d6000602084013e613004565b606091505b509150915081801561302e57508051158061302e57508080602001905181019061302e9190615c38565b612c765760405162461bcd60e51b815260206004820152600360248201526229aa2360e91b6044820152606401610954565b6001600160a01b03163b151590565b600054610100900460ff166130965760405162461bcd60e51b815260040161095490615c55565b6130a4868686868686613f09565b6130ad87613fd3565b50505050505050565b6000806130c28361190a565b9050806001600160a01b0316846001600160a01b031614806130e957506130e981856124ef565b8061181b5750836001600160a01b031661310284610a6e565b6001600160a01b031614949350505050565b826001600160a01b03166131278261190a565b6001600160a01b0316146131895760405162461bcd60e51b8152602060048201526024808201527f455243333532353a207472616e736665722066726f6d20696e76616c6964206f6044820152633bb732b960e11b6064820152608401610954565b6001600160a01b0382166131ed5760405162461bcd60e51b815260206004820152602560248201527f455243333532353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610954565b60006131f8826112ab565b9050600061320583611e76565b9050613215858585868686613b74565b613220600084612627565b6132298361401d565b61323385846140c8565b61323d84846141e9565b82846001600160a01b0316866001600160a01b0316600080516020615ec283398151915260405160405180910390a4612c76858585868686613c97565b604080516001808252818301909252606091602080830190803683370190505090506d13dc195b919d5b9913585c9ad95d60921b816000815181106132c1576132c16157d5565b60200260200101818152505090565b60006132da613b5d565b9050610c63848285856127fc565b6001600160a01b0382166133515760405162461bcd60e51b815260206004820152602a60248201527f455243333532353a20617070726f76652076616c756520746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610954565b61335b8284614272565b6133c157600083815260396020526040902054603880549091908110613383576133836157d5565b60009182526020808320600692909202909101600501805460018101825590835291200180546001600160a01b0319166001600160a01b0384161790555b60008381526037602090815260408083206001600160a01b038616808552908352928190208490555183815285917f621b050de0ad08b51d19b48b3e6df75348c4de6bdd93e81b252ca62e28265b1b91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b03160361347e5760405162461bcd60e51b815260206004820152601a60248201527922a921999a991a9d1030b8383937bb32903a379031b0b63632b960311b6044820152606401610954565b6001600160a01b038381166000818152603a602090815260408083209487168084526002909501825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101613413565b6134f2848484613114565b6134fe84848484614345565b610fe15760405162461bcd60e51b815260206004820152602760248201527f455243333532353a207472616e7366657220746f206e6f6e204552433732315260448201526632b1b2b4bb32b960c91b6064820152608401610954565b61356381612602565b600081815260396020526040812054603880549091908110613587576135876157d5565b600091825260208220600360069092020190810154600182015460028301549294506001600160a01b03909116929091906135c790849087818686613b74565b6135d08561401d565b6135da83866140c8565b6135e385614495565b600085600080516020615ea28339815191528360405161360591815260200190565b60405180910390a360008286600080516020615f0283398151915260405160405180910390a460405185906000906001600160a01b03861690600080516020615ec2833981519152908390a4612c768360008760008686613c97565b61366a82612602565b60008281526039602052604081205460388054909190811061368e5761368e6157d5565b600091825260209091206006909102016003810154600182015460028301549293506001600160a01b0390911691848110156137185760405162461bcd60e51b815260206004820152602360248201527f455243333532353a206275726e2076616c756520657863656564732062616c616044820152626e636560e81b6064820152608401610954565b613728836000886000868a613b74565b8484600201600082825461373c9190615bca565b90915550506040518581526000908790600080516020615ea28339815191529060200160405180910390a3613777836000886000868a613c97565b505050505050565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b0384160161384757604080516000808252602082019092526001600160a01b0384169083906040516137ce9190615c1c565b60006040518083038185875af1925050503d806000811461380b576040519150601f19603f3d011682016040523d82523d6000602084013e613810565b606091505b5050905080610fe15760405162461bcd60e51b815260206004820152600360248201526253544560e81b6044820152606401610954565b6000836001600160a01b03163b116138715760405162461bcd60e51b815260040161095490615bf0565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916138cd9190615c1c565b6000604051808303816000865af19150503d806000811461390a576040519150601f19603f3d011682016040523d82523d6000602084013e61390f565b606091505b50915091508180156139395750805115806139395750808060200190518101906139399190615c38565b612c765760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610954565b60606109b16001600160a01b03831660146146a3565b6001600160a01b0381166139d25760405162461bcd60e51b815260206004820152601960248201527804f776e6572206164647265737320636f6e6e6f74206265203603c1b6044820152606401610954565b60c9546040517f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b236491613a11916001600160a01b03909116908490615914565b60405180910390a160c980546001600160a01b0319166001600160a01b0392909216919091179055565b603854600090158015906109b15750600082815260396020526040902054603880548492908110613a6e57613a6e6157d5565b9060005260206000209060060201600001541492915050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613ac65772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613af0576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613b0e57662386f26fc10000830492506010015b6305f5e1008310613b26576305f5e100830492506008015b6127108310613b3a57612710830492506004015b60648310613b4c576064830492506002015b600a83106109b15760010192915050565b6000613b6d603680546001019055565b5060365490565b61377786868686868661483e565b6040805160c081018252838152602080820184905260008284018190526001600160a01b038716606084015260808301819052835181815291820190935260a08201529050613bd081614926565b613bda84846141e9565b60405183906001600160a01b03861690600090600080516020615ec2833981519152908290a481600084600080516020615f0283398151915260405160405180910390a450505050565b600082815260396020526040902054603880548392908110613c4857613c486157d5565b90600052602060002090600602016002016000828254613c689190615bdd565b90915550506040518181528290600090600080516020615ea28339815191529060200160405180910390a35050565b6001600160a01b038616158015613cac575083155b8015613cbf5750613cbd8284614a78565b155b15613cd357613cce8284614b04565b613777565b6001600160a01b038516158015613ce8575082155b8015613cf95750613cf98285614a78565b15613cce57613cce8285614b65565b600080613d148561190a565b9050613d28816001600160a01b0316613060565b15613e78576040516301ffc9a760e01b8152629ce20b60e01b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa925050508015613d93575060408051601f3d908101601f19168201909252613d9091810190615c38565b60015b613dd2573d808015613dc1576040519150601f19603f3d011682016040523d82523d6000602084013e613dc6565b606091505b5060019250505061181b565b8015613e6d57604051629ce20b60e01b81526000906001600160a01b03841690629ce20b90613e0d9033908c908c908c908c90600401615ca0565b6020604051808303816000875af1158015613e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e509190615cde565b6001600160e01b031916629ce20b60e01b14935061181b92505050565b60019250505061181b565b50600195945050505050565b60668054825160009081526067602090815260408220839055600183018455929052825160029091027f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e9435481019182558284015180518594610fe1937f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e943550192019061502a565b600054610100900460ff16613f305760405162461bcd60e51b815260040161095490615c55565b613f3b868686614c49565b613f4481614c7b565b613f4d82614cb4565b613f5683614cfe565b613f5e614d37565b6001600160a01b038316156137775760405163ca5eb5e160e01b81526001600160a01b0384169063ca5eb5e190613f99903090600401615152565b600060405180830381600087803b158015613fb357600080fd5b505af1158015613fc7573d6000803e3d6000fd5b50505050505050505050565b600054610100900460ff16613ffa5760405162461bcd60e51b815260040161095490615c55565b61019180546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260396020526040812054603880549091908110614041576140416157d5565b600091825260208220600560069092020190810154909250905b818110156140b957600083600501828154811061407a5761407a6157d5565b60009182526020808320909101548783526037825260408084206001600160a01b039092168452915281205550806140b181615ad7565b91505061405b565b50610b80600583016000615075565b6000818152603960205260408120546038805490919081106140ec576140ec6157d5565b6000918252602080832060069290920290910160030180546001600160a01b0319166001600160a01b039485161790559184168152603a90915260408120805490919061413b90600190615bca565b90506000826000018281548110614154576141546157d5565b90600052602060002001549050600083600101600086815260200190815260200160002054905081846000018281548110614191576141916157d5565b600091825260208083209091019290925583815260018601909152604080822083905586825281205583548490806141cb576141cb615cfb565b60019003818190600052602060002001600090559055505050505050565b60008181526039602052604090205460388054849290811061420d5761420d6157d5565b6000918252602080832060069290920290910160030180546001600160a01b0319166001600160a01b03948516179055939091168152603a80845260408083208054858552600182810188529285208190559286529082018155825292902090910155565b600081815260396020526040812054603880548392908110614296576142966157d5565b6000918252602082206005600690920201015491505b8181101561433a57600084815260396020526040902054603880546001600160a01b038816929081106142e1576142e16157d5565b90600052602060002090600602016005018281548110614303576143036157d5565b6000918252602090912001546001600160a01b031603614328576001925050506109b1565b8061433281615ad7565b9150506142ac565b506000949350505050565b6000614359846001600160a01b0316613060565b1561448d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614390903390899088908890600401615d11565b6020604051808303816000875af19250505080156143cb575060408051601f3d908101601f191682019092526143c891810190615cde565b60015b614473573d8080156143f9576040519150601f19603f3d011682016040523d82523d6000602084013e6143fe565b606091505b50805160000361446b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610954565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181b565b50600161181b565b6038546000906144a790600190615bca565b600083815260396020526040812054603880549394509092849081106144cf576144cf6157d5565b60009182526020918290206040805160c08101825260069093029091018054835260018101548385015260028101548383015260038101546001600160a01b03908116606085015260048201541660808401526005810180548351818702810187019094528084529394919360a08601939283018282801561457a57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161455c575b50505050508152505090508060388381548110614599576145996157d5565b600091825260209182902083516006909202019081558282015160018201556040830151600282015560608301516003820180546001600160a01b039283166001600160a01b031991821617909155608085015160048401805491909316911617905560a08301518051919261461792600585019290910190615093565b5050815160009081526039602052604080822085905586825281205550603880548061464557614645615cfb565b60008281526020812060066000199093019283020181815560018101829055600281018290556003810180546001600160a01b03199081169091556004820180549091169055906146996005830182615075565b5050905550505050565b606060006146b2836002615d4e565b6146bd906002615bdd565b6001600160401b038111156146d4576146d46155b6565b6040519080825280601f01601f1916602001820160405280156146fe576020820181803683370190505b509050600360fc1b81600081518110614719576147196157d5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614748576147486157d5565b60200101906001600160f81b031916908160001a905350600061476c846002615d4e565b614777906001615bdd565b90505b60018111156147ef576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106147ab576147ab6157d5565b1a60f81b8282815181106147c1576147c16157d5565b60200101906001600160f81b031916908160001a90535060049490941c936147e881615d65565b905061477a565b508315610c635760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610954565b61484c868686868686614d68565b6001600160a01b0386161580159061486c57506001600160a01b03851615155b1561377757614879611d14565b6001600160a01b031663d8e4e1d3836040518263ffffffff1660e01b81526004016148a691815260200190565b6020604051808303816000875af11580156148c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148e99190615c38565b6137775760405162461bcd60e51b815260206004820152600e60248201526d756e7472616e7366657261626c6560901b6044820152606401610954565b603880548251600090815260396020908152604080832084905560018401855593909152835160069092027f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f4561998101928355818501517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619a820155928401517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619b84015560608401517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619c840180546001600160a01b039283166001600160a01b03199182161790915560808601517f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619d8601805491909316911617905560a084015180518594610fe1937f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619e909101920190615093565b600082815260676020526040812054606680548392908110614a9c57614a9c6157d5565b906000526020600020906002020190506000816001018054905011801561181b575060008481526065602090815260408083208684529091529020546001820180548592908110614aef57614aef6157d5565b90600052602060002001541491505092915050565b600082815260676020526040812054606680549091908110614b2857614b286157d5565b6000918252602080832060016002909302018201805496845260658252604080852087865283528420879055918601825590825290209092015550565b600082815260676020526040812054606680549091908110614b8957614b896157d5565b600091825260208220600160029092020181810154909350614bab9190615bca565b90506000826001018281548110614bc457614bc46157d5565b6000918252602080832090910154878352606582526040808420888552909252912054600185018054929350909183919083908110614c0557614c056157d5565b60009182526020808320919091019290925587815260658252604080822085835290925281812083905586815290812055600184018054806141cb576141cb615cfb565b600054610100900460ff16614c705760405162461bcd60e51b815260040161095490615c55565b610b80838383614e97565b600054610100900460ff16614ca25760405162461bcd60e51b815260040161095490615c55565b614cab81614ef0565b61255d33614f17565b603b80546001600160a01b0319166001600160a01b0383169081179091556040517f5252f52e45fc8ee6a7b43cef3645d23e9a470a34182b8b3a12627556635bfc9c90600090a250565b600054610100900460ff16614d255760405162461bcd60e51b815260040161095490615c55565b614d2e33614f17565b61255d81614f85565b600054610100900460ff16614d5e5760405162461bcd60e51b815260040161095490615c55565b614d66614fce565b565b614d76868686868686614ff5565b6001600160a01b038616158015614d8b575083155b15614e0357614d98611d14565b6040516335f28fa560e01b81526004810185905260248101849052604481018390526001600160a01b0391909116906335f28fa590606401600060405180830381600087803b158015614dea57600080fd5b505af1158015614dfe573d6000803e3d6000fd5b505050505b6001600160a01b03861615801590614e1a57508315155b8015614e2e57506001600160a01b03851615155b8015614e3957508215155b1561377757614e46611d14565b6001600160a01b031663302b586a8585614e5f88611e76565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260648101849052608401613f99565b600054610100900460ff16614ebe5760405162461bcd60e51b815260040161095490615c55565b6033614eca8482615dc2565b506034614ed78382615dc2565b506035805460ff191660ff929092169190911790555050565b600054610100900460ff166125545760405162461bcd60e51b815260040161095490615c55565b600054610100900460ff16614f3e5760405162461bcd60e51b815260040161095490615c55565b609780546001600160a01b0319166001600160a01b038316179055604051600080516020615ee283398151915290614f7a906000908490615914565b60405180910390a150565b600054610100900460ff16614fac5760405162461bcd60e51b815260040161095490615c55565b60fb80546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff16612e275760405162461bcd60e51b815260040161095490615c55565b6001600160a01b03861615801561500a575083155b801561501c575061501a82612d26565b155b156137775761377782612d72565b828054828255906000526020600020908101928215615065579160200282015b8281111561506557825182559160200191906001019061504a565b506150719291506150e8565b5090565b508054600082559060005260206000209081019061255d91906150e8565b828054828255906000526020600020908101928215615065579160200282015b8281111561506557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906150b3565b5b8082111561507157600081556001016150e9565b6000806040838503121561511057600080fd5b50508035926020909101359150565b6001600160e01b03198116811461255d57600080fd5b60006020828403121561514757600080fd5b8135610c638161511f565b6001600160a01b0391909116815260200190565b60005b83811015615181578181015183820152602001615169565b50506000910152565b600081518084526151a2816020860160208601615166565b601f01601f19169290920160200192915050565b602081526000610c63602083018461518a565b6000602082840312156151db57600080fd5b5035919050565b6001600160a01b038116811461255d57600080fd5b8035611975816151e2565b6000806040838503121561521557600080fd5b8235615220816151e2565b946020939093013593505050565b60008060006060848603121561524357600080fd5b833592506020840135615255816151e2565b929592945050506040919091013590565b60008083601f84011261527857600080fd5b5081356001600160401b0381111561528f57600080fd5b6020830191508360208285010111156152a757600080fd5b9250929050565b6000806000604084860312156152c357600080fd5b83356152ce816151e2565b925060208401356001600160401b038111156152e957600080fd5b6152f586828701615266565b9497909650939450505050565b6000806000806080858703121561531857600080fd5b8435615323816151e2565b93506020850135615333816151e2565b93969395505050506040820135916060013590565b801515811461255d57600080fd5b803561197581615348565b6000806000806000806000806000806101008b8d03121561538157600080fd5b8a3561538c816151e2565b995060208b01356001600160401b03808211156153a857600080fd5b6153b48e838f01615266565b909b50995060408d01359150808211156153cd57600080fd5b506153da8d828e01615266565b90985096505060608b013560ff811681146153f457600080fd5b945061540260808c016151f7565b935061541060a08c016151f7565b925061541e60c08c016151f7565b915061542c60e08c01615356565b90509295989b9194979a5092959850565b60008060006060848603121561545257600080fd5b833561545d816151e2565b92506020840135615255816151e2565b6000806040838503121561548057600080fd5b8235915060208301358060030b811461549857600080fd5b809150509250929050565b6000806000606084860312156154b857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156154e157600080fd5b8135610c63816151e2565b600080602083850312156154ff57600080fd5b82356001600160401b0381111561551557600080fd5b61552185828601615266565b90969095509350505050565b6000806040838503121561554057600080fd5b823561554b816151e2565b9150602083013561549881615348565b600080600080600060a0868803121561557357600080fd5b853561557e816151e2565b9450602086013561558e816151e2565b9350604086013561559e816151e2565b94979396509394606081013594506080013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156155f4576155f46155b6565b604052919050565b60006001600160401b03821115615615576156156155b6565b50601f01601f191660200190565b6000615636615631846155fc565b6155cc565b905082815283838301111561564a57600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561567457600080fd5b8235915060208301356001600160401b0381111561569157600080fd5b8301601f810185136156a257600080fd5b6156b185823560208401615623565b9150509250929050565b600080600080608085870312156156d157600080fd5b84356156dc816151e2565b935060208501356156ec816151e2565b92506040850135915060608501356001600160401b0381111561570e57600080fd5b8501601f8101871361571f57600080fd5b61572e87823560208401615623565b91505092959194509250565b6000806000806080858703121561575057600080fd5b843561575b816151e2565b9350602085013592506040850135615772816151e2565b9396929550929360600135925050565b6000806040838503121561579557600080fd5b823591506020830135615498816151e2565b600080604083850312156157ba57600080fd5b82356157c5816151e2565b91506020830135615498816151e2565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806157ff57607f821691505b60208210810361581f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f455243333532353a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60008351615879818460208801615166565b64736c6f742f60d81b908301908152835161589b816005840160208801615166565b01600501949350505050565b6000602082840312156158b957600080fd5b81516001600160401b038111156158cf57600080fd5b8201601f810184136158e057600080fd5b80516158ee615631826155fc565b81815285602083850101111561590357600080fd5b611d0b826020830160208601615166565b6001600160a01b0392831681529116602082015260400190565b60208082526026908201527f5346544973737561626c6544656c65676174653a206f6e6c79206973737565206040820152651b585c9ad95d60d21b606082015260800190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0384168152604060208201819052600090611d0b9083018486615974565b6000602082840312156159d457600080fd5b5051919050565b60208152600061181b602083018486615974565b6001600160a01b03968716815294861660208601529290941660408401526060830152608082019290925260a081019190915260c00190565b6001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b60208082526032908201527f455243333532353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b600060208284031215615ab657600080fd5b8151610c63816151e2565b634e487b7160e01b600052601160045260246000fd5b600060018201615ae957615ae9615ac1565b5060010190565b6020808252600a908201526937b7363c9030b236b4b760b11b604082015260600190565b8183823760009101908152919050565b602080825260199082015278115490cccd4c8d4e881a5b9d985b1a59081d1bdad95b881251603a1b604082015260600190565b60008351615b69818460208801615166565b835190830190615b7d818360208801615166565b01949350505050565b60008351615b98818460208801615166565b68636f6e74726163742f60b81b9083019081528351615bbe816009840160208801615166565b01600901949350505050565b818103818111156109b1576109b1615ac1565b808201808211156109b1576109b1615ac1565b602080825260129082015271696e76616c696420756e6465726c79696e6760701b604082015260600190565b60008251615c2e818460208701615166565b9190910192915050565b600060208284031215615c4a57600080fd5b8151610c6381615348565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60018060a01b038616815284602082015283604082015282606082015260a060808201526000615cd360a083018461518a565b979650505050505050565b600060208284031215615cf057600080fd5b8151610c638161511f565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d449083018461518a565b9695505050505050565b80820281158282048414176109b1576109b1615ac1565b600081615d7457615d74615ac1565b506000190190565b601f821115610b8057600081815260208120601f850160051c81016020861015615da35750805b601f850160051c820191505b8181101561377757828155600101615daf565b81516001600160401b03811115615ddb57615ddb6155b6565b615def81615de984546157eb565b84615d7c565b602080601f831160018114615e245760008415615e0c5750858301515b600019600386901b1c1916600185901b178555613777565b600085815260208120601f198616915b82811015615e5357888601518255948401946001909101908401615e34565b5085821015615e715787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe455243333532353a20617070726f76652063616c6c6572206973206e6f74206f0b2aac84f3ec956911fd78eae5311062972ff949f38412e8da39069d9f068cc6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3eff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dce4f48c240d3b994948aa54f3e2f5fca59263dfe1d52b6e4cf39a5d249b5ccb65db1c3d54d13a327abe6187cf7a8328411546c3b743fd98e8447254318d65ab2ca264697066735822122037bceb3b343c67047b07096ffe8900bcaa5da82d23080efc275d6d6b53b2514964736f6c63430008110033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.