FTM Price: $0.32 (-2.47%)
Gas: 29 Gwei

Token

MUSD Vault (MV)
 

Overview

Max Total Supply

0 MV

Holders

0

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Balance
0 MV
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
VaultNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-11-06
*/

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



pragma solidity ^0.8.0;

/**
 * @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.0;

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

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

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



pragma solidity ^0.8.0;

/**
 * @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.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {}
}

// File: MyVault.sol


pragma solidity >=0.8.0;


contract VaultNFT is ERC721 {
        
    address admin;
    
    constructor() ERC721("MUSD Vault", "MV") {
        admin = msg.sender;
    }
    
    function setAdmin(address _admin) external {
        require(admin == msg.sender);
        admin=_admin;
    }

    function burn(uint256 tokenId) public {
        require(
            msg.sender == admin,
            "Token: account does not have burn role"
        );
        _burn(tokenId);
    }
    
    function mint(address to, uint256 tokenId) public {
        require(
            msg.sender == admin,
            "Token: account does not have minter role"
        );
        _mint(to, tokenId);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"_admin","type":"address"}],"name":"setAdmin","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":"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"}]

Contract Creation Code

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f4d555344205661756c74000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d56000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000f9565b508060019080519060200190620000af929190620000f9565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200020e565b8280546200010790620001d8565b90600052602060002090601f0160209004810192826200012b576000855562000177565b82601f106200014657805160ff191683800117855562000177565b8280016001018555821562000177579182015b828111156200017657825182559160200191906001019062000159565b5b5090506200018691906200018a565b5090565b5b80821115620001a55760008160009055506001016200018b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001f157607f821691505b60208210811415620002085762000207620001a9565b5b50919050565b612b04806200021e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80636352211e11610097578063a22cb46511610066578063a22cb465146102a9578063b88d4fde146102c5578063c87b56dd146102e1578063e985e9c51461031157610100565b80636352211e1461020f578063704b6c021461023f57806370a082311461025b57806395d89b411461028b57610100565b806323b872dd116100d357806323b872dd1461019f57806340c10f19146101bb57806342842e0e146101d757806342966c68146101f357610100565b806301ffc9a71461010557806306fdde0314610135578063081812fc14610153578063095ea7b314610183575b600080fd5b61011f600480360381019061011a9190611963565b610341565b60405161012c91906119ab565b60405180910390f35b61013d610423565b60405161014a9190611a5f565b60405180910390f35b61016d60048036038101906101689190611ab7565b6104b5565b60405161017a9190611b25565b60405180910390f35b61019d60048036038101906101989190611b6c565b61053a565b005b6101b960048036038101906101b49190611bac565b610652565b005b6101d560048036038101906101d09190611b6c565b6106b2565b005b6101f160048036038101906101ec9190611bac565b610750565b005b61020d60048036038101906102089190611ab7565b610770565b005b61022960048036038101906102249190611ab7565b61080c565b6040516102369190611b25565b60405180910390f35b61025960048036038101906102549190611bff565b6108be565b005b61027560048036038101906102709190611bff565b61095c565b6040516102829190611c3b565b60405180910390f35b610293610a14565b6040516102a09190611a5f565b60405180910390f35b6102c360048036038101906102be9190611c82565b610aa6565b005b6102df60048036038101906102da9190611df7565b610c27565b005b6102fb60048036038101906102f69190611ab7565b610c89565b6040516103089190611a5f565b60405180910390f35b61032b60048036038101906103269190611e7a565b610d30565b60405161033891906119ab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061041c575061041b82610dc4565b5b9050919050565b60606000805461043290611ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461045e90611ee9565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b60006104c082610e2e565b6104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611f8d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105458261080c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad9061201f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105d5610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614806106045750610603816105fe610e9a565b610d30565b5b610643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063a906120b1565b60405180910390fd5b61064d8383610ea2565b505050565b61066361065d610e9a565b82610f5b565b6106a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069990612143565b60405180910390fd5b6106ad838383611039565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906121d5565b60405180910390fd5b61074c8282611295565b5050565b61076b83838360405180602001604052806000815250610c27565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f790612267565b60405180910390fd5b61080981611463565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac906122f9565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091857600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061238b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610a2390611ee9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f90611ee9565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b5050505050905090565b610aae610e9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b13906123f7565b60405180910390fd5b8060056000610b29610e9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bd6610e9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c1b91906119ab565b60405180910390a35050565b610c38610c32610e9a565b83610f5b565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90612143565b60405180910390fd5b610c8384848484611574565b50505050565b6060610c9482610e2e565b610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612489565b60405180910390fd5b6000610cdd6115d0565b90506000815111610cfd5760405180602001604052806000815250610d28565b80610d07846115e7565b604051602001610d189291906124e5565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f158361080c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6682610e2e565b610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061257b565b60405180910390fd5b6000610fb08361080c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061101f57508373ffffffffffffffffffffffffffffffffffffffff16611007846104b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611030575061102f8185610d30565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166110598261080c565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a69061260d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061269f565b60405180910390fd5b61112a838383611748565b611135600082610ea2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118591906126ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111dc9190612722565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906127c4565b60405180910390fd5b61130e81610e2e565b1561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612830565b60405180910390fd5b61135a60008383611748565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113aa9190612722565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061146e8261080c565b905061147c81600084611748565b611487600083610ea2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d791906126ee565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61157f848484611039565b61158b8484848461174d565b6115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906128c2565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141561162f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611743565b600082905060005b6000821461166157808061164a906128e2565b915050600a8261165a919061295a565b9150611637565b60008167ffffffffffffffff81111561167d5761167c611ccc565b5b6040519080825280601f01601f1916602001820160405280156116af5781602001600182028036833780820191505090505b5090505b6000851461173c576001826116c891906126ee565b9150600a856116d7919061298b565b60306116e39190612722565b60f81b8183815181106116f9576116f86129bc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611735919061295a565b94506116b3565b8093505050505b919050565b505050565b600061176e8473ffffffffffffffffffffffffffffffffffffffff166118e4565b156118d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611797610e9a565b8786866040518563ffffffff1660e01b81526004016117b99493929190612a40565b602060405180830381600087803b1580156117d357600080fd5b505af192505050801561180457506040513d601f19601f820116820180604052508101906118019190612aa1565b60015b611887573d8060008114611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b5060008151141561187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906128c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118dc565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119408161190b565b811461194b57600080fd5b50565b60008135905061195d81611937565b92915050565b60006020828403121561197957611978611901565b5b60006119878482850161194e565b91505092915050565b60008115159050919050565b6119a581611990565b82525050565b60006020820190506119c0600083018461199c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a005780820151818401526020810190506119e5565b83811115611a0f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a31826119c6565b611a3b81856119d1565b9350611a4b8185602086016119e2565b611a5481611a15565b840191505092915050565b60006020820190508181036000830152611a798184611a26565b905092915050565b6000819050919050565b611a9481611a81565b8114611a9f57600080fd5b50565b600081359050611ab181611a8b565b92915050565b600060208284031215611acd57611acc611901565b5b6000611adb84828501611aa2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0f82611ae4565b9050919050565b611b1f81611b04565b82525050565b6000602082019050611b3a6000830184611b16565b92915050565b611b4981611b04565b8114611b5457600080fd5b50565b600081359050611b6681611b40565b92915050565b60008060408385031215611b8357611b82611901565b5b6000611b9185828601611b57565b9250506020611ba285828601611aa2565b9150509250929050565b600080600060608486031215611bc557611bc4611901565b5b6000611bd386828701611b57565b9350506020611be486828701611b57565b9250506040611bf586828701611aa2565b9150509250925092565b600060208284031215611c1557611c14611901565b5b6000611c2384828501611b57565b91505092915050565b611c3581611a81565b82525050565b6000602082019050611c506000830184611c2c565b92915050565b611c5f81611990565b8114611c6a57600080fd5b50565b600081359050611c7c81611c56565b92915050565b60008060408385031215611c9957611c98611901565b5b6000611ca785828601611b57565b9250506020611cb885828601611c6d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d0482611a15565b810181811067ffffffffffffffff82111715611d2357611d22611ccc565b5b80604052505050565b6000611d366118f7565b9050611d428282611cfb565b919050565b600067ffffffffffffffff821115611d6257611d61611ccc565b5b611d6b82611a15565b9050602081019050919050565b82818337600083830152505050565b6000611d9a611d9584611d47565b611d2c565b905082815260208101848484011115611db657611db5611cc7565b5b611dc1848285611d78565b509392505050565b600082601f830112611dde57611ddd611cc2565b5b8135611dee848260208601611d87565b91505092915050565b60008060008060808587031215611e1157611e10611901565b5b6000611e1f87828801611b57565b9450506020611e3087828801611b57565b9350506040611e4187828801611aa2565b925050606085013567ffffffffffffffff811115611e6257611e61611906565b5b611e6e87828801611dc9565b91505092959194509250565b60008060408385031215611e9157611e90611901565b5b6000611e9f85828601611b57565b9250506020611eb085828601611b57565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f0157607f821691505b60208210811415611f1557611f14611eba565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611f77602c836119d1565b9150611f8282611f1b565b604082019050919050565b60006020820190508181036000830152611fa681611f6a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006120096021836119d1565b915061201482611fad565b604082019050919050565b6000602082019050818103600083015261203881611ffc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061209b6038836119d1565b91506120a68261203f565b604082019050919050565b600060208201905081810360008301526120ca8161208e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061212d6031836119d1565b9150612138826120d1565b604082019050919050565b6000602082019050818103600083015261215c81612120565b9050919050565b7f546f6b656e3a206163636f756e7420646f6573206e6f742068617665206d696e60008201527f74657220726f6c65000000000000000000000000000000000000000000000000602082015250565b60006121bf6028836119d1565b91506121ca82612163565b604082019050919050565b600060208201905081810360008301526121ee816121b2565b9050919050565b7f546f6b656e3a206163636f756e7420646f6573206e6f7420686176652062757260008201527f6e20726f6c650000000000000000000000000000000000000000000000000000602082015250565b60006122516026836119d1565b915061225c826121f5565b604082019050919050565b6000602082019050818103600083015261228081612244565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006122e36029836119d1565b91506122ee82612287565b604082019050919050565b60006020820190508181036000830152612312816122d6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612375602a836119d1565b915061238082612319565b604082019050919050565b600060208201905081810360008301526123a481612368565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006123e16019836119d1565b91506123ec826123ab565b602082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612473602f836119d1565b915061247e82612417565b604082019050919050565b600060208201905081810360008301526124a281612466565b9050919050565b600081905092915050565b60006124bf826119c6565b6124c981856124a9565b93506124d98185602086016119e2565b80840191505092915050565b60006124f182856124b4565b91506124fd82846124b4565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612565602c836119d1565b915061257082612509565b604082019050919050565b6000602082019050818103600083015261259481612558565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006125f76029836119d1565b91506126028261259b565b604082019050919050565b60006020820190508181036000830152612626816125ea565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126896024836119d1565b91506126948261262d565b604082019050919050565b600060208201905081810360008301526126b88161267c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f982611a81565b915061270483611a81565b925082821015612717576127166126bf565b5b828203905092915050565b600061272d82611a81565b915061273883611a81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561276d5761276c6126bf565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006127ae6020836119d1565b91506127b982612778565b602082019050919050565b600060208201905081810360008301526127dd816127a1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061281a601c836119d1565b9150612825826127e4565b602082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006128ac6032836119d1565b91506128b782612850565b604082019050919050565b600060208201905081810360008301526128db8161289f565b9050919050565b60006128ed82611a81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129205761291f6126bf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061296582611a81565b915061297083611a81565b9250826129805761297f61292b565b5b828204905092915050565b600061299682611a81565b91506129a183611a81565b9250826129b1576129b061292b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612a12826129eb565b612a1c81856129f6565b9350612a2c8185602086016119e2565b612a3581611a15565b840191505092915050565b6000608082019050612a556000830187611b16565b612a626020830186611b16565b612a6f6040830185611c2c565b8181036060830152612a818184612a07565b905095945050505050565b600081519050612a9b81611937565b92915050565b600060208284031215612ab757612ab6611901565b5b6000612ac584828501612a8c565b9150509291505056fea2646970667358221220b779f12e984658bf017d8ec7a54d624fc7c9039407223983bdd3cd1b9a88a34564736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80636352211e11610097578063a22cb46511610066578063a22cb465146102a9578063b88d4fde146102c5578063c87b56dd146102e1578063e985e9c51461031157610100565b80636352211e1461020f578063704b6c021461023f57806370a082311461025b57806395d89b411461028b57610100565b806323b872dd116100d357806323b872dd1461019f57806340c10f19146101bb57806342842e0e146101d757806342966c68146101f357610100565b806301ffc9a71461010557806306fdde0314610135578063081812fc14610153578063095ea7b314610183575b600080fd5b61011f600480360381019061011a9190611963565b610341565b60405161012c91906119ab565b60405180910390f35b61013d610423565b60405161014a9190611a5f565b60405180910390f35b61016d60048036038101906101689190611ab7565b6104b5565b60405161017a9190611b25565b60405180910390f35b61019d60048036038101906101989190611b6c565b61053a565b005b6101b960048036038101906101b49190611bac565b610652565b005b6101d560048036038101906101d09190611b6c565b6106b2565b005b6101f160048036038101906101ec9190611bac565b610750565b005b61020d60048036038101906102089190611ab7565b610770565b005b61022960048036038101906102249190611ab7565b61080c565b6040516102369190611b25565b60405180910390f35b61025960048036038101906102549190611bff565b6108be565b005b61027560048036038101906102709190611bff565b61095c565b6040516102829190611c3b565b60405180910390f35b610293610a14565b6040516102a09190611a5f565b60405180910390f35b6102c360048036038101906102be9190611c82565b610aa6565b005b6102df60048036038101906102da9190611df7565b610c27565b005b6102fb60048036038101906102f69190611ab7565b610c89565b6040516103089190611a5f565b60405180910390f35b61032b60048036038101906103269190611e7a565b610d30565b60405161033891906119ab565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061041c575061041b82610dc4565b5b9050919050565b60606000805461043290611ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461045e90611ee9565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b60006104c082610e2e565b6104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611f8d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105458261080c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad9061201f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105d5610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614806106045750610603816105fe610e9a565b610d30565b5b610643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063a906120b1565b60405180910390fd5b61064d8383610ea2565b505050565b61066361065d610e9a565b82610f5b565b6106a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069990612143565b60405180910390fd5b6106ad838383611039565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906121d5565b60405180910390fd5b61074c8282611295565b5050565b61076b83838360405180602001604052806000815250610c27565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f790612267565b60405180910390fd5b61080981611463565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac906122f9565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091857600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061238b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610a2390611ee9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f90611ee9565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b5050505050905090565b610aae610e9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b13906123f7565b60405180910390fd5b8060056000610b29610e9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bd6610e9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c1b91906119ab565b60405180910390a35050565b610c38610c32610e9a565b83610f5b565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90612143565b60405180910390fd5b610c8384848484611574565b50505050565b6060610c9482610e2e565b610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612489565b60405180910390fd5b6000610cdd6115d0565b90506000815111610cfd5760405180602001604052806000815250610d28565b80610d07846115e7565b604051602001610d189291906124e5565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f158361080c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6682610e2e565b610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061257b565b60405180910390fd5b6000610fb08361080c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061101f57508373ffffffffffffffffffffffffffffffffffffffff16611007846104b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611030575061102f8185610d30565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166110598261080c565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a69061260d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061269f565b60405180910390fd5b61112a838383611748565b611135600082610ea2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118591906126ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111dc9190612722565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906127c4565b60405180910390fd5b61130e81610e2e565b1561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612830565b60405180910390fd5b61135a60008383611748565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113aa9190612722565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061146e8261080c565b905061147c81600084611748565b611487600083610ea2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d791906126ee565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61157f848484611039565b61158b8484848461174d565b6115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906128c2565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141561162f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611743565b600082905060005b6000821461166157808061164a906128e2565b915050600a8261165a919061295a565b9150611637565b60008167ffffffffffffffff81111561167d5761167c611ccc565b5b6040519080825280601f01601f1916602001820160405280156116af5781602001600182028036833780820191505090505b5090505b6000851461173c576001826116c891906126ee565b9150600a856116d7919061298b565b60306116e39190612722565b60f81b8183815181106116f9576116f86129bc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611735919061295a565b94506116b3565b8093505050505b919050565b505050565b600061176e8473ffffffffffffffffffffffffffffffffffffffff166118e4565b156118d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611797610e9a565b8786866040518563ffffffff1660e01b81526004016117b99493929190612a40565b602060405180830381600087803b1580156117d357600080fd5b505af192505050801561180457506040513d601f19601f820116820180604052508101906118019190612aa1565b60015b611887573d8060008114611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b5060008151141561187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906128c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118dc565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119408161190b565b811461194b57600080fd5b50565b60008135905061195d81611937565b92915050565b60006020828403121561197957611978611901565b5b60006119878482850161194e565b91505092915050565b60008115159050919050565b6119a581611990565b82525050565b60006020820190506119c0600083018461199c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a005780820151818401526020810190506119e5565b83811115611a0f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a31826119c6565b611a3b81856119d1565b9350611a4b8185602086016119e2565b611a5481611a15565b840191505092915050565b60006020820190508181036000830152611a798184611a26565b905092915050565b6000819050919050565b611a9481611a81565b8114611a9f57600080fd5b50565b600081359050611ab181611a8b565b92915050565b600060208284031215611acd57611acc611901565b5b6000611adb84828501611aa2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0f82611ae4565b9050919050565b611b1f81611b04565b82525050565b6000602082019050611b3a6000830184611b16565b92915050565b611b4981611b04565b8114611b5457600080fd5b50565b600081359050611b6681611b40565b92915050565b60008060408385031215611b8357611b82611901565b5b6000611b9185828601611b57565b9250506020611ba285828601611aa2565b9150509250929050565b600080600060608486031215611bc557611bc4611901565b5b6000611bd386828701611b57565b9350506020611be486828701611b57565b9250506040611bf586828701611aa2565b9150509250925092565b600060208284031215611c1557611c14611901565b5b6000611c2384828501611b57565b91505092915050565b611c3581611a81565b82525050565b6000602082019050611c506000830184611c2c565b92915050565b611c5f81611990565b8114611c6a57600080fd5b50565b600081359050611c7c81611c56565b92915050565b60008060408385031215611c9957611c98611901565b5b6000611ca785828601611b57565b9250506020611cb885828601611c6d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d0482611a15565b810181811067ffffffffffffffff82111715611d2357611d22611ccc565b5b80604052505050565b6000611d366118f7565b9050611d428282611cfb565b919050565b600067ffffffffffffffff821115611d6257611d61611ccc565b5b611d6b82611a15565b9050602081019050919050565b82818337600083830152505050565b6000611d9a611d9584611d47565b611d2c565b905082815260208101848484011115611db657611db5611cc7565b5b611dc1848285611d78565b509392505050565b600082601f830112611dde57611ddd611cc2565b5b8135611dee848260208601611d87565b91505092915050565b60008060008060808587031215611e1157611e10611901565b5b6000611e1f87828801611b57565b9450506020611e3087828801611b57565b9350506040611e4187828801611aa2565b925050606085013567ffffffffffffffff811115611e6257611e61611906565b5b611e6e87828801611dc9565b91505092959194509250565b60008060408385031215611e9157611e90611901565b5b6000611e9f85828601611b57565b9250506020611eb085828601611b57565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f0157607f821691505b60208210811415611f1557611f14611eba565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611f77602c836119d1565b9150611f8282611f1b565b604082019050919050565b60006020820190508181036000830152611fa681611f6a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006120096021836119d1565b915061201482611fad565b604082019050919050565b6000602082019050818103600083015261203881611ffc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061209b6038836119d1565b91506120a68261203f565b604082019050919050565b600060208201905081810360008301526120ca8161208e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061212d6031836119d1565b9150612138826120d1565b604082019050919050565b6000602082019050818103600083015261215c81612120565b9050919050565b7f546f6b656e3a206163636f756e7420646f6573206e6f742068617665206d696e60008201527f74657220726f6c65000000000000000000000000000000000000000000000000602082015250565b60006121bf6028836119d1565b91506121ca82612163565b604082019050919050565b600060208201905081810360008301526121ee816121b2565b9050919050565b7f546f6b656e3a206163636f756e7420646f6573206e6f7420686176652062757260008201527f6e20726f6c650000000000000000000000000000000000000000000000000000602082015250565b60006122516026836119d1565b915061225c826121f5565b604082019050919050565b6000602082019050818103600083015261228081612244565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006122e36029836119d1565b91506122ee82612287565b604082019050919050565b60006020820190508181036000830152612312816122d6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612375602a836119d1565b915061238082612319565b604082019050919050565b600060208201905081810360008301526123a481612368565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006123e16019836119d1565b91506123ec826123ab565b602082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612473602f836119d1565b915061247e82612417565b604082019050919050565b600060208201905081810360008301526124a281612466565b9050919050565b600081905092915050565b60006124bf826119c6565b6124c981856124a9565b93506124d98185602086016119e2565b80840191505092915050565b60006124f182856124b4565b91506124fd82846124b4565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612565602c836119d1565b915061257082612509565b604082019050919050565b6000602082019050818103600083015261259481612558565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006125f76029836119d1565b91506126028261259b565b604082019050919050565b60006020820190508181036000830152612626816125ea565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126896024836119d1565b91506126948261262d565b604082019050919050565b600060208201905081810360008301526126b88161267c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f982611a81565b915061270483611a81565b925082821015612717576127166126bf565b5b828203905092915050565b600061272d82611a81565b915061273883611a81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561276d5761276c6126bf565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006127ae6020836119d1565b91506127b982612778565b602082019050919050565b600060208201905081810360008301526127dd816127a1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061281a601c836119d1565b9150612825826127e4565b602082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006128ac6032836119d1565b91506128b782612850565b604082019050919050565b600060208201905081810360008301526128db8161289f565b9050919050565b60006128ed82611a81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129205761291f6126bf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061296582611a81565b915061297083611a81565b9250826129805761297f61292b565b5b828204905092915050565b600061299682611a81565b91506129a183611a81565b9250826129b1576129b061292b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612a12826129eb565b612a1c81856129f6565b9350612a2c8185602086016119e2565b612a3581611a15565b840191505092915050565b6000608082019050612a556000830187611b16565b612a626020830186611b16565b612a6f6040830185611c2c565b8181036060830152612a818184612a07565b905095945050505050565b600081519050612a9b81611937565b92915050565b600060208284031215612ab757612ab6611901565b5b6000612ac584828501612a8c565b9150509291505056fea2646970667358221220b779f12e984658bf017d8ec7a54d624fc7c9039407223983bdd3cd1b9a88a34564736f6c63430008090033

Deployed Bytecode Sourcemap

32824:693:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20645:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21590:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23149:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22672:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24039:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33307:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24449:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33106:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21284:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32985:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21014:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21759:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23442:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24705:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21934:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23808:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20645:305;20747:4;20799:25;20784:40;;;:11;:40;;;;:105;;;;20856:33;20841:48;;;:11;:48;;;;20784:105;:158;;;;20906:36;20930:11;20906:23;:36::i;:::-;20784:158;20764:178;;20645:305;;;:::o;21590:100::-;21644:13;21677:5;21670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21590:100;:::o;23149:221::-;23225:7;23253:16;23261:7;23253;:16::i;:::-;23245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23338:15;:24;23354:7;23338:24;;;;;;;;;;;;;;;;;;;;;23331:31;;23149:221;;;:::o;22672:411::-;22753:13;22769:23;22784:7;22769:14;:23::i;:::-;22753:39;;22817:5;22811:11;;:2;:11;;;;22803:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22911:5;22895:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22920:37;22937:5;22944:12;:10;:12::i;:::-;22920:16;:37::i;:::-;22895:62;22873:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23054:21;23063:2;23067:7;23054:8;:21::i;:::-;22742:341;22672:411;;:::o;24039:339::-;24234:41;24253:12;:10;:12::i;:::-;24267:7;24234:18;:41::i;:::-;24226:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24342:28;24352:4;24358:2;24362:7;24342:9;:28::i;:::-;24039:339;;;:::o;33307:207::-;33404:5;;;;;;;;;;;33390:19;;:10;:19;;;33368:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;33488:18;33494:2;33498:7;33488:5;:18::i;:::-;33307:207;;:::o;24449:185::-;24587:39;24604:4;24610:2;24614:7;24587:39;;;;;;;;;;;;:16;:39::i;:::-;24449:185;;;:::o;33106:189::-;33191:5;;;;;;;;;;;33177:19;;:10;:19;;;33155:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;33273:14;33279:7;33273:5;:14::i;:::-;33106:189;:::o;21284:239::-;21356:7;21376:13;21392:7;:16;21400:7;21392:16;;;;;;;;;;;;;;;;;;;;;21376:32;;21444:1;21427:19;;:5;:19;;;;21419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21510:5;21503:12;;;21284:239;;;:::o;32985:113::-;33056:10;33047:19;;:5;;;;;;;;;;;:19;;;33039:28;;;;;;33084:6;33078:5;;:12;;;;;;;;;;;;;;;;;;32985:113;:::o;21014:208::-;21086:7;21131:1;21114:19;;:5;:19;;;;21106:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21198:9;:16;21208:5;21198:16;;;;;;;;;;;;;;;;21191:23;;21014:208;;;:::o;21759:104::-;21815:13;21848:7;21841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21759:104;:::o;23442:295::-;23557:12;:10;:12::i;:::-;23545:24;;:8;:24;;;;23537:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23657:8;23612:18;:32;23631:12;:10;:12::i;:::-;23612:32;;;;;;;;;;;;;;;:42;23645:8;23612:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23710:8;23681:48;;23696:12;:10;:12::i;:::-;23681:48;;;23720:8;23681:48;;;;;;:::i;:::-;;;;;;;;23442:295;;:::o;24705:328::-;24880:41;24899:12;:10;:12::i;:::-;24913:7;24880:18;:41::i;:::-;24872:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24986:39;25000:4;25006:2;25010:7;25019:5;24986:13;:39::i;:::-;24705:328;;;;:::o;21934:334::-;22007:13;22041:16;22049:7;22041;:16::i;:::-;22033:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22122:21;22146:10;:8;:10::i;:::-;22122:34;;22198:1;22180:7;22174:21;:25;:86;;;;;;;;;;;;;;;;;22226:7;22235:18;:7;:16;:18::i;:::-;22209:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22174:86;22167:93;;;21934:334;;;:::o;23808:164::-;23905:4;23929:18;:25;23948:5;23929:25;;;;;;;;;;;;;;;:35;23955:8;23929:35;;;;;;;;;;;;;;;;;;;;;;;;;23922:42;;23808:164;;;;:::o;13615:157::-;13700:4;13739:25;13724:40;;;:11;:40;;;;13717:47;;13615:157;;;:::o;26543:127::-;26608:4;26660:1;26632:30;;:7;:16;26640:7;26632:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26625:37;;26543:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;30525:174::-;30627:2;30600:15;:24;30616:7;30600:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30683:7;30679:2;30645:46;;30654:23;30669:7;30654:14;:23::i;:::-;30645:46;;;;;;;;;;;;30525:174;;:::o;26837:348::-;26930:4;26955:16;26963:7;26955;:16::i;:::-;26947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27031:13;27047:23;27062:7;27047:14;:23::i;:::-;27031:39;;27100:5;27089:16;;:7;:16;;;:51;;;;27133:7;27109:31;;:20;27121:7;27109:11;:20::i;:::-;:31;;;27089:51;:87;;;;27144:32;27161:5;27168:7;27144:16;:32::i;:::-;27089:87;27081:96;;;26837:348;;;;:::o;29829:578::-;29988:4;29961:31;;:23;29976:7;29961:14;:23::i;:::-;:31;;;29953:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30071:1;30057:16;;:2;:16;;;;30049:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30127:39;30148:4;30154:2;30158:7;30127:20;:39::i;:::-;30231:29;30248:1;30252:7;30231:8;:29::i;:::-;30292:1;30273:9;:15;30283:4;30273:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30321:1;30304:9;:13;30314:2;30304:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30352:2;30333:7;:16;30341:7;30333:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30391:7;30387:2;30372:27;;30381:4;30372:27;;;;;;;;;;;;29829:578;;;:::o;28521:382::-;28615:1;28601:16;;:2;:16;;;;28593:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28674:16;28682:7;28674;:16::i;:::-;28673:17;28665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28736:45;28765:1;28769:2;28773:7;28736:20;:45::i;:::-;28811:1;28794:9;:13;28804:2;28794:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28842:2;28823:7;:16;28831:7;28823:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28887:7;28883:2;28862:33;;28879:1;28862:33;;;;;;;;;;;;28521:382;;:::o;29132:360::-;29192:13;29208:23;29223:7;29208:14;:23::i;:::-;29192:39;;29244:48;29265:5;29280:1;29284:7;29244:20;:48::i;:::-;29333:29;29350:1;29354:7;29333:8;:29::i;:::-;29395:1;29375:9;:16;29385:5;29375:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;29414:7;:16;29422:7;29414:16;;;;;;;;;;;;29407:23;;;;;;;;;;;29476:7;29472:1;29448:36;;29457:5;29448:36;;;;;;;;;;;;29181:311;29132:360;:::o;25915:315::-;26072:28;26082:4;26088:2;26092:7;26072:9;:28::i;:::-;26119:48;26142:4;26148:2;26152:7;26161:5;26119:22;:48::i;:::-;26111:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25915:315;;;;:::o;22516:94::-;22567:13;22593:9;;;;;;;;;;;;;;22516:94;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;32635:126::-;;;;:::o;31264:799::-;31419:4;31440:15;:2;:13;;;:15::i;:::-;31436:620;;;31492:2;31476:36;;;31513:12;:10;:12::i;:::-;31527:4;31533:7;31542:5;31476:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31472:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31735:1;31718:6;:13;:18;31714:272;;;31761:60;;;;;;;;;;:::i;:::-;;;;;;;;31714:272;31936:6;31930:13;31921:6;31917:2;31913:15;31906:38;31472:529;31609:41;;;31599:51;;;:6;:51;;;;31592:58;;;;;31436:620;32040:4;32033:11;;31264:799;;;;;;;:::o;3675:387::-;3735:4;3943:12;4010:7;3998:20;3990:28;;4053:1;4046:4;:8;4039:15;;;3675:387;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:227::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:10;15372:2;15364:6;15360:15;15353:35;15168:227;:::o;15401:366::-;15543:3;15564:67;15628:2;15623:3;15564:67;:::i;:::-;15557:74;;15640:93;15729:3;15640:93;:::i;:::-;15758:2;15753:3;15749:12;15742:19;;15401:366;;;:::o;15773:419::-;15939:4;15977:2;15966:9;15962:18;15954:26;;16026:9;16020:4;16016:20;16012:1;16001:9;15997:17;15990:47;16054:131;16180:4;16054:131;:::i;:::-;16046:139;;15773:419;;;:::o;16198:225::-;16338:34;16334:1;16326:6;16322:14;16315:58;16407:8;16402:2;16394:6;16390:15;16383:33;16198:225;:::o;16429:366::-;16571:3;16592:67;16656:2;16651:3;16592:67;:::i;:::-;16585:74;;16668:93;16757:3;16668:93;:::i;:::-;16786:2;16781:3;16777:12;16770:19;;16429:366;;;:::o;16801:419::-;16967:4;17005:2;16994:9;16990:18;16982:26;;17054:9;17048:4;17044:20;17040:1;17029:9;17025:17;17018:47;17082:131;17208:4;17082:131;:::i;:::-;17074:139;;16801:419;;;:::o;17226:228::-;17366:34;17362:1;17354:6;17350:14;17343:58;17435:11;17430:2;17422:6;17418:15;17411:36;17226:228;:::o;17460:366::-;17602:3;17623:67;17687:2;17682:3;17623:67;:::i;:::-;17616:74;;17699:93;17788:3;17699:93;:::i;:::-;17817:2;17812:3;17808:12;17801:19;;17460:366;;;:::o;17832:419::-;17998:4;18036:2;18025:9;18021:18;18013:26;;18085:9;18079:4;18075:20;18071:1;18060:9;18056:17;18049:47;18113:131;18239:4;18113:131;:::i;:::-;18105:139;;17832:419;;;:::o;18257:229::-;18397:34;18393:1;18385:6;18381:14;18374:58;18466:12;18461:2;18453:6;18449:15;18442:37;18257:229;:::o;18492:366::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:419::-;19030:4;19068:2;19057:9;19053:18;19045:26;;19117:9;19111:4;19107:20;19103:1;19092:9;19088:17;19081:47;19145:131;19271:4;19145:131;:::i;:::-;19137:139;;18864:419;;;:::o;19289:175::-;19429:27;19425:1;19417:6;19413:14;19406:51;19289:175;:::o;19470:366::-;19612:3;19633:67;19697:2;19692:3;19633:67;:::i;:::-;19626:74;;19709:93;19798:3;19709:93;:::i;:::-;19827:2;19822:3;19818:12;19811:19;;19470:366;;;:::o;19842:419::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:234::-;20407:34;20403:1;20395:6;20391:14;20384:58;20476:17;20471:2;20463:6;20459:15;20452:42;20267:234;:::o;20507:366::-;20649:3;20670:67;20734:2;20729:3;20670:67;:::i;:::-;20663:74;;20746:93;20835:3;20746:93;:::i;:::-;20864:2;20859:3;20855:12;20848:19;;20507:366;;;:::o;20879:419::-;21045:4;21083:2;21072:9;21068:18;21060:26;;21132:9;21126:4;21122:20;21118:1;21107:9;21103:17;21096:47;21160:131;21286:4;21160:131;:::i;:::-;21152:139;;20879:419;;;:::o;21304:148::-;21406:11;21443:3;21428:18;;21304:148;;;;:::o;21458:377::-;21564:3;21592:39;21625:5;21592:39;:::i;:::-;21647:89;21729:6;21724:3;21647:89;:::i;:::-;21640:96;;21745:52;21790:6;21785:3;21778:4;21771:5;21767:16;21745:52;:::i;:::-;21822:6;21817:3;21813:16;21806:23;;21568:267;21458:377;;;;:::o;21841:435::-;22021:3;22043:95;22134:3;22125:6;22043:95;:::i;:::-;22036:102;;22155:95;22246:3;22237:6;22155:95;:::i;:::-;22148:102;;22267:3;22260:10;;21841:435;;;;;:::o;22282:231::-;22422:34;22418:1;22410:6;22406:14;22399:58;22491:14;22486:2;22478:6;22474:15;22467:39;22282:231;:::o;22519:366::-;22661:3;22682:67;22746:2;22741:3;22682:67;:::i;:::-;22675:74;;22758:93;22847:3;22758:93;:::i;:::-;22876:2;22871:3;22867:12;22860:19;;22519:366;;;:::o;22891:419::-;23057:4;23095:2;23084:9;23080:18;23072:26;;23144:9;23138:4;23134:20;23130:1;23119:9;23115:17;23108:47;23172:131;23298:4;23172:131;:::i;:::-;23164:139;;22891:419;;;:::o;23316:228::-;23456:34;23452:1;23444:6;23440:14;23433:58;23525:11;23520:2;23512:6;23508:15;23501:36;23316:228;:::o;23550:366::-;23692:3;23713:67;23777:2;23772:3;23713:67;:::i;:::-;23706:74;;23789:93;23878:3;23789:93;:::i;:::-;23907:2;23902:3;23898:12;23891:19;;23550:366;;;:::o;23922:419::-;24088:4;24126:2;24115:9;24111:18;24103:26;;24175:9;24169:4;24165:20;24161:1;24150:9;24146:17;24139:47;24203:131;24329:4;24203:131;:::i;:::-;24195:139;;23922:419;;;:::o;24347:223::-;24487:34;24483:1;24475:6;24471:14;24464:58;24556:6;24551:2;24543:6;24539:15;24532:31;24347:223;:::o;24576:366::-;24718:3;24739:67;24803:2;24798:3;24739:67;:::i;:::-;24732:74;;24815:93;24904:3;24815:93;:::i;:::-;24933:2;24928:3;24924:12;24917:19;;24576:366;;;:::o;24948:419::-;25114:4;25152:2;25141:9;25137:18;25129:26;;25201:9;25195:4;25191:20;25187:1;25176:9;25172:17;25165:47;25229:131;25355:4;25229:131;:::i;:::-;25221:139;;24948:419;;;:::o;25373:180::-;25421:77;25418:1;25411:88;25518:4;25515:1;25508:15;25542:4;25539:1;25532:15;25559:191;25599:4;25619:20;25637:1;25619:20;:::i;:::-;25614:25;;25653:20;25671:1;25653:20;:::i;:::-;25648:25;;25692:1;25689;25686:8;25683:34;;;25697:18;;:::i;:::-;25683:34;25742:1;25739;25735:9;25727:17;;25559:191;;;;:::o;25756:305::-;25796:3;25815:20;25833:1;25815:20;:::i;:::-;25810:25;;25849:20;25867:1;25849:20;:::i;:::-;25844:25;;26003:1;25935:66;25931:74;25928:1;25925:81;25922:107;;;26009:18;;:::i;:::-;25922:107;26053:1;26050;26046:9;26039:16;;25756:305;;;;:::o;26067:182::-;26207:34;26203:1;26195:6;26191:14;26184:58;26067:182;:::o;26255:366::-;26397:3;26418:67;26482:2;26477:3;26418:67;:::i;:::-;26411:74;;26494:93;26583:3;26494:93;:::i;:::-;26612:2;26607:3;26603:12;26596:19;;26255:366;;;:::o;26627:419::-;26793:4;26831:2;26820:9;26816:18;26808:26;;26880:9;26874:4;26870:20;26866:1;26855:9;26851:17;26844:47;26908:131;27034:4;26908:131;:::i;:::-;26900:139;;26627:419;;;:::o;27052:178::-;27192:30;27188:1;27180:6;27176:14;27169:54;27052:178;:::o;27236:366::-;27378:3;27399:67;27463:2;27458:3;27399:67;:::i;:::-;27392:74;;27475:93;27564:3;27475:93;:::i;:::-;27593:2;27588:3;27584:12;27577:19;;27236:366;;;:::o;27608:419::-;27774:4;27812:2;27801:9;27797:18;27789:26;;27861:9;27855:4;27851:20;27847:1;27836:9;27832:17;27825:47;27889:131;28015:4;27889:131;:::i;:::-;27881:139;;27608:419;;;:::o;28033:237::-;28173:34;28169:1;28161:6;28157:14;28150:58;28242:20;28237:2;28229:6;28225:15;28218:45;28033:237;:::o;28276:366::-;28418:3;28439:67;28503:2;28498:3;28439:67;:::i;:::-;28432:74;;28515:93;28604:3;28515:93;:::i;:::-;28633:2;28628:3;28624:12;28617:19;;28276:366;;;:::o;28648:419::-;28814:4;28852:2;28841:9;28837:18;28829:26;;28901:9;28895:4;28891:20;28887:1;28876:9;28872:17;28865:47;28929:131;29055:4;28929:131;:::i;:::-;28921:139;;28648:419;;;:::o;29073:233::-;29112:3;29135:24;29153:5;29135:24;:::i;:::-;29126:33;;29181:66;29174:5;29171:77;29168:103;;;29251:18;;:::i;:::-;29168:103;29298:1;29291:5;29287:13;29280:20;;29073:233;;;:::o;29312:180::-;29360:77;29357:1;29350:88;29457:4;29454:1;29447:15;29481:4;29478:1;29471:15;29498:185;29538:1;29555:20;29573:1;29555:20;:::i;:::-;29550:25;;29589:20;29607:1;29589:20;:::i;:::-;29584:25;;29628:1;29618:35;;29633:18;;:::i;:::-;29618:35;29675:1;29672;29668:9;29663:14;;29498:185;;;;:::o;29689:176::-;29721:1;29738:20;29756:1;29738:20;:::i;:::-;29733:25;;29772:20;29790:1;29772:20;:::i;:::-;29767:25;;29811:1;29801:35;;29816:18;;:::i;:::-;29801:35;29857:1;29854;29850:9;29845:14;;29689:176;;;;:::o;29871:180::-;29919:77;29916:1;29909:88;30016:4;30013:1;30006:15;30040:4;30037:1;30030:15;30057:98;30108:6;30142:5;30136:12;30126:22;;30057:98;;;:::o;30161:168::-;30244:11;30278:6;30273:3;30266:19;30318:4;30313:3;30309:14;30294:29;;30161:168;;;;:::o;30335:360::-;30421:3;30449:38;30481:5;30449:38;:::i;:::-;30503:70;30566:6;30561:3;30503:70;:::i;:::-;30496:77;;30582:52;30627:6;30622:3;30615:4;30608:5;30604:16;30582:52;:::i;:::-;30659:29;30681:6;30659:29;:::i;:::-;30654:3;30650:39;30643:46;;30425:270;30335:360;;;;:::o;30701:640::-;30896:4;30934:3;30923:9;30919:19;30911:27;;30948:71;31016:1;31005:9;31001:17;30992:6;30948:71;:::i;:::-;31029:72;31097:2;31086:9;31082:18;31073:6;31029:72;:::i;:::-;31111;31179:2;31168:9;31164:18;31155:6;31111:72;:::i;:::-;31230:9;31224:4;31220:20;31215:2;31204:9;31200:18;31193:48;31258:76;31329:4;31320:6;31258:76;:::i;:::-;31250:84;;30701:640;;;;;;;:::o;31347:141::-;31403:5;31434:6;31428:13;31419:22;;31450:32;31476:5;31450:32;:::i;:::-;31347:141;;;;:::o;31494:349::-;31563:6;31612:2;31600:9;31591:7;31587:23;31583:32;31580:119;;;31618:79;;:::i;:::-;31580:119;31738:1;31763:63;31818:7;31809:6;31798:9;31794:22;31763:63;:::i;:::-;31753:73;;31709:127;31494:349;;;;:::o

Swarm Source

ipfs://b779f12e984658bf017d8ec7a54d624fc7c9039407223983bdd3cd1b9a88a345
Loading...
Loading
[ 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.