ETH Price: $3,355.31 (-8.36%)
 

Overview

Max Total Supply

0 MA

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x1abadff6ce8685a2f43db3739bcbff5d5a89016a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MagicAssets

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-19
*/

// SPDX-License-Identifier: MIT

/*

███╗░░░███╗░█████╗░░██████╗░██╗░█████╗░██╗░░░██╗███████╗██████╗░░██████╗███████╗
████╗░████║██╔══██╗██╔════╝░██║██╔══██╗██║░░░██║██╔════╝██╔══██╗██╔════╝██╔════╝
██╔████╔██║███████║██║░░██╗░██║██║░░╚═╝╚██╗░██╔╝█████╗░░██████╔╝╚█████╗░█████╗░░
██║╚██╔╝██║██╔══██║██║░░╚██╗██║██║░░██╗░╚████╔╝░██╔══╝░░██╔══██╗░╚═══██╗██╔══╝░░
██║░╚═╝░██║██║░░██║╚██████╔╝██║╚█████╔╝░░╚██╔╝░░███████╗██║░░██║██████╔╝███████╗
╚═╝░░░░░╚═╝╚═╝░░╚═╝░╚═════╝░╚═╝░╚════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝

*/

pragma solidity ^0.8.18;



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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}




interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}
/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}
/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

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

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

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

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

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

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}
contract Oracle {
    address admin;
    uint public rand;
    constructor(uint _rand)  {
        admin = msg.sender;
        rand = _rand;
    }

    function createrandomness(uint _rand) external {
        require(msg.sender == admin);
        rand = _rand;
    }
}


contract MagicAssets is ERC1155, AccessControl, ERC1155Burnable,ERC1155Supply,ReentrancyGuard {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    Oracle private oracle;
    
    string public name = "Magic Assets";
    string public symbol = "MA";
    uint public UnstakePen = 5;
    address payable private Wallet_Burn = payable(0x000000000000000000000000000000000000dEaD); 
    uint public CombineshardsMultiplier = 50;
    uint256 public accPointsperShare;
    uint256 public timePoolLastUpdate;
    uint256 public PoolPointsMulti = 1; 
    uint256 public PoolFee = 50;
    uint256 public totalnfts = 0;
    uint256 public totaltomint = 2000;
    uint256 public MINT_PRICE = 1000000*1e18;
    IERC20 public Orb;
    uint256 nonce;
    
    constructor(address _Orb, address oracleaddress) ERC1155("https://gateway.pinata.cloud/ipfs/QmYmBh6t3Sxx4ksSeNTekocYzccKVgr1Dd6mq84DMzprGy/{id}.json") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
        Orb = IERC20(_Orb);
        oracle = Oracle(oracleaddress);
    }
    
    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        override(ERC1155, ERC1155Supply)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

     function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    event _Combineresult (
        address indexed reciever,
        uint256 indexed tokenId
     );

    struct Staker { 
    uint256 initialtimestamp;
    uint256 rewardDebt;
    uint256 points;
    uint256 staked;
    }

    mapping (address => Staker) public Stakers;
    
    
    function setURI(string memory newuri) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _setURI(newuri);
    }
    
    function mintMagicAssets(address account, uint256 id, uint256 amount) external onlyRole(MINTER_ROLE) {
        _mint(account, id, amount, "");
    }   
    
    function mintMagicAssetsBanch(address account, uint256[] memory ids, uint256[] memory amounts) external onlyRole(MINTER_ROLE) {
       for(uint i=0;i<ids.length;i++){
        _mint(account, ids[i], amounts[i], "");
       }
    }   
    
    function burnMagicAssetsBanch(address account, uint256[] memory ids, uint256[] memory amounts) external onlyRole(MINTER_ROLE) {
       for(uint i=0;i<ids.length;i++){
       _burn(account,ids[i],amounts[i]);
       }
    }   

    function OpenMagicBox(uint256 amount) public {   
        require((totalnfts + amount) <= totaltomint, "All Minted");
        uint256 TotalPirce = amount.mul(MINT_PRICE);
        require(Orb.balanceOf(msg.sender) >= TotalPirce, "Not enough Orb tokens");
        uint256 Poolamount = TotalPirce.mul(PoolFee).div(100);
        uint256 Burnamount = TotalPirce - Poolamount;
        nonce ++;
        uint256 rand;
        uint[] memory Idamount = new uint[](5);
        for (uint i=0;i<amount;i++){ 
        rand = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(),rand,i, block.timestamp, msg.sender)))%100;
         if (rand >=0 && rand <=53) {
        Idamount[0] ++;
        }
        if (rand >=54 && rand <=79) {
        Idamount[1] ++;
        }
        if (rand >=80 && rand <=93) {
        Idamount[2] ++;
        }
        if (rand >=94 && rand <=98) {
        Idamount[3] ++;
        }
         if (rand == 99) {
        Idamount[4] ++;
        }
        }
        uint len;
        for (uint y=0;y<5;y++){
            if(Idamount[y]>0){
                len++;
            }
        }
        uint[] memory ids = new uint[](len);
        uint[] memory idamounts = new uint[](len);
        uint counter;
        for (uint z=0;z<5;z++){
            if(Idamount[z]>0){
               ids[counter] = z;
               idamounts[counter] = Idamount[z]; 
               counter ++;
            }
        }
        totalnfts = totalnfts + amount;
        Orb.safeTransferFrom(msg.sender,Wallet_Burn, Burnamount);
        Orb.safeTransferFrom(msg.sender,address(Orb), Poolamount);
        _mintBatch(msg.sender,ids,idamounts,"");
    }
    
   function changeavailableNFTs(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) {
       totaltomint = amount;
   }
 
    function setMintPrice(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) {
        MINT_PRICE = amount;
    }

    function setCombineshardsMultiplier(uint amount) public onlyRole(DEFAULT_ADMIN_ROLE) {
        CombineshardsMultiplier = amount;
    }

    function changeMintToken(address newtoken) public onlyRole(DEFAULT_ADMIN_ROLE) {
        Orb = IERC20(newtoken);
    }
    
    function changePoolFee(uint256 newPoolFee) public onlyRole(DEFAULT_ADMIN_ROLE) {
        PoolFee = newPoolFee;
    }

    function changeUnstakePen(uint256 newUnstakePen) public onlyRole(DEFAULT_ADMIN_ROLE) {
        UnstakePen = newUnstakePen;
    }

    function changePointsMulti(uint256 _PoolPointsMulti) public onlyRole(DEFAULT_ADMIN_ROLE) {
        updatePool();
        PoolPointsMulti = _PoolPointsMulti;
    }

    function combine(uint256 id,uint packOfMagicShards) public {
        require (packOfMagicShards < 5);
        require (id<4, "Can't use Sun Runes");
        require (balanceOf(msg.sender,id) >= 5, "not enough NFTs");
        
        uint256 rand = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(), block.timestamp, msg.sender)))%100;
        
        uint amountOfMagicShards = packOfMagicShards.mul(CombineshardsMultiplier);
        uint boost = (packOfMagicShards.mul(20)).add(20);

        uint chanceOf2tiersup = boost;

        if (id<3){ 

          if (rand >= chanceOf2tiersup) {
           _burn(msg.sender,id,5);
           _burn(msg.sender,5,amountOfMagicShards);
           _mint(msg.sender,id+1,1,"");
           emit _Combineresult(
             msg.sender,
             id+1
           );
          }

          if (rand < chanceOf2tiersup) {
           _burn(msg.sender,id,5);
           _burn(msg.sender,5,amountOfMagicShards);
           _mint(msg.sender,id+2,1,"");
           emit _Combineresult(
             msg.sender,
             id+2
           );
          }

        }

        if (id==3) {
           _burn(msg.sender,id,5);
           _mint(msg.sender,id+1,1,"");
           emit _Combineresult(
             msg.sender,
             id+1
           );
        }
       
    }
    
    uint256 PointsPerMagicShard = 500000000000;

    function Change_PointsPerMagicShard (uint256 new_PointsPerMagicShard) external onlyRole(DEFAULT_ADMIN_ROLE) {
    PointsPerMagicShard = new_PointsPerMagicShard;
    }

    function deposit (uint256 amount) public nonReentrant{
        require(Orb.balanceOf(msg.sender)>=amount);
        Staker storage staker = Stakers[msg.sender];
        claim_magicshards();
        
        
        staker.initialtimestamp = block.timestamp;
        
        staker.staked = staker.staked.add(amount);
        
        staker.rewardDebt = accPointsperShare * staker.staked / 1e18; 
        
        Orb.safeTransferFrom(msg.sender,address(this),amount);
    }
    
    function withdraw (uint256 amount) public nonReentrant{
         Staker storage staker = Stakers[msg.sender];
         require (staker.staked>=amount);

         claim_magicshards();
         staker.staked = staker.staked - amount;
         staker.rewardDebt = accPointsperShare * staker.staked / 1e18; 
         
         uint256 amounttowithdraw = amount;
         uint256 timeStaked = block.timestamp - staker.initialtimestamp;
         if (timeStaked < 30 days && UnstakePen > 0){
          uint256 penalty = amount.mul(UnstakePen).div(100);
          uint256 amountforContract = penalty.div(2);
          uint256 amountforBurn = penalty.sub(amountforContract);
          amounttowithdraw = amount.sub(penalty);
          Orb.safeTransfer(address(Orb), amountforContract);
          Orb.safeTransfer(Wallet_Burn, amountforBurn);
         }
         Orb.safeTransfer(msg.sender, amounttowithdraw);
    }
    
    function claim_magicshards() public {
         updatePool();
         Staker storage staker = Stakers[msg.sender];
         uint256 newPointsForUser = (accPointsperShare * staker.staked / 1e18) - staker.rewardDebt;
         if (newPointsForUser == 0) {
            staker.rewardDebt = accPointsperShare * staker.staked / 1e18; 
            return;
        }
        staker.rewardDebt = accPointsperShare * staker.staked / 1e18;   
        uint256 userTotalPoints = staker.points + newPointsForUser;
        if (userTotalPoints < PointsPerMagicShard){
             staker.points = userTotalPoints;
             return;
        }

        uint magicshards = userTotalPoints.div(PointsPerMagicShard);

         staker.points = userTotalPoints.mod(PointsPerMagicShard);

         _mint(msg.sender,5,magicshards,"");   
    }
    function updatePool () public {
        if (block.timestamp <= timePoolLastUpdate){
            return;
        }
        uint256 TotalOrbBalance = Orb.balanceOf(address(this));
        if (TotalOrbBalance == 0) {
            timePoolLastUpdate = block.timestamp; 
            return;
        }
        uint256 newPointsToReward = (block.timestamp.sub(timePoolLastUpdate)).mul(PoolPointsMulti); 
        timePoolLastUpdate = block.timestamp;  
        accPointsperShare = accPointsperShare + newPointsToReward;  
    }

    function checkpendingpoints () public view returns(uint256) {
        Staker storage staker = Stakers[msg.sender];
        uint256 newPointsToReward = (block.timestamp.sub(timePoolLastUpdate)).mul(PoolPointsMulti); 
        uint256 newaccPointsPerShare = accPointsperShare + newPointsToReward; 
        uint256 newPointsForUser = (newaccPointsPerShare * staker.staked / 1e18) - staker.rewardDebt;
        uint256 pending_reward = staker.points + newPointsForUser;
        return  pending_reward;
    }

    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4) {
        return bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"));
    }
  
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_Orb","type":"address"},{"internalType":"address","name":"oracleaddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_Combineresult","type":"event"},{"inputs":[{"internalType":"uint256","name":"new_PointsPerMagicShard","type":"uint256"}],"name":"Change_PointsPerMagicShard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CombineshardsMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OpenMagicBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Orb","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PoolPointsMulti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Stakers","outputs":[{"internalType":"uint256","name":"initialtimestamp","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"staked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UnstakePen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accPointsperShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnMagicAssetsBanch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtoken","type":"address"}],"name":"changeMintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolPointsMulti","type":"uint256"}],"name":"changePointsMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPoolFee","type":"uint256"}],"name":"changePoolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newUnstakePen","type":"uint256"}],"name":"changeUnstakePen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeavailableNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkpendingpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim_magicshards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"packOfMagicShards","type":"uint256"}],"name":"combine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMagicAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintMagicAssetsBanch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setCombineshardsMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timePoolLastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalnfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totaltomint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600c60809081526b4d616769632041737365747360a01b60a0526007906200002d9082620002c2565b506040805180820190915260028152614d4160f01b6020820152600890620000569082620002c2565b506005600955600a80546001600160a01b03191661dead1790556032600b8190556001600e55600f5560006010556107d060115569d3c21bcecceda100000060125564746a528800601655348015620000ae57600080fd5b506040516200420638038062004206833981016040819052620000d191620003ab565b6040518060800160405280605a8152602001620041ac605a9139620000f68162000167565b5060016005556200010960003362000179565b620001357f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000179565b601380546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055620003e3565b6002620001758282620002c2565b5050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16620001755760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001d93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024857607f821691505b6020821081036200026957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002bd57600081815260208120601f850160051c81016020861015620002985750805b601f850160051c820191505b81811015620002b957828155600101620002a4565b5050505b505050565b81516001600160401b03811115620002de57620002de6200021d565b620002f681620002ef845462000233565b846200026f565b602080601f8311600181146200032e5760008415620003155750858301515b600019600386901b1c1916600185901b178555620002b9565b600085815260208120601f198616915b828110156200035f578886015182559484019460019091019084016200033e565b50858210156200037e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b0381168114620003a657600080fd5b919050565b60008060408385031215620003bf57600080fd5b620003ca836200038e565b9150620003da602084016200038e565b90509250929050565b613db980620003f36000396000f3fe608060405234801561001057600080fd5b506004361061030b5760003560e01c8063997ff2e91161019d578063ce3e9493116100e9578063ede85eb7116100a2578063f4a0a5281161007c578063f4a0a5281461073d578063f5298aca14610750578063f7e8a38514610763578063ffc3fddd1461076c57600080fd5b8063ede85eb714610683578063f23a6e61146106d8578063f242432a1461072a57600080fd5b8063ce3e9493146105fb578063d53913931461060e578063d547741f14610623578063e1c5af5b14610636578063e3161ddd1461063f578063e985e9c51461064757600080fd5b8063b6b55f2511610156578063bcfedd7011610130578063bcfedd70146105b6578063bd85b039146105bf578063c002d23d146105df578063ccf0b4a6146105e857600080fd5b8063b6b55f2514610587578063b6e760421461059a578063b7dd214f146105ad57600080fd5b8063997ff2e91461052a578063a15693a01461053d578063a217fddf14610546578063a22cb4651461054e578063a5fc441114610561578063a89940671461057457600080fd5b80634e1273f41161025c57806379db1ef4116102155780638a50fecb116101ef5780638a50fecb146104f357806391d148541461050657806391f40fd61461051957806395d89b411461052257600080fd5b806379db1ef4146104c457806381ce6637146104cd5780638206dede146104e057600080fd5b80634e1273f4146104295780634f558e7914610449578063646745b01461046b5780636b20c454146104735780636f41153514610486578063784bdab4146104b157600080fd5b8063248a9ca3116102c95780632f2ff15d116102a35780632f2ff15d146103f2578063344506151461040557806336568abe1461040d57806346e8bbe51461042057600080fd5b8063248a9ca3146103a95780632e1a7d4d146103cc5780632eb2c2d6146103df57600080fd5b8062fdd58e1461031057806301ffc9a71461033657806302fe53051461035957806306fdde031461036e5780630e89341c146103835780631fdd89a814610396575b600080fd5b61032361031e366004613012565b61077f565b6040519081526020015b60405180910390f35b610349610344366004613052565b610818565b604051901515815260200161032d565b61036c61036736600461310e565b610823565b005b61037661083b565b60405161032d91906131a6565b6103766103913660046131b9565b6108c9565b61036c6103a43660046131b9565b61095d565b6103236103b73660046131b9565b60009081526003602052604090206001015490565b61036c6103da3660046131b9565b610ef9565b61036c6103ed366004613286565b611082565b61036c61040036600461332f565b611119565b61036c611143565b61036c61041b36600461332f565b611279565b610323600b5481565b61043c61043736600461335b565b6112f3565b60405161032d9190613460565b6103496104573660046131b9565b600090815260046020526040902054151590565b61032361141c565b61036c610481366004613473565b6114ae565b601354610499906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b61036c6104bf3660046134e6565b6114f1565b610323600d5481565b61036c6104db366004613473565b61151f565b61036c6104ee3660046131b9565b611592565b61036c610501366004613501565b6115a3565b61034961051436600461332f565b611898565b61032360095481565b6103766118c3565b61036c6105383660046131b9565b6118d0565b610323600e5481565b610323600081565b61036c61055c366004613531565b6118e1565b61036c61056f3660046131b9565b6118ec565b61036c6105823660046131b9565b611905565b61036c6105953660046131b9565b611916565b61036c6105a8366004613568565b611a5a565b61032360115481565b61032360105481565b6103236105cd3660046131b9565b60009081526004602052604090205490565b61032360125481565b61036c6105f63660046131b9565b611a8d565b61036c610609366004613473565b611a9e565b610323600080516020613d6483398151915281565b61036c61063136600461332f565b611b21565b610323600f5481565b61036c611b46565b61034961065536600461359b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6106b86106913660046134e6565b60156020526000908152604090208054600182015460028301546003909301549192909184565b60408051948552602085019390935291830152606082015260800161032d565b6107116106e63660046135c5565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b0319909116815260200161032d565b61036c61073836600461366a565b611c08565b61036c61074b3660046131b9565b611c4d565b61036c61075e366004613568565b611c5e565b610323600c5481565b61036c61077a3660046131b9565b611ca1565b60006001600160a01b0383166107ef5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b600061081282611cb2565b600061082e81611cd7565b61083782611ce4565b5050565b60078054610848906136ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610874906136ce565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b505050505081565b6060600280546108d8906136ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610904906136ce565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b50505050509050919050565b6011548160105461096e919061371e565b11156109a95760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016107e6565b60006109c060125483611cf090919063ffffffff16565b6013546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190613731565b1015610a775760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204f726220746f6b656e7360581b60448201526064016107e6565b6000610a996064610a93600f5485611cf090919063ffffffff16565b90611d03565b90506000610aa7828461374a565b601480549192506000610ab98361375d565b909155505060408051600580825260c082019092526000918291906020820160a08036833701905050905060005b86811015610d075760145460065460408051631d9ee53b60e11b81529051606493926001600160a01b031691633b3dca769160048083019260209291908290030181865afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190613731565b6040805160208101939093528201526060808201869052608082018490524260a083015233901b6bffffffffffffffffffffffff191660c082015260d4016040516020818303038152906040528051906020012060001c610bc2919061378c565b925060358311610bf85781600081518110610bdf57610bdf6137a0565b602002602001018051809190610bf49061375d565b9052505b60368310158015610c0a5750604f8311155b15610c3b5781600181518110610c2257610c226137a0565b602002602001018051809190610c379061375d565b9052505b60508310158015610c4d5750605d8311155b15610c7e5781600281518110610c6557610c656137a0565b602002602001018051809190610c7a9061375d565b9052505b605e8310158015610c90575060628311155b15610cc15781600381518110610ca857610ca86137a0565b602002602001018051809190610cbd9061375d565b9052505b82606303610cf55781600481518110610cdc57610cdc6137a0565b602002602001018051809190610cf19061375d565b9052505b80610cff8161375d565b915050610ae7565b506000805b6005811015610d57576000838281518110610d2957610d296137a0565b60200260200101511115610d455781610d418161375d565b9250505b80610d4f8161375d565b915050610d0c565b506000816001600160401b03811115610d7257610d7261306f565b604051908082528060200260200182016040528015610d9b578160200160208202803683370190505b5090506000826001600160401b03811115610db857610db861306f565b604051908082528060200260200182016040528015610de1578160200160208202803683370190505b5090506000805b6005811015610e89576000868281518110610e0557610e056137a0565b60200260200101511115610e775780848381518110610e2657610e266137a0565b602002602001018181525050858181518110610e4457610e446137a0565b6020026020010151838381518110610e5e57610e5e6137a0565b602090810291909101015281610e738161375d565b9250505b80610e818161375d565b915050610de8565b5089601054610e98919061371e565b601055600a54601354610eba916001600160a01b03918216913391168a611d0f565b601354610ed2906001600160a01b031633818b611d0f565b610eed33848460405180602001604052806000815250611d7a565b50505050505050505050565b600260055403610f4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e6565b60026005553360009081526015602052604090206003810154821115610f7057600080fd5b610f78611143565b818160030154610f88919061374a565b60038201819055600c54670de0b6b3a764000091610fa5916137b6565b610faf91906137cd565b600182015580548290600090610fc5904261374a565b905062278d0081108015610fdb57506000600954115b15611060576000610ffc6064610a9360095488611cf090919063ffffffff16565b9050600061100b826002611d03565b905060006110198383611ed4565b90506110258784611ed4565b60135490955061103f906001600160a01b03168084611ee0565b600a5460135461105c916001600160a01b03918216911683611ee0565b5050505b601354611077906001600160a01b03163384611ee0565b505060016005555050565b6001600160a01b03851633148061109e575061109e8533610655565b6111055760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107e6565b6111128585858585611f10565b5050505050565b60008281526003602052604090206001015461113481611cd7565b61113e83836120b2565b505050565b61114b611b46565b33600090815260156020526040812060018101546003820154600c54929392670de0b6b3a76400009161117d916137b6565b61118791906137cd565b611191919061374a565b9050806000036111cc57670de0b6b3a76400008260030154600c546111b691906137b6565b6111c091906137cd565b82600101819055505050565b670de0b6b3a76400008260030154600c546111e791906137b6565b6111f191906137cd565b6001830155600282015460009061120990839061371e565b90506016548110156112215760029092019190915550565b600061123860165483611d0390919063ffffffff16565b905061124f6016548361213890919063ffffffff16565b84600201819055506112733360058360405180602001604052806000815250612144565b50505050565b6001600160a01b03811633146112e95760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107e6565b610837828261222d565b606081518351146113585760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107e6565b600083516001600160401b038111156113735761137361306f565b60405190808252806020026020018201604052801561139c578160200160208202803683370190505b50905060005b8451811015611414576113e78582815181106113c0576113c06137a0565b60200260200101518583815181106113da576113da6137a0565b602002602001015161077f565b8282815181106113f9576113f96137a0565b602090810291909101015261140d8161375d565b90506113a2565b509392505050565b336000908152601560205260408120600e54600d54839161144891611442904290611ed4565b90611cf0565b9050600081600c5461145a919061371e565b905060008360010154670de0b6b3a764000085600301548461147c91906137b6565b61148691906137cd565b611490919061374a565b905060008185600201546114a4919061371e565b9695505050505050565b6001600160a01b0383163314806114ca57506114ca8333610655565b6114e65760405162461bcd60e51b81526004016107e6906137e1565b61113e838383612294565b60006114fc81611cd7565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613d6483398151915261153781611cd7565b60005b83518110156111125761158085858381518110611559576115596137a0565b6020026020010151858481518110611573576115736137a0565b6020026020010151612430565b8061158a8161375d565b91505061153a565b600061159d81611cd7565b50601155565b600581106115b057600080fd5b600482106115f65760405162461bcd60e51b815260206004820152601360248201527243616e2774207573652053756e2052756e657360681b60448201526064016107e6565b6005611602338461077f565b10156116425760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016107e6565b60006064601454600660009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b8152600401602060405180830381865afa15801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c09190613731565b6040805160208101939093528201524260608083019190915233901b6bffffffffffffffffffffffff191660808201526094016040516020818303038152906040528051906020012060001c611716919061378c565b9050600061172f600b5484611cf090919063ffffffff16565b9050600061174860146117428682611cf0565b90612548565b9050806003861015611836578084106117d05761176733876005612430565b61177333600585612430565b6117993361178288600161371e565b600160405180602001604052806000815250612144565b6117a486600161371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b80841015611836576117e433876005612430565b6117f033600585612430565b6117ff3361178288600261371e565b61180a86600261371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b856003036118905761184a33876005612430565b6118593361178288600161371e565b61186486600161371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60088054610848906136ce565b60006118db81611cd7565b50600955565b610837338383612554565b60006118f781611cd7565b6118ff611b46565b50600e55565b600061191081611cd7565b50600b55565b6002600554036119685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e6565b60026005556013546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa1580156119b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d99190613731565b10156119e457600080fd5b3360009081526015602052604090206119fb611143565b4281556003810154611a0d9083612548565b60038201819055600c54670de0b6b3a764000091611a2a916137b6565b611a3491906137cd565b6001820155601354611a51906001600160a01b0316333085611d0f565b50506001600555565b600080516020613d64833981519152611a7281611cd7565b61127384848460405180602001604052806000815250612144565b6000611a9881611cd7565b50601655565b600080516020613d64833981519152611ab681611cd7565b60005b835181101561111257611b0f85858381518110611ad857611ad86137a0565b6020026020010151858481518110611af257611af26137a0565b602002602001015160405180602001604052806000815250612144565b80611b198161375d565b915050611ab9565b600082815260036020526040902060010154611b3c81611cd7565b61113e838361222d565b600d544211611b5157565b6013546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbe9190613731565b905080600003611bcf575042600d55565b6000611bec600e54611442600d5442611ed490919063ffffffff16565b42600d55600c54909150611c0190829061371e565b600c555050565b6001600160a01b038516331480611c245750611c248533610655565b611c405760405162461bcd60e51b81526004016107e6906137e1565b6111128585858585612634565b6000611c5881611cd7565b50601255565b6001600160a01b038316331480611c7a5750611c7a8333610655565b611c965760405162461bcd60e51b81526004016107e6906137e1565b61113e838383612430565b6000611cac81611cd7565b50600f55565b60006001600160e01b03198216637965db0b60e01b148061081257506108128261276c565b611ce181336127bc565b50565b60026108378282613870565b6000611cfc82846137b6565b9392505050565b6000611cfc82846137cd565b6040516001600160a01b03808516602483015283166044820152606481018290526112739085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612820565b6001600160a01b038416611da05760405162461bcd60e51b81526004016107e69061392f565b8151835114611dc15760405162461bcd60e51b81526004016107e690613970565b33611dd1816000878787876128f2565b60005b8451811015611e6c57838181518110611def57611def6137a0565b6020026020010151600080878481518110611e0c57611e0c6137a0565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611e54919061371e565b90915550819050611e648161375d565b915050611dd4565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ebd9291906139b8565b60405180910390a461111281600087878787612900565b6000611cfc828461374a565b6040516001600160a01b03831660248201526044810182905261113e90849063a9059cbb60e01b90606401611d43565b8151835114611f315760405162461bcd60e51b81526004016107e690613970565b6001600160a01b038416611f575760405162461bcd60e51b81526004016107e6906139e6565b33611f668187878787876128f2565b60005b845181101561204c576000858281518110611f8657611f866137a0565b602002602001015190506000858381518110611fa457611fa46137a0565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ff45760405162461bcd60e51b81526004016107e690613a2b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061203190849061371e565b92505081905550505050806120459061375d565b9050611f69565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161209c9291906139b8565b60405180910390a4611890818787878787612900565b6120bc8282611898565b6108375760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556120f43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611cfc828461378c565b6001600160a01b03841661216a5760405162461bcd60e51b81526004016107e69061392f565b33600061217685612a5b565b9050600061218385612a5b565b9050612194836000898585896128f2565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906121c490849061371e565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461222483600089898989612aa6565b50505050505050565b6122378282611898565b156108375760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0383166122ba5760405162461bcd60e51b81526004016107e690613a75565b80518251146122db5760405162461bcd60e51b81526004016107e690613970565b60003390506122fe818560008686604051806020016040528060008152506128f2565b60005b83518110156123c357600084828151811061231e5761231e6137a0565b60200260200101519050600084838151811061233c5761233c6137a0565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561238c5760405162461bcd60e51b81526004016107e690613ab8565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806123bb8161375d565b915050612301565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124149291906139b8565b60405180910390a4604080516020810190915260009052611273565b6001600160a01b0383166124565760405162461bcd60e51b81526004016107e690613a75565b33600061246284612a5b565b9050600061246f84612a5b565b905061248f838760008585604051806020016040528060008152506128f2565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156124d05760405162461bcd60e51b81526004016107e690613ab8565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052612224565b6000611cfc828461371e565b816001600160a01b0316836001600160a01b0316036125c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107e6565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661265a5760405162461bcd60e51b81526004016107e6906139e6565b33600061266685612a5b565b9050600061267385612a5b565b90506126838389898585896128f2565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156126c45760405162461bcd60e51b81526004016107e690613a2b565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061270190849061371e565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612761848a8a8a8a8a612aa6565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061279d57506001600160e01b031982166303a24d0760e21b145b8061081257506301ffc9a760e01b6001600160e01b0319831614610812565b6127c68282611898565b610837576127de816001600160a01b03166014612b61565b6127e9836020612b61565b6040516020016127fa929190613afc565b60408051601f198184030181529082905262461bcd60e51b82526107e6916004016131a6565b6000612875826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cfc9092919063ffffffff16565b80519091501561113e57808060200190518101906128939190613b71565b61113e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107e6565b611890868686868686612d13565b6001600160a01b0384163b156118905760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906129449089908990889088908890600401613b8e565b6020604051808303816000875af192505050801561297f575060408051601f3d908101601f1916820190925261297c91810190613bec565b60015b612a2b5761298b613c09565b806308c379a0036129c4575061299f613c25565b806129aa57506129c6565b8060405162461bcd60e51b81526004016107e691906131a6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107e6565b6001600160e01b0319811663bc197c8160e01b146122245760405162461bcd60e51b81526004016107e690613cae565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a9557612a956137a0565b602090810291909101015292915050565b6001600160a01b0384163b156118905760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612aea9089908990889088908890600401613cf6565b6020604051808303816000875af1925050508015612b25575060408051601f3d908101601f19168201909252612b2291810190613bec565b60015b612b315761298b613c09565b6001600160e01b0319811663f23a6e6160e01b146122245760405162461bcd60e51b81526004016107e690613cae565b60606000612b708360026137b6565b612b7b90600261371e565b6001600160401b03811115612b9257612b9261306f565b6040519080825280601f01601f191660200182016040528015612bbc576020820181803683370190505b509050600360fc1b81600081518110612bd757612bd76137a0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c0657612c066137a0565b60200101906001600160f81b031916908160001a9053506000612c2a8460026137b6565b612c3590600161371e565b90505b6001811115612cad576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c6957612c696137a0565b1a60f81b828281518110612c7f57612c7f6137a0565b60200101906001600160f81b031916908160001a90535060049490941c93612ca681613d30565b9050612c38565b508315611cfc5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107e6565b6060612d0b8484600085612e8c565b949350505050565b6001600160a01b038516612d9a5760005b8351811015612d9857828181518110612d3f57612d3f6137a0565b602002602001015160046000868481518110612d5d57612d5d6137a0565b602002602001015181526020019081526020016000206000828254612d82919061371e565b90915550612d9190508161375d565b9050612d24565b505b6001600160a01b0384166118905760005b8351811015612224576000848281518110612dc857612dc86137a0565b602002602001015190506000848381518110612de657612de66137a0565b6020026020010151905060006004600084815260200190815260200160002054905081811015612e695760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016107e6565b60009283526004602052604090922091039055612e858161375d565b9050612dab565b606082471015612eed5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107e6565b6001600160a01b0385163b612f445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107e6565b600080866001600160a01b03168587604051612f609190613d47565b60006040518083038185875af1925050503d8060008114612f9d576040519150601f19603f3d011682016040523d82523d6000602084013e612fa2565b606091505b5091509150612fb2828286612fbd565b979650505050505050565b60608315612fcc575081611cfc565b825115612fdc5782518084602001fd5b8160405162461bcd60e51b81526004016107e691906131a6565b80356001600160a01b038116811461300d57600080fd5b919050565b6000806040838503121561302557600080fd5b61302e83612ff6565b946020939093013593505050565b6001600160e01b031981168114611ce157600080fd5b60006020828403121561306457600080fd5b8135611cfc8161303c565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130aa576130aa61306f565b6040525050565b60006001600160401b038311156130ca576130ca61306f565b6040516130e1601f8501601f191660200182613085565b8091508381528484840111156130f657600080fd5b83836020830137600060208583010152509392505050565b60006020828403121561312057600080fd5b81356001600160401b0381111561313657600080fd5b8201601f8101841361314757600080fd5b612d0b848235602084016130b1565b60005b83811015613171578181015183820152602001613159565b50506000910152565b60008151808452613192816020860160208601613156565b601f01601f19169290920160200192915050565b602081526000611cfc602083018461317a565b6000602082840312156131cb57600080fd5b5035919050565b60006001600160401b038211156131eb576131eb61306f565b5060051b60200190565b600082601f83011261320657600080fd5b81356020613213826131d2565b6040516132208282613085565b83815260059390931b850182019282810191508684111561324057600080fd5b8286015b8481101561325b5780358352918301918301613244565b509695505050505050565b600082601f83011261327757600080fd5b611cfc838335602085016130b1565b600080600080600060a0868803121561329e57600080fd5b6132a786612ff6565b94506132b560208701612ff6565b935060408601356001600160401b03808211156132d157600080fd5b6132dd89838a016131f5565b945060608801359150808211156132f357600080fd5b6132ff89838a016131f5565b9350608088013591508082111561331557600080fd5b5061332288828901613266565b9150509295509295909350565b6000806040838503121561334257600080fd5b8235915061335260208401612ff6565b90509250929050565b6000806040838503121561336e57600080fd5b82356001600160401b038082111561338557600080fd5b818501915085601f83011261339957600080fd5b813560206133a6826131d2565b6040516133b38282613085565b83815260059390931b85018201928281019150898411156133d357600080fd5b948201945b838610156133f8576133e986612ff6565b825294820194908201906133d8565b9650508601359250508082111561340e57600080fd5b5061341b858286016131f5565b9150509250929050565b600081518084526020808501945080840160005b8381101561345557815187529582019590820190600101613439565b509495945050505050565b602081526000611cfc6020830184613425565b60008060006060848603121561348857600080fd5b61349184612ff6565b925060208401356001600160401b03808211156134ad57600080fd5b6134b9878388016131f5565b935060408601359150808211156134cf57600080fd5b506134dc868287016131f5565b9150509250925092565b6000602082840312156134f857600080fd5b611cfc82612ff6565b6000806040838503121561351457600080fd5b50508035926020909101359150565b8015158114611ce157600080fd5b6000806040838503121561354457600080fd5b61354d83612ff6565b9150602083013561355d81613523565b809150509250929050565b60008060006060848603121561357d57600080fd5b61358684612ff6565b95602085013595506040909401359392505050565b600080604083850312156135ae57600080fd5b6135b783612ff6565b915061335260208401612ff6565b60008060008060008060a087890312156135de57600080fd5b6135e787612ff6565b95506135f560208801612ff6565b9450604087013593506060870135925060808701356001600160401b038082111561361f57600080fd5b818901915089601f83011261363357600080fd5b81358181111561364257600080fd5b8a602082850101111561365457600080fd5b6020830194508093505050509295509295509295565b600080600080600060a0868803121561368257600080fd5b61368b86612ff6565b945061369960208701612ff6565b9350604086013592506060860135915060808601356001600160401b038111156136c257600080fd5b61332288828901613266565b600181811c908216806136e257607f821691505b60208210810361370257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081257610812613708565b60006020828403121561374357600080fd5b5051919050565b8181038181111561081257610812613708565b60006001820161376f5761376f613708565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261379b5761379b613776565b500690565b634e487b7160e01b600052603260045260246000fd5b808202811582820484141761081257610812613708565b6000826137dc576137dc613776565b500490565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b601f82111561113e57600081815260208120601f850160051c810160208610156138515750805b601f850160051c820191505b818110156118905782815560010161385d565b81516001600160401b038111156138895761388961306f565b61389d8161389784546136ce565b8461382a565b602080601f8311600181146138d257600084156138ba5750858301515b600019600386901b1c1916600185901b178555611890565b600085815260208120601f198616915b82811015613901578886015182559484019460019091019084016138e2565b508582101561391f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006139cb6040830185613425565b82810360208401526139dd8185613425565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613b34816017850160208801613156565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613b65816028840160208801613156565b01602801949350505050565b600060208284031215613b8357600080fd5b8151611cfc81613523565b6001600160a01b0386811682528516602082015260a060408201819052600090613bba90830186613425565b8281036060840152613bcc8186613425565b90508281036080840152613be0818561317a565b98975050505050505050565b600060208284031215613bfe57600080fd5b8151611cfc8161303c565b600060033d1115613c225760046000803e5060005160e01c5b90565b600060443d1015613c335790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613c6257505050505090565b8285019150815181811115613c7a5750505050505090565b843d8701016020828501011115613c945750505050505090565b613ca360208286010187613085565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612fb29083018461317a565b600081613d3f57613d3f613708565b506000190190565b60008251613d59818460208701613156565b919091019291505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220fe4cc0ccd38f2ba117faeb7f2bd67a4655331d19c62daabb59949812d1b2149064736f6c6343000812003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d596d4268367433537878346b7353654e54656b6f63597a63634b566772314464366d713834444d7a707247792f7b69647d2e6a736f6e000000000000000000000000f06dfed9aa6d4206ebbc0ef2a93567e79459236400000000000000000000000010354017d1bcd375dc7893c72ef6d478b2c5bb0d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030b5760003560e01c8063997ff2e91161019d578063ce3e9493116100e9578063ede85eb7116100a2578063f4a0a5281161007c578063f4a0a5281461073d578063f5298aca14610750578063f7e8a38514610763578063ffc3fddd1461076c57600080fd5b8063ede85eb714610683578063f23a6e61146106d8578063f242432a1461072a57600080fd5b8063ce3e9493146105fb578063d53913931461060e578063d547741f14610623578063e1c5af5b14610636578063e3161ddd1461063f578063e985e9c51461064757600080fd5b8063b6b55f2511610156578063bcfedd7011610130578063bcfedd70146105b6578063bd85b039146105bf578063c002d23d146105df578063ccf0b4a6146105e857600080fd5b8063b6b55f2514610587578063b6e760421461059a578063b7dd214f146105ad57600080fd5b8063997ff2e91461052a578063a15693a01461053d578063a217fddf14610546578063a22cb4651461054e578063a5fc441114610561578063a89940671461057457600080fd5b80634e1273f41161025c57806379db1ef4116102155780638a50fecb116101ef5780638a50fecb146104f357806391d148541461050657806391f40fd61461051957806395d89b411461052257600080fd5b806379db1ef4146104c457806381ce6637146104cd5780638206dede146104e057600080fd5b80634e1273f4146104295780634f558e7914610449578063646745b01461046b5780636b20c454146104735780636f41153514610486578063784bdab4146104b157600080fd5b8063248a9ca3116102c95780632f2ff15d116102a35780632f2ff15d146103f2578063344506151461040557806336568abe1461040d57806346e8bbe51461042057600080fd5b8063248a9ca3146103a95780632e1a7d4d146103cc5780632eb2c2d6146103df57600080fd5b8062fdd58e1461031057806301ffc9a71461033657806302fe53051461035957806306fdde031461036e5780630e89341c146103835780631fdd89a814610396575b600080fd5b61032361031e366004613012565b61077f565b6040519081526020015b60405180910390f35b610349610344366004613052565b610818565b604051901515815260200161032d565b61036c61036736600461310e565b610823565b005b61037661083b565b60405161032d91906131a6565b6103766103913660046131b9565b6108c9565b61036c6103a43660046131b9565b61095d565b6103236103b73660046131b9565b60009081526003602052604090206001015490565b61036c6103da3660046131b9565b610ef9565b61036c6103ed366004613286565b611082565b61036c61040036600461332f565b611119565b61036c611143565b61036c61041b36600461332f565b611279565b610323600b5481565b61043c61043736600461335b565b6112f3565b60405161032d9190613460565b6103496104573660046131b9565b600090815260046020526040902054151590565b61032361141c565b61036c610481366004613473565b6114ae565b601354610499906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b61036c6104bf3660046134e6565b6114f1565b610323600d5481565b61036c6104db366004613473565b61151f565b61036c6104ee3660046131b9565b611592565b61036c610501366004613501565b6115a3565b61034961051436600461332f565b611898565b61032360095481565b6103766118c3565b61036c6105383660046131b9565b6118d0565b610323600e5481565b610323600081565b61036c61055c366004613531565b6118e1565b61036c61056f3660046131b9565b6118ec565b61036c6105823660046131b9565b611905565b61036c6105953660046131b9565b611916565b61036c6105a8366004613568565b611a5a565b61032360115481565b61032360105481565b6103236105cd3660046131b9565b60009081526004602052604090205490565b61032360125481565b61036c6105f63660046131b9565b611a8d565b61036c610609366004613473565b611a9e565b610323600080516020613d6483398151915281565b61036c61063136600461332f565b611b21565b610323600f5481565b61036c611b46565b61034961065536600461359b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6106b86106913660046134e6565b60156020526000908152604090208054600182015460028301546003909301549192909184565b60408051948552602085019390935291830152606082015260800161032d565b6107116106e63660046135c5565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b0319909116815260200161032d565b61036c61073836600461366a565b611c08565b61036c61074b3660046131b9565b611c4d565b61036c61075e366004613568565b611c5e565b610323600c5481565b61036c61077a3660046131b9565b611ca1565b60006001600160a01b0383166107ef5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b600061081282611cb2565b600061082e81611cd7565b61083782611ce4565b5050565b60078054610848906136ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610874906136ce565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b505050505081565b6060600280546108d8906136ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610904906136ce565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b50505050509050919050565b6011548160105461096e919061371e565b11156109a95760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016107e6565b60006109c060125483611cf090919063ffffffff16565b6013546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190613731565b1015610a775760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204f726220746f6b656e7360581b60448201526064016107e6565b6000610a996064610a93600f5485611cf090919063ffffffff16565b90611d03565b90506000610aa7828461374a565b601480549192506000610ab98361375d565b909155505060408051600580825260c082019092526000918291906020820160a08036833701905050905060005b86811015610d075760145460065460408051631d9ee53b60e11b81529051606493926001600160a01b031691633b3dca769160048083019260209291908290030181865afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190613731565b6040805160208101939093528201526060808201869052608082018490524260a083015233901b6bffffffffffffffffffffffff191660c082015260d4016040516020818303038152906040528051906020012060001c610bc2919061378c565b925060358311610bf85781600081518110610bdf57610bdf6137a0565b602002602001018051809190610bf49061375d565b9052505b60368310158015610c0a5750604f8311155b15610c3b5781600181518110610c2257610c226137a0565b602002602001018051809190610c379061375d565b9052505b60508310158015610c4d5750605d8311155b15610c7e5781600281518110610c6557610c656137a0565b602002602001018051809190610c7a9061375d565b9052505b605e8310158015610c90575060628311155b15610cc15781600381518110610ca857610ca86137a0565b602002602001018051809190610cbd9061375d565b9052505b82606303610cf55781600481518110610cdc57610cdc6137a0565b602002602001018051809190610cf19061375d565b9052505b80610cff8161375d565b915050610ae7565b506000805b6005811015610d57576000838281518110610d2957610d296137a0565b60200260200101511115610d455781610d418161375d565b9250505b80610d4f8161375d565b915050610d0c565b506000816001600160401b03811115610d7257610d7261306f565b604051908082528060200260200182016040528015610d9b578160200160208202803683370190505b5090506000826001600160401b03811115610db857610db861306f565b604051908082528060200260200182016040528015610de1578160200160208202803683370190505b5090506000805b6005811015610e89576000868281518110610e0557610e056137a0565b60200260200101511115610e775780848381518110610e2657610e266137a0565b602002602001018181525050858181518110610e4457610e446137a0565b6020026020010151838381518110610e5e57610e5e6137a0565b602090810291909101015281610e738161375d565b9250505b80610e818161375d565b915050610de8565b5089601054610e98919061371e565b601055600a54601354610eba916001600160a01b03918216913391168a611d0f565b601354610ed2906001600160a01b031633818b611d0f565b610eed33848460405180602001604052806000815250611d7a565b50505050505050505050565b600260055403610f4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e6565b60026005553360009081526015602052604090206003810154821115610f7057600080fd5b610f78611143565b818160030154610f88919061374a565b60038201819055600c54670de0b6b3a764000091610fa5916137b6565b610faf91906137cd565b600182015580548290600090610fc5904261374a565b905062278d0081108015610fdb57506000600954115b15611060576000610ffc6064610a9360095488611cf090919063ffffffff16565b9050600061100b826002611d03565b905060006110198383611ed4565b90506110258784611ed4565b60135490955061103f906001600160a01b03168084611ee0565b600a5460135461105c916001600160a01b03918216911683611ee0565b5050505b601354611077906001600160a01b03163384611ee0565b505060016005555050565b6001600160a01b03851633148061109e575061109e8533610655565b6111055760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107e6565b6111128585858585611f10565b5050505050565b60008281526003602052604090206001015461113481611cd7565b61113e83836120b2565b505050565b61114b611b46565b33600090815260156020526040812060018101546003820154600c54929392670de0b6b3a76400009161117d916137b6565b61118791906137cd565b611191919061374a565b9050806000036111cc57670de0b6b3a76400008260030154600c546111b691906137b6565b6111c091906137cd565b82600101819055505050565b670de0b6b3a76400008260030154600c546111e791906137b6565b6111f191906137cd565b6001830155600282015460009061120990839061371e565b90506016548110156112215760029092019190915550565b600061123860165483611d0390919063ffffffff16565b905061124f6016548361213890919063ffffffff16565b84600201819055506112733360058360405180602001604052806000815250612144565b50505050565b6001600160a01b03811633146112e95760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107e6565b610837828261222d565b606081518351146113585760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107e6565b600083516001600160401b038111156113735761137361306f565b60405190808252806020026020018201604052801561139c578160200160208202803683370190505b50905060005b8451811015611414576113e78582815181106113c0576113c06137a0565b60200260200101518583815181106113da576113da6137a0565b602002602001015161077f565b8282815181106113f9576113f96137a0565b602090810291909101015261140d8161375d565b90506113a2565b509392505050565b336000908152601560205260408120600e54600d54839161144891611442904290611ed4565b90611cf0565b9050600081600c5461145a919061371e565b905060008360010154670de0b6b3a764000085600301548461147c91906137b6565b61148691906137cd565b611490919061374a565b905060008185600201546114a4919061371e565b9695505050505050565b6001600160a01b0383163314806114ca57506114ca8333610655565b6114e65760405162461bcd60e51b81526004016107e6906137e1565b61113e838383612294565b60006114fc81611cd7565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613d6483398151915261153781611cd7565b60005b83518110156111125761158085858381518110611559576115596137a0565b6020026020010151858481518110611573576115736137a0565b6020026020010151612430565b8061158a8161375d565b91505061153a565b600061159d81611cd7565b50601155565b600581106115b057600080fd5b600482106115f65760405162461bcd60e51b815260206004820152601360248201527243616e2774207573652053756e2052756e657360681b60448201526064016107e6565b6005611602338461077f565b10156116425760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016107e6565b60006064601454600660009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b8152600401602060405180830381865afa15801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c09190613731565b6040805160208101939093528201524260608083019190915233901b6bffffffffffffffffffffffff191660808201526094016040516020818303038152906040528051906020012060001c611716919061378c565b9050600061172f600b5484611cf090919063ffffffff16565b9050600061174860146117428682611cf0565b90612548565b9050806003861015611836578084106117d05761176733876005612430565b61177333600585612430565b6117993361178288600161371e565b600160405180602001604052806000815250612144565b6117a486600161371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b80841015611836576117e433876005612430565b6117f033600585612430565b6117ff3361178288600261371e565b61180a86600261371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b856003036118905761184a33876005612430565b6118593361178288600161371e565b61186486600161371e565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60088054610848906136ce565b60006118db81611cd7565b50600955565b610837338383612554565b60006118f781611cd7565b6118ff611b46565b50600e55565b600061191081611cd7565b50600b55565b6002600554036119685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e6565b60026005556013546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa1580156119b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d99190613731565b10156119e457600080fd5b3360009081526015602052604090206119fb611143565b4281556003810154611a0d9083612548565b60038201819055600c54670de0b6b3a764000091611a2a916137b6565b611a3491906137cd565b6001820155601354611a51906001600160a01b0316333085611d0f565b50506001600555565b600080516020613d64833981519152611a7281611cd7565b61127384848460405180602001604052806000815250612144565b6000611a9881611cd7565b50601655565b600080516020613d64833981519152611ab681611cd7565b60005b835181101561111257611b0f85858381518110611ad857611ad86137a0565b6020026020010151858481518110611af257611af26137a0565b602002602001015160405180602001604052806000815250612144565b80611b198161375d565b915050611ab9565b600082815260036020526040902060010154611b3c81611cd7565b61113e838361222d565b600d544211611b5157565b6013546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbe9190613731565b905080600003611bcf575042600d55565b6000611bec600e54611442600d5442611ed490919063ffffffff16565b42600d55600c54909150611c0190829061371e565b600c555050565b6001600160a01b038516331480611c245750611c248533610655565b611c405760405162461bcd60e51b81526004016107e6906137e1565b6111128585858585612634565b6000611c5881611cd7565b50601255565b6001600160a01b038316331480611c7a5750611c7a8333610655565b611c965760405162461bcd60e51b81526004016107e6906137e1565b61113e838383612430565b6000611cac81611cd7565b50600f55565b60006001600160e01b03198216637965db0b60e01b148061081257506108128261276c565b611ce181336127bc565b50565b60026108378282613870565b6000611cfc82846137b6565b9392505050565b6000611cfc82846137cd565b6040516001600160a01b03808516602483015283166044820152606481018290526112739085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612820565b6001600160a01b038416611da05760405162461bcd60e51b81526004016107e69061392f565b8151835114611dc15760405162461bcd60e51b81526004016107e690613970565b33611dd1816000878787876128f2565b60005b8451811015611e6c57838181518110611def57611def6137a0565b6020026020010151600080878481518110611e0c57611e0c6137a0565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611e54919061371e565b90915550819050611e648161375d565b915050611dd4565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ebd9291906139b8565b60405180910390a461111281600087878787612900565b6000611cfc828461374a565b6040516001600160a01b03831660248201526044810182905261113e90849063a9059cbb60e01b90606401611d43565b8151835114611f315760405162461bcd60e51b81526004016107e690613970565b6001600160a01b038416611f575760405162461bcd60e51b81526004016107e6906139e6565b33611f668187878787876128f2565b60005b845181101561204c576000858281518110611f8657611f866137a0565b602002602001015190506000858381518110611fa457611fa46137a0565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ff45760405162461bcd60e51b81526004016107e690613a2b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061203190849061371e565b92505081905550505050806120459061375d565b9050611f69565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161209c9291906139b8565b60405180910390a4611890818787878787612900565b6120bc8282611898565b6108375760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556120f43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611cfc828461378c565b6001600160a01b03841661216a5760405162461bcd60e51b81526004016107e69061392f565b33600061217685612a5b565b9050600061218385612a5b565b9050612194836000898585896128f2565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906121c490849061371e565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461222483600089898989612aa6565b50505050505050565b6122378282611898565b156108375760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0383166122ba5760405162461bcd60e51b81526004016107e690613a75565b80518251146122db5760405162461bcd60e51b81526004016107e690613970565b60003390506122fe818560008686604051806020016040528060008152506128f2565b60005b83518110156123c357600084828151811061231e5761231e6137a0565b60200260200101519050600084838151811061233c5761233c6137a0565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561238c5760405162461bcd60e51b81526004016107e690613ab8565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806123bb8161375d565b915050612301565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124149291906139b8565b60405180910390a4604080516020810190915260009052611273565b6001600160a01b0383166124565760405162461bcd60e51b81526004016107e690613a75565b33600061246284612a5b565b9050600061246f84612a5b565b905061248f838760008585604051806020016040528060008152506128f2565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156124d05760405162461bcd60e51b81526004016107e690613ab8565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052612224565b6000611cfc828461371e565b816001600160a01b0316836001600160a01b0316036125c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107e6565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661265a5760405162461bcd60e51b81526004016107e6906139e6565b33600061266685612a5b565b9050600061267385612a5b565b90506126838389898585896128f2565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156126c45760405162461bcd60e51b81526004016107e690613a2b565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061270190849061371e565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612761848a8a8a8a8a612aa6565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061279d57506001600160e01b031982166303a24d0760e21b145b8061081257506301ffc9a760e01b6001600160e01b0319831614610812565b6127c68282611898565b610837576127de816001600160a01b03166014612b61565b6127e9836020612b61565b6040516020016127fa929190613afc565b60408051601f198184030181529082905262461bcd60e51b82526107e6916004016131a6565b6000612875826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cfc9092919063ffffffff16565b80519091501561113e57808060200190518101906128939190613b71565b61113e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107e6565b611890868686868686612d13565b6001600160a01b0384163b156118905760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906129449089908990889088908890600401613b8e565b6020604051808303816000875af192505050801561297f575060408051601f3d908101601f1916820190925261297c91810190613bec565b60015b612a2b5761298b613c09565b806308c379a0036129c4575061299f613c25565b806129aa57506129c6565b8060405162461bcd60e51b81526004016107e691906131a6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107e6565b6001600160e01b0319811663bc197c8160e01b146122245760405162461bcd60e51b81526004016107e690613cae565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a9557612a956137a0565b602090810291909101015292915050565b6001600160a01b0384163b156118905760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612aea9089908990889088908890600401613cf6565b6020604051808303816000875af1925050508015612b25575060408051601f3d908101601f19168201909252612b2291810190613bec565b60015b612b315761298b613c09565b6001600160e01b0319811663f23a6e6160e01b146122245760405162461bcd60e51b81526004016107e690613cae565b60606000612b708360026137b6565b612b7b90600261371e565b6001600160401b03811115612b9257612b9261306f565b6040519080825280601f01601f191660200182016040528015612bbc576020820181803683370190505b509050600360fc1b81600081518110612bd757612bd76137a0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c0657612c066137a0565b60200101906001600160f81b031916908160001a9053506000612c2a8460026137b6565b612c3590600161371e565b90505b6001811115612cad576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c6957612c696137a0565b1a60f81b828281518110612c7f57612c7f6137a0565b60200101906001600160f81b031916908160001a90535060049490941c93612ca681613d30565b9050612c38565b508315611cfc5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107e6565b6060612d0b8484600085612e8c565b949350505050565b6001600160a01b038516612d9a5760005b8351811015612d9857828181518110612d3f57612d3f6137a0565b602002602001015160046000868481518110612d5d57612d5d6137a0565b602002602001015181526020019081526020016000206000828254612d82919061371e565b90915550612d9190508161375d565b9050612d24565b505b6001600160a01b0384166118905760005b8351811015612224576000848281518110612dc857612dc86137a0565b602002602001015190506000848381518110612de657612de66137a0565b6020026020010151905060006004600084815260200190815260200160002054905081811015612e695760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016107e6565b60009283526004602052604090922091039055612e858161375d565b9050612dab565b606082471015612eed5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107e6565b6001600160a01b0385163b612f445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107e6565b600080866001600160a01b03168587604051612f609190613d47565b60006040518083038185875af1925050503d8060008114612f9d576040519150601f19603f3d011682016040523d82523d6000602084013e612fa2565b606091505b5091509150612fb2828286612fbd565b979650505050505050565b60608315612fcc575081611cfc565b825115612fdc5782518084602001fd5b8160405162461bcd60e51b81526004016107e691906131a6565b80356001600160a01b038116811461300d57600080fd5b919050565b6000806040838503121561302557600080fd5b61302e83612ff6565b946020939093013593505050565b6001600160e01b031981168114611ce157600080fd5b60006020828403121561306457600080fd5b8135611cfc8161303c565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156130aa576130aa61306f565b6040525050565b60006001600160401b038311156130ca576130ca61306f565b6040516130e1601f8501601f191660200182613085565b8091508381528484840111156130f657600080fd5b83836020830137600060208583010152509392505050565b60006020828403121561312057600080fd5b81356001600160401b0381111561313657600080fd5b8201601f8101841361314757600080fd5b612d0b848235602084016130b1565b60005b83811015613171578181015183820152602001613159565b50506000910152565b60008151808452613192816020860160208601613156565b601f01601f19169290920160200192915050565b602081526000611cfc602083018461317a565b6000602082840312156131cb57600080fd5b5035919050565b60006001600160401b038211156131eb576131eb61306f565b5060051b60200190565b600082601f83011261320657600080fd5b81356020613213826131d2565b6040516132208282613085565b83815260059390931b850182019282810191508684111561324057600080fd5b8286015b8481101561325b5780358352918301918301613244565b509695505050505050565b600082601f83011261327757600080fd5b611cfc838335602085016130b1565b600080600080600060a0868803121561329e57600080fd5b6132a786612ff6565b94506132b560208701612ff6565b935060408601356001600160401b03808211156132d157600080fd5b6132dd89838a016131f5565b945060608801359150808211156132f357600080fd5b6132ff89838a016131f5565b9350608088013591508082111561331557600080fd5b5061332288828901613266565b9150509295509295909350565b6000806040838503121561334257600080fd5b8235915061335260208401612ff6565b90509250929050565b6000806040838503121561336e57600080fd5b82356001600160401b038082111561338557600080fd5b818501915085601f83011261339957600080fd5b813560206133a6826131d2565b6040516133b38282613085565b83815260059390931b85018201928281019150898411156133d357600080fd5b948201945b838610156133f8576133e986612ff6565b825294820194908201906133d8565b9650508601359250508082111561340e57600080fd5b5061341b858286016131f5565b9150509250929050565b600081518084526020808501945080840160005b8381101561345557815187529582019590820190600101613439565b509495945050505050565b602081526000611cfc6020830184613425565b60008060006060848603121561348857600080fd5b61349184612ff6565b925060208401356001600160401b03808211156134ad57600080fd5b6134b9878388016131f5565b935060408601359150808211156134cf57600080fd5b506134dc868287016131f5565b9150509250925092565b6000602082840312156134f857600080fd5b611cfc82612ff6565b6000806040838503121561351457600080fd5b50508035926020909101359150565b8015158114611ce157600080fd5b6000806040838503121561354457600080fd5b61354d83612ff6565b9150602083013561355d81613523565b809150509250929050565b60008060006060848603121561357d57600080fd5b61358684612ff6565b95602085013595506040909401359392505050565b600080604083850312156135ae57600080fd5b6135b783612ff6565b915061335260208401612ff6565b60008060008060008060a087890312156135de57600080fd5b6135e787612ff6565b95506135f560208801612ff6565b9450604087013593506060870135925060808701356001600160401b038082111561361f57600080fd5b818901915089601f83011261363357600080fd5b81358181111561364257600080fd5b8a602082850101111561365457600080fd5b6020830194508093505050509295509295509295565b600080600080600060a0868803121561368257600080fd5b61368b86612ff6565b945061369960208701612ff6565b9350604086013592506060860135915060808601356001600160401b038111156136c257600080fd5b61332288828901613266565b600181811c908216806136e257607f821691505b60208210810361370257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081257610812613708565b60006020828403121561374357600080fd5b5051919050565b8181038181111561081257610812613708565b60006001820161376f5761376f613708565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261379b5761379b613776565b500690565b634e487b7160e01b600052603260045260246000fd5b808202811582820484141761081257610812613708565b6000826137dc576137dc613776565b500490565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b601f82111561113e57600081815260208120601f850160051c810160208610156138515750805b601f850160051c820191505b818110156118905782815560010161385d565b81516001600160401b038111156138895761388961306f565b61389d8161389784546136ce565b8461382a565b602080601f8311600181146138d257600084156138ba5750858301515b600019600386901b1c1916600185901b178555611890565b600085815260208120601f198616915b82811015613901578886015182559484019460019091019084016138e2565b508582101561391f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006139cb6040830185613425565b82810360208401526139dd8185613425565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613b34816017850160208801613156565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613b65816028840160208801613156565b01602801949350505050565b600060208284031215613b8357600080fd5b8151611cfc81613523565b6001600160a01b0386811682528516602082015260a060408201819052600090613bba90830186613425565b8281036060840152613bcc8186613425565b90508281036080840152613be0818561317a565b98975050505050505050565b600060208284031215613bfe57600080fd5b8151611cfc8161303c565b600060033d1115613c225760046000803e5060005160e01c5b90565b600060443d1015613c335790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613c6257505050505090565b8285019150815181811115613c7a5750505050505090565b843d8701016020828501011115613c945750505050505090565b613ca360208286010187613085565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612fb29083018461317a565b600081613d3f57613d3f613708565b506000190190565b60008251613d59818460208701613156565b919091019291505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220fe4cc0ccd38f2ba117faeb7f2bd67a4655331d19c62daabb59949812d1b2149064736f6c63430008120033

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

000000000000000000000000f06dfed9aa6d4206ebbc0ef2a93567e79459236400000000000000000000000010354017d1bcd375dc7893c72ef6d478b2c5bb0d

-----Decoded View---------------
Arg [0] : _Orb (address): 0xf06DFed9aA6D4206EBBC0eF2a93567e794592364
Arg [1] : oracleaddress (address): 0x10354017D1BCD375dC7893c72EF6d478B2C5BB0d

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f06dfed9aa6d4206ebbc0ef2a93567e794592364
Arg [1] : 00000000000000000000000010354017d1bcd375dc7893c72ef6d478b2c5bb0d


Deployed Bytecode Sourcemap

66639:10672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48027:230;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;48027:230:0;;;;;;;;68129:210;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;68129:210:0;1019:187:1;68644:108:0;;;;;;:::i;:::-;;:::i;:::-;;66909:35;;;:::i;:::-;;;;;;;:::i;47771:105::-;;;;;;:::i;:::-;;:::i;69414:1689::-;;;;;;:::i;:::-;;:::i;35688:131::-;;;;;;:::i;:::-;35762:7;35789:12;;;:6;:12;;;;;:22;;;;35688:131;74173:925;;;;;;:::i;:::-;;:::i;49965:442::-;;;;;;:::i;:::-;;:::i;36081:147::-;;;;;;:::i;:::-;;:::i;75110:840::-;;;:::i;37129:218::-;;;;;;:::i;:::-;;:::i;67115:40::-;;;;;;48423:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65221:122::-;;;;;;:::i;:::-;65278:4;65099:16;;;:12;:16;;;;;;-1:-1:-1;;;65221:122:0;76494:508;;;:::i;64116:353::-;;;;;;:::i;:::-;;:::i;67439:17::-;;;;;-1:-1:-1;;;;;67439:17:0;;;;;;-1:-1:-1;;;;;8956:32:1;;;8938:51;;8926:2;8911:18;67439:17:0;8778:217:1;71505:120:0;;;;;;:::i;:::-;;:::i;67201:33::-;;;;;;69177:226;;;;;;:::i;:::-;;:::i;71114:118::-;;;;;;:::i;:::-;;:::i;72074:1360::-;;;;;;:::i;:::-;;:::i;34148:147::-;;;;;;:::i;:::-;;:::i;66985:26::-;;;;;;66951:27;;;:::i;71763:130::-;;;;;;:::i;:::-;;:::i;67241:34::-;;;;;;33253:49;;33298:4;33253:49;;49020:155;;;;;;:::i;:::-;;:::i;71901:165::-;;;;;;:::i;:::-;;:::i;71361:136::-;;;;;;:::i;:::-;;:::i;73673:488::-;;;;;;:::i;:::-;;:::i;68764:150::-;;;;;;:::i;:::-;;:::i;67352:33::-;;;;;;67317:28;;;;;;65010:113;;;;;;:::i;:::-;65072:7;65099:16;;;:12;:16;;;;;;;65010:113;67392:40;;;;;;73497:168;;;;;;:::i;:::-;;:::i;68929:233::-;;;;;;:::i;:::-;;:::i;66740:62::-;;-1:-1:-1;;;;;;;;;;;66740:62:0;;36473:149;;;;;;:::i;:::-;;:::i;67283:27::-;;;;;;75956:530;;;:::i;49247:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;49370:27:0;;;49346:4;49370:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;49247:168;68583:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10710:25:1;;;10766:2;10751:18;;10744:34;;;;10794:18;;;10787:34;10852:2;10837:18;;10830:34;10697:3;10682:19;68583:42:0;10479:391:1;77010:288:0;;;;;;:::i;:::-;77220:69;77010:288;;;;;;;;;;;;-1:-1:-1;;;;;;11919:33:1;;;11901:52;;11889:2;11874:18;77010:288:0;11757:202:1;49487:401:0;;;;;;:::i;:::-;;:::i;71241:112::-;;;;;;:::i;:::-;;:::i;63787:321::-;;;;;;:::i;:::-;;:::i;67162:32::-;;;;;;71637:118;;;;;;:::i;:::-;;:::i;48027:230::-;48113:7;-1:-1:-1;;;;;48141:21:0;;48133:76;;;;-1:-1:-1;;;48133:76:0;;12777:2:1;48133:76:0;;;12759:21:1;12816:2;12796:18;;;12789:30;12855:34;12835:18;;;12828:62;-1:-1:-1;;;12906:18:1;;;12899:40;12956:19;;48133:76:0;;;;;;;;;-1:-1:-1;48227:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;48227:22:0;;;;;;;;;;48027:230;;;;;:::o;68129:210::-;68266:4;68295:36;68319:11;68295:23;:36::i;68644:108::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;68729:15:::1;68737:6;68729:7;:15::i;:::-;68644:108:::0;;:::o;66909:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47771:105::-;47831:13;47864:4;47857:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47771:105;;;:::o;69414:1689::-;69505:11;;69494:6;69482:9;;:18;;;;:::i;:::-;69481:35;;69473:58;;;;-1:-1:-1;;;69473:58:0;;13835:2:1;69473:58:0;;;13817:21:1;13874:2;13854:18;;;13847:30;-1:-1:-1;;;13893:18:1;;;13886:40;13943:18;;69473:58:0;13633:334:1;69473:58:0;69542:18;69563:22;69574:10;;69563:6;:10;;:22;;;;:::i;:::-;69604:3;;:25;;-1:-1:-1;;;69604:25:0;;69618:10;69604:25;;;8938:51:1;69542:43:0;;-1:-1:-1;69542:43:0;;-1:-1:-1;;;;;69604:3:0;;;;:13;;8911:18:1;;69604:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;69596:73;;;;-1:-1:-1;;;69596:73:0;;14571:2:1;69596:73:0;;;14553:21:1;14610:2;14590:18;;;14583:30;-1:-1:-1;;;14629:18:1;;;14622:51;14690:18;;69596:73:0;14369:345:1;69596:73:0;69680:18;69701:32;69729:3;69701:23;69716:7;;69701:10;:14;;:23;;;;:::i;:::-;:27;;:32::i;:::-;69680:53;-1:-1:-1;69744:18:0;69765:23;69680:53;69765:10;:23;:::i;:::-;69799:5;:8;;69744:44;;-1:-1:-1;69799:5:0;:8;;;:::i;:::-;;;;-1:-1:-1;;69866:13:0;;;69877:1;69866:13;;;;;;;;;69818:12;;;;69866:13;;;;;;;;;;;-1:-1:-1;69866:13:0;69841:38;;69895:6;69890:521;69906:6;69904:1;:8;69890:521;;;69972:5;;69979:6;;:13;;;-1:-1:-1;;;69979:13:0;;;;70032:3;;69972:5;-1:-1:-1;;;;;69979:6:0;;:11;;:13;;;;;;;;;;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69955:74;;;;;;15261:19:1;;;;15296:12;;15289:28;15333:12;;;;15326:28;;;15370:12;;;15363:28;;;70001:15:0;15407:13:1;;;15400:29;70018:10:0;15464:15:1;;-1:-1:-1;;15460:53:1;15445:13;;;15438:76;15530:13;;69955:74:0;;;;;;;;;;;;69945:85;;;;;;69936:95;;:99;;;;:::i;:::-;69929:106;-1:-1:-1;70070:2:0;70063:4;:9;70047:64;;70085:8;70094:1;70085:11;;;;;;;;:::i;:::-;;;;;;:14;;;;;;;;:::i;:::-;;;-1:-1:-1;70047:64:0;70132:2;70125:4;:9;;:22;;;;;70145:2;70138:4;:9;;70125:22;70121:65;;;70160:8;70169:1;70160:11;;;;;;;;:::i;:::-;;;;;;:14;;;;;;;;:::i;:::-;;;-1:-1:-1;70121:65:0;70207:2;70200:4;:9;;:22;;;;;70220:2;70213:4;:9;;70200:22;70196:65;;;70235:8;70244:1;70235:11;;;;;;;;:::i;:::-;;;;;;:14;;;;;;;;:::i;:::-;;;-1:-1:-1;70196:65:0;70282:2;70275:4;:9;;:22;;;;;70295:2;70288:4;:9;;70275:22;70271:65;;;70310:8;70319:1;70310:11;;;;;;;;:::i;:::-;;;;;;:14;;;;;;;;:::i;:::-;;;-1:-1:-1;70271:65:0;70351:4;70359:2;70351:10;70347:53;;70374:8;70383:1;70374:11;;;;;;;;:::i;:::-;;;;;;:14;;;;;;;;:::i;:::-;;;-1:-1:-1;70347:53:0;69913:3;;;;:::i;:::-;;;;69890:521;;;-1:-1:-1;70421:8:0;;70440:105;70456:1;70454;:3;70440:105;;;70492:1;70480:8;70489:1;70480:11;;;;;;;;:::i;:::-;;;;;;;:13;70477:57;;;70513:5;;;;:::i;:::-;;;;70477:57;70458:3;;;;:::i;:::-;;;;70440:105;;;;70555:17;70586:3;-1:-1:-1;;;;;70575:15:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70575:15:0;;70555:35;;70601:23;70638:3;-1:-1:-1;;;;;70627:15:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70627:15:0;-1:-1:-1;70601:41:0;-1:-1:-1;70653:12:0;;70676:194;70692:1;70690;:3;70676:194;;;70728:1;70716:8;70725:1;70716:11;;;;;;;;:::i;:::-;;;;;;;:13;70713:146;;;70763:1;70748:3;70752:7;70748:12;;;;;;;;:::i;:::-;;;;;;:16;;;;;70803:8;70812:1;70803:11;;;;;;;;:::i;:::-;;;;;;;70782:9;70792:7;70782:18;;;;;;;;:::i;:::-;;;;;;;;;;:32;70833:10;;;;:::i;:::-;;;;70713:146;70694:3;;;;:::i;:::-;;;;70676:194;;;;70904:6;70892:9;;:18;;;;:::i;:::-;70880:9;:30;70953:11;;70921:3;;:56;;-1:-1:-1;;;;;70921:3:0;;;;70942:10;;70953:11;70966:10;70921:20;:56::i;:::-;71028:3;;70988:57;;-1:-1:-1;;;;;71028:3:0;71009:10;71028:3;71034:10;70988:20;:57::i;:::-;71056:39;71067:10;71078:3;71082:9;71056:39;;;;;;;;;;;;:10;:39::i;:::-;69459:1644;;;;;;;;;69414:1689;:::o;74173:925::-;20221:1;20819:7;;:19;20811:63;;;;-1:-1:-1;;;20811:63:0;;16137:2:1;20811:63:0;;;16119:21:1;16176:2;16156:18;;;16149:30;16215:33;16195:18;;;16188:61;16266:18;;20811:63:0;15935:355:1;20811:63:0;20221:1;20952:7;:18;74271:10:::1;74239:21;74263:19:::0;;;:7:::1;:19;::::0;;;;74303:13:::1;::::0;::::1;::::0;:21;-1:-1:-1;74303:21:0::1;74294:31;;;::::0;::::1;;74339:19;:17;:19::i;:::-;74402:6;74386;:13;;;:22;;;;:::i;:::-;74370:13;::::0;::::1;:38:::0;;;74440:17:::1;::::0;74476:4:::1;::::0;74440:33:::1;::::0;::::1;:::i;:::-;:40;;;;:::i;:::-;74420:17;::::0;::::1;:60:::0;74588:23;;74531:6;;74504:24:::1;::::0;74570:41:::1;::::0;:15:::1;:41;:::i;:::-;74549:62;;74640:7;74627:10;:20;:38;;;;;74664:1;74651:10;;:14;74627:38;74623:410;;;74679:15;74697:31;74724:3;74697:22;74708:10;;74697:6;:10;;:22;;;;:::i;:31::-;74679:49:::0;-1:-1:-1;74741:25:0::1;74769:14;74679:49:::0;74781:1:::1;74769:11;:14::i;:::-;74741:42:::0;-1:-1:-1;74796:21:0::1;74820:30;:7:::0;74741:42;74820:11:::1;:30::i;:::-;74796:54:::0;-1:-1:-1;74882:19:0::1;:6:::0;74893:7;74882:10:::1;:19::i;:::-;74939:3;::::0;74863:38;;-1:-1:-1;74914:49:0::1;::::0;-1:-1:-1;;;;;74939:3:0::1;::::0;74945:17;74914:16:::1;:49::i;:::-;74993:11;::::0;74976:3:::1;::::0;:44:::1;::::0;-1:-1:-1;;;;;74976:3:0;;::::1;::::0;74993:11:::1;75006:13:::0;74976:16:::1;:44::i;:::-;74666:367;;;74623:410;75044:3;::::0;:46:::1;::::0;-1:-1:-1;;;;;75044:3:0::1;75061:10;75073:16:::0;75044::::1;:46::i;:::-;-1:-1:-1::0;;20177:1:0;21131:7;:22;-1:-1:-1;;74173:925:0:o;49965:442::-;-1:-1:-1;;;;;50198:20:0;;2153:10;50198:20;;:60;;-1:-1:-1;50222:36:0;50239:4;2153:10;49247:168;:::i;50222:36::-;50176:160;;;;-1:-1:-1;;;50176:160:0;;16795:2:1;50176:160:0;;;16777:21:1;16834:2;16814:18;;;16807:30;16873:34;16853:18;;;16846:62;-1:-1:-1;;;16924:18:1;;;16917:48;16982:19;;50176:160:0;16593:414:1;50176:160:0;50347:52;50370:4;50376:2;50380:3;50385:7;50394:4;50347:22;:52::i;:::-;49965:442;;;;;:::o;36081:147::-;35762:7;35789:12;;;:6;:12;;;;;:22;;;33744:16;33755:4;33744:10;:16::i;:::-;36195:25:::1;36206:4;36212:7;36195:10;:25::i;:::-;36081:147:::0;;;:::o;75110:840::-;75158:12;:10;:12::i;:::-;75214:10;75182:21;75206:19;;;:7;:19;;;;;75309:17;;;;75285:13;;;;75265:17;;75206:19;;75182:21;75301:4;;75265:33;;;:::i;:::-;:40;;;;:::i;:::-;75264:62;;;;:::i;:::-;75237:89;;75342:16;75362:1;75342:21;75338:136;;75436:4;75420:6;:13;;;75400:17;;:33;;;;:::i;:::-;:40;;;;:::i;:::-;75380:6;:17;;:60;;;;75456:7;;75110:840::o;75338:136::-;75540:4;75524:6;:13;;;75504:17;;:33;;;;:::i;:::-;:40;;;;:::i;:::-;75484:17;;;:60;75584:13;;;;75558:23;;75584:32;;75600:16;;75584:32;:::i;:::-;75558:58;;75649:19;;75631:15;:37;75627:123;;;75685:13;;;;:31;;;;-1:-1:-1;75110:840:0:o;75627:123::-;75762:16;75781:40;75801:19;;75781:15;:19;;:40;;;;:::i;:::-;75762:59;;75851:40;75871:19;;75851:15;:19;;:40;;;;:::i;:::-;75835:6;:13;;:56;;;;75905:34;75911:10;75922:1;75924:11;75905:34;;;;;;;;;;;;:5;:34::i;:::-;75146:804;;;;75110:840::o;37129:218::-;-1:-1:-1;;;;;37225:23:0;;2153:10;37225:23;37217:83;;;;-1:-1:-1;;;37217:83:0;;17214:2:1;37217:83:0;;;17196:21:1;17253:2;17233:18;;;17226:30;17292:34;17272:18;;;17265:62;-1:-1:-1;;;17343:18:1;;;17336:45;17398:19;;37217:83:0;17012:411:1;37217:83:0;37313:26;37325:4;37331:7;37313:11;:26::i;48423:524::-;48579:16;48640:3;:10;48621:8;:15;:29;48613:83;;;;-1:-1:-1;;;48613:83:0;;17630:2:1;48613:83:0;;;17612:21:1;17669:2;17649:18;;;17642:30;17708:34;17688:18;;;17681:62;-1:-1:-1;;;17759:18:1;;;17752:39;17808:19;;48613:83:0;17428:405:1;48613:83:0;48709:30;48756:8;:15;-1:-1:-1;;;;;48742:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48742:30:0;;48709:63;;48790:9;48785:122;48809:8;:15;48805:1;:19;48785:122;;;48865:30;48875:8;48884:1;48875:11;;;;;;;;:::i;:::-;;;;;;;48888:3;48892:1;48888:6;;;;;;;;:::i;:::-;;;;;;;48865:9;:30::i;:::-;48846:13;48860:1;48846:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;48826:3;;;:::i;:::-;;;48785:122;;;-1:-1:-1;48926:13:0;48423:524;-1:-1:-1;;;48423:524:0:o;76494:508::-;76597:10;76545:7;76589:19;;;:7;:19;;;;;76693:15;;76668:18;;76545:7;;76647:62;;76648:39;;:15;;:19;:39::i;:::-;76647:45;;:62::i;:::-;76619:90;;76721:28;76772:17;76752;;:37;;;;:::i;:::-;76721:68;;76801:24;76876:6;:17;;;76868:4;76852:6;:13;;;76829:20;:36;;;;:::i;:::-;:43;;;;:::i;:::-;76828:65;;;;:::i;:::-;76801:92;;76904:22;76945:16;76929:6;:13;;;:32;;;;:::i;:::-;76904:57;76494:508;-1:-1:-1;;;;;;76494:508:0:o;64116:353::-;-1:-1:-1;;;;;64281:23:0;;2153:10;64281:23;;:66;;-1:-1:-1;64308:39:0;64325:7;2153:10;49247:168;:::i;64308:39::-;64259:157;;;;-1:-1:-1;;;64259:157:0;;;;;;;:::i;:::-;64429:32;64440:7;64449:3;64454:6;64429:10;:32::i;71505:120::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71595:3:0::1;:22:::0;;-1:-1:-1;;;;;;71595:22:0::1;-1:-1:-1::0;;;;;71595:22:0;;;::::1;::::0;;;::::1;::::0;;71505:120::o;69177:226::-;-1:-1:-1;;;;;;;;;;;33744:16:0;33755:4;33744:10;:16::i;:::-;69317:6:::1;69313:83;69328:3;:10;69326:1;:12;69313:83;;;69353:32;69359:7;69367:3;69371:1;69367:6;;;;;;;;:::i;:::-;;;;;;;69374:7;69382:1;69374:10;;;;;;;;:::i;:::-;;;;;;;69353:5;:32::i;:::-;69339:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69313:83;;71114:118:::0;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71205:11:0::1;:20:::0;71114:118::o;72074:1360::-;72173:1;72153:17;:21;72144:31;;;;;;72198:1;72195:2;:4;72186:37;;;;-1:-1:-1;;;72186:37:0;;18450:2:1;72186:37:0;;;18432:21:1;18489:2;18469:18;;;18462:30;-1:-1:-1;;;18508:18:1;;;18501:49;18567:18;;72186:37:0;18248:343:1;72186:37:0;72271:1;72243:24;72253:10;72264:2;72243:9;:24::i;:::-;:29;;72234:58;;;;-1:-1:-1;;;72234:58:0;;18798:2:1;72234:58:0;;;18780:21:1;18837:2;18817:18;;;18810:30;-1:-1:-1;;;18856:18:1;;;18849:45;18911:18;;72234:58:0;18596:339:1;72234:58:0;72313:12;72417:3;72364:5;;72371:6;;;;;;;;;-1:-1:-1;;;;;72371:6:0;-1:-1:-1;;;;;72371:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72347:67;;;;;;19153:19:1;;;;19188:12;;19181:28;72386:15:0;19225:12:1;;;;19218:28;;;;72403:10:0;19280:15:1;;-1:-1:-1;;19276:53:1;19262:12;;;19255:75;19346:13;;72347:67:0;;;;;;;;;;;;72337:78;;;;;;72328:88;;:92;;;;:::i;:::-;72313:107;;72441:24;72468:46;72490:23;;72468:17;:21;;:46;;;;:::i;:::-;72441:73;-1:-1:-1;72525:10:0;72538:35;72570:2;72539:25;:17;72570:2;72539:21;:25::i;:::-;72538:31;;:35::i;:::-;72525:48;-1:-1:-1;72525:48:0;72635:1;72632:4;;72628:585;;;72665:16;72657:4;:24;72653:267;;72697:22;72703:10;72714:2;72717:1;72697:5;:22::i;:::-;72733:39;72739:10;72750:1;72752:19;72733:5;:39::i;:::-;72786:27;72792:10;72803:4;:2;72806:1;72803:4;:::i;:::-;72808:1;72786:27;;;;;;;;;;;;:5;:27::i;:::-;72888:4;:2;72891:1;72888:4;:::i;:::-;72832:74;;72862:10;;72832:74;;;;;72653:267;72945:16;72938:4;:23;72934:266;;;72977:22;72983:10;72994:2;72997:1;72977:5;:22::i;:::-;73013:39;73019:10;73030:1;73032:19;73013:5;:39::i;:::-;73066:27;73072:10;73083:4;:2;73086:1;73083:4;:::i;73066:27::-;73168:4;:2;73171:1;73168:4;:::i;:::-;73112:74;;73142:10;;73112:74;;;;;72934:266;73229:2;73233:1;73229:5;73225:193;;73250:22;73256:10;73267:2;73270:1;73250:5;:22::i;:::-;73286:27;73292:10;73303:4;:2;73306:1;73303:4;:::i;73286:27::-;73388:4;:2;73391:1;73388:4;:::i;:::-;73332:74;;73362:10;;73332:74;;;;;73225:193;72133:1301;;;;72074:1360;;:::o;34148:147::-;34234:4;34258:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;34258:29:0;;;;;;;;;;;;;;;34148:147::o;66951:27::-;;;;;;;:::i;71763:130::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71859:10:0::1;:26:::0;71763:130::o;49020:155::-;49115:52;2153:10;49148:8;49158;49115:18;:52::i;71901:165::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;72001:12:::1;:10;:12::i;:::-;-1:-1:-1::0;72024:15:0::1;:34:::0;71901:165::o;71361:136::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71457:23:0::1;:32:::0;71361:136::o;73673:488::-;20221:1;20819:7;;:19;20811:63;;;;-1:-1:-1;;;20811:63:0;;16137:2:1;20811:63:0;;;16119:21:1;16176:2;16156:18;;;16149:30;16215:33;16195:18;;;16188:61;16266:18;;20811:63:0;15935:355:1;20811:63:0;20221:1;20952:7;:18;73745:3:::1;::::0;:25:::1;::::0;-1:-1:-1;;;73745:25:0;;73759:10:::1;73745:25;::::0;::::1;8938:51:1::0;73772:6:0;;-1:-1:-1;;;;;73745:3:0::1;::::0;:13:::1;::::0;8911:18:1;;73745:25:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;73737:42;;;::::0;::::1;;73822:10;73790:21;73814:19:::0;;;:7:::1;:19;::::0;;;;73844::::1;:17;:19::i;:::-;73920:15;73894:41:::0;;73972:13:::1;::::0;::::1;::::0;:25:::1;::::0;73990:6;73972:17:::1;:25::i;:::-;73956:13;::::0;::::1;:41:::0;;;74038:17:::1;::::0;74074:4:::1;::::0;74038:33:::1;::::0;::::1;:::i;:::-;:40;;;;:::i;:::-;74018:17;::::0;::::1;:60:::0;74100:3:::1;::::0;:53:::1;::::0;-1:-1:-1;;;;;74100:3:0::1;74121:10;74140:4;74146:6:::0;74100:20:::1;:53::i;:::-;-1:-1:-1::0;;20177:1:0;21131:7;:22;73673:488::o;68764:150::-;-1:-1:-1;;;;;;;;;;;33744:16:0;33755:4;33744:10;:16::i;:::-;68876:30:::1;68882:7;68891:2;68895:6;68876:30;;;;;;;;;;;::::0;:5:::1;:30::i;73497:168::-:0;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;73612:19:0::1;:45:::0;73497:168::o;68929:233::-;-1:-1:-1;;;;;;;;;;;33744:16:0;33755:4;33744:10;:16::i;:::-;69069:6:::1;69065:90;69080:3;:10;69078:1;:12;69065:90;;;69106:38;69112:7;69121:3;69125:1;69121:6;;;;;;;;:::i;:::-;;;;;;;69129:7;69137:1;69129:10;;;;;;;;:::i;:::-;;;;;;;69106:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;69091:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69065:90;;36473:149:::0;35762:7;35789:12;;;:6;:12;;;;;:22;;;33744:16;33755:4;33744:10;:16::i;:::-;36588:26:::1;36600:4;36606:7;36588:11;:26::i;75956:530::-:0;76020:18;;76001:15;:37;75997:75;;75956:530::o;75997:75::-;76108:3;;:28;;-1:-1:-1;;;76108:28:0;;76130:4;76108:28;;;8938:51:1;76082:23:0;;-1:-1:-1;;;;;76108:3:0;;:13;;8911:18:1;;76108:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76082:54;;76151:15;76170:1;76151:20;76147:111;;-1:-1:-1;76209:15:0;76188:18;:36;75956:530::o;76147:111::-;76268:25;76296:62;76342:15;;76297:39;76317:18;;76297:15;:19;;:39;;;;:::i;76296:62::-;76391:15;76370:18;:36;76439:17;;76268:90;;-1:-1:-1;76439:37:0;;76268:90;;76439:37;:::i;:::-;76419:17;:57;-1:-1:-1;;75956:530:0:o;49487:401::-;-1:-1:-1;;;;;49695:20:0;;2153:10;49695:20;;:60;;-1:-1:-1;49719:36:0;49736:4;2153:10;49247:168;:::i;49719:36::-;49673:151;;;;-1:-1:-1;;;49673:151:0;;;;;;;:::i;:::-;49835:45;49853:4;49859:2;49863;49867:6;49875:4;49835:17;:45::i;71241:112::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71326:10:0::1;:19:::0;71241:112::o;63787:321::-;-1:-1:-1;;;;;63927:23:0;;2153:10;63927:23;;:66;;-1:-1:-1;63954:39:0;63971:7;2153:10;49247:168;:::i;63954:39::-;63905:157;;;;-1:-1:-1;;;63905:157:0;;;;;;;:::i;:::-;64075:25;64081:7;64090:2;64094:5;64075;:25::i;71637:118::-;33298:4;33744:16;33298:4;33744:10;:16::i;:::-;-1:-1:-1;71727:7:0::1;:20:::0;71637:118::o;33852:204::-;33937:4;-1:-1:-1;;;;;;33961:47:0;;-1:-1:-1;;;33961:47:0;;:87;;;34012:36;34036:11;34012:23;:36::i;34599:105::-;34666:30;34677:4;2153:10;34666;:30::i;:::-;34599:105;:::o;54193:88::-;54260:4;:13;54267:6;54260:4;:13;:::i;15910:98::-;15968:7;15995:5;15999:1;15995;:5;:::i;:::-;15988:12;15910:98;-1:-1:-1;;;15910:98:0:o;16309:::-;16367:7;16394:5;16398:1;16394;:5;:::i;24161:248::-;24332:68;;-1:-1:-1;;;;;21832:15:1;;;24332:68:0;;;21814:34:1;21884:15;;21864:18;;;21857:43;21916:18;;;21909:34;;;24305:96:0;;24325:5;;-1:-1:-1;;;24355:27:0;21749:18:1;;24332:68:0;;;;-1:-1:-1;;24332:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;24332:68:0;-1:-1:-1;;;;;;24332:68:0;;;;;;;;;;24305:19;:96::i;55799:813::-;-1:-1:-1;;;;;55977:16:0;;55969:62;;;;-1:-1:-1;;;55969:62:0;;;;;;;:::i;:::-;56064:7;:14;56050:3;:10;:28;56042:81;;;;-1:-1:-1;;;56042:81:0;;;;;;;:::i;:::-;2153:10;56180:66;2153:10;56136:16;56223:2;56227:3;56232:7;56241:4;56180:20;:66::i;:::-;56264:9;56259:103;56283:3;:10;56279:1;:14;56259:103;;;56340:7;56348:1;56340:10;;;;;;;;:::i;:::-;;;;;;;56315:9;:17;56325:3;56329:1;56325:6;;;;;;;;:::i;:::-;;;;;;;56315:17;;;;;;;;;;;:21;56333:2;-1:-1:-1;;;;;56315:21:0;-1:-1:-1;;;;;56315:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;56295:3:0;;-1:-1:-1;56295:3:0;;;:::i;:::-;;;;56259:103;;;;56415:2;-1:-1:-1;;;;;56379:53:0;56411:1;-1:-1:-1;;;;;56379:53:0;56393:8;-1:-1:-1;;;;;56379:53:0;;56419:3;56424:7;56379:53;;;;;;;:::i;:::-;;;;;;;;56523:81;56559:8;56577:1;56581:2;56585:3;56590:7;56599:4;56523:35;:81::i;15553:98::-;15611:7;15638:5;15642:1;15638;:5;:::i;23942:211::-;24086:58;;-1:-1:-1;;;;;23427:32:1;;24086:58:0;;;23409:51:1;23476:18;;;23469:34;;;24059:86:0;;24079:5;;-1:-1:-1;;;24109:23:0;23382:18:1;;24086:58:0;23235:274:1;52203:1146:0;52430:7;:14;52416:3;:10;:28;52408:81;;;;-1:-1:-1;;;52408:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52508:16:0;;52500:66;;;;-1:-1:-1;;;52500:66:0;;;;;;;:::i;:::-;2153:10;52623:60;2153:10;52654:4;52660:2;52664:3;52669:7;52678:4;52623:20;:60::i;:::-;52701:9;52696:421;52720:3;:10;52716:1;:14;52696:421;;;52752:10;52765:3;52769:1;52765:6;;;;;;;;:::i;:::-;;;;;;;52752:19;;52786:14;52803:7;52811:1;52803:10;;;;;;;;:::i;:::-;;;;;;;;;;;;52830:19;52852:13;;;;;;;;;;-1:-1:-1;;;;;52852:19:0;;;;;;;;;;;;52803:10;;-1:-1:-1;52894:21:0;;;;52886:76;;;;-1:-1:-1;;;52886:76:0;;;;;;;:::i;:::-;53006:9;:13;;;;;;;;;;;-1:-1:-1;;;;;53006:19:0;;;;;;;;;;53028:20;;;53006:42;;53078:17;;;;;;;:27;;53028:20;;53006:9;53078:27;;53028:20;;53078:27;:::i;:::-;;;;;;;;52737:380;;;52732:3;;;;:::i;:::-;;;52696:421;;;;53164:2;-1:-1:-1;;;;;53134:47:0;53158:4;-1:-1:-1;;;;;53134:47:0;53148:8;-1:-1:-1;;;;;53134:47:0;;53168:3;53173:7;53134:47;;;;;;;:::i;:::-;;;;;;;;53266:75;53302:8;53312:4;53318:2;53322:3;53327:7;53336:4;53266:35;:75::i;38630:238::-;38714:22;38722:4;38728:7;38714;:22::i;:::-;38709:152;;38753:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38753:29:0;;;;;;;;;:36;;-1:-1:-1;;38753:36:0;38785:4;38753:36;;;38836:12;2153:10;;2073:98;38836:12;-1:-1:-1;;;;;38809:40:0;38827:7;-1:-1:-1;;;;;38809:40:0;38821:4;38809:40;;;;;;;;;;38630:238;;:::o;16874:98::-;16932:7;16959:5;16963:1;16959;:5;:::i;54667:729::-;-1:-1:-1;;;;;54820:16:0;;54812:62;;;;-1:-1:-1;;;54812:62:0;;;;;;;:::i;:::-;2153:10;54887:16;54952:21;54970:2;54952:17;:21::i;:::-;54929:44;;54984:24;55011:25;55029:6;55011:17;:25::i;:::-;54984:52;;55049:66;55070:8;55088:1;55092:2;55096:3;55101:7;55110:4;55049:20;:66::i;:::-;55128:9;:13;;;;;;;;;;;-1:-1:-1;;;;;55128:17:0;;;;;;;;;:27;;55149:6;;55128:9;:27;;55149:6;;55128:27;:::i;:::-;;;;-1:-1:-1;;55171:52:0;;;24505:25:1;;;24561:2;24546:18;;24539:34;;;-1:-1:-1;;;;;55171:52:0;;;;55204:1;;55171:52;;;;;;24478:18:1;55171:52:0;;;;;;;55314:74;55345:8;55363:1;55367:2;55371;55375:6;55383:4;55314:30;:74::i;:::-;54801:595;;;54667:729;;;;:::o;39000:239::-;39084:22;39092:4;39098:7;39084;:22::i;:::-;39080:152;;;39155:5;39123:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;39123:29:0;;;;;;;;;;:37;;-1:-1:-1;;39123:37:0;;;39180:40;2153:10;;39123:12;;39180:40;;39155:5;39180:40;39000:239;;:::o;57968:969::-;-1:-1:-1;;;;;58120:18:0;;58112:66;;;;-1:-1:-1;;;58112:66:0;;;;;;;:::i;:::-;58211:7;:14;58197:3;:10;:28;58189:81;;;;-1:-1:-1;;;58189:81:0;;;;;;;:::i;:::-;58283:16;2153:10;58283:31;;58327:66;58348:8;58358:4;58372:1;58376:3;58381:7;58327:66;;;;;;;;;;;;:20;:66::i;:::-;58411:9;58406:373;58430:3;:10;58426:1;:14;58406:373;;;58462:10;58475:3;58479:1;58475:6;;;;;;;;:::i;:::-;;;;;;;58462:19;;58496:14;58513:7;58521:1;58513:10;;;;;;;;:::i;:::-;;;;;;;;;;;;58540:19;58562:13;;;;;;;;;;-1:-1:-1;;;;;58562:19:0;;;;;;;;;;;;58513:10;;-1:-1:-1;58604:21:0;;;;58596:70;;;;-1:-1:-1;;;58596:70:0;;;;;;;:::i;:::-;58710:9;:13;;;;;;;;;;;-1:-1:-1;;;;;58710:19:0;;;;;;;;;;58732:20;;58710:42;;58442:3;;;;:::i;:::-;;;;58406:373;;;;58834:1;-1:-1:-1;;;;;58796:55:0;58820:4;-1:-1:-1;;;;;58796:55:0;58810:8;-1:-1:-1;;;;;58796:55:0;;58838:3;58843:7;58796:55;;;;;;;:::i;:::-;;;;;;;;58864:65;;;;;;;;;58908:1;58864:65;;;72074:1360;56910:808;-1:-1:-1;;;;;57037:18:0;;57029:66;;;;-1:-1:-1;;;57029:66:0;;;;;;;:::i;:::-;2153:10;57108:16;57173:21;57191:2;57173:17;:21::i;:::-;57150:44;;57205:24;57232:25;57250:6;57232:17;:25::i;:::-;57205:52;;57270:66;57291:8;57301:4;57315:1;57319:3;57324:7;57270:66;;;;;;;;;;;;:20;:66::i;:::-;57349:19;57371:13;;;;;;;;;;;-1:-1:-1;;;;;57371:19:0;;;;;;;;;;57409:21;;;;57401:70;;;;-1:-1:-1;;;57401:70:0;;;;;;;:::i;:::-;57507:9;:13;;;;;;;;;;;-1:-1:-1;;;;;57507:19:0;;;;;;;;;;;;57529:20;;;57507:42;;57578:54;;24505:25:1;;;24546:18;;;24539:34;;;57507:19:0;;57578:54;;;;;;24478:18:1;57578:54:0;;;;;;;57645:65;;;;;;;;;57689:1;57645:65;;;72074:1360;15172:98;15230:7;15257:5;15261:1;15257;:5;:::i;59080:331::-;59235:8;-1:-1:-1;;;;;59226:17:0;:5;-1:-1:-1;;;;;59226:17:0;;59218:71;;;;-1:-1:-1;;;59218:71:0;;25595:2:1;59218:71:0;;;25577:21:1;25634:2;25614:18;;;25607:30;25673:34;25653:18;;;25646:62;-1:-1:-1;;;25724:18:1;;;25717:39;25773:19;;59218:71:0;25393:405:1;59218:71:0;-1:-1:-1;;;;;59300:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59300:46:0;;;;;;;;;;59362:41;;1159::1;;;59362::0;;1132:18:1;59362:41:0;;;;;;;59080:331;;;:::o;50871:974::-;-1:-1:-1;;;;;51059:16:0;;51051:66;;;;-1:-1:-1;;;51051:66:0;;;;;;;:::i;:::-;2153:10;51130:16;51195:21;51213:2;51195:17;:21::i;:::-;51172:44;;51227:24;51254:25;51272:6;51254:17;:25::i;:::-;51227:52;;51292:60;51313:8;51323:4;51329:2;51333:3;51338:7;51347:4;51292:20;:60::i;:::-;51365:19;51387:13;;;;;;;;;;;-1:-1:-1;;;;;51387:19:0;;;;;;;;;;51425:21;;;;51417:76;;;;-1:-1:-1;;;51417:76:0;;;;;;;:::i;:::-;51529:9;:13;;;;;;;;;;;-1:-1:-1;;;;;51529:19:0;;;;;;;;;;51551:20;;;51529:42;;51593:17;;;;;;;:27;;51551:20;;51529:9;51593:27;;51551:20;;51593:27;:::i;:::-;;;;-1:-1:-1;;51638:46:0;;;24505:25:1;;;24561:2;24546:18;;24539:34;;;-1:-1:-1;;;;;51638:46:0;;;;;;;;;;;;;;24478:18:1;51638:46:0;;;;;;;51769:68;51800:8;51810:4;51816:2;51820;51824:6;51832:4;51769:30;:68::i;:::-;51040:805;;;;50871:974;;;;;:::o;47050:310::-;47152:4;-1:-1:-1;;;;;;47189:41:0;;-1:-1:-1;;;47189:41:0;;:110;;-1:-1:-1;;;;;;;47247:52:0;;-1:-1:-1;;;47247:52:0;47189:110;:163;;;-1:-1:-1;;;;;;;;;;28512:40:0;;;47316:36;28403:157;34994:505;35083:22;35091:4;35097:7;35083;:22::i;:::-;35078:414;;35271:41;35299:7;-1:-1:-1;;;;;35271:41:0;35309:2;35271:19;:41::i;:::-;35385:38;35413:4;35420:2;35385:19;:38::i;:::-;35176:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;35176:270:0;;;;;;;;;;-1:-1:-1;;;35122:358:0;;;;;;;:::i;26515:716::-;26939:23;26965:69;26993:4;26965:69;;;;;;;;;;;;;;;;;26973:5;-1:-1:-1;;;;;26965:27:0;;;:69;;;;;:::i;:::-;27049:17;;26939:95;;-1:-1:-1;27049:21:0;27045:179;;27146:10;27135:30;;;;;;;;;;;;:::i;:::-;27127:85;;;;-1:-1:-1;;;27127:85:0;;27072:2:1;27127:85:0;;;27054:21:1;27111:2;27091:18;;;27084:30;27150:34;27130:18;;;27123:62;-1:-1:-1;;;27201:18:1;;;27194:40;27251:19;;27127:85:0;26870:406:1;67829:291:0;68046:66;68073:8;68083:4;68089:2;68093:3;68098:7;68107:4;68046:26;:66::i;62525:813::-;-1:-1:-1;;;;;62765:13:0;;5644:19;:23;62761:570;;62801:79;;-1:-1:-1;;;62801:79:0;;-1:-1:-1;;;;;62801:43:0;;;;;:79;;62845:8;;62855:4;;62861:3;;62866:7;;62875:4;;62801:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62801:79:0;;;;;;;;-1:-1:-1;;62801:79:0;;;;;;;;;;;;:::i;:::-;;;62797:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;63193:6;63186:14;;-1:-1:-1;;;63186:14:0;;;;;;;;:::i;62797:523::-;;;63242:62;;-1:-1:-1;;;63242:62:0;;29429:2:1;63242:62:0;;;29411:21:1;29468:2;29448:18;;;29441:30;29507:34;29487:18;;;29480:62;-1:-1:-1;;;29558:18:1;;;29551:50;29618:19;;63242:62:0;29227:416:1;62797:523:0;-1:-1:-1;;;;;;62962:60:0;;-1:-1:-1;;;62962:60:0;62958:159;;63047:50;;-1:-1:-1;;;63047:50:0;;;;;;;:::i;63346:198::-;63466:16;;;63480:1;63466:16;;;;;;;;;63412;;63441:22;;63466:16;;;;;;;;;;;;-1:-1:-1;63466:16:0;63441:41;;63504:7;63493:5;63499:1;63493:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;63531:5;63346:198;-1:-1:-1;;63346:198:0:o;61773:744::-;-1:-1:-1;;;;;61988:13:0;;5644:19;:23;61984:526;;62024:72;;-1:-1:-1;;;62024:72:0;;-1:-1:-1;;;;;62024:38:0;;;;;:72;;62063:8;;62073:4;;62079:2;;62083:6;;62091:4;;62024:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62024:72:0;;;;;;;;-1:-1:-1;;62024:72:0;;;;;;;;;;;;:::i;:::-;;;62020:479;;;;:::i;:::-;-1:-1:-1;;;;;;62146:55:0;;-1:-1:-1;;;62146:55:0;62142:154;;62226:50;;-1:-1:-1;;;62226:50:0;;;;;;;:::i;3814:451::-;3889:13;3915:19;3947:10;3951:6;3947:1;:10;:::i;:::-;:14;;3960:1;3947:14;:::i;:::-;-1:-1:-1;;;;;3937:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3937:25:0;;3915:47;;-1:-1:-1;;;3973:6:0;3980:1;3973:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3973:15:0;;;;;;;;;-1:-1:-1;;;3999:6:0;4006:1;3999:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3999:15:0;;;;;;;;-1:-1:-1;4030:9:0;4042:10;4046:6;4042:1;:10;:::i;:::-;:14;;4055:1;4042:14;:::i;:::-;4030:26;;4025:135;4062:1;4058;:5;4025:135;;;-1:-1:-1;;;4110:5:0;4118:3;4110:11;4097:25;;;;;;;:::i;:::-;;;;4085:6;4092:1;4085:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;4085:37:0;;;;;;;;-1:-1:-1;4147:1:0;4137:11;;;;;4065:3;;;:::i;:::-;;;4025:135;;;-1:-1:-1;4178:10:0;;4170:55;;;;-1:-1:-1;;;4170:55:0;;30966:2:1;4170:55:0;;;30948:21:1;;;30985:18;;;30978:30;31044:34;31024:18;;;31017:62;31096:18;;4170:55:0;30764:356:1;8094:229:0;8231:12;8263:52;8285:6;8293:4;8299:1;8302:12;8263:21;:52::i;:::-;8256:59;8094:229;-1:-1:-1;;;;8094:229:0:o;65418:931::-;-1:-1:-1;;;;;65740:18:0;;65736:160;;65780:9;65775:110;65799:3;:10;65795:1;:14;65775:110;;;65859:7;65867:1;65859:10;;;;;;;;:::i;:::-;;;;;;;65835:12;:20;65848:3;65852:1;65848:6;;;;;;;;:::i;:::-;;;;;;;65835:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;65811:3:0;;-1:-1:-1;65811:3:0;;:::i;:::-;;;65775:110;;;;65736:160;-1:-1:-1;;;;;65912:16:0;;65908:434;;65950:9;65945:386;65969:3;:10;65965:1;:14;65945:386;;;66005:10;66018:3;66022:1;66018:6;;;;;;;;:::i;:::-;;;;;;;66005:19;;66043:14;66060:7;66068:1;66060:10;;;;;;;;:::i;:::-;;;;;;;66043:27;;66089:14;66106:12;:16;66119:2;66106:16;;;;;;;;;;;;66089:33;;66159:6;66149;:16;;66141:69;;;;-1:-1:-1;;;66141:69:0;;31327:2:1;66141:69:0;;;31309:21:1;31366:2;31346:18;;;31339:30;31405:34;31385:18;;;31378:62;-1:-1:-1;;;31456:18:1;;;31449:38;31504:19;;66141:69:0;31125:404:1;66141:69:0;66262:16;;;;:12;:16;;;;;;66281:15;;66262:34;;65981:3;;;:::i;:::-;;;65945:386;;9214:510;9384:12;9442:5;9417:21;:30;;9409:81;;;;-1:-1:-1;;;9409:81:0;;31736:2:1;9409:81:0;;;31718:21:1;31775:2;31755:18;;;31748:30;31814:34;31794:18;;;31787:62;-1:-1:-1;;;31865:18:1;;;31858:36;31911:19;;9409:81:0;31534:402:1;9409:81:0;-1:-1:-1;;;;;5644:19:0;;;9501:60;;;;-1:-1:-1;;;9501:60:0;;32143:2:1;9501:60:0;;;32125:21:1;32182:2;32162:18;;;32155:30;32221:31;32201:18;;;32194:59;32270:18;;9501:60:0;31941:353:1;9501:60:0;9575:12;9589:23;9616:6;-1:-1:-1;;;;;9616:11:0;9635:5;9642:4;9616:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9574:73;;;;9665:51;9682:7;9691:10;9703:12;9665:16;:51::i;:::-;9658:58;9214:510;-1:-1:-1;;;;;;;9214:510:0:o;11900:712::-;12050:12;12079:7;12075:530;;;-1:-1:-1;12110:10:0;12103:17;;12075:530;12224:17;;:21;12220:374;;12422:10;12416:17;12483:15;12470:10;12466:2;12462:19;12455:44;12220:374;12565:12;12558:20;;-1:-1:-1;;;12558:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;-1:-1:-1;;;;;1473:34:1;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:469::-;1662:5;-1:-1:-1;;;;;1688:6:1;1685:30;1682:56;;;1718:18;;:::i;:::-;1767:2;1761:9;1779:69;1836:2;1815:15;;-1:-1:-1;;1811:29:1;1842:4;1807:40;1761:9;1779:69;:::i;:::-;1866:6;1857:15;;1896:6;1888;1881:22;1936:3;1927:6;1922:3;1918:16;1915:25;1912:45;;;1953:1;1950;1943:12;1912:45;2003:6;1998:3;1991:4;1983:6;1979:17;1966:44;2058:1;2051:4;2042:6;2034;2030:19;2026:30;2019:41;;1597:469;;;;;:::o;2071:451::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;2249:9;2236:23;-1:-1:-1;;;;;2274:6:1;2271:30;2268:50;;;2314:1;2311;2304:12;2268:50;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:55:1;;2419:1;2416;2409:12;2368:55;2442:74;2508:7;2503:2;2490:16;2485:2;2481;2477:11;2442:74;:::i;2527:250::-;2612:1;2622:113;2636:6;2633:1;2630:13;2622:113;;;2712:11;;;2706:18;2693:11;;;2686:39;2658:2;2651:10;2622:113;;;-1:-1:-1;;2769:1:1;2751:16;;2744:27;2527:250::o;2782:271::-;2824:3;2862:5;2856:12;2889:6;2884:3;2877:19;2905:76;2974:6;2967:4;2962:3;2958:14;2951:4;2944:5;2940:16;2905:76;:::i;:::-;3035:2;3014:15;-1:-1:-1;;3010:29:1;3001:39;;;;3042:4;2997:50;;2782:271;-1:-1:-1;;2782:271:1:o;3058:220::-;3207:2;3196:9;3189:21;3170:4;3227:45;3268:2;3257:9;3253:18;3245:6;3227:45;:::i;3283:180::-;3342:6;3395:2;3383:9;3374:7;3370:23;3366:32;3363:52;;;3411:1;3408;3401:12;3363:52;-1:-1:-1;3434:23:1;;3283:180;-1:-1:-1;3283:180:1:o;3835:183::-;3895:4;-1:-1:-1;;;;;3920:6:1;3917:30;3914:56;;;3950:18;;:::i;:::-;-1:-1:-1;3995:1:1;3991:14;4007:4;3987:25;;3835:183::o;4023:724::-;4077:5;4130:3;4123:4;4115:6;4111:17;4107:27;4097:55;;4148:1;4145;4138:12;4097:55;4184:6;4171:20;4210:4;4233:43;4273:2;4233:43;:::i;:::-;4305:2;4299:9;4317:31;4345:2;4337:6;4317:31;:::i;:::-;4383:18;;;4475:1;4471:10;;;;4459:23;;4455:32;;;4417:15;;;;-1:-1:-1;4499:15:1;;;4496:35;;;4527:1;4524;4517:12;4496:35;4563:2;4555:6;4551:15;4575:142;4591:6;4586:3;4583:15;4575:142;;;4657:17;;4645:30;;4695:12;;;;4608;;4575:142;;;-1:-1:-1;4735:6:1;4023:724;-1:-1:-1;;;;;;4023:724:1:o;4752:221::-;4794:5;4847:3;4840:4;4832:6;4828:17;4824:27;4814:55;;4865:1;4862;4855:12;4814:55;4887:80;4963:3;4954:6;4941:20;4934:4;4926:6;4922:17;4887:80;:::i;4978:943::-;5132:6;5140;5148;5156;5164;5217:3;5205:9;5196:7;5192:23;5188:33;5185:53;;;5234:1;5231;5224:12;5185:53;5257:29;5276:9;5257:29;:::i;:::-;5247:39;;5305:38;5339:2;5328:9;5324:18;5305:38;:::i;:::-;5295:48;;5394:2;5383:9;5379:18;5366:32;-1:-1:-1;;;;;5458:2:1;5450:6;5447:14;5444:34;;;5474:1;5471;5464:12;5444:34;5497:61;5550:7;5541:6;5530:9;5526:22;5497:61;:::i;:::-;5487:71;;5611:2;5600:9;5596:18;5583:32;5567:48;;5640:2;5630:8;5627:16;5624:36;;;5656:1;5653;5646:12;5624:36;5679:63;5734:7;5723:8;5712:9;5708:24;5679:63;:::i;:::-;5669:73;;5795:3;5784:9;5780:19;5767:33;5751:49;;5825:2;5815:8;5812:16;5809:36;;;5841:1;5838;5831:12;5809:36;;5864:51;5907:7;5896:8;5885:9;5881:24;5864:51;:::i;:::-;5854:61;;;4978:943;;;;;;;;:::o;5926:254::-;5994:6;6002;6055:2;6043:9;6034:7;6030:23;6026:32;6023:52;;;6071:1;6068;6061:12;6023:52;6107:9;6094:23;6084:33;;6136:38;6170:2;6159:9;6155:18;6136:38;:::i;:::-;6126:48;;5926:254;;;;;:::o;6185:1208::-;6303:6;6311;6364:2;6352:9;6343:7;6339:23;6335:32;6332:52;;;6380:1;6377;6370:12;6332:52;6420:9;6407:23;-1:-1:-1;;;;;6490:2:1;6482:6;6479:14;6476:34;;;6506:1;6503;6496:12;6476:34;6544:6;6533:9;6529:22;6519:32;;6589:7;6582:4;6578:2;6574:13;6570:27;6560:55;;6611:1;6608;6601:12;6560:55;6647:2;6634:16;6669:4;6692:43;6732:2;6692:43;:::i;:::-;6764:2;6758:9;6776:31;6804:2;6796:6;6776:31;:::i;:::-;6842:18;;;6930:1;6926:10;;;;6918:19;;6914:28;;;6876:15;;;;-1:-1:-1;6954:19:1;;;6951:39;;;6986:1;6983;6976:12;6951:39;7010:11;;;;7030:148;7046:6;7041:3;7038:15;7030:148;;;7112:23;7131:3;7112:23;:::i;:::-;7100:36;;7063:12;;;;7156;;;;7030:148;;;7197:6;-1:-1:-1;;7241:18:1;;7228:32;;-1:-1:-1;;7272:16:1;;;7269:36;;;7301:1;7298;7291:12;7269:36;;7324:63;7379:7;7368:8;7357:9;7353:24;7324:63;:::i;:::-;7314:73;;;6185:1208;;;;;:::o;7398:435::-;7451:3;7489:5;7483:12;7516:6;7511:3;7504:19;7542:4;7571:2;7566:3;7562:12;7555:19;;7608:2;7601:5;7597:14;7629:1;7639:169;7653:6;7650:1;7647:13;7639:169;;;7714:13;;7702:26;;7748:12;;;;7783:15;;;;7675:1;7668:9;7639:169;;;-1:-1:-1;7824:3:1;;7398:435;-1:-1:-1;;;;;7398:435:1:o;7838:261::-;8017:2;8006:9;7999:21;7980:4;8037:56;8089:2;8078:9;8074:18;8066:6;8037:56;:::i;8104:669::-;8231:6;8239;8247;8300:2;8288:9;8279:7;8275:23;8271:32;8268:52;;;8316:1;8313;8306:12;8268:52;8339:29;8358:9;8339:29;:::i;:::-;8329:39;;8419:2;8408:9;8404:18;8391:32;-1:-1:-1;;;;;8483:2:1;8475:6;8472:14;8469:34;;;8499:1;8496;8489:12;8469:34;8522:61;8575:7;8566:6;8555:9;8551:22;8522:61;:::i;:::-;8512:71;;8636:2;8625:9;8621:18;8608:32;8592:48;;8665:2;8655:8;8652:16;8649:36;;;8681:1;8678;8671:12;8649:36;;8704:63;8759:7;8748:8;8737:9;8733:24;8704:63;:::i;:::-;8694:73;;;8104:669;;;;;:::o;9000:186::-;9059:6;9112:2;9100:9;9091:7;9087:23;9083:32;9080:52;;;9128:1;9125;9118:12;9080:52;9151:29;9170:9;9151:29;:::i;9191:248::-;9259:6;9267;9320:2;9308:9;9299:7;9295:23;9291:32;9288:52;;;9336:1;9333;9326:12;9288:52;-1:-1:-1;;9359:23:1;;;9429:2;9414:18;;;9401:32;;-1:-1:-1;9191:248:1:o;9444:118::-;9530:5;9523:13;9516:21;9509:5;9506:32;9496:60;;9552:1;9549;9542:12;9567:315;9632:6;9640;9693:2;9681:9;9672:7;9668:23;9664:32;9661:52;;;9709:1;9706;9699:12;9661:52;9732:29;9751:9;9732:29;:::i;:::-;9722:39;;9811:2;9800:9;9796:18;9783:32;9824:28;9846:5;9824:28;:::i;:::-;9871:5;9861:15;;;9567:315;;;;;:::o;9887:322::-;9964:6;9972;9980;10033:2;10021:9;10012:7;10008:23;10004:32;10001:52;;;10049:1;10046;10039:12;10001:52;10072:29;10091:9;10072:29;:::i;:::-;10062:39;10148:2;10133:18;;10120:32;;-1:-1:-1;10199:2:1;10184:18;;;10171:32;;9887:322;-1:-1:-1;;;9887:322:1:o;10214:260::-;10282:6;10290;10343:2;10331:9;10322:7;10318:23;10314:32;10311:52;;;10359:1;10356;10349:12;10311:52;10382:29;10401:9;10382:29;:::i;:::-;10372:39;;10430:38;10464:2;10453:9;10449:18;10430:38;:::i;10875:877::-;10981:6;10989;10997;11005;11013;11021;11074:3;11062:9;11053:7;11049:23;11045:33;11042:53;;;11091:1;11088;11081:12;11042:53;11114:29;11133:9;11114:29;:::i;:::-;11104:39;;11162:38;11196:2;11185:9;11181:18;11162:38;:::i;:::-;11152:48;;11247:2;11236:9;11232:18;11219:32;11209:42;;11298:2;11287:9;11283:18;11270:32;11260:42;;11353:3;11342:9;11338:19;11325:33;-1:-1:-1;;;;;11418:2:1;11410:6;11407:14;11404:34;;;11434:1;11431;11424:12;11404:34;11472:6;11461:9;11457:22;11447:32;;11517:7;11510:4;11506:2;11502:13;11498:27;11488:55;;11539:1;11536;11529:12;11488:55;11579:2;11566:16;11605:2;11597:6;11594:14;11591:34;;;11621:1;11618;11611:12;11591:34;11666:7;11661:2;11652:6;11648:2;11644:15;11640:24;11637:37;11634:57;;;11687:1;11684;11677:12;11634:57;11718:2;11714;11710:11;11700:21;;11740:6;11730:16;;;;;10875:877;;;;;;;;:::o;11964:606::-;12068:6;12076;12084;12092;12100;12153:3;12141:9;12132:7;12128:23;12124:33;12121:53;;;12170:1;12167;12160:12;12121:53;12193:29;12212:9;12193:29;:::i;:::-;12183:39;;12241:38;12275:2;12264:9;12260:18;12241:38;:::i;:::-;12231:48;;12326:2;12315:9;12311:18;12298:32;12288:42;;12377:2;12366:9;12362:18;12349:32;12339:42;;12432:3;12421:9;12417:19;12404:33;-1:-1:-1;;;;;12452:6:1;12449:30;12446:50;;;12492:1;12489;12482:12;12446:50;12515:49;12556:7;12547:6;12536:9;12532:22;12515:49;:::i;12986:380::-;13065:1;13061:12;;;;13108;;;13129:61;;13183:4;13175:6;13171:17;13161:27;;13129:61;13236:2;13228:6;13225:14;13205:18;13202:38;13199:161;;13282:10;13277:3;13273:20;13270:1;13263:31;13317:4;13314:1;13307:15;13345:4;13342:1;13335:15;13199:161;;12986:380;;;:::o;13371:127::-;13432:10;13427:3;13423:20;13420:1;13413:31;13463:4;13460:1;13453:15;13487:4;13484:1;13477:15;13503:125;13568:9;;;13589:10;;;13586:36;;;13602:18;;:::i;14180:184::-;14250:6;14303:2;14291:9;14282:7;14278:23;14274:32;14271:52;;;14319:1;14316;14309:12;14271:52;-1:-1:-1;14342:16:1;;14180:184;-1:-1:-1;14180:184:1:o;14719:128::-;14786:9;;;14807:11;;;14804:37;;;14821:18;;:::i;14852:135::-;14891:3;14912:17;;;14909:43;;14932:18;;:::i;:::-;-1:-1:-1;14979:1:1;14968:13;;14852:135::o;15554:127::-;15615:10;15610:3;15606:20;15603:1;15596:31;15646:4;15643:1;15636:15;15670:4;15667:1;15660:15;15686:112;15718:1;15744;15734:35;;15749:18;;:::i;:::-;-1:-1:-1;15783:9:1;;15686:112::o;15803:127::-;15864:10;15859:3;15855:20;15852:1;15845:31;15895:4;15892:1;15885:15;15919:4;15916:1;15909:15;16295:168;16368:9;;;16399;;16416:15;;;16410:22;;16396:37;16386:71;;16437:18;;:::i;16468:120::-;16508:1;16534;16524:35;;16539:18;;:::i;:::-;-1:-1:-1;16573:9:1;;16468:120::o;17838:405::-;18040:2;18022:21;;;18079:2;18059:18;;;18052:30;18118:34;18113:2;18098:18;;18091:62;-1:-1:-1;;;18184:2:1;18169:18;;18162:39;18233:3;18218:19;;17838:405::o;19496:545::-;19598:2;19593:3;19590:11;19587:448;;;19634:1;19659:5;19655:2;19648:17;19704:4;19700:2;19690:19;19774:2;19762:10;19758:19;19755:1;19751:27;19745:4;19741:38;19810:4;19798:10;19795:20;19792:47;;;-1:-1:-1;19833:4:1;19792:47;19888:2;19883:3;19879:12;19876:1;19872:20;19866:4;19862:31;19852:41;;19943:82;19961:2;19954:5;19951:13;19943:82;;;20006:17;;;19987:1;19976:13;19943:82;;20217:1352;20343:3;20337:10;-1:-1:-1;;;;;20362:6:1;20359:30;20356:56;;;20392:18;;:::i;:::-;20421:97;20511:6;20471:38;20503:4;20497:11;20471:38;:::i;:::-;20465:4;20421:97;:::i;:::-;20573:4;;20637:2;20626:14;;20654:1;20649:663;;;;21356:1;21373:6;21370:89;;;-1:-1:-1;21425:19:1;;;21419:26;21370:89;-1:-1:-1;;20174:1:1;20170:11;;;20166:24;20162:29;20152:40;20198:1;20194:11;;;20149:57;21472:81;;20619:944;;20649:663;19443:1;19436:14;;;19480:4;19467:18;;-1:-1:-1;;20685:20:1;;;20803:236;20817:7;20814:1;20811:14;20803:236;;;20906:19;;;20900:26;20885:42;;20998:27;;;;20966:1;20954:14;;;;20833:19;;20803:236;;;20807:3;21067:6;21058:7;21055:19;21052:201;;;21128:19;;;21122:26;-1:-1:-1;;21211:1:1;21207:14;;;21223:3;21203:24;21199:37;21195:42;21180:58;21165:74;;21052:201;-1:-1:-1;;;;;21299:1:1;21283:14;;;21279:22;21266:36;;-1:-1:-1;20217:1352:1:o;21954:397::-;22156:2;22138:21;;;22195:2;22175:18;;;22168:30;22234:34;22229:2;22214:18;;22207:62;-1:-1:-1;;;22300:2:1;22285:18;;22278:31;22341:3;22326:19;;21954:397::o;22356:404::-;22558:2;22540:21;;;22597:2;22577:18;;;22570:30;22636:34;22631:2;22616:18;;22609:62;-1:-1:-1;;;22702:2:1;22687:18;;22680:38;22750:3;22735:19;;22356:404::o;22765:465::-;23022:2;23011:9;23004:21;22985:4;23048:56;23100:2;23089:9;23085:18;23077:6;23048:56;:::i;:::-;23152:9;23144:6;23140:22;23135:2;23124:9;23120:18;23113:50;23180:44;23217:6;23209;23180:44;:::i;:::-;23172:52;22765:465;-1:-1:-1;;;;;22765:465:1:o;23514:401::-;23716:2;23698:21;;;23755:2;23735:18;;;23728:30;23794:34;23789:2;23774:18;;23767:62;-1:-1:-1;;;23860:2:1;23845:18;;23838:35;23905:3;23890:19;;23514:401::o;23920:406::-;24122:2;24104:21;;;24161:2;24141:18;;;24134:30;24200:34;24195:2;24180:18;;24173:62;-1:-1:-1;;;24266:2:1;24251:18;;24244:40;24316:3;24301:19;;23920:406::o;24584:399::-;24786:2;24768:21;;;24825:2;24805:18;;;24798:30;24864:34;24859:2;24844:18;;24837:62;-1:-1:-1;;;24930:2:1;24915:18;;24908:33;24973:3;24958:19;;24584:399::o;24988:400::-;25190:2;25172:21;;;25229:2;25209:18;;;25202:30;25268:34;25263:2;25248:18;;25241:62;-1:-1:-1;;;25334:2:1;25319:18;;25312:34;25378:3;25363:19;;24988:400::o;25803:812::-;26214:25;26209:3;26202:38;26184:3;26269:6;26263:13;26285:75;26353:6;26348:2;26343:3;26339:12;26332:4;26324:6;26320:17;26285:75;:::i;:::-;-1:-1:-1;;;26419:2:1;26379:16;;;26411:11;;;26404:40;26469:13;;26491:76;26469:13;26553:2;26545:11;;26538:4;26526:17;;26491:76;:::i;:::-;26587:17;26606:2;26583:26;;25803:812;-1:-1:-1;;;;25803:812:1:o;26620:245::-;26687:6;26740:2;26728:9;26719:7;26715:23;26711:32;26708:52;;;26756:1;26753;26746:12;26708:52;26788:9;26782:16;26807:28;26829:5;26807:28;:::i;27281:827::-;-1:-1:-1;;;;;27678:15:1;;;27660:34;;27730:15;;27725:2;27710:18;;27703:43;27640:3;27777:2;27762:18;;27755:31;;;27603:4;;27809:57;;27846:19;;27838:6;27809:57;:::i;:::-;27914:9;27906:6;27902:22;27897:2;27886:9;27882:18;27875:50;27948:44;27985:6;27977;27948:44;:::i;:::-;27934:58;;28041:9;28033:6;28029:22;28023:3;28012:9;28008:19;28001:51;28069:33;28095:6;28087;28069:33;:::i;:::-;28061:41;27281:827;-1:-1:-1;;;;;;;;27281:827:1:o;28113:249::-;28182:6;28235:2;28223:9;28214:7;28210:23;28206:32;28203:52;;;28251:1;28248;28241:12;28203:52;28283:9;28277:16;28302:30;28326:5;28302:30;:::i;28367:179::-;28402:3;28444:1;28426:16;28423:23;28420:120;;;28490:1;28487;28484;28469:23;-1:-1:-1;28527:1:1;28521:8;28516:3;28512:18;28420:120;28367:179;:::o;28551:671::-;28590:3;28632:4;28614:16;28611:26;28608:39;;;28551:671;:::o;28608:39::-;28674:2;28668:9;-1:-1:-1;;28739:16:1;28735:25;;28732:1;28668:9;28711:50;28790:4;28784:11;28814:16;-1:-1:-1;;;;;28920:2:1;28913:4;28905:6;28901:17;28898:25;28893:2;28885:6;28882:14;28879:45;28876:58;;;28927:5;;;;;28551:671;:::o;28876:58::-;28964:6;28958:4;28954:17;28943:28;;29000:3;28994:10;29027:2;29019:6;29016:14;29013:27;;;29033:5;;;;;;28551:671;:::o;29013:27::-;29117:2;29098:16;29092:4;29088:27;29084:36;29077:4;29068:6;29063:3;29059:16;29055:27;29052:69;29049:82;;;29124:5;;;;;;28551:671;:::o;29049:82::-;29140:57;29191:4;29182:6;29174;29170:19;29166:30;29160:4;29140:57;:::i;:::-;-1:-1:-1;29213:3:1;;28551:671;-1:-1:-1;;;;;28551:671:1:o;29648:404::-;29850:2;29832:21;;;29889:2;29869:18;;;29862:30;29928:34;29923:2;29908:18;;29901:62;-1:-1:-1;;;29994:2:1;29979:18;;29972:38;30042:3;30027:19;;29648:404::o;30057:561::-;-1:-1:-1;;;;;30354:15:1;;;30336:34;;30406:15;;30401:2;30386:18;;30379:43;30453:2;30438:18;;30431:34;;;30496:2;30481:18;;30474:34;;;30316:3;30539;30524:19;;30517:32;;;30279:4;;30566:46;;30592:19;;30584:6;30566:46;:::i;30623:136::-;30662:3;30690:5;30680:39;;30699:18;;:::i;:::-;-1:-1:-1;;;30735:18:1;;30623:136::o;32299:287::-;32428:3;32466:6;32460:13;32482:66;32541:6;32536:3;32529:4;32521:6;32517:17;32482:66;:::i;:::-;32564:16;;;;;32299:287;-1:-1:-1;;32299:287:1:o

Swarm Source

ipfs://fe4cc0ccd38f2ba117faeb7f2bd67a4655331d19c62daabb59949812d1b21490
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.