ETH Price: $3,453.94 (-0.97%)
Gas: 9 Gwei

Token

Fiddle3D (FID3D)
 

Overview

Max Total Supply

199 FID3D

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FID3D
0xa43ab7dfe18dfc089feaaaa7181c3bb4e5063ae0
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:
Fiddle3D

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-01-27
*/

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

    /**
     * @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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

// 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: contracts/Fiddles.sol



pragma solidity ^0.8.0;



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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.03 ether;
  uint256 public maxMintAmount = 12;
  uint256 public maxSupply = 1000;

  uint256 public maxFreeMintAmount = 1;
  uint256 public maxFreeMints = 200;

  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

    function freeMint(uint256 _mintAmount) public {
      uint256 supply = totalSupply();
      require(!paused, "Sale has paused");
      require(_mintAmount <= maxFreeMintAmount);
      require(supply + _mintAmount <= maxFreeMints, "No more BALLS left");

      for (uint256 i = 1; i <= _mintAmount; i++) {
       _safeMint(msg.sender, supply + i);
    }
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","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":"maxFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003ab565b50666a94d74f430000600d55600c600e556103e8600f55600160105560c86011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000b557600080fd5b5060405162004e4538038062004e458339818101604052810190620000db9190620004d9565b83838160009080519060200190620000f5929190620003ab565b5080600190805190602001906200010e929190620003ab565b50505062000131620001256200015d60201b60201c565b6200016560201b60201c565b62000142826200022b60201b60201c565b6200015381620002d660201b60201c565b50505050620007ce565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023b6200015d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002616200038160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b190620005ee565b60405180910390fd5b80600b9080519060200190620002d2929190620003ab565b5050565b620002e66200015d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030c6200038160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035c90620005ee565b60405180910390fd5b80601390805190602001906200037d929190620003ab565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b990620006b6565b90600052602060002090601f016020900481019282620003dd576000855562000429565b82601f10620003f857805160ff191683800117855562000429565b8280016001018555821562000429579182015b82811115620004285782518255916020019190600101906200040b565b5b5090506200043891906200043c565b5090565b5b80821115620004575760008160009055506001016200043d565b5090565b6000620004726200046c8462000639565b62000610565b90508281526020810184848401111562000491576200049062000785565b5b6200049e84828562000680565b509392505050565b600082601f830112620004be57620004bd62000780565b5b8151620004d08482602086016200045b565b91505092915050565b60008060008060808587031215620004f657620004f56200078f565b5b600085015167ffffffffffffffff8111156200051757620005166200078a565b5b6200052587828801620004a6565b945050602085015167ffffffffffffffff8111156200054957620005486200078a565b5b6200055787828801620004a6565b935050604085015167ffffffffffffffff8111156200057b576200057a6200078a565b5b6200058987828801620004a6565b925050606085015167ffffffffffffffff811115620005ad57620005ac6200078a565b5b620005bb87828801620004a6565b91505092959194509250565b6000620005d66020836200066f565b9150620005e382620007a5565b602082019050919050565b600060208201905081810360008301526200060981620005c7565b9050919050565b60006200061c6200062f565b90506200062a8282620006ec565b919050565b6000604051905090565b600067ffffffffffffffff82111562000657576200065662000751565b5b620006628262000794565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006a057808201518184015260208101905062000683565b83811115620006b0576000848401525b50505050565b60006002820490506001821680620006cf57607f821691505b60208210811415620006e657620006e562000722565b5b50919050565b620006f78262000794565b810181811067ffffffffffffffff8211171562000719576200071862000751565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61466780620007de6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461080f578063da3ef23f1461083a578063e985e9c514610863578063f2c4ce1e146108a0578063f2fde38b146108c957610230565b8063a22cb4651461073e578063a475b5dd14610767578063b88d4fde1461077e578063c6682862146107a7578063c87b56dd146107d257610230565b80637f00c7a6116100f25780637f00c7a6146106785780638da5cb5b146106a157806395d89b41146106cc5780639d3d41de146106f7578063a0712d681461072257610230565b80636352211e1461059357806370a08231146105d0578063715018a61461060d578063732496c9146106245780637c928fe91461064f57610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104ae5780634f6ccce7146104d7578063518302271461051457806355f804b31461053f5780635c975abb1461056857610230565b806323b872dd146103d85780632f745c59146104015780633ccfd60b1461043e57806342842e0e14610448578063438b63001461047157610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806313faede61461035757806318160ddd14610382578063239c70ae146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613256565b6108f2565b60405161026991906138a8565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613229565b61096c565b005b3480156102a757600080fd5b506102b0610a05565b6040516102bd91906138c3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906132f9565b610a97565b6040516102fa919061381f565b60405180910390f35b34801561030f57600080fd5b50610318610b1c565b60405161032591906138c3565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906131e9565b610baa565b005b34801561036357600080fd5b5061036c610cc2565b6040516103799190613b65565b60405180910390f35b34801561038e57600080fd5b50610397610cc8565b6040516103a49190613b65565b60405180910390f35b3480156103b957600080fd5b506103c2610cd5565b6040516103cf9190613b65565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906130d3565b610cdb565b005b34801561040d57600080fd5b50610428600480360381019061042391906131e9565b610d3b565b6040516104359190613b65565b60405180910390f35b610446610de0565b005b34801561045457600080fd5b5061046f600480360381019061046a91906130d3565b610edc565b005b34801561047d57600080fd5b5061049860048036038101906104939190613066565b610efc565b6040516104a59190613886565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906132f9565b610faa565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906132f9565b611030565b60405161050b9190613b65565b60405180910390f35b34801561052057600080fd5b506105296110a1565b60405161053691906138a8565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906132b0565b6110b4565b005b34801561057457600080fd5b5061057d61114a565b60405161058a91906138a8565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b591906132f9565b61115d565b6040516105c7919061381f565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613066565b61120f565b6040516106049190613b65565b60405180910390f35b34801561061957600080fd5b506106226112c7565b005b34801561063057600080fd5b5061063961134f565b6040516106469190613b65565b60405180910390f35b34801561065b57600080fd5b50610676600480360381019061067191906132f9565b611355565b005b34801561068457600080fd5b5061069f600480360381019061069a91906132f9565b61144b565b005b3480156106ad57600080fd5b506106b66114d1565b6040516106c3919061381f565b60405180910390f35b3480156106d857600080fd5b506106e16114fb565b6040516106ee91906138c3565b60405180910390f35b34801561070357600080fd5b5061070c61158d565b6040516107199190613b65565b60405180910390f35b61073c600480360381019061073791906132f9565b611593565b005b34801561074a57600080fd5b50610765600480360381019061076091906131a9565b61167f565b005b34801561077357600080fd5b5061077c611695565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613126565b61172e565b005b3480156107b357600080fd5b506107bc611790565b6040516107c991906138c3565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906132f9565b61181e565b60405161080691906138c3565b60405180910390f35b34801561081b57600080fd5b50610824611977565b6040516108319190613b65565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906132b0565b61197d565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613093565b611a13565b60405161089791906138a8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c291906132b0565b611aa7565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613066565b611b3d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610965575061096482611c35565b5b9050919050565b610974611d17565b73ffffffffffffffffffffffffffffffffffffffff166109926114d1565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613a85565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610a1490613e6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090613e6e565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa282611d1f565b610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613a65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610b2990613e6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5590613e6e565b8015610ba25780601f10610b7757610100808354040283529160200191610ba2565b820191906000526020600020905b815481529060010190602001808311610b8557829003601f168201915b505050505081565b6000610bb58261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613ae5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c45611d17565b73ffffffffffffffffffffffffffffffffffffffff161480610c745750610c7381610c6e611d17565b611a13565b5b610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa906139c5565b60405180910390fd5b610cbd8383611d8b565b505050565b600d5481565b6000600880549050905090565b600e5481565b610cec610ce6611d17565b82611e44565b610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613b05565b60405180910390fd5b610d36838383611f22565b505050565b6000610d468361120f565b8210610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906138e5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610de8611d17565b73ffffffffffffffffffffffffffffffffffffffff16610e066114d1565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390613a85565b60405180910390fd5b6000610e666114d1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e899061380a565b60006040518083038185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610ed957600080fd5b50565b610ef78383836040518060200160405280600081525061172e565b505050565b60606000610f098361120f565b905060008167ffffffffffffffff811115610f2757610f26614036565b5b604051908082528060200260200182016040528015610f555781602001602082028036833780820191505090505b50905060005b82811015610f9f57610f6d8582610d3b565b828281518110610f8057610f7f614007565b5b6020026020010181815250508080610f9790613ed1565b915050610f5b565b508092505050919050565b610fb2611d17565b73ffffffffffffffffffffffffffffffffffffffff16610fd06114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613a85565b60405180910390fd5b80600d8190555050565b600061103a610cc8565b821061107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613b25565b60405180910390fd5b6008828154811061108f5761108e614007565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6110bc611d17565b73ffffffffffffffffffffffffffffffffffffffff166110da6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613a85565b60405180910390fd5b80600b9080519060200190611146929190612e7a565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613a05565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906139e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf611d17565b73ffffffffffffffffffffffffffffffffffffffff166112ed6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613a85565b60405180910390fd5b61134d600061217e565b565b60115481565b600061135f610cc8565b9050601260009054906101000a900460ff16156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613a25565b60405180910390fd5b6010548211156113c057600080fd5b60115482826113cf9190613ca3565b1115611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b45565b60405180910390fd5b6000600190505b8281116114465761143333828461142e9190613ca3565b612244565b808061143e90613ed1565b915050611417565b505050565b611453611d17565b73ffffffffffffffffffffffffffffffffffffffff166114716114d1565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613a85565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461150a90613e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461153690613e6e565b80156115835780601f1061155857610100808354040283529160200191611583565b820191906000526020600020905b81548152906001019060200180831161156657829003601f168201915b5050505050905090565b60105481565b600061159d610cc8565b9050601260009054906101000a900460ff16156115b957600080fd5b600082116115c657600080fd5b600e548211156115d557600080fd5b600f5482826115e49190613ca3565b11156115ef57600080fd5b6115f76114d1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116445781600d546116379190613d2a565b34101561164357600080fd5b5b6000600190505b82811161167a576116673382846116629190613ca3565b612244565b808061167290613ed1565b91505061164b565b505050565b61169161168a611d17565b8383612262565b5050565b61169d611d17565b73ffffffffffffffffffffffffffffffffffffffff166116bb6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613a85565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b61173f611739611d17565b83611e44565b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613b05565b60405180910390fd5b61178a848484846123cf565b50505050565b600c805461179d90613e6e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990613e6e565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b505050505081565b606061182982611d1f565b611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613ac5565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611916576013805461189190613e6e565b80601f01602080910402602001604051908101604052809291908181526020018280546118bd90613e6e565b801561190a5780601f106118df5761010080835404028352916020019161190a565b820191906000526020600020905b8154815290600101906020018083116118ed57829003601f168201915b50505050509050611972565b600061192061242b565b90506000815111611940576040518060200160405280600081525061196e565b8061194a846124bd565b600c60405160200161195e939291906137d9565b6040516020818303038152906040525b9150505b919050565b600f5481565b611985611d17565b73ffffffffffffffffffffffffffffffffffffffff166119a36114d1565b73ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613a85565b60405180910390fd5b80600c9080519060200190611a0f929190612e7a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aaf611d17565b73ffffffffffffffffffffffffffffffffffffffff16611acd6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613a85565b60405180910390fd5b8060139080519060200190611b39929190612e7a565b5050565b611b45611d17565b73ffffffffffffffffffffffffffffffffffffffff16611b636114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613925565b60405180910390fd5b611c328161217e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d0057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d105750611d0f8261261e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfe8361115d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e4f82611d1f565b611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e85906139a5565b60405180910390fd5b6000611e998361115d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0857508373ffffffffffffffffffffffffffffffffffffffff16611ef084610a97565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f195750611f188185611a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f428261115d565b73ffffffffffffffffffffffffffffffffffffffff1614611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90613aa5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90613965565b60405180910390fd5b612013838383612688565b61201e600082611d8b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206e9190613d84565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c59190613ca3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61225e82826040518060200160405280600081525061279c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613985565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c291906138a8565b60405180910390a3505050565b6123da848484611f22565b6123e6848484846127f7565b612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90613905565b60405180910390fd5b50505050565b6060600b805461243a90613e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461246690613e6e565b80156124b35780601f10612488576101008083540402835291602001916124b3565b820191906000526020600020905b81548152906001019060200180831161249657829003601f168201915b5050505050905090565b60606000821415612505576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612619565b600082905060005b6000821461253757808061252090613ed1565b915050600a826125309190613cf9565b915061250d565b60008167ffffffffffffffff81111561255357612552614036565b5b6040519080825280601f01601f1916602001820160405280156125855781602001600182028036833780820191505090505b5090505b600085146126125760018261259e9190613d84565b9150600a856125ad9190613f1a565b60306125b99190613ca3565b60f81b8183815181106125cf576125ce614007565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260b9190613cf9565b9450612589565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61269383838361298e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d6576126d181612993565b612715565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127145761271383826129dc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127585761275381612b49565b612797565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612796576127958282612c1a565b5b5b505050565b6127a68383612c99565b6127b360008484846127f7565b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613905565b60405180910390fd5b505050565b60006128188473ffffffffffffffffffffffffffffffffffffffff16612e67565b15612981578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612841611d17565b8786866040518563ffffffff1660e01b8152600401612863949392919061383a565b602060405180830381600087803b15801561287d57600080fd5b505af19250505080156128ae57506040513d601f19601f820116820180604052508101906128ab9190613283565b60015b612931573d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50600081511415612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090613905565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612986565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129e98461120f565b6129f39190613d84565b9050600060076000848152602001908152602001600020549050818114612ad8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b5d9190613d84565b9050600060096000848152602001908152602001600020549050600060088381548110612b8d57612b8c614007565b5b906000526020600020015490508060088381548110612baf57612bae614007565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bfe57612bfd613fd8565b5b6001900381819060005260206000200160009055905550505050565b6000612c258361120f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090613a45565b60405180910390fd5b612d1281611d1f565b15612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990613945565b60405180910390fd5b612d5e60008383612688565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dae9190613ca3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8690613e6e565b90600052602060002090601f016020900481019282612ea85760008555612eef565b82601f10612ec157805160ff1916838001178555612eef565b82800160010185558215612eef579182015b82811115612eee578251825591602001919060010190612ed3565b5b509050612efc9190612f00565b5090565b5b80821115612f19576000816000905550600101612f01565b5090565b6000612f30612f2b84613ba5565b613b80565b905082815260208101848484011115612f4c57612f4b61406a565b5b612f57848285613e2c565b509392505050565b6000612f72612f6d84613bd6565b613b80565b905082815260208101848484011115612f8e57612f8d61406a565b5b612f99848285613e2c565b509392505050565b600081359050612fb0816145d5565b92915050565b600081359050612fc5816145ec565b92915050565b600081359050612fda81614603565b92915050565b600081519050612fef81614603565b92915050565b600082601f83011261300a57613009614065565b5b813561301a848260208601612f1d565b91505092915050565b600082601f83011261303857613037614065565b5b8135613048848260208601612f5f565b91505092915050565b6000813590506130608161461a565b92915050565b60006020828403121561307c5761307b614074565b5b600061308a84828501612fa1565b91505092915050565b600080604083850312156130aa576130a9614074565b5b60006130b885828601612fa1565b92505060206130c985828601612fa1565b9150509250929050565b6000806000606084860312156130ec576130eb614074565b5b60006130fa86828701612fa1565b935050602061310b86828701612fa1565b925050604061311c86828701613051565b9150509250925092565b600080600080608085870312156131405761313f614074565b5b600061314e87828801612fa1565b945050602061315f87828801612fa1565b935050604061317087828801613051565b925050606085013567ffffffffffffffff8111156131915761319061406f565b5b61319d87828801612ff5565b91505092959194509250565b600080604083850312156131c0576131bf614074565b5b60006131ce85828601612fa1565b92505060206131df85828601612fb6565b9150509250929050565b60008060408385031215613200576131ff614074565b5b600061320e85828601612fa1565b925050602061321f85828601613051565b9150509250929050565b60006020828403121561323f5761323e614074565b5b600061324d84828501612fb6565b91505092915050565b60006020828403121561326c5761326b614074565b5b600061327a84828501612fcb565b91505092915050565b60006020828403121561329957613298614074565b5b60006132a784828501612fe0565b91505092915050565b6000602082840312156132c6576132c5614074565b5b600082013567ffffffffffffffff8111156132e4576132e361406f565b5b6132f084828501613023565b91505092915050565b60006020828403121561330f5761330e614074565b5b600061331d84828501613051565b91505092915050565b600061333283836137bb565b60208301905092915050565b61334781613db8565b82525050565b600061335882613c2c565b6133628185613c5a565b935061336d83613c07565b8060005b8381101561339e5781516133858882613326565b975061339083613c4d565b925050600181019050613371565b5085935050505092915050565b6133b481613dca565b82525050565b60006133c582613c37565b6133cf8185613c6b565b93506133df818560208601613e3b565b6133e881614079565b840191505092915050565b60006133fe82613c42565b6134088185613c87565b9350613418818560208601613e3b565b61342181614079565b840191505092915050565b600061343782613c42565b6134418185613c98565b9350613451818560208601613e3b565b80840191505092915050565b6000815461346a81613e6e565b6134748186613c98565b9450600182166000811461348f57600181146134a0576134d3565b60ff198316865281860193506134d3565b6134a985613c17565b60005b838110156134cb578154818901526001820191506020810190506134ac565b838801955050505b50505092915050565b60006134e9602b83613c87565b91506134f48261408a565b604082019050919050565b600061350c603283613c87565b9150613517826140d9565b604082019050919050565b600061352f602683613c87565b915061353a82614128565b604082019050919050565b6000613552601c83613c87565b915061355d82614177565b602082019050919050565b6000613575602483613c87565b9150613580826141a0565b604082019050919050565b6000613598601983613c87565b91506135a3826141ef565b602082019050919050565b60006135bb602c83613c87565b91506135c682614218565b604082019050919050565b60006135de603883613c87565b91506135e982614267565b604082019050919050565b6000613601602a83613c87565b915061360c826142b6565b604082019050919050565b6000613624602983613c87565b915061362f82614305565b604082019050919050565b6000613647600f83613c87565b915061365282614354565b602082019050919050565b600061366a602083613c87565b91506136758261437d565b602082019050919050565b600061368d602c83613c87565b9150613698826143a6565b604082019050919050565b60006136b0602083613c87565b91506136bb826143f5565b602082019050919050565b60006136d3602983613c87565b91506136de8261441e565b604082019050919050565b60006136f6602f83613c87565b91506137018261446d565b604082019050919050565b6000613719602183613c87565b9150613724826144bc565b604082019050919050565b600061373c600083613c7c565b91506137478261450b565b600082019050919050565b600061375f603183613c87565b915061376a8261450e565b604082019050919050565b6000613782602c83613c87565b915061378d8261455d565b604082019050919050565b60006137a5601283613c87565b91506137b0826145ac565b602082019050919050565b6137c481613e22565b82525050565b6137d381613e22565b82525050565b60006137e5828661342c565b91506137f1828561342c565b91506137fd828461345d565b9150819050949350505050565b60006138158261372f565b9150819050919050565b6000602082019050613834600083018461333e565b92915050565b600060808201905061384f600083018761333e565b61385c602083018661333e565b61386960408301856137ca565b818103606083015261387b81846133ba565b905095945050505050565b600060208201905081810360008301526138a0818461334d565b905092915050565b60006020820190506138bd60008301846133ab565b92915050565b600060208201905081810360008301526138dd81846133f3565b905092915050565b600060208201905081810360008301526138fe816134dc565b9050919050565b6000602082019050818103600083015261391e816134ff565b9050919050565b6000602082019050818103600083015261393e81613522565b9050919050565b6000602082019050818103600083015261395e81613545565b9050919050565b6000602082019050818103600083015261397e81613568565b9050919050565b6000602082019050818103600083015261399e8161358b565b9050919050565b600060208201905081810360008301526139be816135ae565b9050919050565b600060208201905081810360008301526139de816135d1565b9050919050565b600060208201905081810360008301526139fe816135f4565b9050919050565b60006020820190508181036000830152613a1e81613617565b9050919050565b60006020820190508181036000830152613a3e8161363a565b9050919050565b60006020820190508181036000830152613a5e8161365d565b9050919050565b60006020820190508181036000830152613a7e81613680565b9050919050565b60006020820190508181036000830152613a9e816136a3565b9050919050565b60006020820190508181036000830152613abe816136c6565b9050919050565b60006020820190508181036000830152613ade816136e9565b9050919050565b60006020820190508181036000830152613afe8161370c565b9050919050565b60006020820190508181036000830152613b1e81613752565b9050919050565b60006020820190508181036000830152613b3e81613775565b9050919050565b60006020820190508181036000830152613b5e81613798565b9050919050565b6000602082019050613b7a60008301846137ca565b92915050565b6000613b8a613b9b565b9050613b968282613ea0565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc057613bbf614036565b5b613bc982614079565b9050602081019050919050565b600067ffffffffffffffff821115613bf157613bf0614036565b5b613bfa82614079565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cae82613e22565b9150613cb983613e22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cee57613ced613f4b565b5b828201905092915050565b6000613d0482613e22565b9150613d0f83613e22565b925082613d1f57613d1e613f7a565b5b828204905092915050565b6000613d3582613e22565b9150613d4083613e22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7957613d78613f4b565b5b828202905092915050565b6000613d8f82613e22565b9150613d9a83613e22565b925082821015613dad57613dac613f4b565b5b828203905092915050565b6000613dc382613e02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e59578082015181840152602081019050613e3e565b83811115613e68576000848401525b50505050565b60006002820490506001821680613e8657607f821691505b60208210811415613e9a57613e99613fa9565b5b50919050565b613ea982614079565b810181811067ffffffffffffffff82111715613ec857613ec7614036565b5b80604052505050565b6000613edc82613e22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0f57613f0e613f4b565b5b600182019050919050565b6000613f2582613e22565b9150613f3083613e22565b925082613f4057613f3f613f7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173207061757365640000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652042414c4c53206c6566740000000000000000000000000000600082015250565b6145de81613db8565b81146145e957600080fd5b50565b6145f581613dca565b811461460057600080fd5b50565b61460c81613dd6565b811461461757600080fd5b50565b61462381613e22565b811461462e57600080fd5b5056fea2646970667358221220f981651030ea328d188810408a035a7a63f924f046f144f31144e9d1a28f020064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000008466964646c653344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546494433440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b76377939727337314d4361477a45626246757254515069332f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b76377939727337314d4361477a45626246757254515069332f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461080f578063da3ef23f1461083a578063e985e9c514610863578063f2c4ce1e146108a0578063f2fde38b146108c957610230565b8063a22cb4651461073e578063a475b5dd14610767578063b88d4fde1461077e578063c6682862146107a7578063c87b56dd146107d257610230565b80637f00c7a6116100f25780637f00c7a6146106785780638da5cb5b146106a157806395d89b41146106cc5780639d3d41de146106f7578063a0712d681461072257610230565b80636352211e1461059357806370a08231146105d0578063715018a61461060d578063732496c9146106245780637c928fe91461064f57610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104ae5780634f6ccce7146104d7578063518302271461051457806355f804b31461053f5780635c975abb1461056857610230565b806323b872dd146103d85780632f745c59146104015780633ccfd60b1461043e57806342842e0e14610448578063438b63001461047157610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806313faede61461035757806318160ddd14610382578063239c70ae146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613256565b6108f2565b60405161026991906138a8565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613229565b61096c565b005b3480156102a757600080fd5b506102b0610a05565b6040516102bd91906138c3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906132f9565b610a97565b6040516102fa919061381f565b60405180910390f35b34801561030f57600080fd5b50610318610b1c565b60405161032591906138c3565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906131e9565b610baa565b005b34801561036357600080fd5b5061036c610cc2565b6040516103799190613b65565b60405180910390f35b34801561038e57600080fd5b50610397610cc8565b6040516103a49190613b65565b60405180910390f35b3480156103b957600080fd5b506103c2610cd5565b6040516103cf9190613b65565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906130d3565b610cdb565b005b34801561040d57600080fd5b50610428600480360381019061042391906131e9565b610d3b565b6040516104359190613b65565b60405180910390f35b610446610de0565b005b34801561045457600080fd5b5061046f600480360381019061046a91906130d3565b610edc565b005b34801561047d57600080fd5b5061049860048036038101906104939190613066565b610efc565b6040516104a59190613886565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906132f9565b610faa565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906132f9565b611030565b60405161050b9190613b65565b60405180910390f35b34801561052057600080fd5b506105296110a1565b60405161053691906138a8565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906132b0565b6110b4565b005b34801561057457600080fd5b5061057d61114a565b60405161058a91906138a8565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b591906132f9565b61115d565b6040516105c7919061381f565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613066565b61120f565b6040516106049190613b65565b60405180910390f35b34801561061957600080fd5b506106226112c7565b005b34801561063057600080fd5b5061063961134f565b6040516106469190613b65565b60405180910390f35b34801561065b57600080fd5b50610676600480360381019061067191906132f9565b611355565b005b34801561068457600080fd5b5061069f600480360381019061069a91906132f9565b61144b565b005b3480156106ad57600080fd5b506106b66114d1565b6040516106c3919061381f565b60405180910390f35b3480156106d857600080fd5b506106e16114fb565b6040516106ee91906138c3565b60405180910390f35b34801561070357600080fd5b5061070c61158d565b6040516107199190613b65565b60405180910390f35b61073c600480360381019061073791906132f9565b611593565b005b34801561074a57600080fd5b50610765600480360381019061076091906131a9565b61167f565b005b34801561077357600080fd5b5061077c611695565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613126565b61172e565b005b3480156107b357600080fd5b506107bc611790565b6040516107c991906138c3565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906132f9565b61181e565b60405161080691906138c3565b60405180910390f35b34801561081b57600080fd5b50610824611977565b6040516108319190613b65565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906132b0565b61197d565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613093565b611a13565b60405161089791906138a8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c291906132b0565b611aa7565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613066565b611b3d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610965575061096482611c35565b5b9050919050565b610974611d17565b73ffffffffffffffffffffffffffffffffffffffff166109926114d1565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613a85565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610a1490613e6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090613e6e565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa282611d1f565b610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613a65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610b2990613e6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5590613e6e565b8015610ba25780601f10610b7757610100808354040283529160200191610ba2565b820191906000526020600020905b815481529060010190602001808311610b8557829003601f168201915b505050505081565b6000610bb58261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613ae5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c45611d17565b73ffffffffffffffffffffffffffffffffffffffff161480610c745750610c7381610c6e611d17565b611a13565b5b610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa906139c5565b60405180910390fd5b610cbd8383611d8b565b505050565b600d5481565b6000600880549050905090565b600e5481565b610cec610ce6611d17565b82611e44565b610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613b05565b60405180910390fd5b610d36838383611f22565b505050565b6000610d468361120f565b8210610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906138e5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610de8611d17565b73ffffffffffffffffffffffffffffffffffffffff16610e066114d1565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390613a85565b60405180910390fd5b6000610e666114d1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e899061380a565b60006040518083038185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610ed957600080fd5b50565b610ef78383836040518060200160405280600081525061172e565b505050565b60606000610f098361120f565b905060008167ffffffffffffffff811115610f2757610f26614036565b5b604051908082528060200260200182016040528015610f555781602001602082028036833780820191505090505b50905060005b82811015610f9f57610f6d8582610d3b565b828281518110610f8057610f7f614007565b5b6020026020010181815250508080610f9790613ed1565b915050610f5b565b508092505050919050565b610fb2611d17565b73ffffffffffffffffffffffffffffffffffffffff16610fd06114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613a85565b60405180910390fd5b80600d8190555050565b600061103a610cc8565b821061107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613b25565b60405180910390fd5b6008828154811061108f5761108e614007565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6110bc611d17565b73ffffffffffffffffffffffffffffffffffffffff166110da6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613a85565b60405180910390fd5b80600b9080519060200190611146929190612e7a565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613a05565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906139e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf611d17565b73ffffffffffffffffffffffffffffffffffffffff166112ed6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613a85565b60405180910390fd5b61134d600061217e565b565b60115481565b600061135f610cc8565b9050601260009054906101000a900460ff16156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613a25565b60405180910390fd5b6010548211156113c057600080fd5b60115482826113cf9190613ca3565b1115611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b45565b60405180910390fd5b6000600190505b8281116114465761143333828461142e9190613ca3565b612244565b808061143e90613ed1565b915050611417565b505050565b611453611d17565b73ffffffffffffffffffffffffffffffffffffffff166114716114d1565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613a85565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461150a90613e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461153690613e6e565b80156115835780601f1061155857610100808354040283529160200191611583565b820191906000526020600020905b81548152906001019060200180831161156657829003601f168201915b5050505050905090565b60105481565b600061159d610cc8565b9050601260009054906101000a900460ff16156115b957600080fd5b600082116115c657600080fd5b600e548211156115d557600080fd5b600f5482826115e49190613ca3565b11156115ef57600080fd5b6115f76114d1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116445781600d546116379190613d2a565b34101561164357600080fd5b5b6000600190505b82811161167a576116673382846116629190613ca3565b612244565b808061167290613ed1565b91505061164b565b505050565b61169161168a611d17565b8383612262565b5050565b61169d611d17565b73ffffffffffffffffffffffffffffffffffffffff166116bb6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613a85565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b61173f611739611d17565b83611e44565b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613b05565b60405180910390fd5b61178a848484846123cf565b50505050565b600c805461179d90613e6e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990613e6e565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b505050505081565b606061182982611d1f565b611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613ac5565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611916576013805461189190613e6e565b80601f01602080910402602001604051908101604052809291908181526020018280546118bd90613e6e565b801561190a5780601f106118df5761010080835404028352916020019161190a565b820191906000526020600020905b8154815290600101906020018083116118ed57829003601f168201915b50505050509050611972565b600061192061242b565b90506000815111611940576040518060200160405280600081525061196e565b8061194a846124bd565b600c60405160200161195e939291906137d9565b6040516020818303038152906040525b9150505b919050565b600f5481565b611985611d17565b73ffffffffffffffffffffffffffffffffffffffff166119a36114d1565b73ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613a85565b60405180910390fd5b80600c9080519060200190611a0f929190612e7a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aaf611d17565b73ffffffffffffffffffffffffffffffffffffffff16611acd6114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613a85565b60405180910390fd5b8060139080519060200190611b39929190612e7a565b5050565b611b45611d17565b73ffffffffffffffffffffffffffffffffffffffff16611b636114d1565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613925565b60405180910390fd5b611c328161217e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d0057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d105750611d0f8261261e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfe8361115d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e4f82611d1f565b611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e85906139a5565b60405180910390fd5b6000611e998361115d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0857508373ffffffffffffffffffffffffffffffffffffffff16611ef084610a97565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f195750611f188185611a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f428261115d565b73ffffffffffffffffffffffffffffffffffffffff1614611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90613aa5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90613965565b60405180910390fd5b612013838383612688565b61201e600082611d8b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206e9190613d84565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c59190613ca3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61225e82826040518060200160405280600081525061279c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613985565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c291906138a8565b60405180910390a3505050565b6123da848484611f22565b6123e6848484846127f7565b612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90613905565b60405180910390fd5b50505050565b6060600b805461243a90613e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461246690613e6e565b80156124b35780601f10612488576101008083540402835291602001916124b3565b820191906000526020600020905b81548152906001019060200180831161249657829003601f168201915b5050505050905090565b60606000821415612505576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612619565b600082905060005b6000821461253757808061252090613ed1565b915050600a826125309190613cf9565b915061250d565b60008167ffffffffffffffff81111561255357612552614036565b5b6040519080825280601f01601f1916602001820160405280156125855781602001600182028036833780820191505090505b5090505b600085146126125760018261259e9190613d84565b9150600a856125ad9190613f1a565b60306125b99190613ca3565b60f81b8183815181106125cf576125ce614007565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260b9190613cf9565b9450612589565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61269383838361298e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d6576126d181612993565b612715565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127145761271383826129dc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127585761275381612b49565b612797565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612796576127958282612c1a565b5b5b505050565b6127a68383612c99565b6127b360008484846127f7565b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613905565b60405180910390fd5b505050565b60006128188473ffffffffffffffffffffffffffffffffffffffff16612e67565b15612981578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612841611d17565b8786866040518563ffffffff1660e01b8152600401612863949392919061383a565b602060405180830381600087803b15801561287d57600080fd5b505af19250505080156128ae57506040513d601f19601f820116820180604052508101906128ab9190613283565b60015b612931573d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50600081511415612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090613905565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612986565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129e98461120f565b6129f39190613d84565b9050600060076000848152602001908152602001600020549050818114612ad8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b5d9190613d84565b9050600060096000848152602001908152602001600020549050600060088381548110612b8d57612b8c614007565b5b906000526020600020015490508060088381548110612baf57612bae614007565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bfe57612bfd613fd8565b5b6001900381819060005260206000200160009055905550505050565b6000612c258361120f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090613a45565b60405180910390fd5b612d1281611d1f565b15612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990613945565b60405180910390fd5b612d5e60008383612688565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dae9190613ca3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8690613e6e565b90600052602060002090601f016020900481019282612ea85760008555612eef565b82601f10612ec157805160ff1916838001178555612eef565b82800160010185558215612eef579182015b82811115612eee578251825591602001919060010190612ed3565b5b509050612efc9190612f00565b5090565b5b80821115612f19576000816000905550600101612f01565b5090565b6000612f30612f2b84613ba5565b613b80565b905082815260208101848484011115612f4c57612f4b61406a565b5b612f57848285613e2c565b509392505050565b6000612f72612f6d84613bd6565b613b80565b905082815260208101848484011115612f8e57612f8d61406a565b5b612f99848285613e2c565b509392505050565b600081359050612fb0816145d5565b92915050565b600081359050612fc5816145ec565b92915050565b600081359050612fda81614603565b92915050565b600081519050612fef81614603565b92915050565b600082601f83011261300a57613009614065565b5b813561301a848260208601612f1d565b91505092915050565b600082601f83011261303857613037614065565b5b8135613048848260208601612f5f565b91505092915050565b6000813590506130608161461a565b92915050565b60006020828403121561307c5761307b614074565b5b600061308a84828501612fa1565b91505092915050565b600080604083850312156130aa576130a9614074565b5b60006130b885828601612fa1565b92505060206130c985828601612fa1565b9150509250929050565b6000806000606084860312156130ec576130eb614074565b5b60006130fa86828701612fa1565b935050602061310b86828701612fa1565b925050604061311c86828701613051565b9150509250925092565b600080600080608085870312156131405761313f614074565b5b600061314e87828801612fa1565b945050602061315f87828801612fa1565b935050604061317087828801613051565b925050606085013567ffffffffffffffff8111156131915761319061406f565b5b61319d87828801612ff5565b91505092959194509250565b600080604083850312156131c0576131bf614074565b5b60006131ce85828601612fa1565b92505060206131df85828601612fb6565b9150509250929050565b60008060408385031215613200576131ff614074565b5b600061320e85828601612fa1565b925050602061321f85828601613051565b9150509250929050565b60006020828403121561323f5761323e614074565b5b600061324d84828501612fb6565b91505092915050565b60006020828403121561326c5761326b614074565b5b600061327a84828501612fcb565b91505092915050565b60006020828403121561329957613298614074565b5b60006132a784828501612fe0565b91505092915050565b6000602082840312156132c6576132c5614074565b5b600082013567ffffffffffffffff8111156132e4576132e361406f565b5b6132f084828501613023565b91505092915050565b60006020828403121561330f5761330e614074565b5b600061331d84828501613051565b91505092915050565b600061333283836137bb565b60208301905092915050565b61334781613db8565b82525050565b600061335882613c2c565b6133628185613c5a565b935061336d83613c07565b8060005b8381101561339e5781516133858882613326565b975061339083613c4d565b925050600181019050613371565b5085935050505092915050565b6133b481613dca565b82525050565b60006133c582613c37565b6133cf8185613c6b565b93506133df818560208601613e3b565b6133e881614079565b840191505092915050565b60006133fe82613c42565b6134088185613c87565b9350613418818560208601613e3b565b61342181614079565b840191505092915050565b600061343782613c42565b6134418185613c98565b9350613451818560208601613e3b565b80840191505092915050565b6000815461346a81613e6e565b6134748186613c98565b9450600182166000811461348f57600181146134a0576134d3565b60ff198316865281860193506134d3565b6134a985613c17565b60005b838110156134cb578154818901526001820191506020810190506134ac565b838801955050505b50505092915050565b60006134e9602b83613c87565b91506134f48261408a565b604082019050919050565b600061350c603283613c87565b9150613517826140d9565b604082019050919050565b600061352f602683613c87565b915061353a82614128565b604082019050919050565b6000613552601c83613c87565b915061355d82614177565b602082019050919050565b6000613575602483613c87565b9150613580826141a0565b604082019050919050565b6000613598601983613c87565b91506135a3826141ef565b602082019050919050565b60006135bb602c83613c87565b91506135c682614218565b604082019050919050565b60006135de603883613c87565b91506135e982614267565b604082019050919050565b6000613601602a83613c87565b915061360c826142b6565b604082019050919050565b6000613624602983613c87565b915061362f82614305565b604082019050919050565b6000613647600f83613c87565b915061365282614354565b602082019050919050565b600061366a602083613c87565b91506136758261437d565b602082019050919050565b600061368d602c83613c87565b9150613698826143a6565b604082019050919050565b60006136b0602083613c87565b91506136bb826143f5565b602082019050919050565b60006136d3602983613c87565b91506136de8261441e565b604082019050919050565b60006136f6602f83613c87565b91506137018261446d565b604082019050919050565b6000613719602183613c87565b9150613724826144bc565b604082019050919050565b600061373c600083613c7c565b91506137478261450b565b600082019050919050565b600061375f603183613c87565b915061376a8261450e565b604082019050919050565b6000613782602c83613c87565b915061378d8261455d565b604082019050919050565b60006137a5601283613c87565b91506137b0826145ac565b602082019050919050565b6137c481613e22565b82525050565b6137d381613e22565b82525050565b60006137e5828661342c565b91506137f1828561342c565b91506137fd828461345d565b9150819050949350505050565b60006138158261372f565b9150819050919050565b6000602082019050613834600083018461333e565b92915050565b600060808201905061384f600083018761333e565b61385c602083018661333e565b61386960408301856137ca565b818103606083015261387b81846133ba565b905095945050505050565b600060208201905081810360008301526138a0818461334d565b905092915050565b60006020820190506138bd60008301846133ab565b92915050565b600060208201905081810360008301526138dd81846133f3565b905092915050565b600060208201905081810360008301526138fe816134dc565b9050919050565b6000602082019050818103600083015261391e816134ff565b9050919050565b6000602082019050818103600083015261393e81613522565b9050919050565b6000602082019050818103600083015261395e81613545565b9050919050565b6000602082019050818103600083015261397e81613568565b9050919050565b6000602082019050818103600083015261399e8161358b565b9050919050565b600060208201905081810360008301526139be816135ae565b9050919050565b600060208201905081810360008301526139de816135d1565b9050919050565b600060208201905081810360008301526139fe816135f4565b9050919050565b60006020820190508181036000830152613a1e81613617565b9050919050565b60006020820190508181036000830152613a3e8161363a565b9050919050565b60006020820190508181036000830152613a5e8161365d565b9050919050565b60006020820190508181036000830152613a7e81613680565b9050919050565b60006020820190508181036000830152613a9e816136a3565b9050919050565b60006020820190508181036000830152613abe816136c6565b9050919050565b60006020820190508181036000830152613ade816136e9565b9050919050565b60006020820190508181036000830152613afe8161370c565b9050919050565b60006020820190508181036000830152613b1e81613752565b9050919050565b60006020820190508181036000830152613b3e81613775565b9050919050565b60006020820190508181036000830152613b5e81613798565b9050919050565b6000602082019050613b7a60008301846137ca565b92915050565b6000613b8a613b9b565b9050613b968282613ea0565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc057613bbf614036565b5b613bc982614079565b9050602081019050919050565b600067ffffffffffffffff821115613bf157613bf0614036565b5b613bfa82614079565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cae82613e22565b9150613cb983613e22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cee57613ced613f4b565b5b828201905092915050565b6000613d0482613e22565b9150613d0f83613e22565b925082613d1f57613d1e613f7a565b5b828204905092915050565b6000613d3582613e22565b9150613d4083613e22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7957613d78613f4b565b5b828202905092915050565b6000613d8f82613e22565b9150613d9a83613e22565b925082821015613dad57613dac613f4b565b5b828203905092915050565b6000613dc382613e02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e59578082015181840152602081019050613e3e565b83811115613e68576000848401525b50505050565b60006002820490506001821680613e8657607f821691505b60208210811415613e9a57613e99613fa9565b5b50919050565b613ea982614079565b810181811067ffffffffffffffff82111715613ec857613ec7614036565b5b80604052505050565b6000613edc82613e22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0f57613f0e613f4b565b5b600182019050919050565b6000613f2582613e22565b9150613f3083613e22565b925082613f4057613f3f613f7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173207061757365640000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652042414c4c53206c6566740000000000000000000000000000600082015250565b6145de81613db8565b81146145e957600080fd5b50565b6145f581613dca565b811461460057600080fd5b50565b61460c81613dd6565b811461461757600080fd5b50565b61462381613e22565b811461462e57600080fd5b5056fea2646970667358221220f981651030ea328d188810408a035a7a63f924f046f144f31144e9d1a28f020064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000008466964646c653344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546494433440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b76377939727337314d4361477a45626246757254515069332f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b76377939727337314d4361477a45626246757254515069332f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fiddle3D
Arg [1] : _symbol (string): FID3D
Arg [2] : _initBaseURI (string): ipfs://Qmf8dFVbYLiNbb5kmPGYoKv7y9rs71MCaGzEbbFurTQPi3/
Arg [3] : _initNotRevealedUri (string): ipfs://Qmf8dFVbYLiNbb5kmPGYoKv7y9rs71MCaGzEbbFurTQPi3/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 466964646c653344000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4649443344000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b763779
Arg [10] : 39727337314d4361477a45626246757254515069332f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d663864465662594c694e6262356b6d5047596f4b763779
Arg [13] : 39727337314d4361477a45626246757254515069332f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44483:3338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47593:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27319:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44885:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26842:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44628:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38906:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44665:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28069:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38574:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47673:145;;;:::i;:::-;;28479:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45722:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47025:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39096:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44852:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47361:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44822:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25454:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;44782:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46078:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47111:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25929:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44741:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45283:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27612:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46952:65;;;;;;;;;;;;;:::i;:::-;;28735:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44586:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46449:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44703:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47465:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27838:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47235:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38266:224;38368:4;38407:35;38392:50;;;:11;:50;;;;:90;;;;38446:36;38470:11;38446:23;:36::i;:::-;38392:90;38385:97;;38266:224;;;:::o;47593:73::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47654:6:::1;47645;;:15;;;;;;;;;;;;;;;;;;47593:73:::0;:::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;27423:16;27431:7;27423;:16::i;:::-;27415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27508:15;:24;27524:7;27508:24;;;;;;;;;;;;;;;;;;;;;27501:31;;27319:221;;;:::o;44885:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;26981:11;;:2;:11;;;;26973:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27081:5;27065:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27090:37;27107:5;27114:12;:10;:12::i;:::-;27090:16;:37::i;:::-;27065:62;27043:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;44628:32::-;;;;:::o;38906:113::-;38967:7;38994:10;:17;;;;38987:24;;38906:113;:::o;44665:33::-;;;;:::o;28069:339::-;28264:41;28283:12;:10;:12::i;:::-;28297:7;28264:18;:41::i;:::-;28256:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;:::-;28069:339;;;:::o;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:12;:19;38809:5;38796:19;;;;;;;;;;;;;;;:26;38816:5;38796:26;;;;;;;;;;;;38789:33;;38574:256;;;;:::o;47673:145::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47726:7:::1;47747;:5;:7::i;:::-;47739:21;;47768;47739:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47725:69;;;47809:2;47801:11;;;::::0;::::1;;47718:100;47673:145::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;:::-;28479:185;;;:::o;45722:348::-;45797:16;45825:23;45851:17;45861:6;45851:9;:17::i;:::-;45825:43;;45875:25;45917:15;45903:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45875:58;;45945:9;45940:103;45960:15;45956:1;:19;45940:103;;;46005:30;46025:6;46033:1;46005:19;:30::i;:::-;45991:8;46000:1;45991:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45977:3;;;;;:::i;:::-;;;;45940:103;;;;46056:8;46049:15;;;;45722:348;;;:::o;47025:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47091:8:::1;47084:4;:15;;;;47025:80:::0;:::o;39096:233::-;39171:7;39207:30;:28;:30::i;:::-;39199:5;:38;39191:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;;39297:24;;39096:233;;;:::o;44852:28::-;;;;;;;;;;;;;:::o;47361:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47442:11:::1;47432:7;:21;;;;;;;;;;;;:::i;:::-;;47361:98:::0;:::o;44822:25::-;;;;;;;;;;;;;:::o;25454:239::-;25526:7;25546:13;25562:7;:16;25570:7;25562:16;;;;;;;;;;;;;;;;;;;;;25546:32;;25614:1;25597:19;;:5;:19;;;;25589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25680:5;25673:12;;;25454:239;;;:::o;25184:208::-;25256:7;25301:1;25284:19;;:5;:19;;;;25276:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25368:9;:16;25378:5;25368:16;;;;;;;;;;;;;;;;25361:23;;25184: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;44782:33::-;;;;:::o;46078:365::-;46133:14;46150:13;:11;:13::i;:::-;46133:30;;46181:6;;;;;;;;;;;46180:7;46172:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;46239:17;;46224:11;:32;;46216:41;;;;;;46298:12;;46283:11;46274:6;:20;;;;:::i;:::-;:36;;46266:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46349:9;46361:1;46349:13;;46344:94;46369:11;46364:1;:16;46344:94;;46397:33;46407:10;46428:1;46419:6;:10;;;;:::i;:::-;46397:9;:33::i;:::-;46382:3;;;;;:::i;:::-;;;;46344:94;;;;46124:319;46078:365;:::o;47111:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47204:17:::1;47188:13;:33;;;;47111:116:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25929:104;:::o;44741:36::-;;;;:::o;45283:433::-;45340:14;45357:13;:11;:13::i;:::-;45340:30;;45386:6;;;;;;;;;;;45385:7;45377:16;;;;;;45422:1;45408:11;:15;45400:24;;;;;;45454:13;;45439:11;:28;;45431:37;;;;;;45507:9;;45492:11;45483:6;:20;;;;:::i;:::-;:33;;45475:42;;;;;;45544:7;:5;:7::i;:::-;45530:21;;:10;:21;;;45526:84;;45590:11;45583:4;;:18;;;;:::i;:::-;45570:9;:31;;45562:40;;;;;;45526:84;45623:9;45635:1;45623:13;;45618:93;45643:11;45638:1;:16;45618:93;;45670:33;45680:10;45701:1;45692:6;:10;;;;:::i;:::-;45670:9;:33::i;:::-;45656:3;;;;;:::i;:::-;;;;45618:93;;;;45333:383;45283:433;:::o;27612:155::-;27707:52;27726:12;:10;:12::i;:::-;27740:8;27750;27707:18;:52::i;:::-;27612:155;;:::o;46952:65::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47007:4:::1;46996:8;;:15;;;;;;;;;;;;;;;;;;46952:65::o:0;28735:328::-;28910:41;28929:12;:10;:12::i;:::-;28943:7;28910:18;:41::i;:::-;28902:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;44586:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46449:497::-;46547:13;46588:16;46596:7;46588;:16::i;:::-;46572:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46697:5;46685:17;;:8;;;;;;;;;;;:17;;;46682:62;;;46722:14;46715:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46682:62;46752:28;46783:10;:8;:10::i;:::-;46752:41;;46838:1;46813:14;46807:28;:32;:133;;;;;;;;;;;;;;;;;46875:14;46891:18;:7;:16;:18::i;:::-;46911:13;46858:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46807:133;46800:140;;;46449:497;;;;:::o;44703:31::-;;;;:::o;47465:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47564:17:::1;47548:13;:33;;;;;;;;;;;;:::i;:::-;;47465:122:::0;:::o;27838:164::-;27935:4;27959:18;:25;27978:5;27959:25;;;;;;;;;;;;;;;:35;27985:8;27959:35;;;;;;;;;;;;;;;;;;;;;;;;;27952:42;;27838:164;;;;:::o;47235:120::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47334:15:::1;47317:14;:32;;;;;;;;;;;;:::i;:::-;;47235:120:::0;:::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;24815:305::-;24917:4;24969:25;24954:40;;;:11;:40;;;;:105;;;;25026:33;25011:48;;;:11;:48;;;;24954:105;:158;;;;25076:36;25100:11;25076:23;:36::i;:::-;24954:158;24934:178;;24815:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30573:127::-;30638:4;30690:1;30662:30;;:7;:16;30670:7;30662:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30655:37;;30573:127;;;:::o;34555:174::-;34657:2;34630:15;:24;34646:7;34630:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34713:7;34709:2;34675:46;;34684:23;34699:7;34684:14;:23::i;:::-;34675:46;;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30985:16;30993:7;30985;:16::i;:::-;30977:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;31119:16;;:7;:16;;;:51;;;;31163:7;31139:31;;:20;31151:7;31139:11;:20::i;:::-;:31;;;31119:51;:87;;;;31174:32;31191:5;31198:7;31174:16;:32::i;:::-;31119:87;31111:96;;;30867:348;;;;:::o;33859:578::-;34018:4;33991:31;;:23;34006:7;33991:14;:23::i;:::-;:31;;;33983:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34101:1;34087:16;;:2;:16;;;;34079:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;34322:1;34303:9;:15;34313:4;34303:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34351:1;34334:9;:13;34344:2;34334:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34382:2;34363:7;:16;34371:7;34363:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34421:7;34417:2;34402:27;;34411:4;34402:27;;;;;;;;;;;;33859:578;;;:::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;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;:::-;31557:110;;:::o;34871:315::-;35026:8;35017:17;;:5;:17;;;;35009:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35113:8;35075:18;:25;35094:5;35075:25;;;;;;;;;;;;;;;:35;35101:8;35075:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35159:8;35137:41;;35152:5;35137:41;;;35169:8;35137:41;;;;;;:::i;:::-;;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29945:315;;;;:::o;45175:102::-;45235:13;45264:7;45257:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45175:102;:::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;16511:157::-;16596:4;16635:25;16620:40;;;:11;:40;;;;16613:47;;16511:157;;;:::o;39942:589::-;40086:45;40113:4;40119:2;40123:7;40086:26;:45::i;:::-;40164:1;40148:18;;:4;:18;;;40144:187;;;40183:40;40215:7;40183:31;:40::i;:::-;40144:187;;;40253:2;40245:10;;:4;:10;;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;40241:90;40144:187;40359:1;40345:16;;:2;:16;;;40341:183;;;40378:45;40415:7;40378:36;:45::i;:::-;40341:183;;;40451:4;40445:10;;:2;:10;;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;:::-;40441:83;40341:183;39942:589;;;:::o;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:321;;;:::o;35751:799::-;35906:4;35927:15;:2;:13;;;:15::i;:::-;35923:620;;;35979:2;35963:36;;;36000:12;:10;:12::i;:::-;36014:4;36020:7;36029:5;35963:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36222:1;36205:6;:13;:18;36201:272;;;36248:60;;;;;;;;;;:::i;:::-;;;;;;;;36201:272;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;36096:41;;;36086:51;;;:6;:51;;;;36079:58;;;;;35923:620;36527:4;36520:11;;35751:799;;;;;;;:::o;37122:126::-;;;;:::o;41254:164::-;41358:10;:17;;;;41331:15;:24;41347:7;41331:24;;;;;;;;;;;:44;;;;41386:10;41402:7;41386:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41254:164;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42311:51;;42373:18;42394:17;:26;42412:7;42394:26;;;;;;;;;;;;42373:47;;42541:14;42527:10;:28;42523:328;;42572:19;42594:12;:18;42607:4;42594:18;;;;;;;;;;;;;;;:34;42613:14;42594:34;;;;;;;;;;;;42572:56;;42678:11;42645:12;:18;42658:4;42645:18;;;;;;;;;;;;;;;:30;42664:10;42645:30;;;;;;;;;;;:44;;;;42795:10;42762:17;:30;42780:11;42762:30;;;;;;;;;;;:43;;;;42557:294;42523:328;42947:17;:26;42965:7;42947:26;;;;;;;;;;;42940:33;;;42991:12;:18;43004:4;42991:18;;;;;;;;;;;;;;;:34;43010:14;42991:34;;;;;;;;;;;42984:41;;;42126:907;;42045:988;;:::o;43328:1079::-;43581:22;43626:1;43606:10;:17;;;;:21;;;;:::i;:::-;43581:46;;43638:18;43659:15;:24;43675:7;43659:24;;;;;;;;;;;;43638:45;;44010:19;44032:10;44043:14;44032:26;;;;;;;;:::i;:::-;;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44207:10;44176:15;:28;44192:11;44176:28;;;;;;;;;;;:41;;;;44348:15;:24;44364:7;44348:24;;;;;;;;;;;44341:31;;;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;40917:37;;40992:7;40965:12;:16;40978:2;40965:16;;;;;;;;;;;;;;;:24;40982:6;40965:24;;;;;;;;;;;:34;;;;41039:6;41010:17;:26;41028:7;41010:26;;;;;;;;;;;:35;;;;40906:147;40832:221;;:::o;32551:382::-;32645:1;32631:16;;:2;:16;;;;32623:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32704:16;32712:7;32704;:16::i;:::-;32703:17;32695:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;32841:1;32824:9;:13;32834:2;32824:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32872:2;32853:7;:16;32861:7;32853:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32917:7;32913:2;32892:33;;32909:1;32892:33;;;;;;;;;;;;32551:382;;:::o;6367:387::-;6427:4;6635:12;6702:7;6690:20;6682:28;;6745:1;6738:4;:8;6731:15;;;6367:387;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:398::-;17156:3;17177:83;17258:1;17253:3;17177:83;:::i;:::-;17170:90;;17269:93;17358:3;17269:93;:::i;:::-;17387:1;17382:3;17378:11;17371:18;;16997:398;;;:::o;17401:366::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:108::-;18594:24;18612:5;18594:24;:::i;:::-;18589:3;18582:37;18517:108;;:::o;18631:118::-;18718:24;18736:5;18718:24;:::i;:::-;18713:3;18706:37;18631:118;;:::o;18755:589::-;18980:3;19002:95;19093:3;19084:6;19002:95;:::i;:::-;18995:102;;19114:95;19205:3;19196:6;19114:95;:::i;:::-;19107:102;;19226:92;19314:3;19305:6;19226:92;:::i;:::-;19219:99;;19335:3;19328:10;;18755:589;;;;;;:::o;19350:379::-;19534:3;19556:147;19699:3;19556:147;:::i;:::-;19549:154;;19720:3;19713:10;;19350:379;;;:::o;19735:222::-;19828:4;19866:2;19855:9;19851:18;19843:26;;19879:71;19947:1;19936:9;19932:17;19923:6;19879:71;:::i;:::-;19735:222;;;;:::o;19963:640::-;20158:4;20196:3;20185:9;20181:19;20173:27;;20210:71;20278:1;20267:9;20263:17;20254:6;20210:71;:::i;:::-;20291:72;20359:2;20348:9;20344:18;20335:6;20291:72;:::i;:::-;20373;20441:2;20430:9;20426:18;20417:6;20373:72;:::i;:::-;20492:9;20486:4;20482:20;20477:2;20466:9;20462:18;20455:48;20520:76;20591:4;20582:6;20520:76;:::i;:::-;20512:84;;19963:640;;;;;;;:::o;20609:373::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:108;20970:4;20961:6;20867:108;:::i;:::-;20859:116;;20609:373;;;;:::o;20988:210::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21126:65;21188:1;21177:9;21173:17;21164:6;21126:65;:::i;:::-;20988:210;;;;:::o;21204:313::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:78;21505:4;21496:6;21432:78;:::i;:::-;21424:86;;21204:313;;;;:::o;21523:419::-;21689:4;21727:2;21716:9;21712:18;21704:26;;21776:9;21770:4;21766:20;21762:1;21751:9;21747:17;21740:47;21804:131;21930:4;21804:131;:::i;:::-;21796:139;;21523:419;;;:::o;21948:::-;22114:4;22152:2;22141:9;22137:18;22129:26;;22201:9;22195:4;22191:20;22187:1;22176:9;22172:17;22165:47;22229:131;22355:4;22229:131;:::i;:::-;22221:139;;21948:419;;;:::o;22373:::-;22539:4;22577:2;22566:9;22562:18;22554:26;;22626:9;22620:4;22616:20;22612:1;22601:9;22597:17;22590:47;22654:131;22780:4;22654:131;:::i;:::-;22646:139;;22373:419;;;:::o;22798:::-;22964:4;23002:2;22991:9;22987:18;22979:26;;23051:9;23045:4;23041:20;23037:1;23026:9;23022:17;23015:47;23079:131;23205:4;23079:131;:::i;:::-;23071:139;;22798:419;;;:::o;23223:::-;23389:4;23427:2;23416:9;23412:18;23404:26;;23476:9;23470:4;23466:20;23462:1;23451:9;23447:17;23440:47;23504:131;23630:4;23504:131;:::i;:::-;23496:139;;23223:419;;;:::o;23648:::-;23814:4;23852:2;23841:9;23837:18;23829:26;;23901:9;23895:4;23891:20;23887:1;23876:9;23872:17;23865:47;23929:131;24055:4;23929:131;:::i;:::-;23921:139;;23648:419;;;:::o;24073:::-;24239:4;24277:2;24266:9;24262:18;24254:26;;24326:9;24320:4;24316:20;24312:1;24301:9;24297:17;24290:47;24354:131;24480:4;24354:131;:::i;:::-;24346:139;;24073:419;;;:::o;24498:::-;24664:4;24702:2;24691:9;24687:18;24679:26;;24751:9;24745:4;24741:20;24737:1;24726:9;24722:17;24715:47;24779:131;24905:4;24779:131;:::i;:::-;24771:139;;24498:419;;;:::o;24923:::-;25089:4;25127:2;25116:9;25112:18;25104:26;;25176:9;25170:4;25166:20;25162:1;25151:9;25147:17;25140:47;25204:131;25330:4;25204:131;:::i;:::-;25196:139;;24923:419;;;:::o;25348:::-;25514:4;25552:2;25541:9;25537:18;25529:26;;25601:9;25595:4;25591:20;25587:1;25576:9;25572:17;25565:47;25629:131;25755:4;25629:131;:::i;:::-;25621:139;;25348:419;;;:::o;25773:::-;25939:4;25977:2;25966:9;25962:18;25954:26;;26026:9;26020:4;26016:20;26012:1;26001:9;25997:17;25990:47;26054:131;26180:4;26054:131;:::i;:::-;26046:139;;25773:419;;;:::o;26198:::-;26364:4;26402:2;26391:9;26387:18;26379:26;;26451:9;26445:4;26441:20;26437:1;26426:9;26422:17;26415:47;26479:131;26605:4;26479:131;:::i;:::-;26471:139;;26198:419;;;:::o;26623:::-;26789:4;26827:2;26816:9;26812:18;26804:26;;26876:9;26870:4;26866:20;26862:1;26851:9;26847:17;26840:47;26904:131;27030:4;26904:131;:::i;:::-;26896:139;;26623:419;;;:::o;27048:::-;27214:4;27252:2;27241:9;27237:18;27229:26;;27301:9;27295:4;27291:20;27287:1;27276:9;27272:17;27265:47;27329:131;27455:4;27329:131;:::i;:::-;27321:139;;27048:419;;;:::o;27473:::-;27639:4;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27473:419;;;:::o;27898:::-;28064:4;28102:2;28091:9;28087:18;28079:26;;28151:9;28145:4;28141:20;28137:1;28126:9;28122:17;28115:47;28179:131;28305:4;28179:131;:::i;:::-;28171:139;;27898:419;;;:::o;28323:::-;28489:4;28527:2;28516:9;28512:18;28504:26;;28576:9;28570:4;28566:20;28562:1;28551:9;28547:17;28540:47;28604:131;28730:4;28604:131;:::i;:::-;28596:139;;28323:419;;;:::o;28748:::-;28914:4;28952:2;28941:9;28937:18;28929:26;;29001:9;28995:4;28991:20;28987:1;28976:9;28972:17;28965:47;29029:131;29155:4;29029:131;:::i;:::-;29021:139;;28748:419;;;:::o;29173:::-;29339:4;29377:2;29366:9;29362:18;29354:26;;29426:9;29420:4;29416:20;29412:1;29401:9;29397:17;29390:47;29454:131;29580:4;29454:131;:::i;:::-;29446:139;;29173:419;;;:::o;29598:::-;29764:4;29802:2;29791:9;29787:18;29779:26;;29851:9;29845:4;29841:20;29837:1;29826:9;29822:17;29815:47;29879:131;30005:4;29879:131;:::i;:::-;29871:139;;29598:419;;;:::o;30023:222::-;30116:4;30154:2;30143:9;30139:18;30131:26;;30167:71;30235:1;30224:9;30220:17;30211:6;30167:71;:::i;:::-;30023:222;;;;:::o;30251:129::-;30285:6;30312:20;;:::i;:::-;30302:30;;30341:33;30369:4;30361:6;30341:33;:::i;:::-;30251:129;;;:::o;30386:75::-;30419:6;30452:2;30446:9;30436:19;;30386:75;:::o;30467:307::-;30528:4;30618:18;30610:6;30607:30;30604:56;;;30640:18;;:::i;:::-;30604:56;30678:29;30700:6;30678:29;:::i;:::-;30670:37;;30762:4;30756;30752:15;30744:23;;30467:307;;;:::o;30780:308::-;30842:4;30932:18;30924:6;30921:30;30918:56;;;30954:18;;:::i;:::-;30918:56;30992:29;31014:6;30992:29;:::i;:::-;30984:37;;31076:4;31070;31066:15;31058:23;;30780:308;;;:::o;31094:132::-;31161:4;31184:3;31176:11;;31214:4;31209:3;31205:14;31197:22;;31094:132;;;:::o;31232:141::-;31281:4;31304:3;31296:11;;31327:3;31324:1;31317:14;31361:4;31358:1;31348:18;31340:26;;31232:141;;;:::o;31379:114::-;31446:6;31480:5;31474:12;31464:22;;31379:114;;;:::o;31499:98::-;31550:6;31584:5;31578:12;31568:22;;31499:98;;;:::o;31603:99::-;31655:6;31689:5;31683:12;31673:22;;31603:99;;;:::o;31708:113::-;31778:4;31810;31805:3;31801:14;31793:22;;31708:113;;;:::o;31827:184::-;31926:11;31960:6;31955:3;31948:19;32000:4;31995:3;31991:14;31976:29;;31827:184;;;;:::o;32017:168::-;32100:11;32134:6;32129:3;32122:19;32174:4;32169:3;32165:14;32150:29;;32017:168;;;;:::o;32191:147::-;32292:11;32329:3;32314:18;;32191:147;;;;:::o;32344:169::-;32428:11;32462:6;32457:3;32450:19;32502:4;32497:3;32493:14;32478:29;;32344:169;;;;:::o;32519:148::-;32621:11;32658:3;32643:18;;32519:148;;;;:::o;32673:305::-;32713:3;32732:20;32750:1;32732:20;:::i;:::-;32727:25;;32766:20;32784:1;32766:20;:::i;:::-;32761:25;;32920:1;32852:66;32848:74;32845:1;32842:81;32839:107;;;32926:18;;:::i;:::-;32839:107;32970:1;32967;32963:9;32956:16;;32673:305;;;;:::o;32984:185::-;33024:1;33041:20;33059:1;33041:20;:::i;:::-;33036:25;;33075:20;33093:1;33075:20;:::i;:::-;33070:25;;33114:1;33104:35;;33119:18;;:::i;:::-;33104:35;33161:1;33158;33154:9;33149:14;;32984:185;;;;:::o;33175:348::-;33215:7;33238:20;33256:1;33238:20;:::i;:::-;33233:25;;33272:20;33290:1;33272:20;:::i;:::-;33267:25;;33460:1;33392:66;33388:74;33385:1;33382:81;33377:1;33370:9;33363:17;33359:105;33356:131;;;33467:18;;:::i;:::-;33356:131;33515:1;33512;33508:9;33497:20;;33175:348;;;;:::o;33529:191::-;33569:4;33589:20;33607:1;33589:20;:::i;:::-;33584:25;;33623:20;33641:1;33623:20;:::i;:::-;33618:25;;33662:1;33659;33656:8;33653:34;;;33667:18;;:::i;:::-;33653:34;33712:1;33709;33705:9;33697:17;;33529:191;;;;:::o;33726:96::-;33763:7;33792:24;33810:5;33792:24;:::i;:::-;33781:35;;33726:96;;;:::o;33828:90::-;33862:7;33905:5;33898:13;33891:21;33880:32;;33828:90;;;:::o;33924:149::-;33960:7;34000:66;33993:5;33989:78;33978:89;;33924:149;;;:::o;34079:126::-;34116:7;34156:42;34149:5;34145:54;34134:65;;34079:126;;;:::o;34211:77::-;34248:7;34277:5;34266:16;;34211:77;;;:::o;34294:154::-;34378:6;34373:3;34368;34355:30;34440:1;34431:6;34426:3;34422:16;34415:27;34294:154;;;:::o;34454:307::-;34522:1;34532:113;34546:6;34543:1;34540:13;34532:113;;;34631:1;34626:3;34622:11;34616:18;34612:1;34607:3;34603:11;34596:39;34568:2;34565:1;34561:10;34556:15;;34532:113;;;34663:6;34660:1;34657:13;34654:101;;;34743:1;34734:6;34729:3;34725:16;34718:27;34654:101;34503:258;34454:307;;;:::o;34767:320::-;34811:6;34848:1;34842:4;34838:12;34828:22;;34895:1;34889:4;34885:12;34916:18;34906:81;;34972:4;34964:6;34960:17;34950:27;;34906:81;35034:2;35026:6;35023:14;35003:18;35000:38;34997:84;;;35053:18;;:::i;:::-;34997:84;34818:269;34767:320;;;:::o;35093:281::-;35176:27;35198:4;35176:27;:::i;:::-;35168:6;35164:40;35306:6;35294:10;35291:22;35270:18;35258:10;35255:34;35252:62;35249:88;;;35317:18;;:::i;:::-;35249:88;35357:10;35353:2;35346:22;35136:238;35093:281;;:::o;35380:233::-;35419:3;35442:24;35460:5;35442:24;:::i;:::-;35433:33;;35488:66;35481:5;35478:77;35475:103;;;35558:18;;:::i;:::-;35475:103;35605:1;35598:5;35594:13;35587:20;;35380:233;;;:::o;35619:176::-;35651:1;35668:20;35686:1;35668:20;:::i;:::-;35663:25;;35702:20;35720:1;35702:20;:::i;:::-;35697:25;;35741:1;35731:35;;35746:18;;:::i;:::-;35731:35;35787:1;35784;35780:9;35775:14;;35619:176;;;;:::o;35801:180::-;35849:77;35846:1;35839:88;35946:4;35943:1;35936:15;35970:4;35967:1;35960:15;35987:180;36035:77;36032:1;36025:88;36132:4;36129:1;36122:15;36156:4;36153:1;36146:15;36173:180;36221:77;36218:1;36211:88;36318:4;36315:1;36308:15;36342:4;36339:1;36332:15;36359:180;36407:77;36404:1;36397:88;36504:4;36501:1;36494:15;36528:4;36525:1;36518:15;36545:180;36593:77;36590:1;36583:88;36690:4;36687:1;36680:15;36714:4;36711:1;36704:15;36731:180;36779:77;36776:1;36769:88;36876:4;36873:1;36866:15;36900:4;36897:1;36890:15;36917:117;37026:1;37023;37016:12;37040:117;37149:1;37146;37139:12;37163:117;37272:1;37269;37262:12;37286:117;37395:1;37392;37385:12;37409:102;37450:6;37501:2;37497:7;37492:2;37485:5;37481:14;37477:28;37467:38;;37409:102;;;:::o;37517:230::-;37657:34;37653:1;37645:6;37641:14;37634:58;37726:13;37721:2;37713:6;37709:15;37702:38;37517:230;:::o;37753:237::-;37893:34;37889:1;37881:6;37877:14;37870:58;37962:20;37957:2;37949:6;37945:15;37938:45;37753:237;:::o;37996:225::-;38136:34;38132:1;38124:6;38120:14;38113:58;38205:8;38200:2;38192:6;38188:15;38181:33;37996:225;:::o;38227:178::-;38367:30;38363:1;38355:6;38351:14;38344:54;38227:178;:::o;38411:223::-;38551:34;38547:1;38539:6;38535:14;38528:58;38620:6;38615:2;38607:6;38603:15;38596:31;38411:223;:::o;38640:175::-;38780:27;38776:1;38768:6;38764:14;38757:51;38640:175;:::o;38821:231::-;38961:34;38957:1;38949:6;38945:14;38938:58;39030:14;39025:2;39017:6;39013:15;39006:39;38821:231;:::o;39058:243::-;39198:34;39194:1;39186:6;39182:14;39175:58;39267:26;39262:2;39254:6;39250:15;39243:51;39058:243;:::o;39307:229::-;39447:34;39443:1;39435:6;39431:14;39424:58;39516:12;39511:2;39503:6;39499:15;39492:37;39307:229;:::o;39542:228::-;39682:34;39678:1;39670:6;39666:14;39659:58;39751:11;39746:2;39738:6;39734:15;39727:36;39542:228;:::o;39776:165::-;39916:17;39912:1;39904:6;39900:14;39893:41;39776:165;:::o;39947:182::-;40087:34;40083:1;40075:6;40071:14;40064:58;39947:182;:::o;40135:231::-;40275:34;40271:1;40263:6;40259:14;40252:58;40344:14;40339:2;40331:6;40327:15;40320:39;40135:231;:::o;40372:182::-;40512:34;40508:1;40500:6;40496:14;40489:58;40372:182;:::o;40560:228::-;40700:34;40696:1;40688:6;40684:14;40677:58;40769:11;40764:2;40756:6;40752:15;40745:36;40560:228;:::o;40794:234::-;40934:34;40930:1;40922:6;40918:14;40911:58;41003:17;40998:2;40990:6;40986:15;40979:42;40794:234;:::o;41034:220::-;41174:34;41170:1;41162:6;41158:14;41151:58;41243:3;41238:2;41230:6;41226:15;41219:28;41034:220;:::o;41260:114::-;;:::o;41380:236::-;41520:34;41516:1;41508:6;41504:14;41497:58;41589:19;41584:2;41576:6;41572:15;41565:44;41380:236;:::o;41622:231::-;41762:34;41758:1;41750:6;41746:14;41739:58;41831:14;41826:2;41818:6;41814:15;41807:39;41622:231;:::o;41859:168::-;41999:20;41995:1;41987:6;41983:14;41976:44;41859:168;:::o;42033:122::-;42106:24;42124:5;42106:24;:::i;:::-;42099:5;42096:35;42086:63;;42145:1;42142;42135:12;42086:63;42033:122;:::o;42161:116::-;42231:21;42246:5;42231:21;:::i;:::-;42224:5;42221:32;42211:60;;42267:1;42264;42257:12;42211:60;42161:116;:::o;42283:120::-;42355:23;42372:5;42355:23;:::i;:::-;42348:5;42345:34;42335:62;;42393:1;42390;42383:12;42335:62;42283:120;:::o;42409:122::-;42482:24;42500:5;42482:24;:::i;:::-;42475:5;42472:35;42462:63;;42521:1;42518;42511:12;42462:63;42409:122;:::o

Swarm Source

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