ETH Price: $3,484.22 (+7.30%)
Gas: 9 Gwei

Token

Metaspace_Golden (NM)
 

Overview

Max Total Supply

888 NM

Holders

812

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NM
0xE16f76116C6920Cd9bB046c000d05924152738f4
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:
Metaspace_Golden

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev 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 {}

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: github/niclin/nic_meta/contracts/Metaspace_Golden.sol

// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721

pragma solidity ^0.8.0;




contract Metaspace_Golden is ERC721Enumerable, Ownable {
    using Strings for uint256;

    bool public _isSaleActive = false;
    bool public _revealed = false;

    // Constants
    uint256 public constant MAX_SUPPLY = 888;
    uint256 public mintPrice = 0 ether;
    uint256 public maxBalance = 1;
    uint256 public maxMint = 1;

    string baseURI;
    string public baseExtension = ".json";

    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory initBaseURI)
        ERC721("Metaspace_Golden", "NM")
    {
        setBaseURI(initBaseURI);
    }

    function mintMetaspace_Golden(uint256 tokenQuantity) public payable {
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );
        require(_isSaleActive, "Sale must be active to mint Metaspace_Goldens");
        require(
            balanceOf(msg.sender) + tokenQuantity <= maxBalance,
            "Sale would exceed max balance"
        );
        require(
            tokenQuantity * mintPrice <= msg.value,
            "Not enough ether sent"
        );
        require(tokenQuantity <= maxMint, "Can only mint 1 tokens at a time");

        _mintMetaspace_Golden(tokenQuantity);
    }

    function _mintMetaspace_Golden(uint256 tokenQuantity) internal {
        for (uint256 i = 0; i < tokenQuantity; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_SUPPLY) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

    //only owner
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","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":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintMetaspace_Golden","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600b556001600c556001600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f90805190602001906200009692919062000345565b50348015620000a457600080fd5b5060405162004b8f38038062004b8f8339818101604052810190620000ca919062000473565b6040518060400160405280601081526020017f4d65746173706163655f476f6c64656e000000000000000000000000000000008152506040518060400160405280600281526020017f4e4d00000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014e92919062000345565b5080600190805190602001906200016792919062000345565b5050506200018a6200017e620001a260201b60201c565b620001aa60201b60201c565b6200019b816200027060201b60201c565b50620006cb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000280620001a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a66200031b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f690620004eb565b60405180910390fd5b80600e90805190602001906200031792919062000345565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035390620005b3565b90600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b60006200040c620004068462000536565b6200050d565b9050828152602081018484840111156200042b576200042a62000682565b5b620004388482856200057d565b509392505050565b600082601f8301126200045857620004576200067d565b5b81516200046a848260208601620003f5565b91505092915050565b6000602082840312156200048c576200048b6200068c565b5b600082015167ffffffffffffffff811115620004ad57620004ac62000687565b5b620004bb8482850162000440565b91505092915050565b6000620004d36020836200056c565b9150620004e082620006a2565b602082019050919050565b600060208201905081810360008301526200050681620004c4565b9050919050565b6000620005196200052c565b9050620005278282620005e9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055457620005536200064e565b5b6200055f8262000691565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200059d57808201518184015260208101905062000580565b83811115620005ad576000848401525b50505050565b60006002820490506001821680620005cc57607f821691505b60208210811415620005e357620005e26200061f565b5b50919050565b620005f48262000691565b810181811067ffffffffffffffff821117156200061657620006156200064e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144b480620006db6000396000f3fe6080604052600436106102045760003560e01c80637080d6fc11610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f14610748578063de8b51e114610771578063e985e9c514610788578063f2fde38b146107c5578063f4a0a528146107ee57610204565b8063b88d4fde1461069b578063c398cd40146106c4578063c6682862146106e0578063c87b56dd1461070b57610204565b80637501f741116100e75780637501f741146105c85780638da5cb5b146105f357806395d89b411461061e5780639d51d9b714610649578063a22cb4651461067257610204565b80637080d6fc1461051e57806370a0823114610549578063715018a61461058657806373ad468a1461059d57610204565b80633b84d9c61161019b578063547520fe1161016a578063547520fe1461043957806355f804b3146104625780636352211e1461048b5780636817c76c146104c85780636ebeac85146104f357610204565b80633b84d9c61461039357806342842e0e146103aa5780634f6ccce7146103d357806351cff8d91461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061303b565b610817565b60405161023d919061363b565b60405180910390f35b34801561025257600080fd5b5061025b610891565b6040516102689190613656565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906130de565b610923565b6040516102a591906135d4565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612ffb565b6109a8565b005b3480156102e357600080fd5b506102ec610ac0565b6040516102f99190613958565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612ee5565b610acd565b005b34801561033757600080fd5b50610352600480360381019061034d9190612ffb565b610b2d565b60405161035f9190613958565b60405180910390f35b34801561037457600080fd5b5061037d610bd2565b60405161038a9190613958565b60405180910390f35b34801561039f57600080fd5b506103a8610bd8565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612ee5565b610c80565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130de565b610ca0565b6040516104079190613958565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190612e78565b610d11565b005b34801561044557600080fd5b50610460600480360381019061045b91906130de565b610ddd565b005b34801561046e57600080fd5b5061048960048036038101906104849190613095565b610e63565b005b34801561049757600080fd5b506104b260048036038101906104ad91906130de565b610ef9565b6040516104bf91906135d4565b60405180910390f35b3480156104d457600080fd5b506104dd610fab565b6040516104ea9190613958565b60405180910390f35b3480156104ff57600080fd5b50610508610fb1565b604051610515919061363b565b60405180910390f35b34801561052a57600080fd5b50610533610fc4565b604051610540919061363b565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612e78565b610fd7565b60405161057d9190613958565b60405180910390f35b34801561059257600080fd5b5061059b61108f565b005b3480156105a957600080fd5b506105b2611117565b6040516105bf9190613958565b60405180910390f35b3480156105d457600080fd5b506105dd61111d565b6040516105ea9190613958565b60405180910390f35b3480156105ff57600080fd5b50610608611123565b60405161061591906135d4565b60405180910390f35b34801561062a57600080fd5b5061063361114d565b6040516106409190613656565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906130de565b6111df565b005b34801561067e57600080fd5b5061069960048036038101906106949190612fbb565b611265565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612f38565b61127b565b005b6106de60048036038101906106d991906130de565b6112dd565b005b3480156106ec57600080fd5b506106f561147c565b6040516107029190613656565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906130de565b61150a565b60405161073f9190613656565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613095565b611680565b005b34801561077d57600080fd5b50610786611716565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612ea5565b6117be565b6040516107bc919061363b565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612e78565b611852565b005b3480156107fa57600080fd5b50610815600480360381019061081091906130de565b61194a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a5750610889826119d0565b5b9050919050565b6060600080546108a090613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613c1d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611ab2565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613878565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610ef9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906138d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611b1e565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611b1e565b6117be565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906137f8565b60405180910390fd5b610abb8383611b26565b505050565b6000600880549050905090565b610ade610ad8611b1e565b82611bdf565b610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906138f8565b60405180910390fd5b610b28838383611cbd565b505050565b6000610b3883610fd7565b8210610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613678565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61037881565b610be0611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611123565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613898565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610c9b8383836040518060200160405280600081525061127b565b505050565b6000610caa610ac0565b8210610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613918565b60405180910390fd5b60088281548110610cff57610cfe613db6565b5b90600052602060002001549050919050565b610d19611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610d37611123565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613898565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd8573d6000803e3d6000fd5b505050565b610de5611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610e03611123565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613898565b60405180910390fd5b80600d8190555050565b610e6b611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610e89611123565b73ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613898565b60405180910390fd5b80600e9080519060200190610ef5929190612c8c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613838565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613818565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611097611b1e565b73ffffffffffffffffffffffffffffffffffffffff166110b5611123565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613898565b60405180910390fd5b6111156000611f24565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461115c90613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461118890613c1d565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b6111e7611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611205611123565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613898565b60405180910390fd5b80600c8190555050565b611277611270611b1e565b8383611fea565b5050565b61128c611286611b1e565b83611bdf565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906138f8565b60405180910390fd5b6112d784848484612157565b50505050565b610378816112e9610ac0565b6112f39190613a52565b1115611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613718565b60405180910390fd5b600a60149054906101000a900460ff16611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613738565b60405180910390fd5b600c548161139033610fd7565b61139a9190613a52565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906137d8565b60405180910390fd5b34600b54826113ea9190613ad9565b111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613938565b60405180910390fd5b600d54811115611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906137b8565b60405180910390fd5b611479816121b3565b50565b600f805461148990613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546114b590613c1d565b80156115025780601f106114d757610100808354040283529160200191611502565b820191906000526020600020905b8154815290600101906020018083116114e557829003601f168201915b505050505081565b606061151582611ab2565b611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906138b8565b60405180910390fd5b600060106000848152602001908152602001600020805461157490613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613c1d565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905060006115fe6121fe565b905060008151141561161457819250505061167b565b60008251111561164957808260405160200161163192919061357f565b6040516020818303038152906040529250505061167b565b8061165385612290565b600f604051602001611667939291906135a3565b604051602081830303815290604052925050505b919050565b611688611b1e565b73ffffffffffffffffffffffffffffffffffffffff166116a6611123565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613898565b60405180910390fd5b80600f9080519060200190611712929190612c8c565b5050565b61171e611b1e565b73ffffffffffffffffffffffffffffffffffffffff1661173c611123565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613898565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185a611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611878611123565b73ffffffffffffffffffffffffffffffffffffffff16146118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906136b8565b60405180910390fd5b61194781611f24565b50565b611952611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611970611123565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613898565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aab5750611aaa826123f1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9983610ef9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bea82611ab2565b611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613798565b60405180910390fd5b6000611c3483610ef9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c765750611c7581856117be565b5b80611cb457508373ffffffffffffffffffffffffffffffffffffffff16611c9c84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cdd82610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a906136d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613758565b60405180910390fd5b611dae83838361245b565b611db9600082611b26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e099190613b33565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e609190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f1f83838361256f565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090613778565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161214a919061363b565b60405180910390a3505050565b612162848484611cbd565b61216e84848484612574565b6121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490613698565b60405180910390fd5b50505050565b60005b818110156121fa5760006121c8610ac0565b90506103786121d5610ac0565b10156121e6576121e5338261270b565b5b5080806121f290613c80565b9150506121b6565b5050565b6060600e805461220d90613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461223990613c1d565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b606060008214156122d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ec565b600082905060005b6000821461230a5780806122f390613c80565b915050600a826123039190613aa8565b91506122e0565b60008167ffffffffffffffff81111561232657612325613de5565b5b6040519080825280601f01601f1916602001820160405280156123585781602001600182028036833780820191505090505b5090505b600085146123e5576001826123719190613b33565b9150600a856123809190613cc9565b603061238c9190613a52565b60f81b8183815181106123a2576123a1613db6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123de9190613aa8565b945061235c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612466838383612729565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a9576124a48161272e565b6124e8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124e7576124e68382612777565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252b57612526816128e4565b61256a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125695761256882826129b5565b5b5b505050565b505050565b60006125958473ffffffffffffffffffffffffffffffffffffffff16612a34565b156126fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125be611b1e565b8786866040518563ffffffff1660e01b81526004016125e094939291906135ef565b602060405180830381600087803b1580156125fa57600080fd5b505af192505050801561262b57506040513d601f19601f820116820180604052508101906126289190613068565b60015b6126ae573d806000811461265b576040519150601f19603f3d011682016040523d82523d6000602084013e612660565b606091505b506000815114156126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90613698565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612703565b600190505b949350505050565b612725828260405180602001604052806000815250612a57565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161278484610fd7565b61278e9190613b33565b9050600060076000848152602001908152602001600020549050818114612873576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128f89190613b33565b905060006009600084815260200190815260200160002054905060006008838154811061292857612927613db6565b5b90600052602060002001549050806008838154811061294a57612949613db6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299957612998613d87565b5b6001900381819060005260206000200160009055905550505050565b60006129c083610fd7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612a618383612ab2565b612a6e6000848484612574565b612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490613698565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990613858565b60405180910390fd5b612b2b81611ab2565b15612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b62906136f8565b60405180910390fd5b612b776000838361245b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bc79190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c886000838361256f565b5050565b828054612c9890613c1d565b90600052602060002090601f016020900481019282612cba5760008555612d01565b82601f10612cd357805160ff1916838001178555612d01565b82800160010185558215612d01579182015b82811115612d00578251825591602001919060010190612ce5565b5b509050612d0e9190612d12565b5090565b5b80821115612d2b576000816000905550600101612d13565b5090565b6000612d42612d3d84613998565b613973565b905082815260208101848484011115612d5e57612d5d613e19565b5b612d69848285613bdb565b509392505050565b6000612d84612d7f846139c9565b613973565b905082815260208101848484011115612da057612d9f613e19565b5b612dab848285613bdb565b509392505050565b600081359050612dc281614422565b92915050565b600081359050612dd781614439565b92915050565b600081359050612dec81614450565b92915050565b600081519050612e0181614450565b92915050565b600082601f830112612e1c57612e1b613e14565b5b8135612e2c848260208601612d2f565b91505092915050565b600082601f830112612e4a57612e49613e14565b5b8135612e5a848260208601612d71565b91505092915050565b600081359050612e7281614467565b92915050565b600060208284031215612e8e57612e8d613e23565b5b6000612e9c84828501612db3565b91505092915050565b60008060408385031215612ebc57612ebb613e23565b5b6000612eca85828601612db3565b9250506020612edb85828601612db3565b9150509250929050565b600080600060608486031215612efe57612efd613e23565b5b6000612f0c86828701612db3565b9350506020612f1d86828701612db3565b9250506040612f2e86828701612e63565b9150509250925092565b60008060008060808587031215612f5257612f51613e23565b5b6000612f6087828801612db3565b9450506020612f7187828801612db3565b9350506040612f8287828801612e63565b925050606085013567ffffffffffffffff811115612fa357612fa2613e1e565b5b612faf87828801612e07565b91505092959194509250565b60008060408385031215612fd257612fd1613e23565b5b6000612fe085828601612db3565b9250506020612ff185828601612dc8565b9150509250929050565b6000806040838503121561301257613011613e23565b5b600061302085828601612db3565b925050602061303185828601612e63565b9150509250929050565b60006020828403121561305157613050613e23565b5b600061305f84828501612ddd565b91505092915050565b60006020828403121561307e5761307d613e23565b5b600061308c84828501612df2565b91505092915050565b6000602082840312156130ab576130aa613e23565b5b600082013567ffffffffffffffff8111156130c9576130c8613e1e565b5b6130d584828501612e35565b91505092915050565b6000602082840312156130f4576130f3613e23565b5b600061310284828501612e63565b91505092915050565b61311481613b67565b82525050565b61312381613b79565b82525050565b600061313482613a0f565b61313e8185613a25565b935061314e818560208601613bea565b61315781613e28565b840191505092915050565b600061316d82613a1a565b6131778185613a36565b9350613187818560208601613bea565b61319081613e28565b840191505092915050565b60006131a682613a1a565b6131b08185613a47565b93506131c0818560208601613bea565b80840191505092915050565b600081546131d981613c1d565b6131e38186613a47565b945060018216600081146131fe576001811461320f57613242565b60ff19831686528186019350613242565b613218856139fa565b60005b8381101561323a5781548189015260018201915060208101905061321b565b838801955050505b50505092915050565b6000613258602b83613a36565b915061326382613e39565b604082019050919050565b600061327b603283613a36565b915061328682613e88565b604082019050919050565b600061329e602683613a36565b91506132a982613ed7565b604082019050919050565b60006132c1602583613a36565b91506132cc82613f26565b604082019050919050565b60006132e4601c83613a36565b91506132ef82613f75565b602082019050919050565b6000613307601c83613a36565b915061331282613f9e565b602082019050919050565b600061332a602d83613a36565b915061333582613fc7565b604082019050919050565b600061334d602483613a36565b915061335882614016565b604082019050919050565b6000613370601983613a36565b915061337b82614065565b602082019050919050565b6000613393602c83613a36565b915061339e8261408e565b604082019050919050565b60006133b6602083613a36565b91506133c1826140dd565b602082019050919050565b60006133d9601d83613a36565b91506133e482614106565b602082019050919050565b60006133fc603883613a36565b91506134078261412f565b604082019050919050565b600061341f602a83613a36565b915061342a8261417e565b604082019050919050565b6000613442602983613a36565b915061344d826141cd565b604082019050919050565b6000613465602083613a36565b91506134708261421c565b602082019050919050565b6000613488602c83613a36565b915061349382614245565b604082019050919050565b60006134ab602083613a36565b91506134b682614294565b602082019050919050565b60006134ce602f83613a36565b91506134d9826142bd565b604082019050919050565b60006134f1602183613a36565b91506134fc8261430c565b604082019050919050565b6000613514603183613a36565b915061351f8261435b565b604082019050919050565b6000613537602c83613a36565b9150613542826143aa565b604082019050919050565b600061355a601583613a36565b9150613565826143f9565b602082019050919050565b61357981613bd1565b82525050565b600061358b828561319b565b9150613597828461319b565b91508190509392505050565b60006135af828661319b565b91506135bb828561319b565b91506135c782846131cc565b9150819050949350505050565b60006020820190506135e9600083018461310b565b92915050565b6000608082019050613604600083018761310b565b613611602083018661310b565b61361e6040830185613570565b81810360608301526136308184613129565b905095945050505050565b6000602082019050613650600083018461311a565b92915050565b600060208201905081810360008301526136708184613162565b905092915050565b600060208201905081810360008301526136918161324b565b9050919050565b600060208201905081810360008301526136b18161326e565b9050919050565b600060208201905081810360008301526136d181613291565b9050919050565b600060208201905081810360008301526136f1816132b4565b9050919050565b60006020820190508181036000830152613711816132d7565b9050919050565b60006020820190508181036000830152613731816132fa565b9050919050565b600060208201905081810360008301526137518161331d565b9050919050565b6000602082019050818103600083015261377181613340565b9050919050565b6000602082019050818103600083015261379181613363565b9050919050565b600060208201905081810360008301526137b181613386565b9050919050565b600060208201905081810360008301526137d1816133a9565b9050919050565b600060208201905081810360008301526137f1816133cc565b9050919050565b60006020820190508181036000830152613811816133ef565b9050919050565b6000602082019050818103600083015261383181613412565b9050919050565b6000602082019050818103600083015261385181613435565b9050919050565b6000602082019050818103600083015261387181613458565b9050919050565b600060208201905081810360008301526138918161347b565b9050919050565b600060208201905081810360008301526138b18161349e565b9050919050565b600060208201905081810360008301526138d1816134c1565b9050919050565b600060208201905081810360008301526138f1816134e4565b9050919050565b6000602082019050818103600083015261391181613507565b9050919050565b600060208201905081810360008301526139318161352a565b9050919050565b600060208201905081810360008301526139518161354d565b9050919050565b600060208201905061396d6000830184613570565b92915050565b600061397d61398e565b90506139898282613c4f565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b3576139b2613de5565b5b6139bc82613e28565b9050602081019050919050565b600067ffffffffffffffff8211156139e4576139e3613de5565b5b6139ed82613e28565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bd1565b9150613a6883613bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613cfa565b5b828201905092915050565b6000613ab382613bd1565b9150613abe83613bd1565b925082613ace57613acd613d29565b5b828204905092915050565b6000613ae482613bd1565b9150613aef83613bd1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613cfa565b5b828202905092915050565b6000613b3e82613bd1565b9150613b4983613bd1565b925082821015613b5c57613b5b613cfa565b5b828203905092915050565b6000613b7282613bb1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c08578082015181840152602081019050613bed565b83811115613c17576000848401525b50505050565b60006002820490506001821680613c3557607f821691505b60208210811415613c4957613c48613d58565b5b50919050565b613c5882613e28565b810181811067ffffffffffffffff82111715613c7757613c76613de5565b5b80604052505050565b6000613c8b82613bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbe57613cbd613cfa565b5b600182019050919050565b6000613cd482613bd1565b9150613cdf83613bd1565b925082613cef57613cee613d29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204d65746160008201527f73706163655f476f6c64656e7300000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d65600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61442b81613b67565b811461443657600080fd5b50565b61444281613b79565b811461444d57600080fd5b50565b61445981613b85565b811461446457600080fd5b50565b61447081613bd1565b811461447b57600080fd5b5056fea26469706673582212201f7e2cc332866d30aa1980eee663ce84a20e251fa808775dba5543890213d56764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637080d6fc11610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f14610748578063de8b51e114610771578063e985e9c514610788578063f2fde38b146107c5578063f4a0a528146107ee57610204565b8063b88d4fde1461069b578063c398cd40146106c4578063c6682862146106e0578063c87b56dd1461070b57610204565b80637501f741116100e75780637501f741146105c85780638da5cb5b146105f357806395d89b411461061e5780639d51d9b714610649578063a22cb4651461067257610204565b80637080d6fc1461051e57806370a0823114610549578063715018a61461058657806373ad468a1461059d57610204565b80633b84d9c61161019b578063547520fe1161016a578063547520fe1461043957806355f804b3146104625780636352211e1461048b5780636817c76c146104c85780636ebeac85146104f357610204565b80633b84d9c61461039357806342842e0e146103aa5780634f6ccce7146103d357806351cff8d91461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061303b565b610817565b60405161023d919061363b565b60405180910390f35b34801561025257600080fd5b5061025b610891565b6040516102689190613656565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906130de565b610923565b6040516102a591906135d4565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612ffb565b6109a8565b005b3480156102e357600080fd5b506102ec610ac0565b6040516102f99190613958565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612ee5565b610acd565b005b34801561033757600080fd5b50610352600480360381019061034d9190612ffb565b610b2d565b60405161035f9190613958565b60405180910390f35b34801561037457600080fd5b5061037d610bd2565b60405161038a9190613958565b60405180910390f35b34801561039f57600080fd5b506103a8610bd8565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612ee5565b610c80565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130de565b610ca0565b6040516104079190613958565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190612e78565b610d11565b005b34801561044557600080fd5b50610460600480360381019061045b91906130de565b610ddd565b005b34801561046e57600080fd5b5061048960048036038101906104849190613095565b610e63565b005b34801561049757600080fd5b506104b260048036038101906104ad91906130de565b610ef9565b6040516104bf91906135d4565b60405180910390f35b3480156104d457600080fd5b506104dd610fab565b6040516104ea9190613958565b60405180910390f35b3480156104ff57600080fd5b50610508610fb1565b604051610515919061363b565b60405180910390f35b34801561052a57600080fd5b50610533610fc4565b604051610540919061363b565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612e78565b610fd7565b60405161057d9190613958565b60405180910390f35b34801561059257600080fd5b5061059b61108f565b005b3480156105a957600080fd5b506105b2611117565b6040516105bf9190613958565b60405180910390f35b3480156105d457600080fd5b506105dd61111d565b6040516105ea9190613958565b60405180910390f35b3480156105ff57600080fd5b50610608611123565b60405161061591906135d4565b60405180910390f35b34801561062a57600080fd5b5061063361114d565b6040516106409190613656565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906130de565b6111df565b005b34801561067e57600080fd5b5061069960048036038101906106949190612fbb565b611265565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612f38565b61127b565b005b6106de60048036038101906106d991906130de565b6112dd565b005b3480156106ec57600080fd5b506106f561147c565b6040516107029190613656565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906130de565b61150a565b60405161073f9190613656565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613095565b611680565b005b34801561077d57600080fd5b50610786611716565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612ea5565b6117be565b6040516107bc919061363b565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612e78565b611852565b005b3480156107fa57600080fd5b50610815600480360381019061081091906130de565b61194a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a5750610889826119d0565b5b9050919050565b6060600080546108a090613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613c1d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611ab2565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613878565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610ef9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906138d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611b1e565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611b1e565b6117be565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906137f8565b60405180910390fd5b610abb8383611b26565b505050565b6000600880549050905090565b610ade610ad8611b1e565b82611bdf565b610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906138f8565b60405180910390fd5b610b28838383611cbd565b505050565b6000610b3883610fd7565b8210610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613678565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61037881565b610be0611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611123565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613898565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610c9b8383836040518060200160405280600081525061127b565b505050565b6000610caa610ac0565b8210610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613918565b60405180910390fd5b60088281548110610cff57610cfe613db6565b5b90600052602060002001549050919050565b610d19611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610d37611123565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613898565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd8573d6000803e3d6000fd5b505050565b610de5611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610e03611123565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613898565b60405180910390fd5b80600d8190555050565b610e6b611b1e565b73ffffffffffffffffffffffffffffffffffffffff16610e89611123565b73ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613898565b60405180910390fd5b80600e9080519060200190610ef5929190612c8c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613838565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613818565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611097611b1e565b73ffffffffffffffffffffffffffffffffffffffff166110b5611123565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613898565b60405180910390fd5b6111156000611f24565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461115c90613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461118890613c1d565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b6111e7611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611205611123565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613898565b60405180910390fd5b80600c8190555050565b611277611270611b1e565b8383611fea565b5050565b61128c611286611b1e565b83611bdf565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906138f8565b60405180910390fd5b6112d784848484612157565b50505050565b610378816112e9610ac0565b6112f39190613a52565b1115611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613718565b60405180910390fd5b600a60149054906101000a900460ff16611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613738565b60405180910390fd5b600c548161139033610fd7565b61139a9190613a52565b11156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906137d8565b60405180910390fd5b34600b54826113ea9190613ad9565b111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613938565b60405180910390fd5b600d54811115611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906137b8565b60405180910390fd5b611479816121b3565b50565b600f805461148990613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546114b590613c1d565b80156115025780601f106114d757610100808354040283529160200191611502565b820191906000526020600020905b8154815290600101906020018083116114e557829003601f168201915b505050505081565b606061151582611ab2565b611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906138b8565b60405180910390fd5b600060106000848152602001908152602001600020805461157490613c1d565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613c1d565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905060006115fe6121fe565b905060008151141561161457819250505061167b565b60008251111561164957808260405160200161163192919061357f565b6040516020818303038152906040529250505061167b565b8061165385612290565b600f604051602001611667939291906135a3565b604051602081830303815290604052925050505b919050565b611688611b1e565b73ffffffffffffffffffffffffffffffffffffffff166116a6611123565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613898565b60405180910390fd5b80600f9080519060200190611712929190612c8c565b5050565b61171e611b1e565b73ffffffffffffffffffffffffffffffffffffffff1661173c611123565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613898565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185a611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611878611123565b73ffffffffffffffffffffffffffffffffffffffff16146118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906136b8565b60405180910390fd5b61194781611f24565b50565b611952611b1e565b73ffffffffffffffffffffffffffffffffffffffff16611970611123565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613898565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aab5750611aaa826123f1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9983610ef9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bea82611ab2565b611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613798565b60405180910390fd5b6000611c3483610ef9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c765750611c7581856117be565b5b80611cb457508373ffffffffffffffffffffffffffffffffffffffff16611c9c84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cdd82610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a906136d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613758565b60405180910390fd5b611dae83838361245b565b611db9600082611b26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e099190613b33565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e609190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f1f83838361256f565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090613778565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161214a919061363b565b60405180910390a3505050565b612162848484611cbd565b61216e84848484612574565b6121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490613698565b60405180910390fd5b50505050565b60005b818110156121fa5760006121c8610ac0565b90506103786121d5610ac0565b10156121e6576121e5338261270b565b5b5080806121f290613c80565b9150506121b6565b5050565b6060600e805461220d90613c1d565b80601f016020809104026020016040519081016040528092919081815260200182805461223990613c1d565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b606060008214156122d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ec565b600082905060005b6000821461230a5780806122f390613c80565b915050600a826123039190613aa8565b91506122e0565b60008167ffffffffffffffff81111561232657612325613de5565b5b6040519080825280601f01601f1916602001820160405280156123585781602001600182028036833780820191505090505b5090505b600085146123e5576001826123719190613b33565b9150600a856123809190613cc9565b603061238c9190613a52565b60f81b8183815181106123a2576123a1613db6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123de9190613aa8565b945061235c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612466838383612729565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a9576124a48161272e565b6124e8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124e7576124e68382612777565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252b57612526816128e4565b61256a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125695761256882826129b5565b5b5b505050565b505050565b60006125958473ffffffffffffffffffffffffffffffffffffffff16612a34565b156126fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125be611b1e565b8786866040518563ffffffff1660e01b81526004016125e094939291906135ef565b602060405180830381600087803b1580156125fa57600080fd5b505af192505050801561262b57506040513d601f19601f820116820180604052508101906126289190613068565b60015b6126ae573d806000811461265b576040519150601f19603f3d011682016040523d82523d6000602084013e612660565b606091505b506000815114156126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90613698565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612703565b600190505b949350505050565b612725828260405180602001604052806000815250612a57565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161278484610fd7565b61278e9190613b33565b9050600060076000848152602001908152602001600020549050818114612873576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128f89190613b33565b905060006009600084815260200190815260200160002054905060006008838154811061292857612927613db6565b5b90600052602060002001549050806008838154811061294a57612949613db6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299957612998613d87565b5b6001900381819060005260206000200160009055905550505050565b60006129c083610fd7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612a618383612ab2565b612a6e6000848484612574565b612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490613698565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990613858565b60405180910390fd5b612b2b81611ab2565b15612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b62906136f8565b60405180910390fd5b612b776000838361245b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bc79190613a52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c886000838361256f565b5050565b828054612c9890613c1d565b90600052602060002090601f016020900481019282612cba5760008555612d01565b82601f10612cd357805160ff1916838001178555612d01565b82800160010185558215612d01579182015b82811115612d00578251825591602001919060010190612ce5565b5b509050612d0e9190612d12565b5090565b5b80821115612d2b576000816000905550600101612d13565b5090565b6000612d42612d3d84613998565b613973565b905082815260208101848484011115612d5e57612d5d613e19565b5b612d69848285613bdb565b509392505050565b6000612d84612d7f846139c9565b613973565b905082815260208101848484011115612da057612d9f613e19565b5b612dab848285613bdb565b509392505050565b600081359050612dc281614422565b92915050565b600081359050612dd781614439565b92915050565b600081359050612dec81614450565b92915050565b600081519050612e0181614450565b92915050565b600082601f830112612e1c57612e1b613e14565b5b8135612e2c848260208601612d2f565b91505092915050565b600082601f830112612e4a57612e49613e14565b5b8135612e5a848260208601612d71565b91505092915050565b600081359050612e7281614467565b92915050565b600060208284031215612e8e57612e8d613e23565b5b6000612e9c84828501612db3565b91505092915050565b60008060408385031215612ebc57612ebb613e23565b5b6000612eca85828601612db3565b9250506020612edb85828601612db3565b9150509250929050565b600080600060608486031215612efe57612efd613e23565b5b6000612f0c86828701612db3565b9350506020612f1d86828701612db3565b9250506040612f2e86828701612e63565b9150509250925092565b60008060008060808587031215612f5257612f51613e23565b5b6000612f6087828801612db3565b9450506020612f7187828801612db3565b9350506040612f8287828801612e63565b925050606085013567ffffffffffffffff811115612fa357612fa2613e1e565b5b612faf87828801612e07565b91505092959194509250565b60008060408385031215612fd257612fd1613e23565b5b6000612fe085828601612db3565b9250506020612ff185828601612dc8565b9150509250929050565b6000806040838503121561301257613011613e23565b5b600061302085828601612db3565b925050602061303185828601612e63565b9150509250929050565b60006020828403121561305157613050613e23565b5b600061305f84828501612ddd565b91505092915050565b60006020828403121561307e5761307d613e23565b5b600061308c84828501612df2565b91505092915050565b6000602082840312156130ab576130aa613e23565b5b600082013567ffffffffffffffff8111156130c9576130c8613e1e565b5b6130d584828501612e35565b91505092915050565b6000602082840312156130f4576130f3613e23565b5b600061310284828501612e63565b91505092915050565b61311481613b67565b82525050565b61312381613b79565b82525050565b600061313482613a0f565b61313e8185613a25565b935061314e818560208601613bea565b61315781613e28565b840191505092915050565b600061316d82613a1a565b6131778185613a36565b9350613187818560208601613bea565b61319081613e28565b840191505092915050565b60006131a682613a1a565b6131b08185613a47565b93506131c0818560208601613bea565b80840191505092915050565b600081546131d981613c1d565b6131e38186613a47565b945060018216600081146131fe576001811461320f57613242565b60ff19831686528186019350613242565b613218856139fa565b60005b8381101561323a5781548189015260018201915060208101905061321b565b838801955050505b50505092915050565b6000613258602b83613a36565b915061326382613e39565b604082019050919050565b600061327b603283613a36565b915061328682613e88565b604082019050919050565b600061329e602683613a36565b91506132a982613ed7565b604082019050919050565b60006132c1602583613a36565b91506132cc82613f26565b604082019050919050565b60006132e4601c83613a36565b91506132ef82613f75565b602082019050919050565b6000613307601c83613a36565b915061331282613f9e565b602082019050919050565b600061332a602d83613a36565b915061333582613fc7565b604082019050919050565b600061334d602483613a36565b915061335882614016565b604082019050919050565b6000613370601983613a36565b915061337b82614065565b602082019050919050565b6000613393602c83613a36565b915061339e8261408e565b604082019050919050565b60006133b6602083613a36565b91506133c1826140dd565b602082019050919050565b60006133d9601d83613a36565b91506133e482614106565b602082019050919050565b60006133fc603883613a36565b91506134078261412f565b604082019050919050565b600061341f602a83613a36565b915061342a8261417e565b604082019050919050565b6000613442602983613a36565b915061344d826141cd565b604082019050919050565b6000613465602083613a36565b91506134708261421c565b602082019050919050565b6000613488602c83613a36565b915061349382614245565b604082019050919050565b60006134ab602083613a36565b91506134b682614294565b602082019050919050565b60006134ce602f83613a36565b91506134d9826142bd565b604082019050919050565b60006134f1602183613a36565b91506134fc8261430c565b604082019050919050565b6000613514603183613a36565b915061351f8261435b565b604082019050919050565b6000613537602c83613a36565b9150613542826143aa565b604082019050919050565b600061355a601583613a36565b9150613565826143f9565b602082019050919050565b61357981613bd1565b82525050565b600061358b828561319b565b9150613597828461319b565b91508190509392505050565b60006135af828661319b565b91506135bb828561319b565b91506135c782846131cc565b9150819050949350505050565b60006020820190506135e9600083018461310b565b92915050565b6000608082019050613604600083018761310b565b613611602083018661310b565b61361e6040830185613570565b81810360608301526136308184613129565b905095945050505050565b6000602082019050613650600083018461311a565b92915050565b600060208201905081810360008301526136708184613162565b905092915050565b600060208201905081810360008301526136918161324b565b9050919050565b600060208201905081810360008301526136b18161326e565b9050919050565b600060208201905081810360008301526136d181613291565b9050919050565b600060208201905081810360008301526136f1816132b4565b9050919050565b60006020820190508181036000830152613711816132d7565b9050919050565b60006020820190508181036000830152613731816132fa565b9050919050565b600060208201905081810360008301526137518161331d565b9050919050565b6000602082019050818103600083015261377181613340565b9050919050565b6000602082019050818103600083015261379181613363565b9050919050565b600060208201905081810360008301526137b181613386565b9050919050565b600060208201905081810360008301526137d1816133a9565b9050919050565b600060208201905081810360008301526137f1816133cc565b9050919050565b60006020820190508181036000830152613811816133ef565b9050919050565b6000602082019050818103600083015261383181613412565b9050919050565b6000602082019050818103600083015261385181613435565b9050919050565b6000602082019050818103600083015261387181613458565b9050919050565b600060208201905081810360008301526138918161347b565b9050919050565b600060208201905081810360008301526138b18161349e565b9050919050565b600060208201905081810360008301526138d1816134c1565b9050919050565b600060208201905081810360008301526138f1816134e4565b9050919050565b6000602082019050818103600083015261391181613507565b9050919050565b600060208201905081810360008301526139318161352a565b9050919050565b600060208201905081810360008301526139518161354d565b9050919050565b600060208201905061396d6000830184613570565b92915050565b600061397d61398e565b90506139898282613c4f565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b3576139b2613de5565b5b6139bc82613e28565b9050602081019050919050565b600067ffffffffffffffff8211156139e4576139e3613de5565b5b6139ed82613e28565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5d82613bd1565b9150613a6883613bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9d57613a9c613cfa565b5b828201905092915050565b6000613ab382613bd1565b9150613abe83613bd1565b925082613ace57613acd613d29565b5b828204905092915050565b6000613ae482613bd1565b9150613aef83613bd1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b27613cfa565b5b828202905092915050565b6000613b3e82613bd1565b9150613b4983613bd1565b925082821015613b5c57613b5b613cfa565b5b828203905092915050565b6000613b7282613bb1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c08578082015181840152602081019050613bed565b83811115613c17576000848401525b50505050565b60006002820490506001821680613c3557607f821691505b60208210811415613c4957613c48613d58565b5b50919050565b613c5882613e28565b810181811067ffffffffffffffff82111715613c7757613c76613de5565b5b80604052505050565b6000613c8b82613bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbe57613cbd613cfa565b5b600182019050919050565b6000613cd482613bd1565b9150613cdf83613bd1565b925082613cef57613cee613d29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204d65746160008201527f73706163655f476f6c64656e7300000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203120746f6b656e7320617420612074696d65600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61442b81613b67565b811461443657600080fd5b50565b61444281613b79565b811461444d57600080fd5b50565b61445981613b85565b811461446457600080fd5b50565b61447081613bd1565b811461447b57600080fd5b5056fea26469706673582212201f7e2cc332866d30aa1980eee663ce84a20e251fa808775dba5543890213d56764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45675:3596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39353:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27255:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39993:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28482:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45867:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48444:80;;;;;;;;;;;;;:::i;:::-;;28892:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40183:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49123:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49023:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48640:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25866:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45914:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45811:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45771:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25596:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;45955:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45991:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48911;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28025:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29148:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46283:680;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46047:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47277:908;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48752:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48344:92;;;;;;;;;;;;;:::i;:::-;;28251:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48532:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39353:224;39455:4;39494:35;39479:50;;;:11;:50;;;;:90;;;;39533:36;39557:11;39533:23;:36::i;:::-;39479:90;39472:97;;39353:224;;;:::o;26172:100::-;26226:13;26259:5;26252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26172:100;:::o;27732:221::-;27808:7;27836:16;27844:7;27836;:16::i;:::-;27828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27921:15;:24;27937:7;27921:24;;;;;;;;;;;;;;;;;;;;;27914:31;;27732:221;;;:::o;27255:411::-;27336:13;27352:23;27367:7;27352:14;:23::i;:::-;27336:39;;27400:5;27394:11;;:2;:11;;;;27386:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:5;27478:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27503:37;27520:5;27527:12;:10;:12::i;:::-;27503:16;:37::i;:::-;27478:62;27456:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27637:21;27646:2;27650:7;27637:8;:21::i;:::-;27325:341;27255:411;;:::o;39993:113::-;40054:7;40081:10;:17;;;;40074:24;;39993:113;:::o;28482:339::-;28677:41;28696:12;:10;:12::i;:::-;28710:7;28677:18;:41::i;:::-;28669:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:28;28795:4;28801:2;28805:7;28785:9;:28::i;:::-;28482:339;;;:::o;39661:256::-;39758:7;39794:23;39811:5;39794:16;:23::i;:::-;39786:5;:31;39778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:12;:19;39896:5;39883:19;;;;;;;;;;;;;;;:26;39903:5;39883:26;;;;;;;;;;;;39876:33;;39661:256;;;;:::o;45867:40::-;45904:3;45867:40;:::o;48444:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48507:9:::1;;;;;;;;;;;48506:10;48494:9;;:22;;;;;;;;;;;;;;;;;;48444:80::o:0;28892:185::-;29030:39;29047:4;29053:2;29057:7;29030:39;;;;;;;;;;;;:16;:39::i;:::-;28892:185;;;:::o;40183:233::-;40258:7;40294:30;:28;:30::i;:::-;40286:5;:38;40278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:10;40402:5;40391:17;;;;;;;;:::i;:::-;;;;;;;;;;40384:24;;40183:233;;;:::o;49123:145::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49181:15:::1;49199:21;49181:39;;49239:2;49231:20;;:29;49252:7;49231:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49170:98;49123:145:::0;:::o;49023:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49099:8:::1;49089:7;:18;;;;49023:92:::0;:::o;48640:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48725:11:::1;48715:7;:21;;;;;;;;;;;;:::i;:::-;;48640:104:::0;:::o;25866:239::-;25938:7;25958:13;25974:7;:16;25982:7;25974:16;;;;;;;;;;;;;;;;;;;;;25958:32;;26026:1;26009:19;;:5;:19;;;;26001:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26092:5;26085:12;;;25866:239;;;:::o;45914:34::-;;;;:::o;45811:29::-;;;;;;;;;;;;;:::o;45771:33::-;;;;;;;;;;;;;:::o;25596:208::-;25668:7;25713:1;25696:19;;:5;:19;;;;25688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25780:9;:16;25790:5;25780:16;;;;;;;;;;;;;;;;25773:23;;25596:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45955:29::-;;;;:::o;45991:26::-;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26341:104::-;26397:13;26430:7;26423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26341:104;:::o;48911:::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48996:11:::1;48983:10;:24;;;;48911:104:::0;:::o;28025:155::-;28120:52;28139:12;:10;:12::i;:::-;28153:8;28163;28120:18;:52::i;:::-;28025:155;;:::o;29148:328::-;29323:41;29342:12;:10;:12::i;:::-;29356:7;29323:18;:41::i;:::-;29315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29429:39;29443:4;29449:2;29453:7;29462:5;29429:13;:39::i;:::-;29148:328;;;;:::o;46283:680::-;45904:3;46400:13;46384;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;46362:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;46502:13;;;;;;;;;;;46494:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46639:10;;46622:13;46598:21;46608:10;46598:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;46576:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;46768:9;46755;;46739:13;:25;;;;:::i;:::-;:38;;46717:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46862:7;;46845:13;:24;;46837:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46919:36;46941:13;46919:21;:36::i;:::-;46283:680;:::o;46047:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47277:908::-;47395:13;47448:16;47456:7;47448;:16::i;:::-;47426:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47552:23;47578:10;:19;47589:7;47578:19;;;;;;;;;;;47552:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47608:18;47629:10;:8;:10::i;:::-;47608:31;;47737:1;47721:4;47715:18;:23;47711:72;;;47762:9;47755:16;;;;;;47711:72;47913:1;47893:9;47887:23;:27;47883:108;;;47962:4;47968:9;47945:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47931:48;;;;;;47883:108;48136:4;48142:18;:7;:16;:18::i;:::-;48162:13;48119:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48092:85;;;;47277:908;;;;:::o;48752:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48878:17:::1;48862:13;:33;;;;;;;;;;;;:::i;:::-;;48752:151:::0;:::o;48344:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48415:13:::1;;;;;;;;;;;48414:14;48398:13;;:30;;;;;;;;;;;;;;;;;;48344:92::o:0;28251:164::-;28348:4;28372:18;:25;28391:5;28372:25;;;;;;;;;;;;;;;:35;28398:8;28372:35;;;;;;;;;;;;;;;;;;;;;;;;;28365:42;;28251:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;48532:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48614:10:::1;48602:9;:22;;;;48532:100:::0;:::o;25227:305::-;25329:4;25381:25;25366:40;;;:11;:40;;;;:105;;;;25438:33;25423:48;;;:11;:48;;;;25366:105;:158;;;;25488:36;25512:11;25488:23;:36::i;:::-;25366:158;25346:178;;25227:305;;;:::o;30986:127::-;31051:4;31103:1;31075:30;;:7;:16;31083:7;31075:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31068:37;;30986:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35132:174::-;35234:2;35207:15;:24;35223:7;35207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35290:7;35286:2;35252:46;;35261:23;35276:7;35261:14;:23::i;:::-;35252:46;;;;;;;;;;;;35132:174;;:::o;31280:348::-;31373:4;31398:16;31406:7;31398;:16::i;:::-;31390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:13;31490:23;31505:7;31490:14;:23::i;:::-;31474:39;;31543:5;31532:16;;:7;:16;;;:52;;;;31552:32;31569:5;31576:7;31552:16;:32::i;:::-;31532:52;:87;;;;31612:7;31588:31;;:20;31600:7;31588:11;:20::i;:::-;:31;;;31532:87;31524:96;;;31280:348;;;;:::o;34389:625::-;34548:4;34521:31;;:23;34536:7;34521:14;:23::i;:::-;:31;;;34513:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34627:1;34613:16;;:2;:16;;;;34605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34683:39;34704:4;34710:2;34714:7;34683:20;:39::i;:::-;34787:29;34804:1;34808:7;34787:8;:29::i;:::-;34848:1;34829:9;:15;34839:4;34829:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34877:1;34860:9;:13;34870:2;34860:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34908:2;34889:7;:16;34897:7;34889:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34947:7;34943:2;34928:27;;34937:4;34928:27;;;;;;;;;;;;34968:38;34988:4;34994:2;34998:7;34968:19;:38::i;:::-;34389:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35448:315::-;35603:8;35594:17;;:5;:17;;;;35586:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:8;35652:18;:25;35671:5;35652:25;;;;;;;;;;;;;;;:35;35678:8;35652:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35736:8;35714:41;;35729:5;35714:41;;;35746:8;35714:41;;;;;;:::i;:::-;;;;;;;;35448:315;;;:::o;30358:::-;30515:28;30525:4;30531:2;30535:7;30515:9;:28::i;:::-;30562:48;30585:4;30591:2;30595:7;30604:5;30562:22;:48::i;:::-;30554:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:315;;;;:::o;46971:298::-;47050:9;47045:217;47069:13;47065:1;:17;47045:217;;;47104:17;47124:13;:11;:13::i;:::-;47104:33;;45904:3;47156:13;:11;:13::i;:::-;:26;47152:99;;;47203:32;47213:10;47225:9;47203;:32::i;:::-;47152:99;47089:173;47084:3;;;;;:::i;:::-;;;;47045:217;;;;46971:298;:::o;48210:108::-;48270:13;48303:7;48296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48210:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;41029:589::-;41173:45;41200:4;41206:2;41210:7;41173:26;:45::i;:::-;41251:1;41235:18;;:4;:18;;;41231:187;;;41270:40;41302:7;41270:31;:40::i;:::-;41231:187;;;41340:2;41332:10;;:4;:10;;;41328:90;;41359:47;41392:4;41398:7;41359:32;:47::i;:::-;41328:90;41231:187;41446:1;41432:16;;:2;:16;;;41428:183;;;41465:45;41502:7;41465:36;:45::i;:::-;41428:183;;;41538:4;41532:10;;:2;:10;;;41528:83;;41559:40;41587:2;41591:7;41559:27;:40::i;:::-;41528:83;41428:183;41029:589;;;:::o;38210:125::-;;;;:::o;36328:799::-;36483:4;36504:15;:2;:13;;;:15::i;:::-;36500:620;;;36556:2;36540:36;;;36577:12;:10;:12::i;:::-;36591:4;36597:7;36606:5;36540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36799:1;36782:6;:13;:18;36778:272;;;36825:60;;;;;;;;;;:::i;:::-;;;;;;;;36778:272;37000:6;36994:13;36985:6;36981:2;36977:15;36970:38;36536:529;36673:41;;;36663:51;;;:6;:51;;;;36656:58;;;;;36500:620;37104:4;37097:11;;36328:799;;;;;;;:::o;31970:110::-;32046:26;32056:2;32060:7;32046:26;;;;;;;;;;;;:9;:26::i;:::-;31970:110;;:::o;37699:126::-;;;;:::o;42341:164::-;42445:10;:17;;;;42418:15;:24;42434:7;42418:24;;;;;;;;;;;:44;;;;42473:10;42489:7;42473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42341:164;:::o;43132:988::-;43398:22;43448:1;43423:22;43440:4;43423:16;:22::i;:::-;:26;;;;:::i;:::-;43398:51;;43460:18;43481:17;:26;43499:7;43481:26;;;;;;;;;;;;43460:47;;43628:14;43614:10;:28;43610:328;;43659:19;43681:12;:18;43694:4;43681:18;;;;;;;;;;;;;;;:34;43700:14;43681:34;;;;;;;;;;;;43659:56;;43765:11;43732:12;:18;43745:4;43732:18;;;;;;;;;;;;;;;:30;43751:10;43732:30;;;;;;;;;;;:44;;;;43882:10;43849:17;:30;43867:11;43849:30;;;;;;;;;;;:43;;;;43644:294;43610:328;44034:17;:26;44052:7;44034:26;;;;;;;;;;;44027:33;;;44078:12;:18;44091:4;44078:18;;;;;;;;;;;;;;;:34;44097:14;44078:34;;;;;;;;;;;44071:41;;;43213:907;;43132:988;;:::o;44415:1079::-;44668:22;44713:1;44693:10;:17;;;;:21;;;;:::i;:::-;44668:46;;44725:18;44746:15;:24;44762:7;44746:24;;;;;;;;;;;;44725:45;;45097:19;45119:10;45130:14;45119:26;;;;;;;;:::i;:::-;;;;;;;;;;45097:48;;45183:11;45158:10;45169;45158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45294:10;45263:15;:28;45279:11;45263:28;;;;;;;;;;;:41;;;;45435:15;:24;45451:7;45435:24;;;;;;;;;;;45428:31;;;45470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44486:1008;;;44415:1079;:::o;41919:221::-;42004:14;42021:20;42038:2;42021:16;:20::i;:::-;42004:37;;42079:7;42052:12;:16;42065:2;42052:16;;;;;;;;;;;;;;;:24;42069:6;42052:24;;;;;;;;;;;:34;;;;42126:6;42097:17;:26;42115:7;42097:26;;;;;;;;;;;:35;;;;41993:147;41919:221;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;32307:321::-;32437:18;32443:2;32447:7;32437:5;:18::i;:::-;32488:54;32519:1;32523:2;32527:7;32536:5;32488:22;:54::i;:::-;32466:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:321;;;:::o;32964:439::-;33058:1;33044:16;;:2;:16;;;;33036:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:16;33125:7;33117;:16::i;:::-;33116:17;33108:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33179:45;33208:1;33212:2;33216:7;33179:20;:45::i;:::-;33254:1;33237:9;:13;33247:2;33237:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33285:2;33266:7;:16;33274:7;33266:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33330:7;33326:2;33305:33;;33322:1;33305:33;;;;;;;;;;;;33351:44;33379:1;33383:2;33387:7;33351:19;:44::i;:::-;32964:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:::-;17717:3;17738:67;17802:2;17797:3;17738:67;:::i;:::-;17731:74;;17814:93;17903:3;17814:93;:::i;:::-;17932:2;17927:3;17923:12;17916:19;;17575:366;;;:::o;17947:118::-;18034:24;18052:5;18034:24;:::i;:::-;18029:3;18022:37;17947:118;;:::o;18071:435::-;18251:3;18273:95;18364:3;18355:6;18273:95;:::i;:::-;18266:102;;18385:95;18476:3;18467:6;18385:95;:::i;:::-;18378:102;;18497:3;18490:10;;18071:435;;;;;:::o;18512:589::-;18737:3;18759:95;18850:3;18841:6;18759:95;:::i;:::-;18752:102;;18871:95;18962:3;18953:6;18871:95;:::i;:::-;18864:102;;18983:92;19071:3;19062:6;18983:92;:::i;:::-;18976:99;;19092:3;19085:10;;18512:589;;;;;;:::o;19107:222::-;19200:4;19238:2;19227:9;19223:18;19215:26;;19251:71;19319:1;19308:9;19304:17;19295:6;19251:71;:::i;:::-;19107:222;;;;:::o;19335:640::-;19530:4;19568:3;19557:9;19553:19;19545:27;;19582:71;19650:1;19639:9;19635:17;19626:6;19582:71;:::i;:::-;19663:72;19731:2;19720:9;19716:18;19707:6;19663:72;:::i;:::-;19745;19813:2;19802:9;19798:18;19789:6;19745:72;:::i;:::-;19864:9;19858:4;19854:20;19849:2;19838:9;19834:18;19827:48;19892:76;19963:4;19954:6;19892:76;:::i;:::-;19884:84;;19335:640;;;;;;;:::o;19981:210::-;20068:4;20106:2;20095:9;20091:18;20083:26;;20119:65;20181:1;20170:9;20166:17;20157:6;20119:65;:::i;:::-;19981:210;;;;:::o;20197:313::-;20310:4;20348:2;20337:9;20333:18;20325:26;;20397:9;20391:4;20387:20;20383:1;20372:9;20368:17;20361:47;20425:78;20498:4;20489:6;20425:78;:::i;:::-;20417:86;;20197:313;;;;:::o;20516:419::-;20682:4;20720:2;20709:9;20705:18;20697:26;;20769:9;20763:4;20759:20;20755:1;20744:9;20740:17;20733:47;20797:131;20923:4;20797:131;:::i;:::-;20789:139;;20516:419;;;:::o;20941:::-;21107:4;21145:2;21134:9;21130:18;21122:26;;21194:9;21188:4;21184:20;21180:1;21169:9;21165:17;21158:47;21222:131;21348:4;21222:131;:::i;:::-;21214:139;;20941:419;;;:::o;21366:::-;21532:4;21570:2;21559:9;21555:18;21547:26;;21619:9;21613:4;21609:20;21605:1;21594:9;21590:17;21583:47;21647:131;21773:4;21647:131;:::i;:::-;21639:139;;21366:419;;;:::o;21791:::-;21957:4;21995:2;21984:9;21980:18;21972:26;;22044:9;22038:4;22034:20;22030:1;22019:9;22015:17;22008:47;22072:131;22198:4;22072:131;:::i;:::-;22064:139;;21791:419;;;:::o;22216:::-;22382:4;22420:2;22409:9;22405:18;22397:26;;22469:9;22463:4;22459:20;22455:1;22444:9;22440:17;22433:47;22497:131;22623:4;22497:131;:::i;:::-;22489:139;;22216:419;;;:::o;22641:::-;22807:4;22845:2;22834:9;22830:18;22822:26;;22894:9;22888:4;22884:20;22880:1;22869:9;22865:17;22858:47;22922:131;23048:4;22922:131;:::i;:::-;22914:139;;22641:419;;;:::o;23066:::-;23232:4;23270:2;23259:9;23255:18;23247:26;;23319:9;23313:4;23309:20;23305:1;23294:9;23290:17;23283:47;23347:131;23473:4;23347:131;:::i;:::-;23339:139;;23066:419;;;:::o;23491:::-;23657:4;23695:2;23684:9;23680:18;23672:26;;23744:9;23738:4;23734:20;23730:1;23719:9;23715:17;23708:47;23772:131;23898:4;23772:131;:::i;:::-;23764:139;;23491:419;;;:::o;23916:::-;24082:4;24120:2;24109:9;24105:18;24097:26;;24169:9;24163:4;24159:20;24155:1;24144:9;24140:17;24133:47;24197:131;24323:4;24197:131;:::i;:::-;24189:139;;23916:419;;;:::o;24341:::-;24507:4;24545:2;24534:9;24530:18;24522:26;;24594:9;24588:4;24584:20;24580:1;24569:9;24565:17;24558:47;24622:131;24748:4;24622:131;:::i;:::-;24614:139;;24341:419;;;:::o;24766:::-;24932:4;24970:2;24959:9;24955:18;24947:26;;25019:9;25013:4;25009:20;25005:1;24994:9;24990:17;24983:47;25047:131;25173:4;25047:131;:::i;:::-;25039:139;;24766:419;;;:::o;25191:::-;25357:4;25395:2;25384:9;25380:18;25372:26;;25444:9;25438:4;25434:20;25430:1;25419:9;25415:17;25408:47;25472:131;25598:4;25472:131;:::i;:::-;25464:139;;25191:419;;;:::o;25616:::-;25782:4;25820:2;25809:9;25805:18;25797:26;;25869:9;25863:4;25859:20;25855:1;25844:9;25840:17;25833:47;25897:131;26023:4;25897:131;:::i;:::-;25889:139;;25616:419;;;:::o;26041:::-;26207:4;26245:2;26234:9;26230:18;26222:26;;26294:9;26288:4;26284:20;26280:1;26269:9;26265:17;26258:47;26322:131;26448:4;26322:131;:::i;:::-;26314:139;;26041:419;;;:::o;26466:::-;26632:4;26670:2;26659:9;26655:18;26647:26;;26719:9;26713:4;26709:20;26705:1;26694:9;26690:17;26683:47;26747:131;26873:4;26747:131;:::i;:::-;26739:139;;26466:419;;;:::o;26891:::-;27057:4;27095:2;27084:9;27080:18;27072:26;;27144:9;27138:4;27134:20;27130:1;27119:9;27115:17;27108:47;27172:131;27298:4;27172:131;:::i;:::-;27164:139;;26891:419;;;:::o;27316:::-;27482:4;27520:2;27509:9;27505:18;27497:26;;27569:9;27563:4;27559:20;27555:1;27544:9;27540:17;27533:47;27597:131;27723:4;27597:131;:::i;:::-;27589:139;;27316:419;;;:::o;27741:::-;27907:4;27945:2;27934:9;27930:18;27922:26;;27994:9;27988:4;27984:20;27980:1;27969:9;27965:17;27958:47;28022:131;28148:4;28022:131;:::i;:::-;28014:139;;27741:419;;;:::o;28166:::-;28332:4;28370:2;28359:9;28355:18;28347:26;;28419:9;28413:4;28409:20;28405:1;28394:9;28390:17;28383:47;28447:131;28573:4;28447:131;:::i;:::-;28439:139;;28166:419;;;:::o;28591:::-;28757:4;28795:2;28784:9;28780:18;28772:26;;28844:9;28838:4;28834:20;28830:1;28819:9;28815:17;28808:47;28872:131;28998:4;28872:131;:::i;:::-;28864:139;;28591:419;;;:::o;29016:::-;29182:4;29220:2;29209:9;29205:18;29197:26;;29269:9;29263:4;29259:20;29255:1;29244:9;29240:17;29233:47;29297:131;29423:4;29297:131;:::i;:::-;29289:139;;29016:419;;;:::o;29441:::-;29607:4;29645:2;29634:9;29630:18;29622:26;;29694:9;29688:4;29684:20;29680:1;29669:9;29665:17;29658:47;29722:131;29848:4;29722:131;:::i;:::-;29714:139;;29441:419;;;:::o;29866:::-;30032:4;30070:2;30059:9;30055:18;30047:26;;30119:9;30113:4;30109:20;30105:1;30094:9;30090:17;30083:47;30147:131;30273:4;30147:131;:::i;:::-;30139:139;;29866:419;;;:::o;30291:222::-;30384:4;30422:2;30411:9;30407:18;30399:26;;30435:71;30503:1;30492:9;30488:17;30479:6;30435:71;:::i;:::-;30291:222;;;;:::o;30519:129::-;30553:6;30580:20;;:::i;:::-;30570:30;;30609:33;30637:4;30629:6;30609:33;:::i;:::-;30519:129;;;:::o;30654:75::-;30687:6;30720:2;30714:9;30704:19;;30654:75;:::o;30735:307::-;30796:4;30886:18;30878:6;30875:30;30872:56;;;30908:18;;:::i;:::-;30872:56;30946:29;30968:6;30946:29;:::i;:::-;30938:37;;31030:4;31024;31020:15;31012:23;;30735:307;;;:::o;31048:308::-;31110:4;31200:18;31192:6;31189:30;31186:56;;;31222:18;;:::i;:::-;31186:56;31260:29;31282:6;31260:29;:::i;:::-;31252:37;;31344:4;31338;31334:15;31326:23;;31048:308;;;:::o;31362:141::-;31411:4;31434:3;31426:11;;31457:3;31454:1;31447:14;31491:4;31488:1;31478:18;31470:26;;31362:141;;;:::o;31509:98::-;31560:6;31594:5;31588:12;31578:22;;31509:98;;;:::o;31613:99::-;31665:6;31699:5;31693:12;31683:22;;31613:99;;;:::o;31718:168::-;31801:11;31835:6;31830:3;31823:19;31875:4;31870:3;31866:14;31851:29;;31718:168;;;;:::o;31892:169::-;31976:11;32010:6;32005:3;31998:19;32050:4;32045:3;32041:14;32026:29;;31892:169;;;;:::o;32067:148::-;32169:11;32206:3;32191:18;;32067:148;;;;:::o;32221:305::-;32261:3;32280:20;32298:1;32280:20;:::i;:::-;32275:25;;32314:20;32332:1;32314:20;:::i;:::-;32309:25;;32468:1;32400:66;32396:74;32393:1;32390:81;32387:107;;;32474:18;;:::i;:::-;32387:107;32518:1;32515;32511:9;32504:16;;32221:305;;;;:::o;32532:185::-;32572:1;32589:20;32607:1;32589:20;:::i;:::-;32584:25;;32623:20;32641:1;32623:20;:::i;:::-;32618:25;;32662:1;32652:35;;32667:18;;:::i;:::-;32652:35;32709:1;32706;32702:9;32697:14;;32532:185;;;;:::o;32723:348::-;32763:7;32786:20;32804:1;32786:20;:::i;:::-;32781:25;;32820:20;32838:1;32820:20;:::i;:::-;32815:25;;33008:1;32940:66;32936:74;32933:1;32930:81;32925:1;32918:9;32911:17;32907:105;32904:131;;;33015:18;;:::i;:::-;32904:131;33063:1;33060;33056:9;33045:20;;32723:348;;;;:::o;33077:191::-;33117:4;33137:20;33155:1;33137:20;:::i;:::-;33132:25;;33171:20;33189:1;33171:20;:::i;:::-;33166:25;;33210:1;33207;33204:8;33201:34;;;33215:18;;:::i;:::-;33201:34;33260:1;33257;33253:9;33245:17;;33077:191;;;;:::o;33274:96::-;33311:7;33340:24;33358:5;33340:24;:::i;:::-;33329:35;;33274:96;;;:::o;33376:90::-;33410:7;33453:5;33446:13;33439:21;33428:32;;33376:90;;;:::o;33472:149::-;33508:7;33548:66;33541:5;33537:78;33526:89;;33472:149;;;:::o;33627:126::-;33664:7;33704:42;33697:5;33693:54;33682:65;;33627:126;;;:::o;33759:77::-;33796:7;33825:5;33814:16;;33759:77;;;:::o;33842:154::-;33926:6;33921:3;33916;33903:30;33988:1;33979:6;33974:3;33970:16;33963:27;33842:154;;;:::o;34002:307::-;34070:1;34080:113;34094:6;34091:1;34088:13;34080:113;;;34179:1;34174:3;34170:11;34164:18;34160:1;34155:3;34151:11;34144:39;34116:2;34113:1;34109:10;34104:15;;34080:113;;;34211:6;34208:1;34205:13;34202:101;;;34291:1;34282:6;34277:3;34273:16;34266:27;34202:101;34051:258;34002:307;;;:::o;34315:320::-;34359:6;34396:1;34390:4;34386:12;34376:22;;34443:1;34437:4;34433:12;34464:18;34454:81;;34520:4;34512:6;34508:17;34498:27;;34454:81;34582:2;34574:6;34571:14;34551:18;34548:38;34545:84;;;34601:18;;:::i;:::-;34545:84;34366:269;34315:320;;;:::o;34641:281::-;34724:27;34746:4;34724:27;:::i;:::-;34716:6;34712:40;34854:6;34842:10;34839:22;34818:18;34806:10;34803:34;34800:62;34797:88;;;34865:18;;:::i;:::-;34797:88;34905:10;34901:2;34894:22;34684:238;34641:281;;:::o;34928:233::-;34967:3;34990:24;35008:5;34990:24;:::i;:::-;34981:33;;35036:66;35029:5;35026:77;35023:103;;;35106:18;;:::i;:::-;35023:103;35153:1;35146:5;35142:13;35135:20;;34928:233;;;:::o;35167:176::-;35199:1;35216:20;35234:1;35216:20;:::i;:::-;35211:25;;35250:20;35268:1;35250:20;:::i;:::-;35245:25;;35289:1;35279:35;;35294:18;;:::i;:::-;35279:35;35335:1;35332;35328:9;35323:14;;35167:176;;;;:::o;35349:180::-;35397:77;35394:1;35387:88;35494:4;35491:1;35484:15;35518:4;35515:1;35508:15;35535:180;35583:77;35580:1;35573:88;35680:4;35677:1;35670:15;35704:4;35701:1;35694:15;35721:180;35769:77;35766:1;35759:88;35866:4;35863:1;35856:15;35890:4;35887:1;35880:15;35907:180;35955:77;35952:1;35945:88;36052:4;36049:1;36042:15;36076:4;36073:1;36066:15;36093:180;36141:77;36138:1;36131:88;36238:4;36235:1;36228:15;36262:4;36259:1;36252:15;36279:180;36327:77;36324:1;36317:88;36424:4;36421:1;36414:15;36448:4;36445:1;36438:15;36465:117;36574:1;36571;36564:12;36588:117;36697:1;36694;36687:12;36711:117;36820:1;36817;36810:12;36834:117;36943:1;36940;36933:12;36957:102;36998:6;37049:2;37045:7;37040:2;37033:5;37029:14;37025:28;37015:38;;36957:102;;;:::o;37065:230::-;37205:34;37201:1;37193:6;37189:14;37182:58;37274:13;37269:2;37261:6;37257:15;37250:38;37065:230;:::o;37301:237::-;37441:34;37437:1;37429:6;37425:14;37418:58;37510:20;37505:2;37497:6;37493:15;37486:45;37301:237;:::o;37544:225::-;37684:34;37680:1;37672:6;37668:14;37661:58;37753:8;37748:2;37740:6;37736:15;37729:33;37544:225;:::o;37775:224::-;37915:34;37911:1;37903:6;37899:14;37892:58;37984:7;37979:2;37971:6;37967:15;37960:32;37775:224;:::o;38005:178::-;38145:30;38141:1;38133:6;38129:14;38122:54;38005:178;:::o;38189:::-;38329:30;38325:1;38317:6;38313:14;38306:54;38189:178;:::o;38373:232::-;38513:34;38509:1;38501:6;38497:14;38490:58;38582:15;38577:2;38569:6;38565:15;38558:40;38373:232;:::o;38611:223::-;38751:34;38747:1;38739:6;38735:14;38728:58;38820:6;38815:2;38807:6;38803:15;38796:31;38611:223;:::o;38840:175::-;38980:27;38976:1;38968:6;38964:14;38957:51;38840:175;:::o;39021:231::-;39161:34;39157:1;39149:6;39145:14;39138:58;39230:14;39225:2;39217:6;39213:15;39206:39;39021:231;:::o;39258:182::-;39398:34;39394:1;39386:6;39382:14;39375:58;39258:182;:::o;39446:179::-;39586:31;39582:1;39574:6;39570:14;39563:55;39446:179;:::o;39631:243::-;39771:34;39767:1;39759:6;39755:14;39748:58;39840:26;39835:2;39827:6;39823:15;39816:51;39631:243;:::o;39880:229::-;40020:34;40016:1;40008:6;40004:14;39997:58;40089:12;40084:2;40076:6;40072:15;40065:37;39880:229;:::o;40115:228::-;40255:34;40251:1;40243:6;40239:14;40232:58;40324:11;40319:2;40311:6;40307:15;40300:36;40115:228;:::o;40349:182::-;40489:34;40485:1;40477:6;40473:14;40466:58;40349:182;:::o;40537:231::-;40677:34;40673:1;40665:6;40661:14;40654:58;40746:14;40741:2;40733:6;40729:15;40722:39;40537:231;:::o;40774:182::-;40914:34;40910:1;40902:6;40898:14;40891:58;40774:182;:::o;40962:234::-;41102:34;41098:1;41090:6;41086:14;41079:58;41171:17;41166:2;41158:6;41154:15;41147:42;40962:234;:::o;41202:220::-;41342:34;41338:1;41330:6;41326:14;41319:58;41411:3;41406:2;41398:6;41394:15;41387:28;41202:220;:::o;41428:236::-;41568:34;41564:1;41556:6;41552:14;41545:58;41637:19;41632:2;41624:6;41620:15;41613:44;41428:236;:::o;41670:231::-;41810:34;41806:1;41798:6;41794:14;41787:58;41879:14;41874:2;41866:6;41862:15;41855:39;41670:231;:::o;41907:171::-;42047:23;42043:1;42035:6;42031:14;42024:47;41907:171;:::o;42084:122::-;42157:24;42175:5;42157:24;:::i;:::-;42150:5;42147:35;42137:63;;42196:1;42193;42186:12;42137:63;42084:122;:::o;42212:116::-;42282:21;42297:5;42282:21;:::i;:::-;42275:5;42272:32;42262:60;;42318:1;42315;42308:12;42262:60;42212:116;:::o;42334:120::-;42406:23;42423:5;42406:23;:::i;:::-;42399:5;42396:34;42386:62;;42444:1;42441;42434:12;42386:62;42334:120;:::o;42460:122::-;42533:24;42551:5;42533:24;:::i;:::-;42526:5;42523:35;42513:63;;42572:1;42569;42562:12;42513:63;42460:122;:::o

Swarm Source

ipfs://1f7e2cc332866d30aa1980eee663ce84a20e251fa808775dba5543890213d567
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.