ETH Price: $2,524.27 (-0.55%)

Token

Martian Misfits (MSFT)
 

Overview

Max Total Supply

0 MSFT

Holders

137

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MertyCoin

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: contracts/MSFT.sol


pragma solidity ^0.8.0;



contract MertyCoin is Ownable, ERC721 {

  uint public constant MAX_SUPPLY = 5555;
  uint public MINTED_SUPPLY = 0;
  string public baseTokenURI;
  bool public saleActive = false;

  constructor(string memory _baseTokenURI) ERC721("Martian Misfits", "MSFT")  {
    saleActive = false;
    setBaseTokenURI(_baseTokenURI);
  }

  function flipActiveSwitch() external onlyOwner {
    saleActive = !saleActive;
  }

  function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
    baseTokenURI = _baseTokenURI;
  }

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

  function mintToken(address _to, uint _amount) public payable {
    if (msg.sender != owner()) {
        require(saleActive, "Sale not active");
        require(msg.value >= (55000000000000000  * _amount), "Not enough ETH sent");
    }
    require(MINTED_SUPPLY < MAX_SUPPLY, "Max supply reached");
    require(MINTED_SUPPLY + _amount <= MAX_SUPPLY, "Exceeds max supply");
    require(_amount <= 10, "Max 10 per txn");

    for (uint i = 0; i < _amount; i++) {
      _safeMint(_to, MINTED_SUPPLY);
      MINTED_SUPPLY++;
    }
  }

  function withdraw() external onlyOwner {
      payable(owner()).transfer(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipActiveSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006007556000600960006101000a81548160ff0219169083151502179055503480156200003157600080fd5b5060405162003cbc38038062003cbc833981810160405281019062000057919062000537565b6040518060400160405280600f81526020017f4d61727469616e204d69736669747300000000000000000000000000000000008152506040518060400160405280600481526020017f4d53465400000000000000000000000000000000000000000000000000000000815250620000e3620000d76200014a60201b60201c565b6200015260201b60201c565b8160019080519060200190620000fb929190620002ea565b50806002908051906020019062000114929190620002ea565b5050506000600960006101000a81548160ff02191690831515021790555062000143816200021660201b60201c565b5062000670565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002266200014a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024c620002c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029c90620005e9565b60405180910390fd5b8060089080519060200190620002bd929190620002ea565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f8906200063a565b90600052602060002090601f0160209004810192826200031c576000855562000368565b82601f106200033757805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003675782518255916020019190600101906200034a565b5b5090506200037791906200037b565b5090565b5b80821115620003965760008160009055506001016200037c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040382620003b8565b810181811067ffffffffffffffff82111715620004255762000424620003c9565b5b80604052505050565b60006200043a6200039a565b9050620004488282620003f8565b919050565b600067ffffffffffffffff8211156200046b576200046a620003c9565b5b6200047682620003b8565b9050602081019050919050565b60005b83811015620004a357808201518184015260208101905062000486565b83811115620004b3576000848401525b50505050565b6000620004d0620004ca846200044d565b6200042e565b905082815260208101848484011115620004ef57620004ee620003b3565b5b620004fc84828562000483565b509392505050565b600082601f8301126200051c576200051b620003ae565b5b81516200052e848260208601620004b9565b91505092915050565b60006020828403121562000550576200054f620003a4565b5b600082015167ffffffffffffffff811115620005715762000570620003a9565b5b6200057f8482850162000504565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005d160208362000588565b9150620005de8262000599565b602082019050919050565b600060208201905081810360008301526200060481620005c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065357607f821691505b602082108114156200066a57620006696200060b565b5b50919050565b61363c80620006806000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063b918a18a14610486578063c87b56dd1461049d578063d547cfb7146104da578063e985e9c514610505578063f2fde38b146105425761014b565b806370a082311461036e578063715018a6146103ab57806379c65068146103c25780638da5cb5b146103de57806395d89b4114610409578063a22cb465146104345761014b565b806332cb6b0c1161010857806332cb6b0c146102705780633ccfd60b1461029b57806342842e0e146102b257806358d9a212146102db5780636352211e1461030657806368428a1b146103435761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806323b872dd1461021e57806330176e1314610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612161565b61056b565b60405161018491906121a9565b60405180910390f35b34801561019957600080fd5b506101a261064d565b6040516101af919061225d565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906122b5565b6106df565b6040516101ec9190612323565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061236a565b610764565b005b34801561022a57600080fd5b50610245600480360381019061024091906123aa565b61087c565b005b34801561025357600080fd5b5061026e60048036038101906102699190612532565b6108dc565b005b34801561027c57600080fd5b50610285610972565b604051610292919061258a565b60405180910390f35b3480156102a757600080fd5b506102b0610978565b005b3480156102be57600080fd5b506102d960048036038101906102d491906123aa565b610a44565b005b3480156102e757600080fd5b506102f0610a64565b6040516102fd919061258a565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906122b5565b610a6a565b60405161033a9190612323565b60405180910390f35b34801561034f57600080fd5b50610358610b1c565b60405161036591906121a9565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906125a5565b610b2f565b6040516103a2919061258a565b60405180910390f35b3480156103b757600080fd5b506103c0610be7565b005b6103dc60048036038101906103d7919061236a565b610c6f565b005b3480156103ea57600080fd5b506103f3610e71565b6040516104009190612323565b60405180910390f35b34801561041557600080fd5b5061041e610e9a565b60405161042b919061225d565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906125fe565b610f2c565b005b34801561046957600080fd5b50610484600480360381019061047f91906126df565b6110ad565b005b34801561049257600080fd5b5061049b61110f565b005b3480156104a957600080fd5b506104c460048036038101906104bf91906122b5565b6111b7565b6040516104d1919061225d565b60405180910390f35b3480156104e657600080fd5b506104ef61125e565b6040516104fc919061225d565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612762565b6112ec565b60405161053991906121a9565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906125a5565b611380565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610646575061064582611478565b5b9050919050565b60606001805461065c906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906127d1565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b5050505050905090565b60006106ea826114e2565b610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072090612875565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076f82610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790612907565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ff61154e565b73ffffffffffffffffffffffffffffffffffffffff16148061082e575061082d8161082861154e565b6112ec565b5b61086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490612999565b60405180910390fd5b6108778383611556565b505050565b61088d61088761154e565b8261160f565b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390612a2b565b60405180910390fd5b6108d78383836116ed565b505050565b6108e461154e565b73ffffffffffffffffffffffffffffffffffffffff16610902610e71565b73ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612a97565b60405180910390fd5b806008908051906020019061096e929190612052565b5050565b6115b381565b61098061154e565b73ffffffffffffffffffffffffffffffffffffffff1661099e610e71565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612a97565b60405180910390fd5b6109fc610e71565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a41573d6000803e3d6000fd5b50565b610a5f838383604051806020016040528060008152506110ad565b505050565b60075481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90612b29565b60405180910390fd5b80915050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612bbb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bef61154e565b73ffffffffffffffffffffffffffffffffffffffff16610c0d610e71565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90612a97565b60405180910390fd5b610c6d6000611949565b565b610c77610e71565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4e57600960009054906101000a900460ff16610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90612c27565b60405180910390fd5b8066c3663566a58000610d0b9190612c76565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490612d1c565b60405180910390fd5b5b6115b360075410610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612d88565b60405180910390fd5b6115b381600754610da59190612da8565b1115610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90612e4a565b60405180910390fd5b600a811115610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612eb6565b60405180910390fd5b60005b81811015610e6c57610e4183600754611a0d565b60076000815480929190610e5490612ed6565b91905055508080610e6490612ed6565b915050610e2d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ea9906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed5906127d1565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b5050505050905090565b610f3461154e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612f6b565b60405180910390fd5b8060066000610faf61154e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105c61154e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a191906121a9565b60405180910390a35050565b6110be6110b861154e565b8361160f565b6110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490612a2b565b60405180910390fd5b61110984848484611a2b565b50505050565b61111761154e565b73ffffffffffffffffffffffffffffffffffffffff16611135610e71565b73ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612a97565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60606111c2826114e2565b611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612ffd565b60405180910390fd5b600061120b611a87565b9050600081511161122b5760405180602001604052806000815250611256565b8061123584611b19565b604051602001611246929190613059565b6040516020818303038152906040525b915050919050565b6008805461126b906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611297906127d1565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138861154e565b73ffffffffffffffffffffffffffffffffffffffff166113a6610e71565b73ffffffffffffffffffffffffffffffffffffffff16146113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612a97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611463906130ef565b60405180910390fd5b61147581611949565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c983610a6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061161a826114e2565b611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613181565b60405180910390fd5b600061166483610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d357508373ffffffffffffffffffffffffffffffffffffffff166116bb846106df565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e457506116e381856112ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170d82610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca906132a5565b60405180910390fd5b6117de838383611c7a565b6117e9600082611556565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183991906132c5565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118909190612da8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a27828260405180602001604052806000815250611c7f565b5050565b611a368484846116ed565b611a4284848484611cda565b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061336b565b60405180910390fd5b50505050565b606060088054611a96906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac2906127d1565b8015611b0f5780601f10611ae457610100808354040283529160200191611b0f565b820191906000526020600020905b815481529060010190602001808311611af257829003601f168201915b5050505050905090565b60606000821415611b61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c75565b600082905060005b60008214611b93578080611b7c90612ed6565b915050600a82611b8c91906133ba565b9150611b69565b60008167ffffffffffffffff811115611baf57611bae612407565b5b6040519080825280601f01601f191660200182016040528015611be15781602001600182028036833780820191505090505b5090505b60008514611c6e57600182611bfa91906132c5565b9150600a85611c0991906133eb565b6030611c159190612da8565b60f81b818381518110611c2b57611c2a61341c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6791906133ba565b9450611be5565b8093505050505b919050565b505050565b611c898383611e71565b611c966000848484611cda565b611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc9061336b565b60405180910390fd5b505050565b6000611cfb8473ffffffffffffffffffffffffffffffffffffffff1661203f565b15611e64578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2461154e565b8786866040518563ffffffff1660e01b8152600401611d4694939291906134a0565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e9190613501565b60015b611e14573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061336b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e69565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed89061357a565b60405180910390fd5b611eea816114e2565b15611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906135e6565b60405180910390fd5b611f3660008383611c7a565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f869190612da8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461205e906127d1565b90600052602060002090601f01602090048101928261208057600085556120c7565b82601f1061209957805160ff19168380011785556120c7565b828001600101855582156120c7579182015b828111156120c65782518255916020019190600101906120ab565b5b5090506120d491906120d8565b5090565b5b808211156120f15760008160009055506001016120d9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213e81612109565b811461214957600080fd5b50565b60008135905061215b81612135565b92915050565b600060208284031215612177576121766120ff565b5b60006121858482850161214c565b91505092915050565b60008115159050919050565b6121a38161218e565b82525050565b60006020820190506121be600083018461219a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121fe5780820151818401526020810190506121e3565b8381111561220d576000848401525b50505050565b6000601f19601f8301169050919050565b600061222f826121c4565b61223981856121cf565b93506122498185602086016121e0565b61225281612213565b840191505092915050565b600060208201905081810360008301526122778184612224565b905092915050565b6000819050919050565b6122928161227f565b811461229d57600080fd5b50565b6000813590506122af81612289565b92915050565b6000602082840312156122cb576122ca6120ff565b5b60006122d9848285016122a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061230d826122e2565b9050919050565b61231d81612302565b82525050565b60006020820190506123386000830184612314565b92915050565b61234781612302565b811461235257600080fd5b50565b6000813590506123648161233e565b92915050565b60008060408385031215612381576123806120ff565b5b600061238f85828601612355565b92505060206123a0858286016122a0565b9150509250929050565b6000806000606084860312156123c3576123c26120ff565b5b60006123d186828701612355565b93505060206123e286828701612355565b92505060406123f3868287016122a0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243f82612213565b810181811067ffffffffffffffff8211171561245e5761245d612407565b5b80604052505050565b60006124716120f5565b905061247d8282612436565b919050565b600067ffffffffffffffff82111561249d5761249c612407565b5b6124a682612213565b9050602081019050919050565b82818337600083830152505050565b60006124d56124d084612482565b612467565b9050828152602081018484840111156124f1576124f0612402565b5b6124fc8482856124b3565b509392505050565b600082601f830112612519576125186123fd565b5b81356125298482602086016124c2565b91505092915050565b600060208284031215612548576125476120ff565b5b600082013567ffffffffffffffff81111561256657612565612104565b5b61257284828501612504565b91505092915050565b6125848161227f565b82525050565b600060208201905061259f600083018461257b565b92915050565b6000602082840312156125bb576125ba6120ff565b5b60006125c984828501612355565b91505092915050565b6125db8161218e565b81146125e657600080fd5b50565b6000813590506125f8816125d2565b92915050565b60008060408385031215612615576126146120ff565b5b600061262385828601612355565b9250506020612634858286016125e9565b9150509250929050565b600067ffffffffffffffff82111561265957612658612407565b5b61266282612213565b9050602081019050919050565b600061268261267d8461263e565b612467565b90508281526020810184848401111561269e5761269d612402565b5b6126a98482856124b3565b509392505050565b600082601f8301126126c6576126c56123fd565b5b81356126d684826020860161266f565b91505092915050565b600080600080608085870312156126f9576126f86120ff565b5b600061270787828801612355565b945050602061271887828801612355565b9350506040612729878288016122a0565b925050606085013567ffffffffffffffff81111561274a57612749612104565b5b612756878288016126b1565b91505092959194509250565b60008060408385031215612779576127786120ff565b5b600061278785828601612355565b925050602061279885828601612355565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127e957607f821691505b602082108114156127fd576127fc6127a2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061285f602c836121cf565b915061286a82612803565b604082019050919050565b6000602082019050818103600083015261288e81612852565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f16021836121cf565b91506128fc82612895565b604082019050919050565b60006020820190508181036000830152612920816128e4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129836038836121cf565b915061298e82612927565b604082019050919050565b600060208201905081810360008301526129b281612976565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612a156031836121cf565b9150612a20826129b9565b604082019050919050565b60006020820190508181036000830152612a4481612a08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a816020836121cf565b9150612a8c82612a4b565b602082019050919050565b60006020820190508181036000830152612ab081612a74565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612b136029836121cf565b9150612b1e82612ab7565b604082019050919050565b60006020820190508181036000830152612b4281612b06565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ba5602a836121cf565b9150612bb082612b49565b604082019050919050565b60006020820190508181036000830152612bd481612b98565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000612c11600f836121cf565b9150612c1c82612bdb565b602082019050919050565b60006020820190508181036000830152612c4081612c04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c818261227f565b9150612c8c8361227f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cc557612cc4612c47565b5b828202905092915050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b6000612d066013836121cf565b9150612d1182612cd0565b602082019050919050565b60006020820190508181036000830152612d3581612cf9565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612d726012836121cf565b9150612d7d82612d3c565b602082019050919050565b60006020820190508181036000830152612da181612d65565b9050919050565b6000612db38261227f565b9150612dbe8361227f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df357612df2612c47565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612e346012836121cf565b9150612e3f82612dfe565b602082019050919050565b60006020820190508181036000830152612e6381612e27565b9050919050565b7f4d6178203130207065722074786e000000000000000000000000000000000000600082015250565b6000612ea0600e836121cf565b9150612eab82612e6a565b602082019050919050565b60006020820190508181036000830152612ecf81612e93565b9050919050565b6000612ee18261227f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f1457612f13612c47565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f556019836121cf565b9150612f6082612f1f565b602082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fe7602f836121cf565b9150612ff282612f8b565b604082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b600081905092915050565b6000613033826121c4565b61303d818561301d565b935061304d8185602086016121e0565b80840191505092915050565b60006130658285613028565b91506130718284613028565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130d96026836121cf565b91506130e48261307d565b604082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061316b602c836121cf565b91506131768261310f565b604082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006131fd6029836121cf565b9150613208826131a1565b604082019050919050565b6000602082019050818103600083015261322c816131f0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061328f6024836121cf565b915061329a82613233565b604082019050919050565b600060208201905081810360008301526132be81613282565b9050919050565b60006132d08261227f565b91506132db8361227f565b9250828210156132ee576132ed612c47565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133556032836121cf565b9150613360826132f9565b604082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133c58261227f565b91506133d08361227f565b9250826133e0576133df61338b565b5b828204905092915050565b60006133f68261227f565b91506134018361227f565b9250826134115761341061338b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134728261344b565b61347c8185613456565b935061348c8185602086016121e0565b61349581612213565b840191505092915050565b60006080820190506134b56000830187612314565b6134c26020830186612314565b6134cf604083018561257b565b81810360608301526134e18184613467565b905095945050505050565b6000815190506134fb81612135565b92915050565b600060208284031215613517576135166120ff565b5b6000613525848285016134ec565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135646020836121cf565b915061356f8261352e565b602082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135d0601c836121cf565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b905091905056fea264697066735822122030f03be8a7de9f2e87c39e885d2daba1122f789e9de8b3165f44fd9dfa3879e464736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6d61727469616e6d6973666974732e636f6d2f6d7366742f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063b918a18a14610486578063c87b56dd1461049d578063d547cfb7146104da578063e985e9c514610505578063f2fde38b146105425761014b565b806370a082311461036e578063715018a6146103ab57806379c65068146103c25780638da5cb5b146103de57806395d89b4114610409578063a22cb465146104345761014b565b806332cb6b0c1161010857806332cb6b0c146102705780633ccfd60b1461029b57806342842e0e146102b257806358d9a212146102db5780636352211e1461030657806368428a1b146103435761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806323b872dd1461021e57806330176e1314610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612161565b61056b565b60405161018491906121a9565b60405180910390f35b34801561019957600080fd5b506101a261064d565b6040516101af919061225d565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906122b5565b6106df565b6040516101ec9190612323565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061236a565b610764565b005b34801561022a57600080fd5b50610245600480360381019061024091906123aa565b61087c565b005b34801561025357600080fd5b5061026e60048036038101906102699190612532565b6108dc565b005b34801561027c57600080fd5b50610285610972565b604051610292919061258a565b60405180910390f35b3480156102a757600080fd5b506102b0610978565b005b3480156102be57600080fd5b506102d960048036038101906102d491906123aa565b610a44565b005b3480156102e757600080fd5b506102f0610a64565b6040516102fd919061258a565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906122b5565b610a6a565b60405161033a9190612323565b60405180910390f35b34801561034f57600080fd5b50610358610b1c565b60405161036591906121a9565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906125a5565b610b2f565b6040516103a2919061258a565b60405180910390f35b3480156103b757600080fd5b506103c0610be7565b005b6103dc60048036038101906103d7919061236a565b610c6f565b005b3480156103ea57600080fd5b506103f3610e71565b6040516104009190612323565b60405180910390f35b34801561041557600080fd5b5061041e610e9a565b60405161042b919061225d565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906125fe565b610f2c565b005b34801561046957600080fd5b50610484600480360381019061047f91906126df565b6110ad565b005b34801561049257600080fd5b5061049b61110f565b005b3480156104a957600080fd5b506104c460048036038101906104bf91906122b5565b6111b7565b6040516104d1919061225d565b60405180910390f35b3480156104e657600080fd5b506104ef61125e565b6040516104fc919061225d565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612762565b6112ec565b60405161053991906121a9565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906125a5565b611380565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610646575061064582611478565b5b9050919050565b60606001805461065c906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906127d1565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b5050505050905090565b60006106ea826114e2565b610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072090612875565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076f82610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790612907565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ff61154e565b73ffffffffffffffffffffffffffffffffffffffff16148061082e575061082d8161082861154e565b6112ec565b5b61086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490612999565b60405180910390fd5b6108778383611556565b505050565b61088d61088761154e565b8261160f565b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390612a2b565b60405180910390fd5b6108d78383836116ed565b505050565b6108e461154e565b73ffffffffffffffffffffffffffffffffffffffff16610902610e71565b73ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612a97565b60405180910390fd5b806008908051906020019061096e929190612052565b5050565b6115b381565b61098061154e565b73ffffffffffffffffffffffffffffffffffffffff1661099e610e71565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612a97565b60405180910390fd5b6109fc610e71565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a41573d6000803e3d6000fd5b50565b610a5f838383604051806020016040528060008152506110ad565b505050565b60075481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90612b29565b60405180910390fd5b80915050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612bbb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bef61154e565b73ffffffffffffffffffffffffffffffffffffffff16610c0d610e71565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90612a97565b60405180910390fd5b610c6d6000611949565b565b610c77610e71565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4e57600960009054906101000a900460ff16610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90612c27565b60405180910390fd5b8066c3663566a58000610d0b9190612c76565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490612d1c565b60405180910390fd5b5b6115b360075410610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612d88565b60405180910390fd5b6115b381600754610da59190612da8565b1115610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90612e4a565b60405180910390fd5b600a811115610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612eb6565b60405180910390fd5b60005b81811015610e6c57610e4183600754611a0d565b60076000815480929190610e5490612ed6565b91905055508080610e6490612ed6565b915050610e2d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ea9906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed5906127d1565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b5050505050905090565b610f3461154e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612f6b565b60405180910390fd5b8060066000610faf61154e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105c61154e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a191906121a9565b60405180910390a35050565b6110be6110b861154e565b8361160f565b6110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490612a2b565b60405180910390fd5b61110984848484611a2b565b50505050565b61111761154e565b73ffffffffffffffffffffffffffffffffffffffff16611135610e71565b73ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612a97565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60606111c2826114e2565b611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612ffd565b60405180910390fd5b600061120b611a87565b9050600081511161122b5760405180602001604052806000815250611256565b8061123584611b19565b604051602001611246929190613059565b6040516020818303038152906040525b915050919050565b6008805461126b906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611297906127d1565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138861154e565b73ffffffffffffffffffffffffffffffffffffffff166113a6610e71565b73ffffffffffffffffffffffffffffffffffffffff16146113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612a97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611463906130ef565b60405180910390fd5b61147581611949565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c983610a6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061161a826114e2565b611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613181565b60405180910390fd5b600061166483610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d357508373ffffffffffffffffffffffffffffffffffffffff166116bb846106df565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e457506116e381856112ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170d82610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca906132a5565b60405180910390fd5b6117de838383611c7a565b6117e9600082611556565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183991906132c5565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118909190612da8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a27828260405180602001604052806000815250611c7f565b5050565b611a368484846116ed565b611a4284848484611cda565b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061336b565b60405180910390fd5b50505050565b606060088054611a96906127d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac2906127d1565b8015611b0f5780601f10611ae457610100808354040283529160200191611b0f565b820191906000526020600020905b815481529060010190602001808311611af257829003601f168201915b5050505050905090565b60606000821415611b61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c75565b600082905060005b60008214611b93578080611b7c90612ed6565b915050600a82611b8c91906133ba565b9150611b69565b60008167ffffffffffffffff811115611baf57611bae612407565b5b6040519080825280601f01601f191660200182016040528015611be15781602001600182028036833780820191505090505b5090505b60008514611c6e57600182611bfa91906132c5565b9150600a85611c0991906133eb565b6030611c159190612da8565b60f81b818381518110611c2b57611c2a61341c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6791906133ba565b9450611be5565b8093505050505b919050565b505050565b611c898383611e71565b611c966000848484611cda565b611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc9061336b565b60405180910390fd5b505050565b6000611cfb8473ffffffffffffffffffffffffffffffffffffffff1661203f565b15611e64578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2461154e565b8786866040518563ffffffff1660e01b8152600401611d4694939291906134a0565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e9190613501565b60015b611e14573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061336b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e69565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed89061357a565b60405180910390fd5b611eea816114e2565b15611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906135e6565b60405180910390fd5b611f3660008383611c7a565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f869190612da8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461205e906127d1565b90600052602060002090601f01602090048101928261208057600085556120c7565b82601f1061209957805160ff19168380011785556120c7565b828001600101855582156120c7579182015b828111156120c65782518255916020019190600101906120ab565b5b5090506120d491906120d8565b5090565b5b808211156120f15760008160009055506001016120d9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213e81612109565b811461214957600080fd5b50565b60008135905061215b81612135565b92915050565b600060208284031215612177576121766120ff565b5b60006121858482850161214c565b91505092915050565b60008115159050919050565b6121a38161218e565b82525050565b60006020820190506121be600083018461219a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121fe5780820151818401526020810190506121e3565b8381111561220d576000848401525b50505050565b6000601f19601f8301169050919050565b600061222f826121c4565b61223981856121cf565b93506122498185602086016121e0565b61225281612213565b840191505092915050565b600060208201905081810360008301526122778184612224565b905092915050565b6000819050919050565b6122928161227f565b811461229d57600080fd5b50565b6000813590506122af81612289565b92915050565b6000602082840312156122cb576122ca6120ff565b5b60006122d9848285016122a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061230d826122e2565b9050919050565b61231d81612302565b82525050565b60006020820190506123386000830184612314565b92915050565b61234781612302565b811461235257600080fd5b50565b6000813590506123648161233e565b92915050565b60008060408385031215612381576123806120ff565b5b600061238f85828601612355565b92505060206123a0858286016122a0565b9150509250929050565b6000806000606084860312156123c3576123c26120ff565b5b60006123d186828701612355565b93505060206123e286828701612355565b92505060406123f3868287016122a0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243f82612213565b810181811067ffffffffffffffff8211171561245e5761245d612407565b5b80604052505050565b60006124716120f5565b905061247d8282612436565b919050565b600067ffffffffffffffff82111561249d5761249c612407565b5b6124a682612213565b9050602081019050919050565b82818337600083830152505050565b60006124d56124d084612482565b612467565b9050828152602081018484840111156124f1576124f0612402565b5b6124fc8482856124b3565b509392505050565b600082601f830112612519576125186123fd565b5b81356125298482602086016124c2565b91505092915050565b600060208284031215612548576125476120ff565b5b600082013567ffffffffffffffff81111561256657612565612104565b5b61257284828501612504565b91505092915050565b6125848161227f565b82525050565b600060208201905061259f600083018461257b565b92915050565b6000602082840312156125bb576125ba6120ff565b5b60006125c984828501612355565b91505092915050565b6125db8161218e565b81146125e657600080fd5b50565b6000813590506125f8816125d2565b92915050565b60008060408385031215612615576126146120ff565b5b600061262385828601612355565b9250506020612634858286016125e9565b9150509250929050565b600067ffffffffffffffff82111561265957612658612407565b5b61266282612213565b9050602081019050919050565b600061268261267d8461263e565b612467565b90508281526020810184848401111561269e5761269d612402565b5b6126a98482856124b3565b509392505050565b600082601f8301126126c6576126c56123fd565b5b81356126d684826020860161266f565b91505092915050565b600080600080608085870312156126f9576126f86120ff565b5b600061270787828801612355565b945050602061271887828801612355565b9350506040612729878288016122a0565b925050606085013567ffffffffffffffff81111561274a57612749612104565b5b612756878288016126b1565b91505092959194509250565b60008060408385031215612779576127786120ff565b5b600061278785828601612355565b925050602061279885828601612355565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127e957607f821691505b602082108114156127fd576127fc6127a2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061285f602c836121cf565b915061286a82612803565b604082019050919050565b6000602082019050818103600083015261288e81612852565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f16021836121cf565b91506128fc82612895565b604082019050919050565b60006020820190508181036000830152612920816128e4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129836038836121cf565b915061298e82612927565b604082019050919050565b600060208201905081810360008301526129b281612976565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612a156031836121cf565b9150612a20826129b9565b604082019050919050565b60006020820190508181036000830152612a4481612a08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a816020836121cf565b9150612a8c82612a4b565b602082019050919050565b60006020820190508181036000830152612ab081612a74565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612b136029836121cf565b9150612b1e82612ab7565b604082019050919050565b60006020820190508181036000830152612b4281612b06565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ba5602a836121cf565b9150612bb082612b49565b604082019050919050565b60006020820190508181036000830152612bd481612b98565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000612c11600f836121cf565b9150612c1c82612bdb565b602082019050919050565b60006020820190508181036000830152612c4081612c04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c818261227f565b9150612c8c8361227f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cc557612cc4612c47565b5b828202905092915050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b6000612d066013836121cf565b9150612d1182612cd0565b602082019050919050565b60006020820190508181036000830152612d3581612cf9565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612d726012836121cf565b9150612d7d82612d3c565b602082019050919050565b60006020820190508181036000830152612da181612d65565b9050919050565b6000612db38261227f565b9150612dbe8361227f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df357612df2612c47565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612e346012836121cf565b9150612e3f82612dfe565b602082019050919050565b60006020820190508181036000830152612e6381612e27565b9050919050565b7f4d6178203130207065722074786e000000000000000000000000000000000000600082015250565b6000612ea0600e836121cf565b9150612eab82612e6a565b602082019050919050565b60006020820190508181036000830152612ecf81612e93565b9050919050565b6000612ee18261227f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f1457612f13612c47565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f556019836121cf565b9150612f6082612f1f565b602082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fe7602f836121cf565b9150612ff282612f8b565b604082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b600081905092915050565b6000613033826121c4565b61303d818561301d565b935061304d8185602086016121e0565b80840191505092915050565b60006130658285613028565b91506130718284613028565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130d96026836121cf565b91506130e48261307d565b604082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061316b602c836121cf565b91506131768261310f565b604082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006131fd6029836121cf565b9150613208826131a1565b604082019050919050565b6000602082019050818103600083015261322c816131f0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061328f6024836121cf565b915061329a82613233565b604082019050919050565b600060208201905081810360008301526132be81613282565b9050919050565b60006132d08261227f565b91506132db8361227f565b9250828210156132ee576132ed612c47565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133556032836121cf565b9150613360826132f9565b604082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133c58261227f565b91506133d08361227f565b9250826133e0576133df61338b565b5b828204905092915050565b60006133f68261227f565b91506134018361227f565b9250826134115761341061338b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134728261344b565b61347c8185613456565b935061348c8185602086016121e0565b61349581612213565b840191505092915050565b60006080820190506134b56000830187612314565b6134c26020830186612314565b6134cf604083018561257b565b81810360608301526134e18184613467565b905095945050505050565b6000815190506134fb81612135565b92915050565b600060208284031215613517576135166120ff565b5b6000613525848285016134ec565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135646020836121cf565b915061356f8261352e565b602082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135d0601c836121cf565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b905091905056fea264697066735822122030f03be8a7de9f2e87c39e885d2daba1122f789e9de8b3165f44fd9dfa3879e464736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6d61727469616e6d6973666974732e636f6d2f6d7366742f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://api.martianmisfits.com/msft/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f6170692e6d61727469616e6d6973666974732e636f6d2f6d
Arg [3] : 7366742f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35110:1314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20645:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23149:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22672:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24039:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35540:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35155:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36319:102;;;;;;;;;;;;;:::i;:::-;;24449:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35198:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21284:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35263:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21014:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34417:94;;;;;;;;;;;;;:::i;:::-;;35771:542;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33766:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23442:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24705:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35450:84;;;;;;;;;;;;;:::i;:::-;;21934:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35232:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23808:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34666:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20645:305;20747:4;20799:25;20784:40;;;:11;:40;;;;:105;;;;20856:33;20841:48;;;:11;:48;;;;20784:105;:158;;;;20906:36;20930:11;20906:23;:36::i;:::-;20784:158;20764:178;;20645:305;;;:::o;21590:100::-;21644:13;21677:5;21670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21590:100;:::o;23149:221::-;23225:7;23253:16;23261:7;23253;:16::i;:::-;23245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23338:15;:24;23354:7;23338:24;;;;;;;;;;;;;;;;;;;;;23331:31;;23149:221;;;:::o;22672:411::-;22753:13;22769:23;22784:7;22769:14;:23::i;:::-;22753:39;;22817:5;22811:11;;:2;:11;;;;22803:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22911:5;22895:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22920:37;22937:5;22944:12;:10;:12::i;:::-;22920:16;:37::i;:::-;22895:62;22873:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23054:21;23063:2;23067:7;23054:8;:21::i;:::-;22742:341;22672:411;;:::o;24039:339::-;24234:41;24253:12;:10;:12::i;:::-;24267:7;24234:18;:41::i;:::-;24226:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24342:28;24352:4;24358:2;24362:7;24342:9;:28::i;:::-;24039:339;;;:::o;35540:112::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35633:13:::1;35618:12;:28;;;;;;;;;;;;:::i;:::-;;35540:112:::0;:::o;35155:38::-;35189:4;35155:38;:::o;36319:102::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36375:7:::1;:5;:7::i;:::-;36367:25;;:48;36393:21;36367:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;36319:102::o:0;24449:185::-;24587:39;24604:4;24610:2;24614:7;24587:39;;;;;;;;;;;;:16;:39::i;:::-;24449:185;;;:::o;35198:29::-;;;;:::o;21284:239::-;21356:7;21376:13;21392:7;:16;21400:7;21392:16;;;;;;;;;;;;;;;;;;;;;21376:32;;21444:1;21427:19;;:5;:19;;;;21419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21510:5;21503:12;;;21284:239;;;:::o;35263:30::-;;;;;;;;;;;;;:::o;21014:208::-;21086:7;21131:1;21114:19;;:5;:19;;;;21106:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21198:9;:16;21208:5;21198:16;;;;;;;;;;;;;;;;21191:23;;21014:208;;;:::o;34417:94::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34482:21:::1;34500:1;34482:9;:21::i;:::-;34417:94::o:0;35771:542::-;35857:7;:5;:7::i;:::-;35843:21;;:10;:21;;;35839:170;;35885:10;;;;;;;;;;;35877:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35969:7;35948:17;:28;;;;:::i;:::-;35934:9;:43;;35926:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35839:170;35189:4;36023:13;;:26;36015:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;35189:4;36103:7;36087:13;;:23;;;;:::i;:::-;:37;;36079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36173:2;36162:7;:13;;36154:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;36208:6;36203:105;36224:7;36220:1;:11;36203:105;;;36247:29;36257:3;36262:13;;36247:9;:29::i;:::-;36285:13;;:15;;;;;;;;;:::i;:::-;;;;;;36233:3;;;;;:::i;:::-;;;;36203:105;;;;35771:542;;:::o;33766:87::-;33812:7;33839:6;;;;;;;;;;;33832:13;;33766:87;:::o;21759:104::-;21815:13;21848:7;21841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21759:104;:::o;23442:295::-;23557:12;:10;:12::i;:::-;23545:24;;:8;:24;;;;23537:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23657:8;23612:18;:32;23631:12;:10;:12::i;:::-;23612:32;;;;;;;;;;;;;;;:42;23645:8;23612:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23710:8;23681:48;;23696:12;:10;:12::i;:::-;23681:48;;;23720:8;23681:48;;;;;;:::i;:::-;;;;;;;;23442:295;;:::o;24705:328::-;24880:41;24899:12;:10;:12::i;:::-;24913:7;24880:18;:41::i;:::-;24872:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24986:39;25000:4;25006:2;25010:7;25019:5;24986:13;:39::i;:::-;24705:328;;;;:::o;35450:84::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35518:10:::1;;;;;;;;;;;35517:11;35504:10;;:24;;;;;;;;;;;;;;;;;;35450:84::o:0;21934:334::-;22007:13;22041:16;22049:7;22041;:16::i;:::-;22033:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22122:21;22146:10;:8;:10::i;:::-;22122:34;;22198:1;22180:7;22174:21;:25;:86;;;;;;;;;;;;;;;;;22226:7;22235:18;:7;:16;:18::i;:::-;22209:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22174:86;22167:93;;;21934:334;;;:::o;35232:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23808:164::-;23905:4;23929:18;:25;23948:5;23929:25;;;;;;;;;;;;;;;:35;23955:8;23929:35;;;;;;;;;;;;;;;;;;;;;;;;;23922:42;;23808:164;;;;:::o;34666:192::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34775:1:::1;34755:22;;:8;:22;;;;34747:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34831:19;34841:8;34831:9;:19::i;:::-;34666:192:::0;:::o;12776:157::-;12861:4;12900:25;12885:40;;;:11;:40;;;;12878:47;;12776:157;;;:::o;26543:127::-;26608:4;26660:1;26632:30;;:7;:16;26640:7;26632:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26625:37;;26543:127;;;:::o;19099:98::-;19152:7;19179:10;19172:17;;19099:98;:::o;30525:174::-;30627:2;30600:15;:24;30616:7;30600:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30683:7;30679:2;30645:46;;30654:23;30669:7;30654:14;:23::i;:::-;30645:46;;;;;;;;;;;;30525:174;;:::o;26837:348::-;26930:4;26955:16;26963:7;26955;:16::i;:::-;26947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27031:13;27047:23;27062:7;27047:14;:23::i;:::-;27031:39;;27100:5;27089:16;;:7;:16;;;:51;;;;27133:7;27109:31;;:20;27121:7;27109:11;:20::i;:::-;:31;;;27089:51;:87;;;;27144:32;27161:5;27168:7;27144:16;:32::i;:::-;27089:87;27081:96;;;26837:348;;;;:::o;29829:578::-;29988:4;29961:31;;:23;29976:7;29961:14;:23::i;:::-;:31;;;29953:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30071:1;30057:16;;:2;:16;;;;30049:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30127:39;30148:4;30154:2;30158:7;30127:20;:39::i;:::-;30231:29;30248:1;30252:7;30231:8;:29::i;:::-;30292:1;30273:9;:15;30283:4;30273:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30321:1;30304:9;:13;30314:2;30304:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30352:2;30333:7;:16;30341:7;30333:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30391:7;30387:2;30372:27;;30381:4;30372:27;;;;;;;;;;;;29829:578;;;:::o;34866:173::-;34922:16;34941:6;;;;;;;;;;;34922:25;;34967:8;34958:6;;:17;;;;;;;;;;;;;;;;;;35022:8;34991:40;;35012:8;34991:40;;;;;;;;;;;;34911:128;34866:173;:::o;27527:110::-;27603:26;27613:2;27617:7;27603:26;;;;;;;;;;;;:9;:26::i;:::-;27527:110;;:::o;25915:315::-;26072:28;26082:4;26088:2;26092:7;26072:9;:28::i;:::-;26119:48;26142:4;26148:2;26152:7;26161:5;26119:22;:48::i;:::-;26111:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25915:315;;;;:::o;35658:107::-;35718:13;35747:12;35740:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35658:107;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;32635:126::-;;;;:::o;27864:321::-;27994:18;28000:2;28004:7;27994:5;:18::i;:::-;28045:54;28076:1;28080:2;28084:7;28093:5;28045:22;:54::i;:::-;28023:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27864:321;;;:::o;31264:799::-;31419:4;31440:15;:2;:13;;;:15::i;:::-;31436:620;;;31492:2;31476:36;;;31513:12;:10;:12::i;:::-;31527:4;31533:7;31542:5;31476:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31472:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31735:1;31718:6;:13;:18;31714:272;;;31761:60;;;;;;;;;;:::i;:::-;;;;;;;;31714:272;31936:6;31930:13;31921:6;31917:2;31913:15;31906:38;31472:529;31609:41;;;31599:51;;;:6;:51;;;;31592:58;;;;;31436:620;32040:4;32033:11;;31264:799;;;;;;;:::o;28521:382::-;28615:1;28601:16;;:2;:16;;;;28593:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28674:16;28682:7;28674;:16::i;:::-;28673:17;28665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28736:45;28765:1;28769:2;28773:7;28736:20;:45::i;:::-;28811:1;28794:9;:13;28804:2;28794:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28842:2;28823:7;:16;28831:7;28823:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28887:7;28883:2;28862:33;;28879:1;28862:33;;;;;;;;;;;;28521:382;;:::o;2836:387::-;2896:4;3104:12;3171:7;3159:20;3151:28;;3214:1;3207:4;:8;3200:15;;;2836:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:117::-;5672:1;5669;5662:12;5686:117;5795:1;5792;5785:12;5809:180;5857:77;5854:1;5847:88;5954:4;5951:1;5944:15;5978:4;5975:1;5968:15;5995:281;6078:27;6100:4;6078:27;:::i;:::-;6070:6;6066:40;6208:6;6196:10;6193:22;6172:18;6160:10;6157:34;6154:62;6151:88;;;6219:18;;:::i;:::-;6151:88;6259:10;6255:2;6248:22;6038:238;5995:281;;:::o;6282:129::-;6316:6;6343:20;;:::i;:::-;6333:30;;6372:33;6400:4;6392:6;6372:33;:::i;:::-;6282:129;;;:::o;6417:308::-;6479:4;6569:18;6561:6;6558:30;6555:56;;;6591:18;;:::i;:::-;6555:56;6629:29;6651:6;6629:29;:::i;:::-;6621:37;;6713:4;6707;6703:15;6695:23;;6417:308;;;:::o;6731:154::-;6815:6;6810:3;6805;6792:30;6877:1;6868:6;6863:3;6859:16;6852:27;6731:154;;;:::o;6891:412::-;6969:5;6994:66;7010:49;7052:6;7010:49;:::i;:::-;6994:66;:::i;:::-;6985:75;;7083:6;7076:5;7069:21;7121:4;7114:5;7110:16;7159:3;7150:6;7145:3;7141:16;7138:25;7135:112;;;7166:79;;:::i;:::-;7135:112;7256:41;7290:6;7285:3;7280;7256:41;:::i;:::-;6975:328;6891:412;;;;;:::o;7323:340::-;7379:5;7428:3;7421:4;7413:6;7409:17;7405:27;7395:122;;7436:79;;:::i;:::-;7395:122;7553:6;7540:20;7578:79;7653:3;7645:6;7638:4;7630:6;7626:17;7578:79;:::i;:::-;7569:88;;7385:278;7323:340;;;;:::o;7669:509::-;7738:6;7787:2;7775:9;7766:7;7762:23;7758:32;7755:119;;;7793:79;;:::i;:::-;7755:119;7941:1;7930:9;7926:17;7913:31;7971:18;7963:6;7960:30;7957:117;;;7993:79;;:::i;:::-;7957:117;8098:63;8153:7;8144:6;8133:9;8129:22;8098:63;:::i;:::-;8088:73;;7884:287;7669:509;;;;:::o;8184:118::-;8271:24;8289:5;8271:24;:::i;:::-;8266:3;8259:37;8184:118;;:::o;8308:222::-;8401:4;8439:2;8428:9;8424:18;8416:26;;8452:71;8520:1;8509:9;8505:17;8496:6;8452:71;:::i;:::-;8308:222;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:182::-;16915:34;16911:1;16903:6;16899:14;16892:58;16775:182;:::o;16963:366::-;17105:3;17126:67;17190:2;17185:3;17126:67;:::i;:::-;17119:74;;17202:93;17291:3;17202:93;:::i;:::-;17320:2;17315:3;17311:12;17304:19;;16963:366;;;:::o;17335:419::-;17501:4;17539:2;17528:9;17524:18;17516:26;;17588:9;17582:4;17578:20;17574:1;17563:9;17559:17;17552:47;17616:131;17742:4;17616:131;:::i;:::-;17608:139;;17335:419;;;:::o;17760:228::-;17900:34;17896:1;17888:6;17884:14;17877:58;17969:11;17964:2;17956:6;17952:15;17945:36;17760:228;:::o;17994:366::-;18136:3;18157:67;18221:2;18216:3;18157:67;:::i;:::-;18150:74;;18233:93;18322:3;18233:93;:::i;:::-;18351:2;18346:3;18342:12;18335:19;;17994:366;;;:::o;18366:419::-;18532:4;18570:2;18559:9;18555:18;18547:26;;18619:9;18613:4;18609:20;18605:1;18594:9;18590:17;18583:47;18647:131;18773:4;18647:131;:::i;:::-;18639:139;;18366:419;;;:::o;18791:229::-;18931:34;18927:1;18919:6;18915:14;18908:58;19000:12;18995:2;18987:6;18983:15;18976:37;18791:229;:::o;19026:366::-;19168:3;19189:67;19253:2;19248:3;19189:67;:::i;:::-;19182:74;;19265:93;19354:3;19265:93;:::i;:::-;19383:2;19378:3;19374:12;19367:19;;19026:366;;;:::o;19398:419::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:165::-;19963:17;19959:1;19951:6;19947:14;19940:41;19823:165;:::o;19994:366::-;20136:3;20157:67;20221:2;20216:3;20157:67;:::i;:::-;20150:74;;20233:93;20322:3;20233:93;:::i;:::-;20351:2;20346:3;20342:12;20335:19;;19994:366;;;:::o;20366:419::-;20532:4;20570:2;20559:9;20555:18;20547:26;;20619:9;20613:4;20609:20;20605:1;20594:9;20590:17;20583:47;20647:131;20773:4;20647:131;:::i;:::-;20639:139;;20366:419;;;:::o;20791:180::-;20839:77;20836:1;20829:88;20936:4;20933:1;20926:15;20960:4;20957:1;20950:15;20977:348;21017:7;21040:20;21058:1;21040:20;:::i;:::-;21035:25;;21074:20;21092:1;21074:20;:::i;:::-;21069:25;;21262:1;21194:66;21190:74;21187:1;21184:81;21179:1;21172:9;21165:17;21161:105;21158:131;;;21269:18;;:::i;:::-;21158:131;21317:1;21314;21310:9;21299:20;;20977:348;;;;:::o;21331:169::-;21471:21;21467:1;21459:6;21455:14;21448:45;21331:169;:::o;21506:366::-;21648:3;21669:67;21733:2;21728:3;21669:67;:::i;:::-;21662:74;;21745:93;21834:3;21745:93;:::i;:::-;21863:2;21858:3;21854:12;21847:19;;21506:366;;;:::o;21878:419::-;22044:4;22082:2;22071:9;22067:18;22059:26;;22131:9;22125:4;22121:20;22117:1;22106:9;22102:17;22095:47;22159:131;22285:4;22159:131;:::i;:::-;22151:139;;21878:419;;;:::o;22303:168::-;22443:20;22439:1;22431:6;22427:14;22420:44;22303:168;:::o;22477:366::-;22619:3;22640:67;22704:2;22699:3;22640:67;:::i;:::-;22633:74;;22716:93;22805:3;22716:93;:::i;:::-;22834:2;22829:3;22825:12;22818:19;;22477:366;;;:::o;22849:419::-;23015:4;23053:2;23042:9;23038:18;23030:26;;23102:9;23096:4;23092:20;23088:1;23077:9;23073:17;23066:47;23130:131;23256:4;23130:131;:::i;:::-;23122:139;;22849:419;;;:::o;23274:305::-;23314:3;23333:20;23351:1;23333:20;:::i;:::-;23328:25;;23367:20;23385:1;23367:20;:::i;:::-;23362:25;;23521:1;23453:66;23449:74;23446:1;23443:81;23440:107;;;23527:18;;:::i;:::-;23440:107;23571:1;23568;23564:9;23557:16;;23274:305;;;;:::o;23585:168::-;23725:20;23721:1;23713:6;23709:14;23702:44;23585:168;:::o;23759:366::-;23901:3;23922:67;23986:2;23981:3;23922:67;:::i;:::-;23915:74;;23998:93;24087:3;23998:93;:::i;:::-;24116:2;24111:3;24107:12;24100:19;;23759:366;;;:::o;24131:419::-;24297:4;24335:2;24324:9;24320:18;24312:26;;24384:9;24378:4;24374:20;24370:1;24359:9;24355:17;24348:47;24412:131;24538:4;24412:131;:::i;:::-;24404:139;;24131:419;;;:::o;24556:164::-;24696:16;24692:1;24684:6;24680:14;24673:40;24556:164;:::o;24726:366::-;24868:3;24889:67;24953:2;24948:3;24889:67;:::i;:::-;24882:74;;24965:93;25054:3;24965:93;:::i;:::-;25083:2;25078:3;25074:12;25067:19;;24726:366;;;:::o;25098:419::-;25264:4;25302:2;25291:9;25287:18;25279:26;;25351:9;25345:4;25341:20;25337:1;25326:9;25322:17;25315:47;25379:131;25505:4;25379:131;:::i;:::-;25371:139;;25098:419;;;:::o;25523:233::-;25562:3;25585:24;25603:5;25585:24;:::i;:::-;25576:33;;25631:66;25624:5;25621:77;25618:103;;;25701:18;;:::i;:::-;25618:103;25748:1;25741:5;25737:13;25730:20;;25523:233;;;:::o;25762:175::-;25902:27;25898:1;25890:6;25886:14;25879:51;25762:175;:::o;25943:366::-;26085:3;26106:67;26170:2;26165:3;26106:67;:::i;:::-;26099:74;;26182:93;26271:3;26182:93;:::i;:::-;26300:2;26295:3;26291:12;26284:19;;25943:366;;;:::o;26315:419::-;26481:4;26519:2;26508:9;26504:18;26496:26;;26568:9;26562:4;26558:20;26554:1;26543:9;26539:17;26532:47;26596:131;26722:4;26596:131;:::i;:::-;26588:139;;26315:419;;;:::o;26740:234::-;26880:34;26876:1;26868:6;26864:14;26857:58;26949:17;26944:2;26936:6;26932:15;26925:42;26740:234;:::o;26980:366::-;27122:3;27143:67;27207:2;27202:3;27143:67;:::i;:::-;27136:74;;27219:93;27308:3;27219:93;:::i;:::-;27337:2;27332:3;27328:12;27321:19;;26980:366;;;:::o;27352:419::-;27518:4;27556:2;27545:9;27541:18;27533:26;;27605:9;27599:4;27595:20;27591:1;27580:9;27576:17;27569:47;27633:131;27759:4;27633:131;:::i;:::-;27625:139;;27352:419;;;:::o;27777:148::-;27879:11;27916:3;27901:18;;27777:148;;;;:::o;27931:377::-;28037:3;28065:39;28098:5;28065:39;:::i;:::-;28120:89;28202:6;28197:3;28120:89;:::i;:::-;28113:96;;28218:52;28263:6;28258:3;28251:4;28244:5;28240:16;28218:52;:::i;:::-;28295:6;28290:3;28286:16;28279:23;;28041:267;27931:377;;;;:::o;28314:435::-;28494:3;28516:95;28607:3;28598:6;28516:95;:::i;:::-;28509:102;;28628:95;28719:3;28710:6;28628:95;:::i;:::-;28621:102;;28740:3;28733:10;;28314:435;;;;;:::o;28755:225::-;28895:34;28891:1;28883:6;28879:14;28872:58;28964:8;28959:2;28951:6;28947:15;28940:33;28755:225;:::o;28986:366::-;29128:3;29149:67;29213:2;29208:3;29149:67;:::i;:::-;29142:74;;29225:93;29314:3;29225:93;:::i;:::-;29343:2;29338:3;29334:12;29327:19;;28986:366;;;:::o;29358:419::-;29524:4;29562:2;29551:9;29547:18;29539:26;;29611:9;29605:4;29601:20;29597:1;29586:9;29582:17;29575:47;29639:131;29765:4;29639:131;:::i;:::-;29631:139;;29358:419;;;:::o;29783:231::-;29923:34;29919:1;29911:6;29907:14;29900:58;29992:14;29987:2;29979:6;29975:15;29968:39;29783:231;:::o;30020:366::-;30162:3;30183:67;30247:2;30242:3;30183:67;:::i;:::-;30176:74;;30259:93;30348:3;30259:93;:::i;:::-;30377:2;30372:3;30368:12;30361:19;;30020:366;;;:::o;30392:419::-;30558:4;30596:2;30585:9;30581:18;30573:26;;30645:9;30639:4;30635:20;30631:1;30620:9;30616:17;30609:47;30673:131;30799:4;30673:131;:::i;:::-;30665:139;;30392:419;;;:::o;30817:228::-;30957:34;30953:1;30945:6;30941:14;30934:58;31026:11;31021:2;31013:6;31009:15;31002:36;30817:228;:::o;31051:366::-;31193:3;31214:67;31278:2;31273:3;31214:67;:::i;:::-;31207:74;;31290:93;31379:3;31290:93;:::i;:::-;31408:2;31403:3;31399:12;31392:19;;31051:366;;;:::o;31423:419::-;31589:4;31627:2;31616:9;31612:18;31604:26;;31676:9;31670:4;31666:20;31662:1;31651:9;31647:17;31640:47;31704:131;31830:4;31704:131;:::i;:::-;31696:139;;31423:419;;;:::o;31848:223::-;31988:34;31984:1;31976:6;31972:14;31965:58;32057:6;32052:2;32044:6;32040:15;32033:31;31848:223;:::o;32077:366::-;32219:3;32240:67;32304:2;32299:3;32240:67;:::i;:::-;32233:74;;32316:93;32405:3;32316:93;:::i;:::-;32434:2;32429:3;32425:12;32418:19;;32077:366;;;:::o;32449:419::-;32615:4;32653:2;32642:9;32638:18;32630:26;;32702:9;32696:4;32692:20;32688:1;32677:9;32673:17;32666:47;32730:131;32856:4;32730:131;:::i;:::-;32722:139;;32449:419;;;:::o;32874:191::-;32914:4;32934:20;32952:1;32934:20;:::i;:::-;32929:25;;32968:20;32986:1;32968:20;:::i;:::-;32963:25;;33007:1;33004;33001:8;32998:34;;;33012:18;;:::i;:::-;32998:34;33057:1;33054;33050:9;33042:17;;32874:191;;;;:::o;33071:237::-;33211:34;33207:1;33199:6;33195:14;33188:58;33280:20;33275:2;33267:6;33263:15;33256:45;33071:237;:::o;33314:366::-;33456:3;33477:67;33541:2;33536:3;33477:67;:::i;:::-;33470:74;;33553:93;33642:3;33553:93;:::i;:::-;33671:2;33666:3;33662:12;33655:19;;33314:366;;;:::o;33686:419::-;33852:4;33890:2;33879:9;33875:18;33867:26;;33939:9;33933:4;33929:20;33925:1;33914:9;33910:17;33903:47;33967:131;34093:4;33967:131;:::i;:::-;33959:139;;33686:419;;;:::o;34111:180::-;34159:77;34156:1;34149:88;34256:4;34253:1;34246:15;34280:4;34277:1;34270:15;34297:185;34337:1;34354:20;34372:1;34354:20;:::i;:::-;34349:25;;34388:20;34406:1;34388:20;:::i;:::-;34383:25;;34427:1;34417:35;;34432:18;;:::i;:::-;34417:35;34474:1;34471;34467:9;34462:14;;34297:185;;;;:::o;34488:176::-;34520:1;34537:20;34555:1;34537:20;:::i;:::-;34532:25;;34571:20;34589:1;34571:20;:::i;:::-;34566:25;;34610:1;34600:35;;34615:18;;:::i;:::-;34600:35;34656:1;34653;34649:9;34644:14;;34488:176;;;;:::o;34670:180::-;34718:77;34715:1;34708:88;34815:4;34812:1;34805:15;34839:4;34836:1;34829:15;34856:98;34907:6;34941:5;34935:12;34925:22;;34856:98;;;:::o;34960:168::-;35043:11;35077:6;35072:3;35065:19;35117:4;35112:3;35108:14;35093:29;;34960:168;;;;:::o;35134:360::-;35220:3;35248:38;35280:5;35248:38;:::i;:::-;35302:70;35365:6;35360:3;35302:70;:::i;:::-;35295:77;;35381:52;35426:6;35421:3;35414:4;35407:5;35403:16;35381:52;:::i;:::-;35458:29;35480:6;35458:29;:::i;:::-;35453:3;35449:39;35442:46;;35224:270;35134:360;;;;:::o;35500:640::-;35695:4;35733:3;35722:9;35718:19;35710:27;;35747:71;35815:1;35804:9;35800:17;35791:6;35747:71;:::i;:::-;35828:72;35896:2;35885:9;35881:18;35872:6;35828:72;:::i;:::-;35910;35978:2;35967:9;35963:18;35954:6;35910:72;:::i;:::-;36029:9;36023:4;36019:20;36014:2;36003:9;35999:18;35992:48;36057:76;36128:4;36119:6;36057:76;:::i;:::-;36049:84;;35500:640;;;;;;;:::o;36146:141::-;36202:5;36233:6;36227:13;36218:22;;36249:32;36275:5;36249:32;:::i;:::-;36146:141;;;;:::o;36293:349::-;36362:6;36411:2;36399:9;36390:7;36386:23;36382:32;36379:119;;;36417:79;;:::i;:::-;36379:119;36537:1;36562:63;36617:7;36608:6;36597:9;36593:22;36562:63;:::i;:::-;36552:73;;36508:127;36293:349;;;;:::o;36648:182::-;36788:34;36784:1;36776:6;36772:14;36765:58;36648:182;:::o;36836:366::-;36978:3;36999:67;37063:2;37058:3;36999:67;:::i;:::-;36992:74;;37075:93;37164:3;37075:93;:::i;:::-;37193:2;37188:3;37184:12;37177:19;;36836:366;;;:::o;37208:419::-;37374:4;37412:2;37401:9;37397:18;37389:26;;37461:9;37455:4;37451:20;37447:1;37436:9;37432:17;37425:47;37489:131;37615:4;37489:131;:::i;:::-;37481:139;;37208:419;;;:::o;37633:178::-;37773:30;37769:1;37761:6;37757:14;37750:54;37633:178;:::o;37817:366::-;37959:3;37980:67;38044:2;38039:3;37980:67;:::i;:::-;37973:74;;38056:93;38145:3;38056:93;:::i;:::-;38174:2;38169:3;38165:12;38158:19;;37817:366;;;:::o;38189:419::-;38355:4;38393:2;38382:9;38378:18;38370:26;;38442:9;38436:4;38432:20;38428:1;38417:9;38413:17;38406:47;38470:131;38596:4;38470:131;:::i;:::-;38462:139;;38189:419;;;:::o

Swarm Source

ipfs://30f03be8a7de9f2e87c39e885d2daba1122f789e9de8b3165f44fd9dfa3879e4
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.