ETH Price: $3,269.75 (-0.37%)
Gas: 2 Gwei

Token

Resume NFT (RNFT)
 

Overview

Max Total Supply

498 RNFT

Holders

449

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RNFT
0xe447a97a1833a55230f9fcac83efe9be6163694b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Each RNFT token represents a unique digital profile and is used as an electronic certification or voucher or ownership of virtual goods.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaProfile

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-26
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts v4.4.1 (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);
}


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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



pragma solidity ^0.8.0;




contract MetaProfile is ERC721, ERC721Enumerable, Ownable {
    // Generate Token ID
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    // Mapping from Token ID to soul address
    mapping(uint256 => address) private _souls;

    // Mint status, if false, no more nft is allowed to mint
    bool public mintPermitted = true;

    // base uri
    string private _tokenBaseURI;

    constructor() ERC721("Resume NFT", "RNFT") {
        setBaseURI("https://uniuni.io/nft/profile/");
    }

    /**
     * @dev Everyone can mint his/her own profile nft.
     */
    function mint() external {
        require(mintPermitted, "Mint: the NFT contract is locked up forever");
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        _safeMint(msg.sender, tokenId);
        _souls[tokenId] = msg.sender;
    }
    
    /**
     * @dev Everyone can burn his/her own profile NFT
     */
    function burn(uint256 tokenId) external {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
        // not do delete action actually so as to save gas fee
        // delete _souls[tokenId];
    }

    /**
     * @dev After the call, no NFT is allowed to mint
     */
    function lockup() external onlyOwner {
        mintPermitted = false;
    }

    /**
     * @dev Get the soul address of an NFT, require the NFT exists
     * @param tokenId The NFT
     */
    function soulOf(uint256 tokenId) external view returns(address) {
        require(_exists(tokenId), "ERC721: invalid token ID");
        return _souls[tokenId];
    }

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

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

    /**
     * @dev Set Base URI for computing {tokenURI}.
     */
    function setBaseURI(string memory uri) public onlyOwner {
        _tokenBaseURI = uri;
    }

    /**
     * @dev Base URI for computing {tokenURI}.
     */
    function _baseURI() internal view override virtual returns (string memory) {
        return _tokenBaseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"lockup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPermitted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"soulOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600a81526020017f526573756d65204e4654000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524e4654000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b1929190620002ee565b508060019080519060200190620000ca929190620002ee565b505050620000ed620000e16200013960201b60201c565b6200014160201b60201c565b620001336040518060400160405280601e81526020017f68747470733a2f2f756e69756e692e696f2f6e66742f70726f66696c652f00008152506200020760201b60201c565b62000486565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200023360201b60201c565b80600e90805190602001906200022f929190620002ee565b5050565b620002436200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000269620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b990620003c5565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fc90620003f8565b90600052602060002090601f0160209004810192826200032057600085556200036c565b82601f106200033b57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036b5782518255916020019190600101906200034e565b5b5090506200037b91906200037f565b5090565b5b808211156200039a57600081600090555060010162000380565b5090565b6000620003ad602083620003e7565b9150620003ba826200045d565b602082019050919050565b60006020820190508181036000830152620003e0816200039e565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041157607f821691505b602082108114156200042857620004276200042e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6136cd80620004966000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de5780639249beb311610097578063b88d4fde11610071578063b88d4fde14610424578063c87b56dd14610440578063e985e9c514610470578063f2fde38b146104a057610173565b80639249beb3146103cc57806395d89b41146103ea578063a22cb4651461040857610173565b806355f804b3146102f85780636352211e1461031457806370a0823114610344578063715018a61461037457806388835b6a1461037e5780638da5cb5b146103ae57610173565b806318160ddd1161013057806318160ddd1461022657806323b872dd146102445780632f745c591461026057806342842e0e1461029057806342966c68146102ac5780634f6ccce7146102c857610173565b806301ffc9a71461017857806306490f47146101a857806306fdde03146101b2578063081812fc146101d0578063095ea7b3146102005780631249c58b1461021c575b600080fd5b610192600480360381019061018d91906126ff565b6104bc565b60405161019f9190612b5a565b60405180910390f35b6101b06104ce565b005b6101ba6104f3565b6040516101c79190612b75565b60405180910390f35b6101ea60048036038101906101e591906127a2565b610585565b6040516101f79190612af3565b60405180910390f35b61021a600480360381019061021591906126bf565b6105cb565b005b6102246106e3565b005b61022e6107a9565b60405161023b9190612d97565b60405180910390f35b61025e600480360381019061025991906125a9565b6107b6565b005b61027a600480360381019061027591906126bf565b610816565b6040516102879190612d97565b60405180910390f35b6102aa60048036038101906102a591906125a9565b6108bb565b005b6102c660048036038101906102c191906127a2565b6108db565b005b6102e260048036038101906102dd91906127a2565b610937565b6040516102ef9190612d97565b60405180910390f35b610312600480360381019061030d9190612759565b6109a8565b005b61032e600480360381019061032991906127a2565b6109ca565b60405161033b9190612af3565b60405180910390f35b61035e6004803603810190610359919061253c565b610a7c565b60405161036b9190612d97565b60405180910390f35b61037c610b34565b005b610398600480360381019061039391906127a2565b610b48565b6040516103a59190612af3565b60405180910390f35b6103b6610bcd565b6040516103c39190612af3565b60405180910390f35b6103d4610bf7565b6040516103e19190612b5a565b60405180910390f35b6103f2610c0a565b6040516103ff9190612b75565b60405180910390f35b610422600480360381019061041d919061267f565b610c9c565b005b61043e600480360381019061043991906125fc565b610cb2565b005b61045a600480360381019061045591906127a2565b610d14565b6040516104679190612b75565b60405180910390f35b61048a60048036038101906104859190612569565b610d7c565b6040516104979190612b5a565b60405180910390f35b6104ba60048036038101906104b5919061253c565b610e10565b005b60006104c782610e94565b9050919050565b6104d6610f0e565b6000600d60006101000a81548160ff021916908315150217905550565b60606000805461050290612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461052e90612fed565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b5050505050905090565b600061059082610f8c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105d6826109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90612d17565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610666610fd7565b73ffffffffffffffffffffffffffffffffffffffff16148061069557506106948161068f610fd7565b610d7c565b5b6106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612c97565b60405180910390fd5b6106de8383610fdf565b505050565b600d60009054906101000a900460ff16610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990612d37565b60405180910390fd5b61073c600b611098565b6000610748600b6110ae565b905061075433826110bc565b33600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600880549050905090565b6107c76107c1610fd7565b826110da565b610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612d77565b60405180910390fd5b61081183838361116f565b505050565b600061082183610a7c565b8210610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990612b97565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108d683838360405180602001604052806000815250610cb2565b505050565b6108ec6108e6610fd7565b826110da565b61092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290612d77565b60405180910390fd5b610934816113d6565b50565b60006109416107a9565b8210610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612d57565b60405180910390fd5b6008828154811061099657610995613186565b5b90600052602060002001549050919050565b6109b0610f0e565b80600e90805190602001906109c6929190612350565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90612cf7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490612c77565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3c610f0e565b610b4660006114f3565b565b6000610b53826115b9565b610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990612cf7565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900460ff1681565b606060018054610c1990612fed565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590612fed565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b610cae610ca7610fd7565b8383611625565b5050565b610cc3610cbd610fd7565b836110da565b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612d77565b60405180910390fd5b610d0e84848484611792565b50505050565b6060610d1f82610f8c565b6000610d296117ee565b90506000815111610d495760405180602001604052806000815250610d74565b80610d5384611880565b604051602001610d64929190612acf565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e18610f0e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612bd7565b60405180910390fd5b610e91816114f3565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f075750610f06826119e1565b5b9050919050565b610f16610fd7565b73ffffffffffffffffffffffffffffffffffffffff16610f34610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612cd7565b60405180910390fd5b565b610f95816115b9565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612cf7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611052836109ca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6110d6828260405180602001604052806000815250611ac3565b5050565b6000806110e6836109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061112857506111278185610d7c565b5b8061116657508373ffffffffffffffffffffffffffffffffffffffff1661114e84610585565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661118f826109ca565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612c37565b60405180910390fd5b611260838383611b1e565b61126b600082610fdf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bb9190612f03565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113129190612e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113d1838383611b2e565b505050565b60006113e1826109ca565b90506113ef81600084611b1e565b6113fa600083610fdf565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144a9190612f03565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114ef81600084611b2e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612c57565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117859190612b5a565b60405180910390a3505050565b61179d84848461116f565b6117a984848484611b33565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90612bb7565b60405180910390fd5b50505050565b6060600e80546117fd90612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461182990612fed565b80156118765780601f1061184b57610100808354040283529160200191611876565b820191906000526020600020905b81548152906001019060200180831161185957829003601f168201915b5050505050905090565b606060008214156118c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119dc565b600082905060005b600082146118fa5780806118e390613050565b915050600a826118f39190612ed2565b91506118d0565b60008167ffffffffffffffff811115611916576119156131b5565b5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090505b600085146119d5576001826119619190612f03565b9150600a856119709190613099565b603061197c9190612e7c565b60f81b81838151811061199257611991613186565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119ce9190612ed2565b945061194c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611abc5750611abb82611cca565b5b9050919050565b611acd8383611d34565b611ada6000848484611b33565b611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090612bb7565b60405180910390fd5b505050565b611b29838383611f0e565b505050565b505050565b6000611b548473ffffffffffffffffffffffffffffffffffffffff16612022565b15611cbd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7d610fd7565b8786866040518563ffffffff1660e01b8152600401611b9f9493929190612b0e565b602060405180830381600087803b158015611bb957600080fd5b505af1925050508015611bea57506040513d601f19601f82011682018060405250810190611be7919061272c565b60015b611c6d573d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b50600081511415611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90612bb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90612cb7565b60405180910390fd5b611dad816115b9565b15611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490612c17565b60405180910390fd5b611df960008383611b1e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e499190612e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f0a60008383611b2e565b5050565b611f19838383612045565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f5c57611f578161204a565b611f9b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f9a57611f998382612093565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fde57611fd981612200565b61201d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461201c5761201b82826122d1565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120a084610a7c565b6120aa9190612f03565b905060006007600084815260200190815260200160002054905081811461218f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506122149190612f03565b905060006009600084815260200190815260200160002054905060006008838154811061224457612243613186565b5b90600052602060002001549050806008838154811061226657612265613186565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122b5576122b4613157565b5b6001900381819060005260206000200160009055905550505050565b60006122dc83610a7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461235c90612fed565b90600052602060002090601f01602090048101928261237e57600085556123c5565b82601f1061239757805160ff19168380011785556123c5565b828001600101855582156123c5579182015b828111156123c45782518255916020019190600101906123a9565b5b5090506123d291906123d6565b5090565b5b808211156123ef5760008160009055506001016123d7565b5090565b600061240661240184612dd7565b612db2565b905082815260208101848484011115612422576124216131e9565b5b61242d848285612fab565b509392505050565b600061244861244384612e08565b612db2565b905082815260208101848484011115612464576124636131e9565b5b61246f848285612fab565b509392505050565b6000813590506124868161363b565b92915050565b60008135905061249b81613652565b92915050565b6000813590506124b081613669565b92915050565b6000815190506124c581613669565b92915050565b600082601f8301126124e0576124df6131e4565b5b81356124f08482602086016123f3565b91505092915050565b600082601f83011261250e5761250d6131e4565b5b813561251e848260208601612435565b91505092915050565b60008135905061253681613680565b92915050565b600060208284031215612552576125516131f3565b5b600061256084828501612477565b91505092915050565b600080604083850312156125805761257f6131f3565b5b600061258e85828601612477565b925050602061259f85828601612477565b9150509250929050565b6000806000606084860312156125c2576125c16131f3565b5b60006125d086828701612477565b93505060206125e186828701612477565b92505060406125f286828701612527565b9150509250925092565b60008060008060808587031215612616576126156131f3565b5b600061262487828801612477565b945050602061263587828801612477565b935050604061264687828801612527565b925050606085013567ffffffffffffffff811115612667576126666131ee565b5b612673878288016124cb565b91505092959194509250565b60008060408385031215612696576126956131f3565b5b60006126a485828601612477565b92505060206126b58582860161248c565b9150509250929050565b600080604083850312156126d6576126d56131f3565b5b60006126e485828601612477565b92505060206126f585828601612527565b9150509250929050565b600060208284031215612715576127146131f3565b5b6000612723848285016124a1565b91505092915050565b600060208284031215612742576127416131f3565b5b6000612750848285016124b6565b91505092915050565b60006020828403121561276f5761276e6131f3565b5b600082013567ffffffffffffffff81111561278d5761278c6131ee565b5b612799848285016124f9565b91505092915050565b6000602082840312156127b8576127b76131f3565b5b60006127c684828501612527565b91505092915050565b6127d881612f37565b82525050565b6127e781612f49565b82525050565b60006127f882612e39565b6128028185612e4f565b9350612812818560208601612fba565b61281b816131f8565b840191505092915050565b600061283182612e44565b61283b8185612e60565b935061284b818560208601612fba565b612854816131f8565b840191505092915050565b600061286a82612e44565b6128748185612e71565b9350612884818560208601612fba565b80840191505092915050565b600061289d602b83612e60565b91506128a882613209565b604082019050919050565b60006128c0603283612e60565b91506128cb82613258565b604082019050919050565b60006128e3602683612e60565b91506128ee826132a7565b604082019050919050565b6000612906602583612e60565b9150612911826132f6565b604082019050919050565b6000612929601c83612e60565b915061293482613345565b602082019050919050565b600061294c602483612e60565b91506129578261336e565b604082019050919050565b600061296f601983612e60565b915061297a826133bd565b602082019050919050565b6000612992602983612e60565b915061299d826133e6565b604082019050919050565b60006129b5603e83612e60565b91506129c082613435565b604082019050919050565b60006129d8602083612e60565b91506129e382613484565b602082019050919050565b60006129fb602083612e60565b9150612a06826134ad565b602082019050919050565b6000612a1e601883612e60565b9150612a29826134d6565b602082019050919050565b6000612a41602183612e60565b9150612a4c826134ff565b604082019050919050565b6000612a64602b83612e60565b9150612a6f8261354e565b604082019050919050565b6000612a87602c83612e60565b9150612a928261359d565b604082019050919050565b6000612aaa602e83612e60565b9150612ab5826135ec565b604082019050919050565b612ac981612fa1565b82525050565b6000612adb828561285f565b9150612ae7828461285f565b91508190509392505050565b6000602082019050612b0860008301846127cf565b92915050565b6000608082019050612b2360008301876127cf565b612b3060208301866127cf565b612b3d6040830185612ac0565b8181036060830152612b4f81846127ed565b905095945050505050565b6000602082019050612b6f60008301846127de565b92915050565b60006020820190508181036000830152612b8f8184612826565b905092915050565b60006020820190508181036000830152612bb081612890565b9050919050565b60006020820190508181036000830152612bd0816128b3565b9050919050565b60006020820190508181036000830152612bf0816128d6565b9050919050565b60006020820190508181036000830152612c10816128f9565b9050919050565b60006020820190508181036000830152612c308161291c565b9050919050565b60006020820190508181036000830152612c508161293f565b9050919050565b60006020820190508181036000830152612c7081612962565b9050919050565b60006020820190508181036000830152612c9081612985565b9050919050565b60006020820190508181036000830152612cb0816129a8565b9050919050565b60006020820190508181036000830152612cd0816129cb565b9050919050565b60006020820190508181036000830152612cf0816129ee565b9050919050565b60006020820190508181036000830152612d1081612a11565b9050919050565b60006020820190508181036000830152612d3081612a34565b9050919050565b60006020820190508181036000830152612d5081612a57565b9050919050565b60006020820190508181036000830152612d7081612a7a565b9050919050565b60006020820190508181036000830152612d9081612a9d565b9050919050565b6000602082019050612dac6000830184612ac0565b92915050565b6000612dbc612dcd565b9050612dc8828261301f565b919050565b6000604051905090565b600067ffffffffffffffff821115612df257612df16131b5565b5b612dfb826131f8565b9050602081019050919050565b600067ffffffffffffffff821115612e2357612e226131b5565b5b612e2c826131f8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e8782612fa1565b9150612e9283612fa1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ec757612ec66130ca565b5b828201905092915050565b6000612edd82612fa1565b9150612ee883612fa1565b925082612ef857612ef76130f9565b5b828204905092915050565b6000612f0e82612fa1565b9150612f1983612fa1565b925082821015612f2c57612f2b6130ca565b5b828203905092915050565b6000612f4282612f81565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fd8578082015181840152602081019050612fbd565b83811115612fe7576000848401525b50505050565b6000600282049050600182168061300557607f821691505b6020821081141561301957613018613128565b5b50919050565b613028826131f8565b810181811067ffffffffffffffff82111715613047576130466131b5565b5b80604052505050565b600061305b82612fa1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308e5761308d6130ca565b5b600182019050919050565b60006130a482612fa1565b91506130af83612fa1565b9250826130bf576130be6130f9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e743a20746865204e465420636f6e7472616374206973206c6f636b656460008201527f20757020666f7265766572000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61364481612f37565b811461364f57600080fd5b50565b61365b81612f49565b811461366657600080fd5b50565b61367281612f55565b811461367d57600080fd5b50565b61368981612fa1565b811461369457600080fd5b5056fea2646970667358221220ad12adac672642dac84b1083c7677969c130666f86d3ddf87c228a1bef793bcb64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de5780639249beb311610097578063b88d4fde11610071578063b88d4fde14610424578063c87b56dd14610440578063e985e9c514610470578063f2fde38b146104a057610173565b80639249beb3146103cc57806395d89b41146103ea578063a22cb4651461040857610173565b806355f804b3146102f85780636352211e1461031457806370a0823114610344578063715018a61461037457806388835b6a1461037e5780638da5cb5b146103ae57610173565b806318160ddd1161013057806318160ddd1461022657806323b872dd146102445780632f745c591461026057806342842e0e1461029057806342966c68146102ac5780634f6ccce7146102c857610173565b806301ffc9a71461017857806306490f47146101a857806306fdde03146101b2578063081812fc146101d0578063095ea7b3146102005780631249c58b1461021c575b600080fd5b610192600480360381019061018d91906126ff565b6104bc565b60405161019f9190612b5a565b60405180910390f35b6101b06104ce565b005b6101ba6104f3565b6040516101c79190612b75565b60405180910390f35b6101ea60048036038101906101e591906127a2565b610585565b6040516101f79190612af3565b60405180910390f35b61021a600480360381019061021591906126bf565b6105cb565b005b6102246106e3565b005b61022e6107a9565b60405161023b9190612d97565b60405180910390f35b61025e600480360381019061025991906125a9565b6107b6565b005b61027a600480360381019061027591906126bf565b610816565b6040516102879190612d97565b60405180910390f35b6102aa60048036038101906102a591906125a9565b6108bb565b005b6102c660048036038101906102c191906127a2565b6108db565b005b6102e260048036038101906102dd91906127a2565b610937565b6040516102ef9190612d97565b60405180910390f35b610312600480360381019061030d9190612759565b6109a8565b005b61032e600480360381019061032991906127a2565b6109ca565b60405161033b9190612af3565b60405180910390f35b61035e6004803603810190610359919061253c565b610a7c565b60405161036b9190612d97565b60405180910390f35b61037c610b34565b005b610398600480360381019061039391906127a2565b610b48565b6040516103a59190612af3565b60405180910390f35b6103b6610bcd565b6040516103c39190612af3565b60405180910390f35b6103d4610bf7565b6040516103e19190612b5a565b60405180910390f35b6103f2610c0a565b6040516103ff9190612b75565b60405180910390f35b610422600480360381019061041d919061267f565b610c9c565b005b61043e600480360381019061043991906125fc565b610cb2565b005b61045a600480360381019061045591906127a2565b610d14565b6040516104679190612b75565b60405180910390f35b61048a60048036038101906104859190612569565b610d7c565b6040516104979190612b5a565b60405180910390f35b6104ba60048036038101906104b5919061253c565b610e10565b005b60006104c782610e94565b9050919050565b6104d6610f0e565b6000600d60006101000a81548160ff021916908315150217905550565b60606000805461050290612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461052e90612fed565b801561057b5780601f106105505761010080835404028352916020019161057b565b820191906000526020600020905b81548152906001019060200180831161055e57829003601f168201915b5050505050905090565b600061059082610f8c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105d6826109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90612d17565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610666610fd7565b73ffffffffffffffffffffffffffffffffffffffff16148061069557506106948161068f610fd7565b610d7c565b5b6106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612c97565b60405180910390fd5b6106de8383610fdf565b505050565b600d60009054906101000a900460ff16610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990612d37565b60405180910390fd5b61073c600b611098565b6000610748600b6110ae565b905061075433826110bc565b33600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600880549050905090565b6107c76107c1610fd7565b826110da565b610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612d77565b60405180910390fd5b61081183838361116f565b505050565b600061082183610a7c565b8210610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990612b97565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108d683838360405180602001604052806000815250610cb2565b505050565b6108ec6108e6610fd7565b826110da565b61092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290612d77565b60405180910390fd5b610934816113d6565b50565b60006109416107a9565b8210610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612d57565b60405180910390fd5b6008828154811061099657610995613186565b5b90600052602060002001549050919050565b6109b0610f0e565b80600e90805190602001906109c6929190612350565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90612cf7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490612c77565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3c610f0e565b610b4660006114f3565b565b6000610b53826115b9565b610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990612cf7565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900460ff1681565b606060018054610c1990612fed565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590612fed565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b610cae610ca7610fd7565b8383611625565b5050565b610cc3610cbd610fd7565b836110da565b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612d77565b60405180910390fd5b610d0e84848484611792565b50505050565b6060610d1f82610f8c565b6000610d296117ee565b90506000815111610d495760405180602001604052806000815250610d74565b80610d5384611880565b604051602001610d64929190612acf565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e18610f0e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612bd7565b60405180910390fd5b610e91816114f3565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f075750610f06826119e1565b5b9050919050565b610f16610fd7565b73ffffffffffffffffffffffffffffffffffffffff16610f34610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612cd7565b60405180910390fd5b565b610f95816115b9565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612cf7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611052836109ca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6110d6828260405180602001604052806000815250611ac3565b5050565b6000806110e6836109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061112857506111278185610d7c565b5b8061116657508373ffffffffffffffffffffffffffffffffffffffff1661114e84610585565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661118f826109ca565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612c37565b60405180910390fd5b611260838383611b1e565b61126b600082610fdf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bb9190612f03565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113129190612e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113d1838383611b2e565b505050565b60006113e1826109ca565b90506113ef81600084611b1e565b6113fa600083610fdf565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144a9190612f03565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114ef81600084611b2e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612c57565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117859190612b5a565b60405180910390a3505050565b61179d84848461116f565b6117a984848484611b33565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90612bb7565b60405180910390fd5b50505050565b6060600e80546117fd90612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461182990612fed565b80156118765780601f1061184b57610100808354040283529160200191611876565b820191906000526020600020905b81548152906001019060200180831161185957829003601f168201915b5050505050905090565b606060008214156118c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119dc565b600082905060005b600082146118fa5780806118e390613050565b915050600a826118f39190612ed2565b91506118d0565b60008167ffffffffffffffff811115611916576119156131b5565b5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090505b600085146119d5576001826119619190612f03565b9150600a856119709190613099565b603061197c9190612e7c565b60f81b81838151811061199257611991613186565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119ce9190612ed2565b945061194c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611abc5750611abb82611cca565b5b9050919050565b611acd8383611d34565b611ada6000848484611b33565b611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090612bb7565b60405180910390fd5b505050565b611b29838383611f0e565b505050565b505050565b6000611b548473ffffffffffffffffffffffffffffffffffffffff16612022565b15611cbd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7d610fd7565b8786866040518563ffffffff1660e01b8152600401611b9f9493929190612b0e565b602060405180830381600087803b158015611bb957600080fd5b505af1925050508015611bea57506040513d601f19601f82011682018060405250810190611be7919061272c565b60015b611c6d573d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b50600081511415611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90612bb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90612cb7565b60405180910390fd5b611dad816115b9565b15611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490612c17565b60405180910390fd5b611df960008383611b1e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e499190612e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f0a60008383611b2e565b5050565b611f19838383612045565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f5c57611f578161204a565b611f9b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f9a57611f998382612093565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fde57611fd981612200565b61201d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461201c5761201b82826122d1565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120a084610a7c565b6120aa9190612f03565b905060006007600084815260200190815260200160002054905081811461218f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506122149190612f03565b905060006009600084815260200190815260200160002054905060006008838154811061224457612243613186565b5b90600052602060002001549050806008838154811061226657612265613186565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122b5576122b4613157565b5b6001900381819060005260206000200160009055905550505050565b60006122dc83610a7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461235c90612fed565b90600052602060002090601f01602090048101928261237e57600085556123c5565b82601f1061239757805160ff19168380011785556123c5565b828001600101855582156123c5579182015b828111156123c45782518255916020019190600101906123a9565b5b5090506123d291906123d6565b5090565b5b808211156123ef5760008160009055506001016123d7565b5090565b600061240661240184612dd7565b612db2565b905082815260208101848484011115612422576124216131e9565b5b61242d848285612fab565b509392505050565b600061244861244384612e08565b612db2565b905082815260208101848484011115612464576124636131e9565b5b61246f848285612fab565b509392505050565b6000813590506124868161363b565b92915050565b60008135905061249b81613652565b92915050565b6000813590506124b081613669565b92915050565b6000815190506124c581613669565b92915050565b600082601f8301126124e0576124df6131e4565b5b81356124f08482602086016123f3565b91505092915050565b600082601f83011261250e5761250d6131e4565b5b813561251e848260208601612435565b91505092915050565b60008135905061253681613680565b92915050565b600060208284031215612552576125516131f3565b5b600061256084828501612477565b91505092915050565b600080604083850312156125805761257f6131f3565b5b600061258e85828601612477565b925050602061259f85828601612477565b9150509250929050565b6000806000606084860312156125c2576125c16131f3565b5b60006125d086828701612477565b93505060206125e186828701612477565b92505060406125f286828701612527565b9150509250925092565b60008060008060808587031215612616576126156131f3565b5b600061262487828801612477565b945050602061263587828801612477565b935050604061264687828801612527565b925050606085013567ffffffffffffffff811115612667576126666131ee565b5b612673878288016124cb565b91505092959194509250565b60008060408385031215612696576126956131f3565b5b60006126a485828601612477565b92505060206126b58582860161248c565b9150509250929050565b600080604083850312156126d6576126d56131f3565b5b60006126e485828601612477565b92505060206126f585828601612527565b9150509250929050565b600060208284031215612715576127146131f3565b5b6000612723848285016124a1565b91505092915050565b600060208284031215612742576127416131f3565b5b6000612750848285016124b6565b91505092915050565b60006020828403121561276f5761276e6131f3565b5b600082013567ffffffffffffffff81111561278d5761278c6131ee565b5b612799848285016124f9565b91505092915050565b6000602082840312156127b8576127b76131f3565b5b60006127c684828501612527565b91505092915050565b6127d881612f37565b82525050565b6127e781612f49565b82525050565b60006127f882612e39565b6128028185612e4f565b9350612812818560208601612fba565b61281b816131f8565b840191505092915050565b600061283182612e44565b61283b8185612e60565b935061284b818560208601612fba565b612854816131f8565b840191505092915050565b600061286a82612e44565b6128748185612e71565b9350612884818560208601612fba565b80840191505092915050565b600061289d602b83612e60565b91506128a882613209565b604082019050919050565b60006128c0603283612e60565b91506128cb82613258565b604082019050919050565b60006128e3602683612e60565b91506128ee826132a7565b604082019050919050565b6000612906602583612e60565b9150612911826132f6565b604082019050919050565b6000612929601c83612e60565b915061293482613345565b602082019050919050565b600061294c602483612e60565b91506129578261336e565b604082019050919050565b600061296f601983612e60565b915061297a826133bd565b602082019050919050565b6000612992602983612e60565b915061299d826133e6565b604082019050919050565b60006129b5603e83612e60565b91506129c082613435565b604082019050919050565b60006129d8602083612e60565b91506129e382613484565b602082019050919050565b60006129fb602083612e60565b9150612a06826134ad565b602082019050919050565b6000612a1e601883612e60565b9150612a29826134d6565b602082019050919050565b6000612a41602183612e60565b9150612a4c826134ff565b604082019050919050565b6000612a64602b83612e60565b9150612a6f8261354e565b604082019050919050565b6000612a87602c83612e60565b9150612a928261359d565b604082019050919050565b6000612aaa602e83612e60565b9150612ab5826135ec565b604082019050919050565b612ac981612fa1565b82525050565b6000612adb828561285f565b9150612ae7828461285f565b91508190509392505050565b6000602082019050612b0860008301846127cf565b92915050565b6000608082019050612b2360008301876127cf565b612b3060208301866127cf565b612b3d6040830185612ac0565b8181036060830152612b4f81846127ed565b905095945050505050565b6000602082019050612b6f60008301846127de565b92915050565b60006020820190508181036000830152612b8f8184612826565b905092915050565b60006020820190508181036000830152612bb081612890565b9050919050565b60006020820190508181036000830152612bd0816128b3565b9050919050565b60006020820190508181036000830152612bf0816128d6565b9050919050565b60006020820190508181036000830152612c10816128f9565b9050919050565b60006020820190508181036000830152612c308161291c565b9050919050565b60006020820190508181036000830152612c508161293f565b9050919050565b60006020820190508181036000830152612c7081612962565b9050919050565b60006020820190508181036000830152612c9081612985565b9050919050565b60006020820190508181036000830152612cb0816129a8565b9050919050565b60006020820190508181036000830152612cd0816129cb565b9050919050565b60006020820190508181036000830152612cf0816129ee565b9050919050565b60006020820190508181036000830152612d1081612a11565b9050919050565b60006020820190508181036000830152612d3081612a34565b9050919050565b60006020820190508181036000830152612d5081612a57565b9050919050565b60006020820190508181036000830152612d7081612a7a565b9050919050565b60006020820190508181036000830152612d9081612a9d565b9050919050565b6000602082019050612dac6000830184612ac0565b92915050565b6000612dbc612dcd565b9050612dc8828261301f565b919050565b6000604051905090565b600067ffffffffffffffff821115612df257612df16131b5565b5b612dfb826131f8565b9050602081019050919050565b600067ffffffffffffffff821115612e2357612e226131b5565b5b612e2c826131f8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e8782612fa1565b9150612e9283612fa1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ec757612ec66130ca565b5b828201905092915050565b6000612edd82612fa1565b9150612ee883612fa1565b925082612ef857612ef76130f9565b5b828204905092915050565b6000612f0e82612fa1565b9150612f1983612fa1565b925082821015612f2c57612f2b6130ca565b5b828203905092915050565b6000612f4282612f81565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fd8578082015181840152602081019050612fbd565b83811115612fe7576000848401525b50505050565b6000600282049050600182168061300557607f821691505b6020821081141561301957613018613128565b5b50919050565b613028826131f8565b810181811067ffffffffffffffff82111715613047576130466131b5565b5b80604052505050565b600061305b82612fa1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308e5761308d6130ca565b5b600182019050919050565b60006130a482612fa1565b91506130af83612fa1565b9250826130bf576130be6130f9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e743a20746865204e465420636f6e7472616374206973206c6f636b656460008201527f20757020666f7265766572000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61364481612f37565b811461364f57600080fd5b50565b61365b81612f49565b811461366657600080fd5b50565b61367281612f55565b811461367d57600080fd5b50565b61368981612fa1565b811461369457600080fd5b5056fea2646970667358221220ad12adac672642dac84b1083c7677969c130666f86d3ddf87c228a1bef793bcb64736f6c63430008070033

Deployed Bytecode Sourcemap

46839:2461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48766:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48198:77;;;:::i;:::-;;26475:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27988:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27505:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47463:285;;;:::i;:::-;;41294:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28688:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40962:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29095:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47833:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41484:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49015:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26186:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25917:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2698:103;;;:::i;:::-;;48400:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2050:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47180:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26644:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28231:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29351:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26819:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28457:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2956:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48766:171;48869:4;48893:36;48917:11;48893:23;:36::i;:::-;48886:43;;48766:171;;;:::o;48198:77::-;1936:13;:11;:13::i;:::-;48262:5:::1;48246:13;;:21;;;;;;;;;;;;;;;;;;48198:77::o:0;26475:100::-;26529:13;26562:5;26555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26475:100;:::o;27988:171::-;28064:7;28084:23;28099:7;28084:14;:23::i;:::-;28127:15;:24;28143:7;28127:24;;;;;;;;;;;;;;;;;;;;;28120:31;;27988:171;;;:::o;27505:417::-;27586:13;27602:23;27617:7;27602:14;:23::i;:::-;27586:39;;27650:5;27644:11;;:2;:11;;;;27636:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27744:5;27728:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27753:37;27770:5;27777:12;:10;:12::i;:::-;27753:16;:37::i;:::-;27728:62;27706:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;27893:21;27902:2;27906:7;27893:8;:21::i;:::-;27575:347;27505:417;;:::o;47463:285::-;47507:13;;;;;;;;;;;47499:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47579:27;:15;:25;:27::i;:::-;47617:15;47635:25;:15;:23;:25::i;:::-;47617:43;;47671:30;47681:10;47693:7;47671:9;:30::i;:::-;47730:10;47712:6;:15;47719:7;47712:15;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;47488:260;47463:285::o;41294:113::-;41355:7;41382:10;:17;;;;41375:24;;41294:113;:::o;28688:336::-;28883:41;28902:12;:10;:12::i;:::-;28916:7;28883:18;:41::i;:::-;28875:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28988:28;28998:4;29004:2;29008:7;28988:9;:28::i;:::-;28688:336;;;:::o;40962:256::-;41059:7;41095:23;41112:5;41095:16;:23::i;:::-;41087:5;:31;41079:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;41184:12;:19;41197:5;41184:19;;;;;;;;;;;;;;;:26;41204:5;41184:26;;;;;;;;;;;;41177:33;;40962:256;;;;:::o;29095:185::-;29233:39;29250:4;29256:2;29260:7;29233:39;;;;;;;;;;;;:16;:39::i;:::-;29095:185;;;:::o;47833:284::-;47892:41;47911:12;:10;:12::i;:::-;47925:7;47892:18;:41::i;:::-;47884:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47995:14;48001:7;47995:5;:14::i;:::-;47833:284;:::o;41484:233::-;41559:7;41595:30;:28;:30::i;:::-;41587:5;:38;41579:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41692:10;41703:5;41692:17;;;;;;;;:::i;:::-;;;;;;;;;;41685:24;;41484:233;;;:::o;49015:94::-;1936:13;:11;:13::i;:::-;49098:3:::1;49082:13;:19;;;;;;;;;;;;:::i;:::-;;49015:94:::0;:::o;26186:222::-;26258:7;26278:13;26294:7;:16;26302:7;26294:16;;;;;;;;;;;;;;;;;;;;;26278:32;;26346:1;26329:19;;:5;:19;;;;26321:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26395:5;26388:12;;;26186:222;;;:::o;25917:207::-;25989:7;26034:1;26017:19;;:5;:19;;;;26009:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26100:9;:16;26110:5;26100:16;;;;;;;;;;;;;;;;26093:23;;25917:207;;;:::o;2698:103::-;1936:13;:11;:13::i;:::-;2763:30:::1;2790:1;2763:18;:30::i;:::-;2698:103::o:0;48400:169::-;48455:7;48483:16;48491:7;48483;:16::i;:::-;48475:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48546:6;:15;48553:7;48546:15;;;;;;;;;;;;;;;;;;;;;48539:22;;48400:169;;;:::o;2050:87::-;2096:7;2123:6;;;;;;;;;;;2116:13;;2050:87;:::o;47180:32::-;;;;;;;;;;;;;:::o;26644:104::-;26700:13;26733:7;26726:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26644:104;:::o;28231:155::-;28326:52;28345:12;:10;:12::i;:::-;28359:8;28369;28326:18;:52::i;:::-;28231:155;;:::o;29351:323::-;29525:41;29544:12;:10;:12::i;:::-;29558:7;29525:18;:41::i;:::-;29517:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29628:38;29642:4;29648:2;29652:7;29661:4;29628:13;:38::i;:::-;29351:323;;;;:::o;26819:281::-;26892:13;26918:23;26933:7;26918:14;:23::i;:::-;26954:21;26978:10;:8;:10::i;:::-;26954:34;;27030:1;27012:7;27006:21;:25;:86;;;;;;;;;;;;;;;;;27058:7;27067:18;:7;:16;:18::i;:::-;27041:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27006:86;26999:93;;;26819:281;;;:::o;28457:164::-;28554:4;28578:18;:25;28597:5;28578:25;;;;;;;;;;;;;;;:35;28604:8;28578:35;;;;;;;;;;;;;;;;;;;;;;;;;28571:42;;28457:164;;;;:::o;2956:201::-;1936:13;:11;:13::i;:::-;3065:1:::1;3045:22;;:8;:22;;;;3037:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3121:28;3140:8;3121:18;:28::i;:::-;2956:201:::0;:::o;40654:224::-;40756:4;40795:35;40780:50;;;:11;:50;;;;:90;;;;40834:36;40858:11;40834:23;:36::i;:::-;40780:90;40773:97;;40654:224;;;:::o;2215:132::-;2290:12;:10;:12::i;:::-;2279:23;;:7;:5;:7::i;:::-;:23;;;2271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2215:132::o;35963:135::-;36045:16;36053:7;36045;:16::i;:::-;36037:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35963:135;:::o;658:98::-;711:7;738:10;731:17;;658:98;:::o;35242:174::-;35344:2;35317:15;:24;35333:7;35317:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35400:7;35396:2;35362:46;;35371:23;35386:7;35371:14;:23::i;:::-;35362:46;;;;;;;;;;;;35242:174;;:::o;4454:127::-;4561:1;4543:7;:14;;;:19;;;;;;;;;;;4454:127;:::o;4332:114::-;4397:7;4424;:14;;;4417:21;;4332:114;;;:::o;32081:110::-;32157:26;32167:2;32171:7;32157:26;;;;;;;;;;;;:9;:26::i;:::-;32081:110;;:::o;31475:264::-;31568:4;31585:13;31601:23;31616:7;31601:14;:23::i;:::-;31585:39;;31654:5;31643:16;;:7;:16;;;:52;;;;31663:32;31680:5;31687:7;31663:16;:32::i;:::-;31643:52;:87;;;;31723:7;31699:31;;:20;31711:7;31699:11;:20::i;:::-;:31;;;31643:87;31635:96;;;31475:264;;;;:::o;34498:625::-;34657:4;34630:31;;:23;34645:7;34630:14;:23::i;:::-;:31;;;34622:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34736:1;34722:16;;:2;:16;;;;34714:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34792:39;34813:4;34819:2;34823:7;34792:20;:39::i;:::-;34896:29;34913:1;34917:7;34896:8;:29::i;:::-;34957:1;34938:9;:15;34948:4;34938:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34986:1;34969:9;:13;34979:2;34969:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35017:2;34998:7;:16;35006:7;34998:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35056:7;35052:2;35037:27;;35046:4;35037:27;;;;;;;;;;;;35077:38;35097:4;35103:2;35107:7;35077:19;:38::i;:::-;34498:625;;;:::o;33741:420::-;33801:13;33817:23;33832:7;33817:14;:23::i;:::-;33801:39;;33853:48;33874:5;33889:1;33893:7;33853:20;:48::i;:::-;33942:29;33959:1;33963:7;33942:8;:29::i;:::-;34004:1;33984:9;:16;33994:5;33984:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34023:7;:16;34031:7;34023:16;;;;;;;;;;;;34016:23;;;;;;;;;;;34085:7;34081:1;34057:36;;34066:5;34057:36;;;;;;;;;;;;34106:47;34126:5;34141:1;34145:7;34106:19;:47::i;:::-;33790:371;33741:420;:::o;3317:191::-;3391:16;3410:6;;;;;;;;;;;3391:25;;3436:8;3427:6;;:17;;;;;;;;;;;;;;;;;;3491:8;3460:40;;3481:8;3460:40;;;;;;;;;;;;3380:128;3317:191;:::o;31181:127::-;31246:4;31298:1;31270:30;;:7;:16;31278:7;31270:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31263:37;;31181:127;;;:::o;35559:315::-;35714:8;35705:17;;:5;:17;;;;35697:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35801:8;35763:18;:25;35782:5;35763:25;;;;;;;;;;;;;;;:35;35789:8;35763:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35847:8;35825:41;;35840:5;35825:41;;;35857:8;35825:41;;;;;;:::i;:::-;;;;;;;;35559:315;;;:::o;30555:313::-;30711:28;30721:4;30727:2;30731:7;30711:9;:28::i;:::-;30758:47;30781:4;30787:2;30791:7;30800:4;30758:22;:47::i;:::-;30750:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30555:313;;;;:::o;49183:114::-;49243:13;49276;49269:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49183:114;:::o;21176:723::-;21232:13;21462:1;21453:5;:10;21449:53;;;21480:10;;;;;;;;;;;;;;;;;;;;;21449:53;21512:12;21527:5;21512:20;;21543:14;21568:78;21583:1;21575:4;:9;21568:78;;21601:8;;;;;:::i;:::-;;;;21632:2;21624:10;;;;;:::i;:::-;;;21568:78;;;21656:19;21688:6;21678:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21656:39;;21706:154;21722:1;21713:5;:10;21706:154;;21750:1;21740:11;;;;;:::i;:::-;;;21817:2;21809:5;:10;;;;:::i;:::-;21796:2;:24;;;;:::i;:::-;21783:39;;21766:6;21773;21766:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21846:2;21837:11;;;;;:::i;:::-;;;21706:154;;;21884:6;21870:21;;;;;21176:723;;;;:::o;25548:305::-;25650:4;25702:25;25687:40;;;:11;:40;;;;:105;;;;25759:33;25744:48;;;:11;:48;;;;25687:105;:158;;;;25809:36;25833:11;25809:23;:36::i;:::-;25687:158;25667:178;;25548:305;;;:::o;32418:319::-;32547:18;32553:2;32557:7;32547:5;:18::i;:::-;32598:53;32629:1;32633:2;32637:7;32646:4;32598:22;:53::i;:::-;32576:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32418:319;;;:::o;48577:181::-;48705:45;48732:4;48738:2;48742:7;48705:26;:45::i;:::-;48577:181;;;:::o;38598:125::-;;;;:::o;36662:853::-;36816:4;36837:15;:2;:13;;;:15::i;:::-;36833:675;;;36889:2;36873:36;;;36910:12;:10;:12::i;:::-;36924:4;36930:7;36939:4;36873:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36869:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37131:1;37114:6;:13;:18;37110:328;;;37157:60;;;;;;;;;;:::i;:::-;;;;;;;;37110:328;37388:6;37382:13;37373:6;37369:2;37365:15;37358:38;36869:584;37005:41;;;36995:51;;;:6;:51;;;;36988:58;;;;;36833:675;37492:4;37485:11;;36662:853;;;;;;;:::o;24039:157::-;24124:4;24163:25;24148:40;;;:11;:40;;;;24141:47;;24039:157;;;:::o;33073:439::-;33167:1;33153:16;;:2;:16;;;;33145:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33226:16;33234:7;33226;:16::i;:::-;33225:17;33217:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33288:45;33317:1;33321:2;33325:7;33288:20;:45::i;:::-;33363:1;33346:9;:13;33356:2;33346:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33394:2;33375:7;:16;33383:7;33375:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33439:7;33435:2;33414:33;;33431:1;33414:33;;;;;;;;;;;;33460:44;33488:1;33492:2;33496:7;33460:19;:44::i;:::-;33073:439;;:::o;42330:589::-;42474:45;42501:4;42507:2;42511:7;42474:26;:45::i;:::-;42552:1;42536:18;;:4;:18;;;42532:187;;;42571:40;42603:7;42571:31;:40::i;:::-;42532:187;;;42641:2;42633:10;;:4;:10;;;42629:90;;42660:47;42693:4;42699:7;42660:32;:47::i;:::-;42629:90;42532:187;42747:1;42733:16;;:2;:16;;;42729:183;;;42766:45;42803:7;42766:36;:45::i;:::-;42729:183;;;42839:4;42833:10;;:2;:10;;;42829:83;;42860:40;42888:2;42892:7;42860:27;:40::i;:::-;42829:83;42729:183;42330:589;;;:::o;13480:326::-;13540:4;13797:1;13775:7;:19;;;:23;13768:30;;13480:326;;;:::o;38087:126::-;;;;:::o;43642:164::-;43746:10;:17;;;;43719:15;:24;43735:7;43719:24;;;;;;;;;;;:44;;;;43774:10;43790:7;43774:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43642:164;:::o;44433:988::-;44699:22;44749:1;44724:22;44741:4;44724:16;:22::i;:::-;:26;;;;:::i;:::-;44699:51;;44761:18;44782:17;:26;44800:7;44782:26;;;;;;;;;;;;44761:47;;44929:14;44915:10;:28;44911:328;;44960:19;44982:12;:18;44995:4;44982:18;;;;;;;;;;;;;;;:34;45001:14;44982:34;;;;;;;;;;;;44960:56;;45066:11;45033:12;:18;45046:4;45033:18;;;;;;;;;;;;;;;:30;45052:10;45033:30;;;;;;;;;;;:44;;;;45183:10;45150:17;:30;45168:11;45150:30;;;;;;;;;;;:43;;;;44945:294;44911:328;45335:17;:26;45353:7;45335:26;;;;;;;;;;;45328:33;;;45379:12;:18;45392:4;45379:18;;;;;;;;;;;;;;;:34;45398:14;45379:34;;;;;;;;;;;45372:41;;;44514:907;;44433:988;;:::o;45716:1079::-;45969:22;46014:1;45994:10;:17;;;;:21;;;;:::i;:::-;45969:46;;46026:18;46047:15;:24;46063:7;46047:24;;;;;;;;;;;;46026:45;;46398:19;46420:10;46431:14;46420:26;;;;;;;;:::i;:::-;;;;;;;;;;46398:48;;46484:11;46459:10;46470;46459:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46595:10;46564:15;:28;46580:11;46564:28;;;;;;;;;;;:41;;;;46736:15;:24;46752:7;46736:24;;;;;;;;;;;46729:31;;;46771:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45787:1008;;;45716:1079;:::o;43220:221::-;43305:14;43322:20;43339:2;43322:16;:20::i;:::-;43305:37;;43380:7;43353:12;:16;43366:2;43353:16;;;;;;;;;;;;;;;:24;43370:6;43353:24;;;;;;;;;;;:34;;;;43427:6;43398:17;:26;43416:7;43398:26;;;;;;;;;;;:35;;;;43294:147;43220:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:118::-;14555:24;14573:5;14555:24;:::i;:::-;14550:3;14543:37;14468:118;;:::o;14592:435::-;14772:3;14794:95;14885:3;14876:6;14794:95;:::i;:::-;14787:102;;14906:95;14997:3;14988:6;14906:95;:::i;:::-;14899:102;;15018:3;15011:10;;14592:435;;;;;:::o;15033:222::-;15126:4;15164:2;15153:9;15149:18;15141:26;;15177:71;15245:1;15234:9;15230:17;15221:6;15177:71;:::i;:::-;15033:222;;;;:::o;15261:640::-;15456:4;15494:3;15483:9;15479:19;15471:27;;15508:71;15576:1;15565:9;15561:17;15552:6;15508:71;:::i;:::-;15589:72;15657:2;15646:9;15642:18;15633:6;15589:72;:::i;:::-;15671;15739:2;15728:9;15724:18;15715:6;15671:72;:::i;:::-;15790:9;15784:4;15780:20;15775:2;15764:9;15760:18;15753:48;15818:76;15889:4;15880:6;15818:76;:::i;:::-;15810:84;;15261:640;;;;;;;:::o;15907:210::-;15994:4;16032:2;16021:9;16017:18;16009:26;;16045:65;16107:1;16096:9;16092:17;16083:6;16045:65;:::i;:::-;15907:210;;;;:::o;16123:313::-;16236:4;16274:2;16263:9;16259:18;16251:26;;16323:9;16317:4;16313:20;16309:1;16298:9;16294:17;16287:47;16351:78;16424:4;16415:6;16351:78;:::i;:::-;16343:86;;16123:313;;;;:::o;16442:419::-;16608:4;16646:2;16635:9;16631:18;16623:26;;16695:9;16689:4;16685:20;16681:1;16670:9;16666:17;16659:47;16723:131;16849:4;16723:131;:::i;:::-;16715:139;;16442:419;;;:::o;16867:::-;17033:4;17071:2;17060:9;17056:18;17048:26;;17120:9;17114:4;17110:20;17106:1;17095:9;17091:17;17084:47;17148:131;17274:4;17148:131;:::i;:::-;17140:139;;16867:419;;;:::o;17292:::-;17458:4;17496:2;17485:9;17481:18;17473:26;;17545:9;17539:4;17535:20;17531:1;17520:9;17516:17;17509:47;17573:131;17699:4;17573:131;:::i;:::-;17565:139;;17292:419;;;:::o;17717:::-;17883:4;17921:2;17910:9;17906:18;17898:26;;17970:9;17964:4;17960:20;17956:1;17945:9;17941:17;17934:47;17998:131;18124:4;17998:131;:::i;:::-;17990:139;;17717:419;;;:::o;18142:::-;18308:4;18346:2;18335:9;18331:18;18323:26;;18395:9;18389:4;18385:20;18381:1;18370:9;18366:17;18359:47;18423:131;18549:4;18423:131;:::i;:::-;18415:139;;18142:419;;;:::o;18567:::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18820:9;18814:4;18810:20;18806:1;18795:9;18791:17;18784:47;18848:131;18974:4;18848:131;:::i;:::-;18840:139;;18567:419;;;:::o;18992:::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:::-;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:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;21967:419;;;:::o;22392:::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22392:419;;;:::o;22817:::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:222::-;23335:4;23373:2;23362:9;23358:18;23350:26;;23386:71;23454:1;23443:9;23439:17;23430:6;23386:71;:::i;:::-;23242:222;;;;:::o;23470:129::-;23504:6;23531:20;;:::i;:::-;23521:30;;23560:33;23588:4;23580:6;23560:33;:::i;:::-;23470:129;;;:::o;23605:75::-;23638:6;23671:2;23665:9;23655:19;;23605:75;:::o;23686:307::-;23747:4;23837:18;23829:6;23826:30;23823:56;;;23859:18;;:::i;:::-;23823:56;23897:29;23919:6;23897:29;:::i;:::-;23889:37;;23981:4;23975;23971:15;23963:23;;23686:307;;;:::o;23999:308::-;24061:4;24151:18;24143:6;24140:30;24137:56;;;24173:18;;:::i;:::-;24137:56;24211:29;24233:6;24211:29;:::i;:::-;24203:37;;24295:4;24289;24285:15;24277:23;;23999:308;;;:::o;24313:98::-;24364:6;24398:5;24392:12;24382:22;;24313:98;;;:::o;24417:99::-;24469:6;24503:5;24497:12;24487:22;;24417:99;;;:::o;24522:168::-;24605:11;24639:6;24634:3;24627:19;24679:4;24674:3;24670:14;24655:29;;24522:168;;;;:::o;24696:169::-;24780:11;24814:6;24809:3;24802:19;24854:4;24849:3;24845:14;24830:29;;24696:169;;;;:::o;24871:148::-;24973:11;25010:3;24995:18;;24871:148;;;;:::o;25025:305::-;25065:3;25084:20;25102:1;25084:20;:::i;:::-;25079:25;;25118:20;25136:1;25118:20;:::i;:::-;25113:25;;25272:1;25204:66;25200:74;25197:1;25194:81;25191:107;;;25278:18;;:::i;:::-;25191:107;25322:1;25319;25315:9;25308:16;;25025:305;;;;:::o;25336:185::-;25376:1;25393:20;25411:1;25393:20;:::i;:::-;25388:25;;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25466:1;25456:35;;25471:18;;:::i;:::-;25456:35;25513:1;25510;25506:9;25501:14;;25336:185;;;;:::o;25527:191::-;25567:4;25587:20;25605:1;25587:20;:::i;:::-;25582:25;;25621:20;25639:1;25621:20;:::i;:::-;25616:25;;25660:1;25657;25654:8;25651:34;;;25665:18;;:::i;:::-;25651:34;25710:1;25707;25703:9;25695:17;;25527:191;;;;:::o;25724:96::-;25761:7;25790:24;25808:5;25790:24;:::i;:::-;25779:35;;25724:96;;;:::o;25826:90::-;25860:7;25903:5;25896:13;25889:21;25878:32;;25826:90;;;:::o;25922:149::-;25958:7;25998:66;25991:5;25987:78;25976:89;;25922:149;;;:::o;26077:126::-;26114:7;26154:42;26147:5;26143:54;26132:65;;26077:126;;;:::o;26209:77::-;26246:7;26275:5;26264:16;;26209:77;;;:::o;26292:154::-;26376:6;26371:3;26366;26353:30;26438:1;26429:6;26424:3;26420:16;26413:27;26292:154;;;:::o;26452:307::-;26520:1;26530:113;26544:6;26541:1;26538:13;26530:113;;;26629:1;26624:3;26620:11;26614:18;26610:1;26605:3;26601:11;26594:39;26566:2;26563:1;26559:10;26554:15;;26530:113;;;26661:6;26658:1;26655:13;26652:101;;;26741:1;26732:6;26727:3;26723:16;26716:27;26652:101;26501:258;26452:307;;;:::o;26765:320::-;26809:6;26846:1;26840:4;26836:12;26826:22;;26893:1;26887:4;26883:12;26914:18;26904:81;;26970:4;26962:6;26958:17;26948:27;;26904:81;27032:2;27024:6;27021:14;27001:18;26998:38;26995:84;;;27051:18;;:::i;:::-;26995:84;26816:269;26765:320;;;:::o;27091:281::-;27174:27;27196:4;27174:27;:::i;:::-;27166:6;27162:40;27304:6;27292:10;27289:22;27268:18;27256:10;27253:34;27250:62;27247:88;;;27315:18;;:::i;:::-;27247:88;27355:10;27351:2;27344:22;27134:238;27091:281;;:::o;27378:233::-;27417:3;27440:24;27458:5;27440:24;:::i;:::-;27431:33;;27486:66;27479:5;27476:77;27473:103;;;27556:18;;:::i;:::-;27473:103;27603:1;27596:5;27592:13;27585:20;;27378:233;;;:::o;27617:176::-;27649:1;27666:20;27684:1;27666:20;:::i;:::-;27661:25;;27700:20;27718:1;27700:20;:::i;:::-;27695:25;;27739:1;27729:35;;27744:18;;:::i;:::-;27729:35;27785:1;27782;27778:9;27773:14;;27617:176;;;;:::o;27799:180::-;27847:77;27844:1;27837:88;27944:4;27941:1;27934:15;27968:4;27965:1;27958:15;27985:180;28033:77;28030:1;28023:88;28130:4;28127:1;28120:15;28154:4;28151:1;28144:15;28171:180;28219:77;28216:1;28209:88;28316:4;28313:1;28306:15;28340:4;28337:1;28330:15;28357:180;28405:77;28402:1;28395:88;28502:4;28499:1;28492:15;28526:4;28523:1;28516:15;28543:180;28591:77;28588:1;28581:88;28688:4;28685:1;28678:15;28712:4;28709:1;28702:15;28729:180;28777:77;28774:1;28767:88;28874:4;28871:1;28864:15;28898:4;28895:1;28888:15;28915:117;29024:1;29021;29014:12;29038:117;29147:1;29144;29137:12;29161:117;29270:1;29267;29260:12;29284:117;29393:1;29390;29383:12;29407:102;29448:6;29499:2;29495:7;29490:2;29483:5;29479:14;29475:28;29465:38;;29407:102;;;:::o;29515:230::-;29655:34;29651:1;29643:6;29639:14;29632:58;29724:13;29719:2;29711:6;29707:15;29700:38;29515:230;:::o;29751:237::-;29891:34;29887:1;29879:6;29875:14;29868:58;29960:20;29955:2;29947:6;29943:15;29936:45;29751:237;:::o;29994:225::-;30134:34;30130:1;30122:6;30118:14;30111:58;30203:8;30198:2;30190:6;30186:15;30179:33;29994:225;:::o;30225:224::-;30365:34;30361:1;30353:6;30349:14;30342:58;30434:7;30429:2;30421:6;30417:15;30410:32;30225:224;:::o;30455:178::-;30595:30;30591:1;30583:6;30579:14;30572:54;30455:178;:::o;30639:223::-;30779:34;30775:1;30767:6;30763:14;30756:58;30848:6;30843:2;30835:6;30831:15;30824:31;30639:223;:::o;30868:175::-;31008:27;31004:1;30996:6;30992:14;30985:51;30868:175;:::o;31049:228::-;31189:34;31185:1;31177:6;31173:14;31166:58;31258:11;31253:2;31245:6;31241:15;31234:36;31049:228;:::o;31283:249::-;31423:34;31419:1;31411:6;31407:14;31400:58;31492:32;31487:2;31479:6;31475:15;31468:57;31283:249;:::o;31538:182::-;31678:34;31674:1;31666:6;31662:14;31655:58;31538:182;:::o;31726:::-;31866:34;31862:1;31854:6;31850:14;31843:58;31726:182;:::o;31914:174::-;32054:26;32050:1;32042:6;32038:14;32031:50;31914:174;:::o;32094:220::-;32234:34;32230:1;32222:6;32218:14;32211:58;32303:3;32298:2;32290:6;32286:15;32279:28;32094:220;:::o;32320:230::-;32460:34;32456:1;32448:6;32444:14;32437:58;32529:13;32524:2;32516:6;32512:15;32505:38;32320:230;:::o;32556:231::-;32696:34;32692:1;32684:6;32680:14;32673:58;32765:14;32760:2;32752:6;32748:15;32741:39;32556:231;:::o;32793:233::-;32933:34;32929:1;32921:6;32917:14;32910:58;33002:16;32997:2;32989:6;32985:15;32978:41;32793:233;:::o;33032:122::-;33105:24;33123:5;33105:24;:::i;:::-;33098:5;33095:35;33085:63;;33144:1;33141;33134:12;33085:63;33032:122;:::o;33160:116::-;33230:21;33245:5;33230:21;:::i;:::-;33223:5;33220:32;33210:60;;33266:1;33263;33256:12;33210:60;33160:116;:::o;33282:120::-;33354:23;33371:5;33354:23;:::i;:::-;33347:5;33344:34;33334:62;;33392:1;33389;33382:12;33334:62;33282:120;:::o;33408:122::-;33481:24;33499:5;33481:24;:::i;:::-;33474:5;33471:35;33461:63;;33520:1;33517;33510:12;33461:63;33408:122;:::o

Swarm Source

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

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