ETH Price: $2,627.64 (+7.17%)

Token

Ugly Muck YC (wUMYC)
 

Overview

Max Total Supply

0 wUMYC

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 wUMYC
0xf28cfcedf9ba27718a223ef5272201ae46a33cfe
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:
Wrapper

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Wrapper.sol
/**
 *Submitted for verification at polygonscan.com on 2022-11-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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





pragma solidity ^0.8.9;

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

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

    bool private _paused;

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

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



pragma solidity ^0.8.9;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.9;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;


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

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



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;


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

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

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





pragma solidity ^0.8.9;
// to enable certain compiler features

//import '@openzeppelin/contracts/token/ERC721/ERC721.sol';



contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
/**
 __          __                                 _____            _                  _   
 \ \        / /                                / ____|          | |                | |  
  \ \  /\  / / __ __ _ _ __  _ __   ___ _ __  | |     ___  _ __ | |_ _ __ __ _  ___| |_ 
   \ \/  \/ / '__/ _` | '_ \| '_ \ / _ \ '__| | |    / _ \| '_ \| __| '__/ _` |/ __| __|
    \  /\  /| | | (_| | |_) | |_) |  __/ |    | |___| (_) | | | | |_| | | (_| | (__| |_ 
     \/  \/ |_|  \__,_| .__/| .__/ \___|_|     \_____\___/|_| |_|\__|_|  \__,_|\___|\__|
                      | |   | |                                                         
                      |_|   |_|                                                         
-> This wrapper can be deployed to migrate a rugged NFT to a new Contract
-> Original design and coding by JoeSoap8308 (Dev of the Wrapped Companions - https://opensea.io/collection/wrappedcompanion-1) 
-> Wrap and Unwrap code based around the Pudgy Pengiuns Wrapper



**/
///Interfaces
interface wrapperdb {
    function isBlockedNFT(uint _tokenID) external view returns(bool,uint256);
    function isHolder(address _address) external view returns(bool);
    function getWrappedStatus(address _migrator) external view returns(bool);
    function getArtStatus(uint _tokenid)external view returns(uint);
    function setUserStatus(address _wrapper,bool _haswrapped) external;
    function manageNumHolders(uint _option) external;
    function manageHolderAddresses(bool status,address _holder) external;
    
}
///////Start of contract/////
contract Wrapper is
  ERC721,
  IERC721Receiver,
  Pausable,
  Ownable
{
    //Events
  event Wrapped(uint256 indexed tokenId);
  event Unwrapped(uint256 indexed tokenId);
    //Variables
  address public ruggedproject = 0x9121c7f5976692bc7F97Cd380d19a7A7e1d0E0F5; //address of Rugged NFT
  address public dbcontract = 0xE3a56de836e970D3154c34A6E89A9E158Bd5fAed; //address if the DB contract
  address public currentowner; //used to open methods and restrict via address
  address public upgradecontract; //External smart contract to upgrade artwork to future proof the art
  IERC721 immutable ruggednft;
  uint public numwraps; //total wraps
  bool public wrapenabled = true; //Enable/Disable Wrapping
  bool public dynamicart = true; //Bool to enable dynamic art
  string public defaulturi = "https://gateway.pinata.cloud/ipfs/bafybeic77wh5mepr6bu5on7xry2fska4cugmz6yqudri7et7m7yj642l7a/"; //Default URI
  string private artpath1; //Global path 1
  string private artpath2; //Global path 2
  ////Mappings/////
  mapping(address => bool) internal artapproved; //Whether a holder has approved their art to be modded
  mapping(uint => string) internal artpathfortoken; //Path for individual tokens
  mapping(uint => bool) internal customtoken; //Used to ad a single ad-hoc artwork update
  /////////////////
  ////Used to get uint256 -> String
  using Strings for uint256;
  /////////////////////////////////
  constructor()
    ERC721("Ugly Muck YC", "wUMYC")
  {
    ruggednft = IERC721(ruggedproject);
    currentowner = msg.sender;
  }

  function _baseURI() internal pure override returns (string memory) {
      ///Base URI is the location of the JSON files
      ///As part of the design of the contracts this Base URI Might need to get updated dynamically///
    return "https://gateway.pinata.cloud/ipfs/bafybeic77wh5mepr6bu5on7xry2fska4cugmz6yqudri7et7m7yj642l7a/";
  }
//////Sets the IPFS/Arweave stores for each area
//////Supports 2 custom Metadata stores,the default and the Custom one
    function setStringArtPaths(uint _pathno,string memory _path,uint _tokenid,address _holder) external
    {
        require(msg.sender==currentowner||msg.sender==upgradecontract||msg.sender==dbcontract,"Not Auth!");
        
        if (_pathno==0)
        {
            defaulturi = _path;
        }
        if (_pathno==1)
        {
            artpath1 = _path;
        }
         if (_pathno==2)
        {
            artpath2 = _path;
        }
        if (_pathno==3) ////Specify dedicated path for token
        {
            bool temp;
            temp = getArtApproval(_tokenid,_holder);
            require(temp==true,"Not Approved!");
            artpathfortoken[_tokenid] = _path;
            customtoken[_tokenid] = true; //User has unique art
        }
        if (_pathno==4) //resets to default
        {
            customtoken[_tokenid] = false; //Resets user to the global
        }
    }

  ///This is being overridder to be able to pass in custom URI's etc
  function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
  {
      string memory tempstring;
      string memory tempstring2;
      if (dynamicart==true) //If disabled...URI reverts to default
      {
    
    uint temp = wrapperdb(dbcontract).getArtStatus(tokenId);
    //Verify if user has unique art
    bool isunique = customtoken[tokenId];
    ///////////////////////////////////////
    if (isunique==true) ///This is the custom are for 1 token!
    {
    tempstring2 = artpathfortoken[tokenId];
    tempstring = string(abi.encodePacked(tempstring2,tokenId.toString(), ".json"));
    }
    if (isunique==false)
    {
    if(temp==0)
    {
    tempstring = string(abi.encodePacked(defaulturi,tokenId.toString(), ".json"));
    }
    if (temp==1)
    {
    tempstring = string(abi.encodePacked(artpath1,tokenId.toString(), ".json"));
    }
     if (temp==2)
    {
    tempstring = string(abi.encodePacked(artpath2,tokenId.toString(), ".json"));
    }
    }
      }
      if(dynamicart==false)
      {
       tempstring = string(abi.encodePacked(defaulturi,tokenId.toString(), ".json"));   
      }
    return tempstring;
  }

  function pause() public onlyOwner {
    _pause();
  }
  
  function unpause() public onlyOwner {
    _unpause();
  }
    
  //Function to allow the user to approve the modification of the the art URI for their token
  function approveArtUpdate(bool _yesorno,uint _tokennumber) external{
      require(msg.sender == ownerOf(_tokennumber),"Not Authorized");
      artapproved[msg.sender] = _yesorno;  //Mapping to ensure its not at a global level
  }

   ///Return the value of the approval status for the DB
  function getArtApproval(uint _tokennumber,address _wallet)public view returns(bool)
  {
     address temp = ownerOf(_tokennumber);
     require(temp == _wallet, "ERR(P)");
     bool temp2;
     temp2 = artapproved[temp];
     return temp2;
  }
  //Configure the various options/addresses for the contract
  function setOptions(uint _option,bool _onoroff,address _address) external onlyOwner
  {
      if (_option==1)
      {
          ruggedproject = _address;
      }
      if (_option==2)
      {
          dbcontract = _address;
      }
      if (_option==3)
      {
          wrapenabled = _onoroff;
      }
      if (_option==4)
      {
          dynamicart = _onoroff;
      }
      if (_option==5)
      {
          upgradecontract = _address; //Contract address to adjust the art
      }
      if (_option==6)
      {
          currentowner = _address;  //Change the current Owner!
      }
      
  }

  /// Wrap the original rugged NFT to get the new NFT.
  function wrap(uint256[] calldata tokenIds_) external {
      uint templength = tokenIds_.length; //Number of tokens to be wrapped
      bool _isblocked;
      bool _isholder;
      uint s;
      require(wrapenabled==true,"Wrapping is not enabled!");
    for (uint256 i = 0; i < templength; i++) {
      //Add method in to verify banned ID's (Founders)
      (_isblocked,s) = wrapperdb(dbcontract).isBlockedNFT(tokenIds_[i]);
      require(_isblocked!=true,"Banned Token_ID!");
      ruggednft.safeTransferFrom(msg.sender, address(this), tokenIds_[i]);
    }
    _isholder = wrapperdb(dbcontract).isHolder(msg.sender); //Determines if user is a new holder and puts in the DB contract
    if (_isholder==false)
    {
        wrapperdb(dbcontract).manageHolderAddresses(true,msg.sender); ///Sets user as a holder!
        wrapperdb(dbcontract).manageNumHolders(2); ///Bump the holder value
        
    }
    numwraps +=1;
  }

  /// Unwrap to get the original back
  function unwrap(uint256[] calldata tokenIds_) external {
      uint _balance;
    for (uint256 i = 0; i < tokenIds_.length; i++) {
      _safeTransfer(msg.sender, address(this), tokenIds_[i], "");
    }
    ////We track the balance of the msg.sender///
    ////If they now own 0 NFT's we remove them as a holder
    _balance = balanceOf(msg.sender);
    if (_balance==0)
    {
        ///They no longer hold,we remove///
         wrapperdb(dbcontract).manageHolderAddresses(false,msg.sender); //Remove user as a holder
         wrapperdb(dbcontract).manageNumHolders(1); ///Dump the holder value
    }
  }

  function _flip(
    address who_,
    bool isWrapping_,
    uint256 tokenId_
  ) private {
    if (isWrapping_) {
      // Mint wrapped NFT of same tokenID if not yet minted, otherwise swap for existing rugged NFT
      if (_exists(tokenId_) && ownerOf(tokenId_) == address(this)) {
        _safeTransfer(address(this), who_, tokenId_, "");
      } else {
        _safeMint(who_, tokenId_);
      }
      emit Wrapped(tokenId_);
    } else {
     ruggednft.safeTransferFrom(address(this), who_, tokenId_);
      emit Unwrapped(tokenId_);
    }
  }

  // Notice: You must use safeTransferFrom in order to properly wrap/unwrap your rugged NFT
  function onERC721Received(
    address operator_,
    address from_,
    uint256 tokenId_,
    bytes memory data_
  ) external override returns (bytes4) {
    // Only supports callback from the original rugged contract and this contract
    require(
      msg.sender == address(ruggedproject) || msg.sender == address(this),
      "must be XXXXX or Wrapped XXXXX"
    );

    bool isWrapping = msg.sender == address(ruggedproject);
    _flip(from_, isWrapping, tokenId_);

    return this.onERC721Received.selector;
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal override whenNotPaused {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  fallback() external payable {}

  receive() external payable {}

  ////This is incase ETH is in the contract
  function withdrawETH() external onlyOwner {
    (bool success, ) = owner().call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  ////This is incase an ERc20 token is in the contract
  function withdrawERC20(address token) external onlyOwner {
    bool success = IERC20(token).transfer(
      owner(),
      IERC20(token).balanceOf(address(this))
    );
    require(success, "Transfer failed");
  }

  //Emergency NFT recovery
  function emergencyMintWrapped(uint256 tokenId_) external onlyOwner {
    if (ruggednft.ownerOf(tokenId_) == address(this)) {
      // Contract owns the Companion.
      if (_exists(tokenId_) && ownerOf(tokenId_) == address(this)) {
        // Wrapped nft is also trapped in contract.
        _safeTransfer(address(this), owner(), tokenId_, "");
        emit Wrapped(tokenId_);
      } else if (!_exists(tokenId_)) {
        // Wrapped nft hasn't ever been minted.
        _safeMint(owner(), tokenId_);
        emit Wrapped(tokenId_);
      } else {
        revert("Wrapped NFT minted and distributed already");
      }
    } else {
      revert("Rugged NFT is not locked in contract");
    }
  }
 
 //Mint the Tokens that Founders of the XXXXXXX owned
 //Requires any minted tokens to be blocked
 //Mints to another user or the owner
 function mintFoundersBlockedNfts(uint256[] calldata tokenIds_,uint _mintoption,address _to) external onlyOwner
 {
     uint templength = tokenIds_.length;
     for (uint256 i = 0; i < templength; i++) {
      //Add method in to verify banned ID's (Founders)
      (bool _isblocked,uint s) = wrapperdb(dbcontract).isBlockedNFT(tokenIds_[i]);
      require(_isblocked==true,"Not a Banned Token!");
      if (_mintoption==1) //Mint to Owner
      {
          _safeMint(owner(), tokenIds_[i]);
      }
      if (_mintoption==2) //Mint to User
      {
          _safeMint(_to, tokenIds_[i]);
      }
      
    }
 }

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Wrapped","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_yesorno","type":"bool"},{"internalType":"uint256","name":"_tokennumber","type":"uint256"}],"name":"approveArtUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentowner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dbcontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaulturi","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"emergencyMintWrapped","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokennumber","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"name":"getArtApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"},{"internalType":"uint256","name":"_mintoption","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintFoundersBlockedNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numwraps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator_","type":"address"},{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ruggedproject","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"bool","name":"_onoroff","type":"bool"},{"internalType":"address","name":"_address","type":"address"}],"name":"setOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pathno","type":"uint256"},{"internalType":"string","name":"_path","type":"string"},{"internalType":"uint256","name":"_tokenid","type":"uint256"},{"internalType":"address","name":"_holder","type":"address"}],"name":"setStringArtPaths","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradecontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrapenabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052739121c7f5976692bc7f97cd380d19a7a7e1d0e0f5600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e3a56de836e970d3154c34a6e89a9e158bd5faed600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506040518060800160405280605e815260200162005e7a605e9139600e9080519060200190620001159291906200036a565b503480156200012357600080fd5b506040518060400160405280600c81526020017f55676c79204d75636b20594300000000000000000000000000000000000000008152506040518060400160405280600581526020017f77554d59430000000000000000000000000000000000000000000000000000008152508160009080519060200190620001a89291906200036a565b508060019080519060200190620001c19291906200036a565b5050506000600760006101000a81548160ff021916908315150217905550620001ff620001f36200029c60201b60201c565b620002a460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047f565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003789062000449565b90600052602060002090601f0160209004810192826200039c5760008555620003e8565b82601f10620003b757805160ff1916838001178555620003e8565b82800160010185558215620003e8579182015b82811115620003e7578251825591602001919060010190620003ca565b5b509050620003f79190620003fb565b5090565b5b8082111562000416576000816000905550600101620003fc565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046257607f821691505b602082108114156200047957620004786200041a565b5b50919050565b6080516159d1620004a96000396000818161111a0152818161222d0152612f2a01526159d16000f3fe6080604052600436106102295760003560e01c80638456cb5911610123578063d1e21407116100ab578063e817bb751161006f578063e817bb75146107d3578063e985e9c5146107fe578063eb5416fa1461083b578063f2fde38b14610866578063f4f3b2001461088f57610230565b8063d1e2140714610714578063ddd93cc91461073d578063dde06f7414610766578063e086e5ec14610791578063e633a567146107a857610230565b8063b6e7a9e8116100f2578063b6e7a9e81461061f578063b82527fa1461065c578063b88d4fde14610685578063c87b56dd146106ae578063cc17a5bf146106eb57610230565b80638456cb59146105895780638da5cb5b146105a057806395d89b41146105cb578063a22cb465146105f657610230565b80633f4ba83a116101b15780636352211e116101755780636352211e146104a457806363ac2a4c146104e157806370a082311461050a578063715018a61461054757806376f68ff51461055e57610230565b80633f4ba83a146103e357806342842e0e146103fa57806352b207c0146104235780635c975abb1461044e5780635f743a051461047957610230565b80630bf11f4f116101f85780630bf11f4f14610300578063150b7a021461032b57806323b872dd1461036857806331c44b25146103915780633f44f32c146103ba57610230565b806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a578063095ea7b3146102d757610230565b3661023057005b005b34801561023e57600080fd5b5061025960048036038101906102549190613bcd565b6108b8565b6040516102669190613c15565b60405180910390f35b34801561027b57600080fd5b5061028461099a565b6040516102919190613cc9565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613d21565b610a2c565b6040516102ce9190613d8f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613dd6565b610ab1565b005b34801561030c57600080fd5b50610315610bc9565b6040516103229190613cc9565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613f4b565b610c57565b60405161035f9190613fdd565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613ff8565b610d92565b005b34801561039d57600080fd5b506103b860048036038101906103b391906140ec565b610df2565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190613d21565b611085565b005b3480156103ef57600080fd5b506103f861134d565b005b34801561040657600080fd5b50610421600480360381019061041c9190613ff8565b6113d3565b005b34801561042f57600080fd5b506104386113f3565b604051610445919061417e565b60405180910390f35b34801561045a57600080fd5b506104636113f9565b6040516104709190613c15565b60405180910390f35b34801561048557600080fd5b5061048e611410565b60405161049b9190613d8f565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613d21565b611436565b6040516104d89190613d8f565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906141f9565b6114e8565b005b34801561051657600080fd5b50610531600480360381019061052c9190614246565b61167b565b60405161053e919061417e565b60405180910390f35b34801561055357600080fd5b5061055c611733565b005b34801561056a57600080fd5b506105736117bb565b6040516105809190613d8f565b60405180910390f35b34801561059557600080fd5b5061059e6117e1565b005b3480156105ac57600080fd5b506105b5611867565b6040516105c29190613d8f565b60405180910390f35b3480156105d757600080fd5b506105e0611891565b6040516105ed9190613cc9565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061429f565b611923565b005b34801561062b57600080fd5b50610646600480360381019061064191906142df565b611aa4565b6040516106539190613c15565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061431f565b611b7c565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f4b565b611d71565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613d21565b611dd3565b6040516106e29190613cc9565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906141f9565b6120aa565b005b34801561072057600080fd5b5061073b60048036038101906107369190614372565b6124e2565b005b34801561074957600080fd5b50610764600480360381019061075f91906143e6565b612700565b005b34801561077257600080fd5b5061077b6127d1565b6040516107889190613c15565b60405180910390f35b34801561079d57600080fd5b506107a66127e4565b005b3480156107b457600080fd5b506107bd612916565b6040516107ca9190613d8f565b60405180910390f35b3480156107df57600080fd5b506107e861293c565b6040516107f59190613c15565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614426565b61294f565b6040516108329190613c15565b60405180910390f35b34801561084757600080fd5b506108506129e3565b60405161085d9190613d8f565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190614246565b612a09565b005b34801561089b57600080fd5b506108b660048036038101906108b19190614246565b612b01565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610993575061099282612ce1565b5b9050919050565b6060600080546109a990614495565b80601f01602080910402602001604051908101604052809291908181526020018280546109d590614495565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b5050505050905090565b6000610a3782612d4b565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90614539565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc82611436565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906145cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4c612db7565b73ffffffffffffffffffffffffffffffffffffffff161480610b7b5750610b7a81610b75612db7565b61294f565b5b610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb19061465d565b60405180910390fd5b610bc48383612dbf565b505050565b600e8054610bd690614495565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0290614495565b8015610c4f5780601f10610c2457610100808354040283529160200191610c4f565b820191906000526020600020905b815481529060010190602001808311610c3257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ce057503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906146c9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16149050610d7f858286612e78565b63150b7a0260e01b915050949350505050565b610da3610d9d612db7565b82612fea565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061475b565b60405180910390fd5b610ded8383836130c8565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e9b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610ef35750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f29906147c7565b60405180910390fd5b6000841415610f535782600e9080519060200190610f51929190613abe565b505b6001841415610f745782600f9080519060200190610f72929190613abe565b505b6002841415610f95578260109080519060200190610f93929190613abe565b505b6003841415611049576000610faa8383611aa4565b90506001151581151514610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614833565b60405180910390fd5b8360126000858152602001908152602001600020908051906020019061101a929190613abe565b5060016013600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505b600484141561107f5760006013600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b61108d612db7565b73ffffffffffffffffffffffffffffffffffffffff166110ab611867565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f89061489f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611171919061417e565b60206040518083038186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906148d4565b73ffffffffffffffffffffffffffffffffffffffff16141561130f576111e681612d4b565b801561122557503073ffffffffffffffffffffffffffffffffffffffff1661120d82611436565b73ffffffffffffffffffffffffffffffffffffffff16145b1561127e5761124c30611236611867565b8360405180602001604052806000815250613324565b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a261130a565b61128781612d4b565b6112ce5761129c611296611867565b82613380565b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a2611309565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614973565b60405180910390fd5b5b61134a565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614a05565b60405180910390fd5b50565b611355612db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611867565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061489f565b60405180910390fd5b6113d161339e565b565b6113ee83838360405180602001604052806000815250611d71565b505050565b600c5481565b6000600760009054906101000a900460ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614a97565b60405180910390fd5b80915050919050565b600080600090505b838390508110156115425761152f333086868581811061151357611512614ab7565b5b9050602002013560405180602001604052806000815250613324565b808061153a90614b15565b9150506114f0565b5061154c3361167b565b9050600081141561167657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c572a0346000336040518363ffffffff1660e01b81526004016115b5929190614b5e565b600060405180830381600087803b1580156115cf57600080fd5b505af11580156115e3573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adf38d8460016040518263ffffffff1660e01b81526004016116439190614bcc565b600060405180830381600087803b15801561165d57600080fd5b505af1158015611671573d6000803e3d6000fd5b505050505b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614c59565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173b612db7565b73ffffffffffffffffffffffffffffffffffffffff16611759611867565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061489f565b60405180910390fd5b6117b96000613402565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117e9612db7565b73ffffffffffffffffffffffffffffffffffffffff16611807611867565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061489f565b60405180910390fd5b6118656134c8565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a090614495565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90614495565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b612db7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614cc5565b60405180910390fd5b80600560006119a6612db7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a53612db7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a989190613c15565b60405180910390a35050565b600080611ab084611436565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790614d31565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050809250505092915050565b611b84612db7565b73ffffffffffffffffffffffffffffffffffffffff16611ba2611867565b73ffffffffffffffffffffffffffffffffffffffff1614611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef9061489f565b60405180910390fd5b6001831415611c435780600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6002831415611c8e5780600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6003831415611cb25781600d60006101000a81548160ff0219169083151502179055505b6004831415611cd65781600d60016101000a81548160ff0219169083151502179055505b6005831415611d215780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6006831415611d6c5780600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b611d82611d7c612db7565b83612fea565b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061475b565b60405180910390fd5b611dcd84848484613324565b50505050565b606080606060011515600d60019054906101000a900460ff1615151415612056576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634af6976e866040518263ffffffff1660e01b8152600401611e51919061417e565b60206040518083038186803b158015611e6957600080fd5b505afa158015611e7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea19190614d66565b905060006013600087815260200190815260200160002060009054906101000a900460ff169050600115158115151415611fa057601260008781526020019081526020016000208054611ef390614495565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1f90614495565b8015611f6c5780601f10611f4157610100808354040283529160200191611f6c565b820191906000526020600020905b815481529060010190602001808311611f4f57829003601f168201915b5050505050925082611f7d8761352d565b604051602001611f8e929190614e1b565b60405160208183030381529060405293505b600015158115151415612053576000821415611fe457600e611fc18761352d565b604051602001611fd2929190614ede565b60405160208183030381529060405293505b600182141561201b57600f611ff88761352d565b604051602001612009929190614ede565b60405160208183030381529060405293505b600282141561205257601061202f8761352d565b604051602001612040929190614ede565b60405160208183030381529060405293505b5b50505b60001515600d60019054906101000a900460ff16151514156120a057600e61207d8561352d565b60405160200161208e929190614ede565b60405160208183030381529060405291505b8192505050919050565b6000828290509050600080600060011515600d60009054906101000a900460ff1615151461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614f59565b60405180910390fd5b60005b848110156122e657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb74a54b88888481811061216957612168614ab7565b5b905060200201356040518263ffffffff1660e01b815260040161218c919061417e565b604080518083038186803b1580156121a357600080fd5b505afa1580156121b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121db9190614f8e565b809350819550505060011515841515141561222b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122229061501a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342842e0e33308a8a8681811061227c5761227b614ab7565b5b905060200201356040518463ffffffff1660e01b81526004016122a19392919061503a565b600060405180830381600087803b1580156122bb57600080fd5b505af11580156122cf573d6000803e3d6000fd5b5050505080806122de90614b15565b915050612110565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d4d7b19a336040518263ffffffff1660e01b81526004016123429190613d8f565b60206040518083038186803b15801561235a57600080fd5b505afa15801561236e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123929190615071565b91506000151582151514156124c057600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c572a0346001336040518363ffffffff1660e01b81526004016123ff929190614b5e565b600060405180830381600087803b15801561241957600080fd5b505af115801561242d573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adf38d8460026040518263ffffffff1660e01b815260040161248d91906150d9565b600060405180830381600087803b1580156124a757600080fd5b505af11580156124bb573d6000803e3d6000fd5b505050505b6001600c60008282546124d391906150f4565b92505081905550505050505050565b6124ea612db7565b73ffffffffffffffffffffffffffffffffffffffff16612508611867565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125559061489f565b60405180910390fd5b600084849050905060005b818110156126f857600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb74a54b8989868181106125c5576125c4614ab7565b5b905060200201356040518263ffffffff1660e01b81526004016125e8919061417e565b604080518083038186803b1580156125ff57600080fd5b505afa158015612613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126379190614f8e565b915091506001151582151514612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615196565b60405180910390fd5b60018614156126b6576126b5612696611867565b8989868181106126a9576126a8614ab7565b5b90506020020135613380565b5b60028614156126e3576126e2858989868181106126d6576126d5614ab7565b5b90506020020135613380565b5b505080806126f090614b15565b915050612569565b505050505050565b61270981611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90615202565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d60019054906101000a900460ff1681565b6127ec612db7565b73ffffffffffffffffffffffffffffffffffffffff1661280a611867565b73ffffffffffffffffffffffffffffffffffffffff1614612860576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128579061489f565b60405180910390fd5b600061286a611867565b73ffffffffffffffffffffffffffffffffffffffff164760405161288d90615253565b60006040518083038185875af1925050503d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b5050905080612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a906152b4565b60405180910390fd5b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a11612db7565b73ffffffffffffffffffffffffffffffffffffffff16612a2f611867565b73ffffffffffffffffffffffffffffffffffffffff1614612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c9061489f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90615346565b60405180910390fd5b612afe81613402565b50565b612b09612db7565b73ffffffffffffffffffffffffffffffffffffffff16612b27611867565b73ffffffffffffffffffffffffffffffffffffffff1614612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b749061489f565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612ba3611867565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bdc9190613d8f565b60206040518083038186803b158015612bf457600080fd5b505afa158015612c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2c9190614d66565b6040518363ffffffff1660e01b8152600401612c49929190615366565b602060405180830381600087803b158015612c6357600080fd5b505af1158015612c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9b9190615071565b905080612cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd4906153db565b60405180910390fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e3283611436565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8115612f2857612e8781612d4b565b8015612ec657503073ffffffffffffffffffffffffffffffffffffffff16612eae82611436565b73ffffffffffffffffffffffffffffffffffffffff16145b15612eeb57612ee630848360405180602001604052806000815250613324565b612ef6565b612ef58382613380565b5b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a2612fe5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342842e0e3085846040518463ffffffff1660e01b8152600401612f859392919061503a565b600060405180830381600087803b158015612f9f57600080fd5b505af1158015612fb3573d6000803e3d6000fd5b50505050807fbeaa92c6354c6dcf375d2c514352b2c11bc865784722e5dd9b267e606eb5fc5f60405160405180910390a25b505050565b6000612ff582612d4b565b613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b9061546d565b60405180910390fd5b600061303f83611436565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130ae57508373ffffffffffffffffffffffffffffffffffffffff1661309684610a2c565b73ffffffffffffffffffffffffffffffffffffffff16145b806130bf57506130be818561294f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130e882611436565b73ffffffffffffffffffffffffffffffffffffffff161461313e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613135906154ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615591565b60405180910390fd5b6131b983838361368e565b6131c4600082612dbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461321491906155b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326b91906150f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61332f8484846130c8565b61333b848484846136e6565b61337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190615657565b60405180910390fd5b50505050565b61339a82826040518060200160405280600081525061387d565b5050565b6133a66113f9565b6133e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dc906156c3565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134d06113f9565b15613510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135079061572f565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b60606000821415613575576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613689565b600082905060005b600082146135a757808061359090614b15565b915050600a826135a0919061577e565b915061357d565b60008167ffffffffffffffff8111156135c3576135c2613e20565b5b6040519080825280601f01601f1916602001820160405280156135f55781602001600182028036833780820191505090505b5090505b600085146136825760018261360e91906155b1565b9150600a8561361d91906157af565b603061362991906150f4565b60f81b81838151811061363f5761363e614ab7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561367b919061577e565b94506135f9565b8093505050505b919050565b6136966113f9565b156136d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cd9061572f565b60405180910390fd5b6136e18383836138d8565b505050565b60006137078473ffffffffffffffffffffffffffffffffffffffff166138dd565b15613870578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613730612db7565b8786866040518563ffffffff1660e01b81526004016137529493929190615835565b602060405180830381600087803b15801561376c57600080fd5b505af192505050801561379d57506040513d601f19601f8201168201806040525081019061379a9190615896565b60015b613820573d80600081146137cd576040519150601f19603f3d011682016040523d82523d6000602084013e6137d2565b606091505b50600081511415613818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380f90615657565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613875565b600190505b949350505050565b61388783836138f0565b61389460008484846136e6565b6138d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ca90615657565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139579061590f565b60405180910390fd5b61396981612d4b565b156139a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a09061597b565b60405180910390fd5b6139b56000838361368e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a0591906150f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613aca90614495565b90600052602060002090601f016020900481019282613aec5760008555613b33565b82601f10613b0557805160ff1916838001178555613b33565b82800160010185558215613b33579182015b82811115613b32578251825591602001919060010190613b17565b5b509050613b409190613b44565b5090565b5b80821115613b5d576000816000905550600101613b45565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613baa81613b75565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b600060208284031215613be357613be2613b6b565b5b6000613bf184828501613bb8565b91505092915050565b60008115159050919050565b613c0f81613bfa565b82525050565b6000602082019050613c2a6000830184613c06565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c6a578082015181840152602081019050613c4f565b83811115613c79576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c9b82613c30565b613ca58185613c3b565b9350613cb5818560208601613c4c565b613cbe81613c7f565b840191505092915050565b60006020820190508181036000830152613ce38184613c90565b905092915050565b6000819050919050565b613cfe81613ceb565b8114613d0957600080fd5b50565b600081359050613d1b81613cf5565b92915050565b600060208284031215613d3757613d36613b6b565b5b6000613d4584828501613d0c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7982613d4e565b9050919050565b613d8981613d6e565b82525050565b6000602082019050613da46000830184613d80565b92915050565b613db381613d6e565b8114613dbe57600080fd5b50565b600081359050613dd081613daa565b92915050565b60008060408385031215613ded57613dec613b6b565b5b6000613dfb85828601613dc1565b9250506020613e0c85828601613d0c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e5882613c7f565b810181811067ffffffffffffffff82111715613e7757613e76613e20565b5b80604052505050565b6000613e8a613b61565b9050613e968282613e4f565b919050565b600067ffffffffffffffff821115613eb657613eb5613e20565b5b613ebf82613c7f565b9050602081019050919050565b82818337600083830152505050565b6000613eee613ee984613e9b565b613e80565b905082815260208101848484011115613f0a57613f09613e1b565b5b613f15848285613ecc565b509392505050565b600082601f830112613f3257613f31613e16565b5b8135613f42848260208601613edb565b91505092915050565b60008060008060808587031215613f6557613f64613b6b565b5b6000613f7387828801613dc1565b9450506020613f8487828801613dc1565b9350506040613f9587828801613d0c565b925050606085013567ffffffffffffffff811115613fb657613fb5613b70565b5b613fc287828801613f1d565b91505092959194509250565b613fd781613b75565b82525050565b6000602082019050613ff26000830184613fce565b92915050565b60008060006060848603121561401157614010613b6b565b5b600061401f86828701613dc1565b935050602061403086828701613dc1565b925050604061404186828701613d0c565b9150509250925092565b600067ffffffffffffffff82111561406657614065613e20565b5b61406f82613c7f565b9050602081019050919050565b600061408f61408a8461404b565b613e80565b9050828152602081018484840111156140ab576140aa613e1b565b5b6140b6848285613ecc565b509392505050565b600082601f8301126140d3576140d2613e16565b5b81356140e384826020860161407c565b91505092915050565b6000806000806080858703121561410657614105613b6b565b5b600061411487828801613d0c565b945050602085013567ffffffffffffffff81111561413557614134613b70565b5b614141878288016140be565b935050604061415287828801613d0c565b925050606061416387828801613dc1565b91505092959194509250565b61417881613ceb565b82525050565b6000602082019050614193600083018461416f565b92915050565b600080fd5b600080fd5b60008083601f8401126141b9576141b8613e16565b5b8235905067ffffffffffffffff8111156141d6576141d5614199565b5b6020830191508360208202830111156141f2576141f161419e565b5b9250929050565b600080602083850312156142105761420f613b6b565b5b600083013567ffffffffffffffff81111561422e5761422d613b70565b5b61423a858286016141a3565b92509250509250929050565b60006020828403121561425c5761425b613b6b565b5b600061426a84828501613dc1565b91505092915050565b61427c81613bfa565b811461428757600080fd5b50565b60008135905061429981614273565b92915050565b600080604083850312156142b6576142b5613b6b565b5b60006142c485828601613dc1565b92505060206142d58582860161428a565b9150509250929050565b600080604083850312156142f6576142f5613b6b565b5b600061430485828601613d0c565b925050602061431585828601613dc1565b9150509250929050565b60008060006060848603121561433857614337613b6b565b5b600061434686828701613d0c565b93505060206143578682870161428a565b925050604061436886828701613dc1565b9150509250925092565b6000806000806060858703121561438c5761438b613b6b565b5b600085013567ffffffffffffffff8111156143aa576143a9613b70565b5b6143b6878288016141a3565b945094505060206143c987828801613d0c565b92505060406143da87828801613dc1565b91505092959194509250565b600080604083850312156143fd576143fc613b6b565b5b600061440b8582860161428a565b925050602061441c85828601613d0c565b9150509250929050565b6000806040838503121561443d5761443c613b6b565b5b600061444b85828601613dc1565b925050602061445c85828601613dc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ad57607f821691505b602082108114156144c1576144c0614466565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614523602c83613c3b565b915061452e826144c7565b604082019050919050565b6000602082019050818103600083015261455281614516565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006145b5602183613c3b565b91506145c082614559565b604082019050919050565b600060208201905081810360008301526145e4816145a8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614647603883613c3b565b9150614652826145eb565b604082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b7f6d757374206265205858585858206f7220577261707065642058585858580000600082015250565b60006146b3601e83613c3b565b91506146be8261467d565b602082019050919050565b600060208201905081810360008301526146e2816146a6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614745603183613c3b565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f4e6f742041757468210000000000000000000000000000000000000000000000600082015250565b60006147b1600983613c3b565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4e6f7420417070726f7665642100000000000000000000000000000000000000600082015250565b600061481d600d83613c3b565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614889602083613c3b565b915061489482614853565b602082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b6000815190506148ce81613daa565b92915050565b6000602082840312156148ea576148e9613b6b565b5b60006148f8848285016148bf565b91505092915050565b7f57726170706564204e4654206d696e74656420616e642064697374726962757460008201527f656420616c726561647900000000000000000000000000000000000000000000602082015250565b600061495d602a83613c3b565b915061496882614901565b604082019050919050565b6000602082019050818103600083015261498c81614950565b9050919050565b7f527567676564204e4654206973206e6f74206c6f636b656420696e20636f6e7460008201527f7261637400000000000000000000000000000000000000000000000000000000602082015250565b60006149ef602483613c3b565b91506149fa82614993565b604082019050919050565b60006020820190508181036000830152614a1e816149e2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a81602983613c3b565b9150614a8c82614a25565b604082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b2082613ceb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b5357614b52614ae6565b5b600182019050919050565b6000604082019050614b736000830185613c06565b614b806020830184613d80565b9392505050565b6000819050919050565b6000819050919050565b6000614bb6614bb1614bac84614b87565b614b91565b613ceb565b9050919050565b614bc681614b9b565b82525050565b6000602082019050614be16000830184614bbd565b92915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614c43602a83613c3b565b9150614c4e82614be7565b604082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614caf601983613c3b565b9150614cba82614c79565b602082019050919050565b60006020820190508181036000830152614cde81614ca2565b9050919050565b7f4552522850290000000000000000000000000000000000000000000000000000600082015250565b6000614d1b600683613c3b565b9150614d2682614ce5565b602082019050919050565b60006020820190508181036000830152614d4a81614d0e565b9050919050565b600081519050614d6081613cf5565b92915050565b600060208284031215614d7c57614d7b613b6b565b5b6000614d8a84828501614d51565b91505092915050565b600081905092915050565b6000614da982613c30565b614db38185614d93565b9350614dc3818560208601613c4c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614e05600583614d93565b9150614e1082614dcf565b600582019050919050565b6000614e278285614d9e565b9150614e338284614d9e565b9150614e3e82614df8565b91508190509392505050565b60008190508160005260206000209050919050565b60008154614e6c81614495565b614e768186614d93565b94506001821660008114614e915760018114614ea257614ed5565b60ff19831686528186019350614ed5565b614eab85614e4a565b60005b83811015614ecd57815481890152600182019150602081019050614eae565b838801955050505b50505092915050565b6000614eea8285614e5f565b9150614ef68284614d9e565b9150614f0182614df8565b91508190509392505050565b7f5772617070696e67206973206e6f7420656e61626c6564210000000000000000600082015250565b6000614f43601883613c3b565b9150614f4e82614f0d565b602082019050919050565b60006020820190508181036000830152614f7281614f36565b9050919050565b600081519050614f8881614273565b92915050565b60008060408385031215614fa557614fa4613b6b565b5b6000614fb385828601614f79565b9250506020614fc485828601614d51565b9150509250929050565b7f42616e6e656420546f6b656e5f49442100000000000000000000000000000000600082015250565b6000615004601083613c3b565b915061500f82614fce565b602082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b600060608201905061504f6000830186613d80565b61505c6020830185613d80565b615069604083018461416f565b949350505050565b60006020828403121561508757615086613b6b565b5b600061509584828501614f79565b91505092915050565b6000819050919050565b60006150c36150be6150b98461509e565b614b91565b613ceb565b9050919050565b6150d3816150a8565b82525050565b60006020820190506150ee60008301846150ca565b92915050565b60006150ff82613ceb565b915061510a83613ceb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561513f5761513e614ae6565b5b828201905092915050565b7f4e6f7420612042616e6e656420546f6b656e2100000000000000000000000000600082015250565b6000615180601383613c3b565b915061518b8261514a565b602082019050919050565b600060208201905081810360008301526151af81615173565b9050919050565b7f4e6f7420417574686f72697a6564000000000000000000000000000000000000600082015250565b60006151ec600e83613c3b565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b600081905092915050565b50565b600061523d600083615222565b91506152488261522d565b600082019050919050565b600061525e82615230565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061529e601083613c3b565b91506152a982615268565b602082019050919050565b600060208201905081810360008301526152cd81615291565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615330602683613c3b565b915061533b826152d4565b604082019050919050565b6000602082019050818103600083015261535f81615323565b9050919050565b600060408201905061537b6000830185613d80565b615388602083018461416f565b9392505050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006153c5600f83613c3b565b91506153d08261538f565b602082019050919050565b600060208201905081810360008301526153f4816153b8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615457602c83613c3b565b9150615462826153fb565b604082019050919050565b600060208201905081810360008301526154868161544a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006154e9602983613c3b565b91506154f48261548d565b604082019050919050565b60006020820190508181036000830152615518816154dc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061557b602483613c3b565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b60006155bc82613ceb565b91506155c783613ceb565b9250828210156155da576155d9614ae6565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615641603283613c3b565b915061564c826155e5565b604082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006156ad601483613c3b565b91506156b882615677565b602082019050919050565b600060208201905081810360008301526156dc816156a0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615719601083613c3b565b9150615724826156e3565b602082019050919050565b600060208201905081810360008301526157488161570c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061578982613ceb565b915061579483613ceb565b9250826157a4576157a361574f565b5b828204905092915050565b60006157ba82613ceb565b91506157c583613ceb565b9250826157d5576157d461574f565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615807826157e0565b61581181856157eb565b9350615821818560208601613c4c565b61582a81613c7f565b840191505092915050565b600060808201905061584a6000830187613d80565b6158576020830186613d80565b615864604083018561416f565b818103606083015261587681846157fc565b905095945050505050565b60008151905061589081613ba1565b92915050565b6000602082840312156158ac576158ab613b6b565b5b60006158ba84828501615881565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158f9602083613c3b565b9150615904826158c3565b602082019050919050565b60006020820190508181036000830152615928816158ec565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615965601c83613c3b565b91506159708261592f565b602082019050919050565b6000602082019050818103600083015261599481615958565b905091905056fea26469706673582212200dd05a4382d615fbb7dea43c6ef4b4068f62443d4a9aaad94c89e7a0c991cae464736f6c6343000809003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f626166796265696337377768356d657072366275356f6e377872793266736b61346375676d7a36797175647269376574376d37796a3634326c37612f

Deployed Bytecode

0x6080604052600436106102295760003560e01c80638456cb5911610123578063d1e21407116100ab578063e817bb751161006f578063e817bb75146107d3578063e985e9c5146107fe578063eb5416fa1461083b578063f2fde38b14610866578063f4f3b2001461088f57610230565b8063d1e2140714610714578063ddd93cc91461073d578063dde06f7414610766578063e086e5ec14610791578063e633a567146107a857610230565b8063b6e7a9e8116100f2578063b6e7a9e81461061f578063b82527fa1461065c578063b88d4fde14610685578063c87b56dd146106ae578063cc17a5bf146106eb57610230565b80638456cb59146105895780638da5cb5b146105a057806395d89b41146105cb578063a22cb465146105f657610230565b80633f4ba83a116101b15780636352211e116101755780636352211e146104a457806363ac2a4c146104e157806370a082311461050a578063715018a61461054757806376f68ff51461055e57610230565b80633f4ba83a146103e357806342842e0e146103fa57806352b207c0146104235780635c975abb1461044e5780635f743a051461047957610230565b80630bf11f4f116101f85780630bf11f4f14610300578063150b7a021461032b57806323b872dd1461036857806331c44b25146103915780633f44f32c146103ba57610230565b806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a578063095ea7b3146102d757610230565b3661023057005b005b34801561023e57600080fd5b5061025960048036038101906102549190613bcd565b6108b8565b6040516102669190613c15565b60405180910390f35b34801561027b57600080fd5b5061028461099a565b6040516102919190613cc9565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613d21565b610a2c565b6040516102ce9190613d8f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613dd6565b610ab1565b005b34801561030c57600080fd5b50610315610bc9565b6040516103229190613cc9565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613f4b565b610c57565b60405161035f9190613fdd565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613ff8565b610d92565b005b34801561039d57600080fd5b506103b860048036038101906103b391906140ec565b610df2565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190613d21565b611085565b005b3480156103ef57600080fd5b506103f861134d565b005b34801561040657600080fd5b50610421600480360381019061041c9190613ff8565b6113d3565b005b34801561042f57600080fd5b506104386113f3565b604051610445919061417e565b60405180910390f35b34801561045a57600080fd5b506104636113f9565b6040516104709190613c15565b60405180910390f35b34801561048557600080fd5b5061048e611410565b60405161049b9190613d8f565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613d21565b611436565b6040516104d89190613d8f565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906141f9565b6114e8565b005b34801561051657600080fd5b50610531600480360381019061052c9190614246565b61167b565b60405161053e919061417e565b60405180910390f35b34801561055357600080fd5b5061055c611733565b005b34801561056a57600080fd5b506105736117bb565b6040516105809190613d8f565b60405180910390f35b34801561059557600080fd5b5061059e6117e1565b005b3480156105ac57600080fd5b506105b5611867565b6040516105c29190613d8f565b60405180910390f35b3480156105d757600080fd5b506105e0611891565b6040516105ed9190613cc9565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061429f565b611923565b005b34801561062b57600080fd5b50610646600480360381019061064191906142df565b611aa4565b6040516106539190613c15565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061431f565b611b7c565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f4b565b611d71565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613d21565b611dd3565b6040516106e29190613cc9565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906141f9565b6120aa565b005b34801561072057600080fd5b5061073b60048036038101906107369190614372565b6124e2565b005b34801561074957600080fd5b50610764600480360381019061075f91906143e6565b612700565b005b34801561077257600080fd5b5061077b6127d1565b6040516107889190613c15565b60405180910390f35b34801561079d57600080fd5b506107a66127e4565b005b3480156107b457600080fd5b506107bd612916565b6040516107ca9190613d8f565b60405180910390f35b3480156107df57600080fd5b506107e861293c565b6040516107f59190613c15565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614426565b61294f565b6040516108329190613c15565b60405180910390f35b34801561084757600080fd5b506108506129e3565b60405161085d9190613d8f565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190614246565b612a09565b005b34801561089b57600080fd5b506108b660048036038101906108b19190614246565b612b01565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610993575061099282612ce1565b5b9050919050565b6060600080546109a990614495565b80601f01602080910402602001604051908101604052809291908181526020018280546109d590614495565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b5050505050905090565b6000610a3782612d4b565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90614539565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abc82611436565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906145cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4c612db7565b73ffffffffffffffffffffffffffffffffffffffff161480610b7b5750610b7a81610b75612db7565b61294f565b5b610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb19061465d565b60405180910390fd5b610bc48383612dbf565b505050565b600e8054610bd690614495565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0290614495565b8015610c4f5780601f10610c2457610100808354040283529160200191610c4f565b820191906000526020600020905b815481529060010190602001808311610c3257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ce057503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906146c9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16149050610d7f858286612e78565b63150b7a0260e01b915050949350505050565b610da3610d9d612db7565b82612fea565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061475b565b60405180910390fd5b610ded8383836130c8565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e9b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610ef35750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f29906147c7565b60405180910390fd5b6000841415610f535782600e9080519060200190610f51929190613abe565b505b6001841415610f745782600f9080519060200190610f72929190613abe565b505b6002841415610f95578260109080519060200190610f93929190613abe565b505b6003841415611049576000610faa8383611aa4565b90506001151581151514610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614833565b60405180910390fd5b8360126000858152602001908152602001600020908051906020019061101a929190613abe565b5060016013600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505b600484141561107f5760006013600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b61108d612db7565b73ffffffffffffffffffffffffffffffffffffffff166110ab611867565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f89061489f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000009121c7f5976692bc7f97cd380d19a7a7e1d0e0f573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611171919061417e565b60206040518083038186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906148d4565b73ffffffffffffffffffffffffffffffffffffffff16141561130f576111e681612d4b565b801561122557503073ffffffffffffffffffffffffffffffffffffffff1661120d82611436565b73ffffffffffffffffffffffffffffffffffffffff16145b1561127e5761124c30611236611867565b8360405180602001604052806000815250613324565b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a261130a565b61128781612d4b565b6112ce5761129c611296611867565b82613380565b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a2611309565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614973565b60405180910390fd5b5b61134a565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614a05565b60405180910390fd5b50565b611355612db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611867565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061489f565b60405180910390fd5b6113d161339e565b565b6113ee83838360405180602001604052806000815250611d71565b505050565b600c5481565b6000600760009054906101000a900460ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614a97565b60405180910390fd5b80915050919050565b600080600090505b838390508110156115425761152f333086868581811061151357611512614ab7565b5b9050602002013560405180602001604052806000815250613324565b808061153a90614b15565b9150506114f0565b5061154c3361167b565b9050600081141561167657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c572a0346000336040518363ffffffff1660e01b81526004016115b5929190614b5e565b600060405180830381600087803b1580156115cf57600080fd5b505af11580156115e3573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adf38d8460016040518263ffffffff1660e01b81526004016116439190614bcc565b600060405180830381600087803b15801561165d57600080fd5b505af1158015611671573d6000803e3d6000fd5b505050505b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614c59565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173b612db7565b73ffffffffffffffffffffffffffffffffffffffff16611759611867565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061489f565b60405180910390fd5b6117b96000613402565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117e9612db7565b73ffffffffffffffffffffffffffffffffffffffff16611807611867565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061489f565b60405180910390fd5b6118656134c8565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a090614495565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90614495565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b612db7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614cc5565b60405180910390fd5b80600560006119a6612db7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a53612db7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a989190613c15565b60405180910390a35050565b600080611ab084611436565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790614d31565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050809250505092915050565b611b84612db7565b73ffffffffffffffffffffffffffffffffffffffff16611ba2611867565b73ffffffffffffffffffffffffffffffffffffffff1614611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef9061489f565b60405180910390fd5b6001831415611c435780600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6002831415611c8e5780600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6003831415611cb25781600d60006101000a81548160ff0219169083151502179055505b6004831415611cd65781600d60016101000a81548160ff0219169083151502179055505b6005831415611d215780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6006831415611d6c5780600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b611d82611d7c612db7565b83612fea565b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061475b565b60405180910390fd5b611dcd84848484613324565b50505050565b606080606060011515600d60019054906101000a900460ff1615151415612056576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634af6976e866040518263ffffffff1660e01b8152600401611e51919061417e565b60206040518083038186803b158015611e6957600080fd5b505afa158015611e7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea19190614d66565b905060006013600087815260200190815260200160002060009054906101000a900460ff169050600115158115151415611fa057601260008781526020019081526020016000208054611ef390614495565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1f90614495565b8015611f6c5780601f10611f4157610100808354040283529160200191611f6c565b820191906000526020600020905b815481529060010190602001808311611f4f57829003601f168201915b5050505050925082611f7d8761352d565b604051602001611f8e929190614e1b565b60405160208183030381529060405293505b600015158115151415612053576000821415611fe457600e611fc18761352d565b604051602001611fd2929190614ede565b60405160208183030381529060405293505b600182141561201b57600f611ff88761352d565b604051602001612009929190614ede565b60405160208183030381529060405293505b600282141561205257601061202f8761352d565b604051602001612040929190614ede565b60405160208183030381529060405293505b5b50505b60001515600d60019054906101000a900460ff16151514156120a057600e61207d8561352d565b60405160200161208e929190614ede565b60405160208183030381529060405291505b8192505050919050565b6000828290509050600080600060011515600d60009054906101000a900460ff1615151461210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614f59565b60405180910390fd5b60005b848110156122e657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb74a54b88888481811061216957612168614ab7565b5b905060200201356040518263ffffffff1660e01b815260040161218c919061417e565b604080518083038186803b1580156121a357600080fd5b505afa1580156121b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121db9190614f8e565b809350819550505060011515841515141561222b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122229061501a565b60405180910390fd5b7f0000000000000000000000009121c7f5976692bc7f97cd380d19a7a7e1d0e0f573ffffffffffffffffffffffffffffffffffffffff166342842e0e33308a8a8681811061227c5761227b614ab7565b5b905060200201356040518463ffffffff1660e01b81526004016122a19392919061503a565b600060405180830381600087803b1580156122bb57600080fd5b505af11580156122cf573d6000803e3d6000fd5b5050505080806122de90614b15565b915050612110565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d4d7b19a336040518263ffffffff1660e01b81526004016123429190613d8f565b60206040518083038186803b15801561235a57600080fd5b505afa15801561236e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123929190615071565b91506000151582151514156124c057600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c572a0346001336040518363ffffffff1660e01b81526004016123ff929190614b5e565b600060405180830381600087803b15801561241957600080fd5b505af115801561242d573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adf38d8460026040518263ffffffff1660e01b815260040161248d91906150d9565b600060405180830381600087803b1580156124a757600080fd5b505af11580156124bb573d6000803e3d6000fd5b505050505b6001600c60008282546124d391906150f4565b92505081905550505050505050565b6124ea612db7565b73ffffffffffffffffffffffffffffffffffffffff16612508611867565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125559061489f565b60405180910390fd5b600084849050905060005b818110156126f857600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb74a54b8989868181106125c5576125c4614ab7565b5b905060200201356040518263ffffffff1660e01b81526004016125e8919061417e565b604080518083038186803b1580156125ff57600080fd5b505afa158015612613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126379190614f8e565b915091506001151582151514612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615196565b60405180910390fd5b60018614156126b6576126b5612696611867565b8989868181106126a9576126a8614ab7565b5b90506020020135613380565b5b60028614156126e3576126e2858989868181106126d6576126d5614ab7565b5b90506020020135613380565b5b505080806126f090614b15565b915050612569565b505050505050565b61270981611436565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90615202565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d60019054906101000a900460ff1681565b6127ec612db7565b73ffffffffffffffffffffffffffffffffffffffff1661280a611867565b73ffffffffffffffffffffffffffffffffffffffff1614612860576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128579061489f565b60405180910390fd5b600061286a611867565b73ffffffffffffffffffffffffffffffffffffffff164760405161288d90615253565b60006040518083038185875af1925050503d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b5050905080612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a906152b4565b60405180910390fd5b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a11612db7565b73ffffffffffffffffffffffffffffffffffffffff16612a2f611867565b73ffffffffffffffffffffffffffffffffffffffff1614612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c9061489f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90615346565b60405180910390fd5b612afe81613402565b50565b612b09612db7565b73ffffffffffffffffffffffffffffffffffffffff16612b27611867565b73ffffffffffffffffffffffffffffffffffffffff1614612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b749061489f565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612ba3611867565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bdc9190613d8f565b60206040518083038186803b158015612bf457600080fd5b505afa158015612c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2c9190614d66565b6040518363ffffffff1660e01b8152600401612c49929190615366565b602060405180830381600087803b158015612c6357600080fd5b505af1158015612c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9b9190615071565b905080612cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd4906153db565b60405180910390fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e3283611436565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8115612f2857612e8781612d4b565b8015612ec657503073ffffffffffffffffffffffffffffffffffffffff16612eae82611436565b73ffffffffffffffffffffffffffffffffffffffff16145b15612eeb57612ee630848360405180602001604052806000815250613324565b612ef6565b612ef58382613380565b5b807f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d368660405160405180910390a2612fe5565b7f0000000000000000000000009121c7f5976692bc7f97cd380d19a7a7e1d0e0f573ffffffffffffffffffffffffffffffffffffffff166342842e0e3085846040518463ffffffff1660e01b8152600401612f859392919061503a565b600060405180830381600087803b158015612f9f57600080fd5b505af1158015612fb3573d6000803e3d6000fd5b50505050807fbeaa92c6354c6dcf375d2c514352b2c11bc865784722e5dd9b267e606eb5fc5f60405160405180910390a25b505050565b6000612ff582612d4b565b613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b9061546d565b60405180910390fd5b600061303f83611436565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130ae57508373ffffffffffffffffffffffffffffffffffffffff1661309684610a2c565b73ffffffffffffffffffffffffffffffffffffffff16145b806130bf57506130be818561294f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130e882611436565b73ffffffffffffffffffffffffffffffffffffffff161461313e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613135906154ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615591565b60405180910390fd5b6131b983838361368e565b6131c4600082612dbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461321491906155b1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461326b91906150f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61332f8484846130c8565b61333b848484846136e6565b61337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190615657565b60405180910390fd5b50505050565b61339a82826040518060200160405280600081525061387d565b5050565b6133a66113f9565b6133e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dc906156c3565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134d06113f9565b15613510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135079061572f565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b60606000821415613575576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613689565b600082905060005b600082146135a757808061359090614b15565b915050600a826135a0919061577e565b915061357d565b60008167ffffffffffffffff8111156135c3576135c2613e20565b5b6040519080825280601f01601f1916602001820160405280156135f55781602001600182028036833780820191505090505b5090505b600085146136825760018261360e91906155b1565b9150600a8561361d91906157af565b603061362991906150f4565b60f81b81838151811061363f5761363e614ab7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561367b919061577e565b94506135f9565b8093505050505b919050565b6136966113f9565b156136d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cd9061572f565b60405180910390fd5b6136e18383836138d8565b505050565b60006137078473ffffffffffffffffffffffffffffffffffffffff166138dd565b15613870578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613730612db7565b8786866040518563ffffffff1660e01b81526004016137529493929190615835565b602060405180830381600087803b15801561376c57600080fd5b505af192505050801561379d57506040513d601f19601f8201168201806040525081019061379a9190615896565b60015b613820573d80600081146137cd576040519150601f19603f3d011682016040523d82523d6000602084013e6137d2565b606091505b50600081511415613818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380f90615657565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613875565b600190505b949350505050565b61388783836138f0565b61389460008484846136e6565b6138d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ca90615657565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139579061590f565b60405180910390fd5b61396981612d4b565b156139a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a09061597b565b60405180910390fd5b6139b56000838361368e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a0591906150f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613aca90614495565b90600052602060002090601f016020900481019282613aec5760008555613b33565b82601f10613b0557805160ff1916838001178555613b33565b82800160010185558215613b33579182015b82811115613b32578251825591602001919060010190613b17565b5b509050613b409190613b44565b5090565b5b80821115613b5d576000816000905550600101613b45565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613baa81613b75565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b600060208284031215613be357613be2613b6b565b5b6000613bf184828501613bb8565b91505092915050565b60008115159050919050565b613c0f81613bfa565b82525050565b6000602082019050613c2a6000830184613c06565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c6a578082015181840152602081019050613c4f565b83811115613c79576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c9b82613c30565b613ca58185613c3b565b9350613cb5818560208601613c4c565b613cbe81613c7f565b840191505092915050565b60006020820190508181036000830152613ce38184613c90565b905092915050565b6000819050919050565b613cfe81613ceb565b8114613d0957600080fd5b50565b600081359050613d1b81613cf5565b92915050565b600060208284031215613d3757613d36613b6b565b5b6000613d4584828501613d0c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7982613d4e565b9050919050565b613d8981613d6e565b82525050565b6000602082019050613da46000830184613d80565b92915050565b613db381613d6e565b8114613dbe57600080fd5b50565b600081359050613dd081613daa565b92915050565b60008060408385031215613ded57613dec613b6b565b5b6000613dfb85828601613dc1565b9250506020613e0c85828601613d0c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e5882613c7f565b810181811067ffffffffffffffff82111715613e7757613e76613e20565b5b80604052505050565b6000613e8a613b61565b9050613e968282613e4f565b919050565b600067ffffffffffffffff821115613eb657613eb5613e20565b5b613ebf82613c7f565b9050602081019050919050565b82818337600083830152505050565b6000613eee613ee984613e9b565b613e80565b905082815260208101848484011115613f0a57613f09613e1b565b5b613f15848285613ecc565b509392505050565b600082601f830112613f3257613f31613e16565b5b8135613f42848260208601613edb565b91505092915050565b60008060008060808587031215613f6557613f64613b6b565b5b6000613f7387828801613dc1565b9450506020613f8487828801613dc1565b9350506040613f9587828801613d0c565b925050606085013567ffffffffffffffff811115613fb657613fb5613b70565b5b613fc287828801613f1d565b91505092959194509250565b613fd781613b75565b82525050565b6000602082019050613ff26000830184613fce565b92915050565b60008060006060848603121561401157614010613b6b565b5b600061401f86828701613dc1565b935050602061403086828701613dc1565b925050604061404186828701613d0c565b9150509250925092565b600067ffffffffffffffff82111561406657614065613e20565b5b61406f82613c7f565b9050602081019050919050565b600061408f61408a8461404b565b613e80565b9050828152602081018484840111156140ab576140aa613e1b565b5b6140b6848285613ecc565b509392505050565b600082601f8301126140d3576140d2613e16565b5b81356140e384826020860161407c565b91505092915050565b6000806000806080858703121561410657614105613b6b565b5b600061411487828801613d0c565b945050602085013567ffffffffffffffff81111561413557614134613b70565b5b614141878288016140be565b935050604061415287828801613d0c565b925050606061416387828801613dc1565b91505092959194509250565b61417881613ceb565b82525050565b6000602082019050614193600083018461416f565b92915050565b600080fd5b600080fd5b60008083601f8401126141b9576141b8613e16565b5b8235905067ffffffffffffffff8111156141d6576141d5614199565b5b6020830191508360208202830111156141f2576141f161419e565b5b9250929050565b600080602083850312156142105761420f613b6b565b5b600083013567ffffffffffffffff81111561422e5761422d613b70565b5b61423a858286016141a3565b92509250509250929050565b60006020828403121561425c5761425b613b6b565b5b600061426a84828501613dc1565b91505092915050565b61427c81613bfa565b811461428757600080fd5b50565b60008135905061429981614273565b92915050565b600080604083850312156142b6576142b5613b6b565b5b60006142c485828601613dc1565b92505060206142d58582860161428a565b9150509250929050565b600080604083850312156142f6576142f5613b6b565b5b600061430485828601613d0c565b925050602061431585828601613dc1565b9150509250929050565b60008060006060848603121561433857614337613b6b565b5b600061434686828701613d0c565b93505060206143578682870161428a565b925050604061436886828701613dc1565b9150509250925092565b6000806000806060858703121561438c5761438b613b6b565b5b600085013567ffffffffffffffff8111156143aa576143a9613b70565b5b6143b6878288016141a3565b945094505060206143c987828801613d0c565b92505060406143da87828801613dc1565b91505092959194509250565b600080604083850312156143fd576143fc613b6b565b5b600061440b8582860161428a565b925050602061441c85828601613d0c565b9150509250929050565b6000806040838503121561443d5761443c613b6b565b5b600061444b85828601613dc1565b925050602061445c85828601613dc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144ad57607f821691505b602082108114156144c1576144c0614466565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614523602c83613c3b565b915061452e826144c7565b604082019050919050565b6000602082019050818103600083015261455281614516565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006145b5602183613c3b565b91506145c082614559565b604082019050919050565b600060208201905081810360008301526145e4816145a8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614647603883613c3b565b9150614652826145eb565b604082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b7f6d757374206265205858585858206f7220577261707065642058585858580000600082015250565b60006146b3601e83613c3b565b91506146be8261467d565b602082019050919050565b600060208201905081810360008301526146e2816146a6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614745603183613c3b565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f4e6f742041757468210000000000000000000000000000000000000000000000600082015250565b60006147b1600983613c3b565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4e6f7420417070726f7665642100000000000000000000000000000000000000600082015250565b600061481d600d83613c3b565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614889602083613c3b565b915061489482614853565b602082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b6000815190506148ce81613daa565b92915050565b6000602082840312156148ea576148e9613b6b565b5b60006148f8848285016148bf565b91505092915050565b7f57726170706564204e4654206d696e74656420616e642064697374726962757460008201527f656420616c726561647900000000000000000000000000000000000000000000602082015250565b600061495d602a83613c3b565b915061496882614901565b604082019050919050565b6000602082019050818103600083015261498c81614950565b9050919050565b7f527567676564204e4654206973206e6f74206c6f636b656420696e20636f6e7460008201527f7261637400000000000000000000000000000000000000000000000000000000602082015250565b60006149ef602483613c3b565b91506149fa82614993565b604082019050919050565b60006020820190508181036000830152614a1e816149e2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a81602983613c3b565b9150614a8c82614a25565b604082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b2082613ceb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b5357614b52614ae6565b5b600182019050919050565b6000604082019050614b736000830185613c06565b614b806020830184613d80565b9392505050565b6000819050919050565b6000819050919050565b6000614bb6614bb1614bac84614b87565b614b91565b613ceb565b9050919050565b614bc681614b9b565b82525050565b6000602082019050614be16000830184614bbd565b92915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614c43602a83613c3b565b9150614c4e82614be7565b604082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614caf601983613c3b565b9150614cba82614c79565b602082019050919050565b60006020820190508181036000830152614cde81614ca2565b9050919050565b7f4552522850290000000000000000000000000000000000000000000000000000600082015250565b6000614d1b600683613c3b565b9150614d2682614ce5565b602082019050919050565b60006020820190508181036000830152614d4a81614d0e565b9050919050565b600081519050614d6081613cf5565b92915050565b600060208284031215614d7c57614d7b613b6b565b5b6000614d8a84828501614d51565b91505092915050565b600081905092915050565b6000614da982613c30565b614db38185614d93565b9350614dc3818560208601613c4c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614e05600583614d93565b9150614e1082614dcf565b600582019050919050565b6000614e278285614d9e565b9150614e338284614d9e565b9150614e3e82614df8565b91508190509392505050565b60008190508160005260206000209050919050565b60008154614e6c81614495565b614e768186614d93565b94506001821660008114614e915760018114614ea257614ed5565b60ff19831686528186019350614ed5565b614eab85614e4a565b60005b83811015614ecd57815481890152600182019150602081019050614eae565b838801955050505b50505092915050565b6000614eea8285614e5f565b9150614ef68284614d9e565b9150614f0182614df8565b91508190509392505050565b7f5772617070696e67206973206e6f7420656e61626c6564210000000000000000600082015250565b6000614f43601883613c3b565b9150614f4e82614f0d565b602082019050919050565b60006020820190508181036000830152614f7281614f36565b9050919050565b600081519050614f8881614273565b92915050565b60008060408385031215614fa557614fa4613b6b565b5b6000614fb385828601614f79565b9250506020614fc485828601614d51565b9150509250929050565b7f42616e6e656420546f6b656e5f49442100000000000000000000000000000000600082015250565b6000615004601083613c3b565b915061500f82614fce565b602082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b600060608201905061504f6000830186613d80565b61505c6020830185613d80565b615069604083018461416f565b949350505050565b60006020828403121561508757615086613b6b565b5b600061509584828501614f79565b91505092915050565b6000819050919050565b60006150c36150be6150b98461509e565b614b91565b613ceb565b9050919050565b6150d3816150a8565b82525050565b60006020820190506150ee60008301846150ca565b92915050565b60006150ff82613ceb565b915061510a83613ceb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561513f5761513e614ae6565b5b828201905092915050565b7f4e6f7420612042616e6e656420546f6b656e2100000000000000000000000000600082015250565b6000615180601383613c3b565b915061518b8261514a565b602082019050919050565b600060208201905081810360008301526151af81615173565b9050919050565b7f4e6f7420417574686f72697a6564000000000000000000000000000000000000600082015250565b60006151ec600e83613c3b565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b600081905092915050565b50565b600061523d600083615222565b91506152488261522d565b600082019050919050565b600061525e82615230565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061529e601083613c3b565b91506152a982615268565b602082019050919050565b600060208201905081810360008301526152cd81615291565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615330602683613c3b565b915061533b826152d4565b604082019050919050565b6000602082019050818103600083015261535f81615323565b9050919050565b600060408201905061537b6000830185613d80565b615388602083018461416f565b9392505050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006153c5600f83613c3b565b91506153d08261538f565b602082019050919050565b600060208201905081810360008301526153f4816153b8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615457602c83613c3b565b9150615462826153fb565b604082019050919050565b600060208201905081810360008301526154868161544a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006154e9602983613c3b565b91506154f48261548d565b604082019050919050565b60006020820190508181036000830152615518816154dc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061557b602483613c3b565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b60006155bc82613ceb565b91506155c783613ceb565b9250828210156155da576155d9614ae6565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615641603283613c3b565b915061564c826155e5565b604082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006156ad601483613c3b565b91506156b882615677565b602082019050919050565b600060208201905081810360008301526156dc816156a0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615719601083613c3b565b9150615724826156e3565b602082019050919050565b600060208201905081810360008301526157488161570c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061578982613ceb565b915061579483613ceb565b9250826157a4576157a361574f565b5b828204905092915050565b60006157ba82613ceb565b91506157c583613ceb565b9250826157d5576157d461574f565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615807826157e0565b61581181856157eb565b9350615821818560208601613c4c565b61582a81613c7f565b840191505092915050565b600060808201905061584a6000830187613d80565b6158576020830186613d80565b615864604083018561416f565b818103606083015261587681846157fc565b905095945050505050565b60008151905061589081613ba1565b92915050565b6000602082840312156158ac576158ab613b6b565b5b60006158ba84828501615881565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158f9602083613c3b565b9150615904826158c3565b602082019050919050565b60006020820190508181036000830152615928816158ec565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615965601c83613c3b565b91506159708261592f565b602082019050919050565b6000602082019050818103600083015261599481615958565b905091905056fea26469706673582212200dd05a4382d615fbb7dea43c6ef4b4068f62443d4a9aaad94c89e7a0c991cae464736f6c63430008090033

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.