ETH Price: $2,903.61 (+2.90%)
 

Overview

Max Total Supply

410

Holders

181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2
0x3de7bf799df670855235445874007b555fd590e2
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:
RoboVerse

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/utils/introspection/ERC165.sol





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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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



pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/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/RoboVerse.sol

pragma solidity ^0.8.0;

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

  string private baseURI;
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 3500;
  uint256 public maxMintAmount = 20;
  
  bool public paused = false;

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

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

    // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    if (msg.sender != owner()){
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    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 tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : "";
  }
  
  function airDrop(address to, uint256 tokenId) public  onlyOwner {
        safeTransferFrom(address (msg.sender),to,tokenId);
  }


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

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

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


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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"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":[{"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":"_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":"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"}]

608060405266b1a2bc2ec50000600c55610dac600d556014600e55600f805460ff191690553480156200003157600080fd5b5060405162002838380380620028388339810160408190526200005491620002d2565b8251839083906200006d90600090602085019062000181565b5080516200008390600190602084019062000181565b505050620000a06200009a620000b460201b60201c565b620000b8565b620000ab816200010a565b505050620003e7565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000114620000b4565b6001600160a01b03166200012762000172565b6001600160a01b031614620001595760405162461bcd60e51b815260040162000150906200035f565b60405180910390fd5b80516200016e90600b90602084019062000181565b5050565b600a546001600160a01b031690565b8280546200018f9062000394565b90600052602060002090601f016020900481019282620001b35760008555620001fe565b82601f10620001ce57805160ff1916838001178555620001fe565b82800160010185558215620001fe579182015b82811115620001fe578251825591602001919060010190620001e1565b506200020c92915062000210565b5090565b5b808211156200020c576000815560010162000211565b600082601f83011262000238578081fd5b81516001600160401b0380821115620002555762000255620003d1565b6040516020601f8401601f19168201810183811183821017156200027d576200027d620003d1565b604052838252858401810187101562000294578485fd5b8492505b83831015620002b7578583018101518284018201529182019162000298565b83831115620002c857848185840101525b5095945050505050565b600080600060608486031215620002e7578283fd5b83516001600160401b0380821115620002fe578485fd5b6200030c8783880162000227565b9450602086015191508082111562000322578384fd5b620003308783880162000227565b9350604086015191508082111562000346578283fd5b50620003558682870162000227565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003a957607f821691505b60208210811415620003cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61244180620003f76000396000f3fe6080604052600436106101d85760003560e01c80634f6ccce71161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461050c578063d5abeb011461052c578063e985e9c514610541578063f2fde38b14610561576101d8565b806395d89b41146104a4578063a0712d68146104b9578063a22cb465146104cc578063b88d4fde146104ec576101d8565b806370a08231116100d157806370a082311461043a578063715018a61461045a5780637f00c7a61461046f5780638da5cb5b1461048f576101d8565b80634f6ccce7146103c557806355f804b3146103e55780635c975abb146104055780636352211e1461041a576101d8565b806318160ddd1161017a5780633ccfd60b116101495780633ccfd60b1461035057806342842e0e14610358578063438b63001461037857806344a0d68a146103a5576101d8565b806318160ddd146102e6578063239c70ae146102fb57806323b872dd146103105780632f745c5914610330576101d8565b806306fdde03116101b657806306fdde0314610255578063081812fc14610277578063095ea7b3146102a457806313faede6146102c4576101d8565b806301ffc9a7146101dd57806302329a2914610213578063045f785014610235575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b07565b610581565b60405161020a9190611c90565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004611aed565b6105ae565b005b34801561024157600080fd5b50610233610250366004611ac4565b610609565b34801561026157600080fd5b5061026a610657565b60405161020a9190611c9b565b34801561028357600080fd5b50610297610292366004611b85565b6106e9565b60405161020a9190611bfb565b3480156102b057600080fd5b506102336102bf366004611ac4565b61072c565b3480156102d057600080fd5b506102d96107c4565b60405161020a91906122b2565b3480156102f257600080fd5b506102d96107ca565b34801561030757600080fd5b506102d96107d0565b34801561031c57600080fd5b5061023361032b3660046119e7565b6107d6565b34801561033c57600080fd5b506102d961034b366004611ac4565b61080e565b610233610860565b34801561036457600080fd5b506102336103733660046119e7565b61090b565b34801561038457600080fd5b5061039861039336600461199b565b610926565b60405161020a9190611c4c565b3480156103b157600080fd5b506102336103c0366004611b85565b6109e4565b3480156103d157600080fd5b506102d96103e0366004611b85565b610a28565b3480156103f157600080fd5b50610233610400366004611b3f565b610a83565b34801561041157600080fd5b506101fd610ad5565b34801561042657600080fd5b50610297610435366004611b85565b610ade565b34801561044657600080fd5b506102d961045536600461199b565b610b13565b34801561046657600080fd5b50610233610b57565b34801561047b57600080fd5b5061023361048a366004611b85565b610ba2565b34801561049b57600080fd5b50610297610be6565b3480156104b057600080fd5b5061026a610bf5565b6102336104c7366004611b85565b610c04565b3480156104d857600080fd5b506102336104e7366004611a9b565b610d1c565b3480156104f857600080fd5b50610233610507366004611a22565b610dea565b34801561051857600080fd5b5061026a610527366004611b85565b610e29565b34801561053857600080fd5b506102d9610eac565b34801561054d57600080fd5b506101fd61055c3660046119b5565b610eb2565b34801561056d57600080fd5b5061023361057c36600461199b565b610ee0565b60006001600160e01b0319821663780e9d6360e01b14806105a657506105a682610f4e565b90505b919050565b6105b6610f8e565b6001600160a01b03166105c7610be6565b6001600160a01b0316146105f65760405162461bcd60e51b81526004016105ed90612074565b60405180910390fd5b600f805460ff1916911515919091179055565b610611610f8e565b6001600160a01b0316610622610be6565b6001600160a01b0316146106485760405162461bcd60e51b81526004016105ed90612074565b61065333838361090b565b5050565b60606000805461066690612349565b80601f016020809104026020016040519081016040528092919081815260200182805461069290612349565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f482610f92565b6107105760405162461bcd60e51b81526004016105ed90612028565b506000908152600460205260409020546001600160a01b031690565b600061073782610ade565b9050806001600160a01b0316836001600160a01b0316141561076b5760405162461bcd60e51b81526004016105ed90612171565b806001600160a01b031661077d610f8e565b6001600160a01b0316148061079957506107998161055c610f8e565b6107b55760405162461bcd60e51b81526004016105ed90611e8f565b6107bf8383610faf565b505050565b600c5481565b60085490565b600e5481565b6107e76107e1610f8e565b8261101d565b6108035760405162461bcd60e51b81526004016105ed906121de565b6107bf8383836110a2565b600061081983610b13565b82106108375760405162461bcd60e51b81526004016105ed90611cae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610868610f8e565b6001600160a01b0316610879610be6565b6001600160a01b03161461089f5760405162461bcd60e51b81526004016105ed90612074565b6000336001600160a01b0316476040516108b890611bf8565b60006040518083038185875af1925050503d80600081146108f5576040519150601f19603f3d011682016040523d82523d6000602084013e6108fa565b606091505b505090508061090857600080fd5b50565b6107bf83838360405180602001604052806000815250610dea565b6060600061093383610b13565b905060008167ffffffffffffffff81111561095e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610987578160200160208202803683370190505b50905060005b828110156109dc5761099f858261080e565b8282815181106109bf57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109d481612384565b91505061098d565b509392505050565b6109ec610f8e565b6001600160a01b03166109fd610be6565b6001600160a01b031614610a235760405162461bcd60e51b81526004016105ed90612074565b600c55565b6000610a326107ca565b8210610a505760405162461bcd60e51b81526004016105ed9061222f565b60088281548110610a7157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a8b610f8e565b6001600160a01b0316610a9c610be6565b6001600160a01b031614610ac25760405162461bcd60e51b81526004016105ed90612074565b805161065390600b90602084019061186b565b600f5460ff1681565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b81526004016105ed90611f36565b60006001600160a01b038216610b3b5760405162461bcd60e51b81526004016105ed90611eec565b506001600160a01b031660009081526003602052604090205490565b610b5f610f8e565b6001600160a01b0316610b70610be6565b6001600160a01b031614610b965760405162461bcd60e51b81526004016105ed90612074565b610ba060006111cf565b565b610baa610f8e565b6001600160a01b0316610bbb610be6565b6001600160a01b031614610be15760405162461bcd60e51b81526004016105ed90612074565b600e55565b600a546001600160a01b031690565b60606001805461066690612349565b600f5460ff1615610c275760405162461bcd60e51b81526004016105ed906120a9565b6000610c316107ca565b905060008211610c535760405162461bcd60e51b81526004016105ed9061227b565b600e54821115610c755760405162461bcd60e51b81526004016105ed90611faf565b600d54610c8283836122bb565b1115610ca05760405162461bcd60e51b81526004016105ed90611f7f565b610ca8610be6565b6001600160a01b0316336001600160a01b031614610ced5781600c54610cce91906122e7565b341015610ced5760405162461bcd60e51b81526004016105ed906121b2565b60015b8281116107bf57610d0a33610d0583856122bb565b611221565b80610d1481612384565b915050610cf0565b610d24610f8e565b6001600160a01b0316826001600160a01b03161415610d555760405162461bcd60e51b81526004016105ed90611e0c565b8060056000610d62610f8e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610da6610f8e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dde9190611c90565b60405180910390a35050565b610dfb610df5610f8e565b8361101d565b610e175760405162461bcd60e51b81526004016105ed906121de565b610e238484848461123b565b50505050565b6060610e3482610f92565b610e505760405162461bcd60e51b81526004016105ed90612122565b6000610e5a61126e565b90506000815111610e7a5760405180602001604052806000815250610ea5565b80610e848461127d565b604051602001610e95929190611bc9565b6040516020818303038152906040525b9392505050565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ee8610f8e565b6001600160a01b0316610ef9610be6565b6001600160a01b031614610f1f5760405162461bcd60e51b81526004016105ed90612074565b6001600160a01b038116610f455760405162461bcd60e51b81526004016105ed90611d4b565b610908816111cf565b60006001600160e01b031982166380ac58cd60e01b1480610f7f57506001600160e01b03198216635b5e139f60e01b145b806105a657506105a682611398565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fe482610ade565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061102882610f92565b6110445760405162461bcd60e51b81526004016105ed90611e43565b600061104f83610ade565b9050806001600160a01b0316846001600160a01b0316148061108a5750836001600160a01b031661107f846106e9565b6001600160a01b0316145b8061109a575061109a8185610eb2565b949350505050565b826001600160a01b03166110b582610ade565b6001600160a01b0316146110db5760405162461bcd60e51b81526004016105ed906120d9565b6001600160a01b0382166111015760405162461bcd60e51b81526004016105ed90611dc8565b61110c8383836113b1565b611117600082610faf565b6001600160a01b0383166000908152600360205260408120805460019290611140908490612306565b90915550506001600160a01b038216600090815260036020526040812080546001929061116e9084906122bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61065382826040518060200160405280600081525061143a565b6112468484846110a2565b6112528484848461146d565b610e235760405162461bcd60e51b81526004016105ed90611cf9565b6060600b805461066690612349565b6060816112a257506040805180820190915260018152600360fc1b60208201526105a9565b8160005b81156112cc57806112b681612384565b91506112c59050600a836122d3565b91506112a6565b60008167ffffffffffffffff8111156112f557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561131f576020820181803683370190505b5090505b841561109a57611334600183612306565b9150611341600a8661239f565b61134c9060306122bb565b60f81b81838151811061136f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611391600a866122d3565b9450611323565b6001600160e01b031981166301ffc9a760e01b14919050565b6113bc8383836107bf565b6001600160a01b0383166113d8576113d381611588565b6113fb565b816001600160a01b0316836001600160a01b0316146113fb576113fb83826115cc565b6001600160a01b0382166114175761141281611669565b6107bf565b826001600160a01b0316826001600160a01b0316146107bf576107bf8282611742565b6114448383611786565b611451600084848461146d565b6107bf5760405162461bcd60e51b81526004016105ed90611cf9565b6000611481846001600160a01b0316611865565b1561157d57836001600160a01b031663150b7a0261149d610f8e565b8786866040518563ffffffff1660e01b81526004016114bf9493929190611c0f565b602060405180830381600087803b1580156114d957600080fd5b505af1925050508015611509575060408051601f3d908101601f1916820190925261150691810190611b23565b60015b611563573d808015611537576040519150601f19603f3d011682016040523d82523d6000602084013e61153c565b606091505b50805161155b5760405162461bcd60e51b81526004016105ed90611cf9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061109a565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016115d984610b13565b6115e39190612306565b600083815260076020526040902054909150808214611636576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061167b90600190612306565b600083815260096020526040812054600880549394509092849081106116b157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106116e057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061172657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061174d83610b13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117ac5760405162461bcd60e51b81526004016105ed90611ff3565b6117b581610f92565b156117d25760405162461bcd60e51b81526004016105ed90611d91565b6117de600083836113b1565b6001600160a01b03821660009081526003602052604081208054600192906118079084906122bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461187790612349565b90600052602060002090601f01602090048101928261189957600085556118df565b82601f106118b257805160ff19168380011785556118df565b828001600101855582156118df579182015b828111156118df5782518255916020019190600101906118c4565b506118eb9291506118ef565b5090565b5b808211156118eb57600081556001016118f0565b600067ffffffffffffffff8084111561191f5761191f6123df565b604051601f8501601f191681016020018281118282101715611943576119436123df565b60405284815291508183850186101561195b57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105a957600080fd5b803580151581146105a957600080fd5b6000602082840312156119ac578081fd5b610ea582611974565b600080604083850312156119c7578081fd5b6119d083611974565b91506119de60208401611974565b90509250929050565b6000806000606084860312156119fb578081fd5b611a0484611974565b9250611a1260208501611974565b9150604084013590509250925092565b60008060008060808587031215611a37578081fd5b611a4085611974565b9350611a4e60208601611974565b925060408501359150606085013567ffffffffffffffff811115611a70578182fd5b8501601f81018713611a80578182fd5b611a8f87823560208401611904565b91505092959194509250565b60008060408385031215611aad578182fd5b611ab683611974565b91506119de6020840161198b565b60008060408385031215611ad6578182fd5b611adf83611974565b946020939093013593505050565b600060208284031215611afe578081fd5b610ea58261198b565b600060208284031215611b18578081fd5b8135610ea5816123f5565b600060208284031215611b34578081fd5b8151610ea5816123f5565b600060208284031215611b50578081fd5b813567ffffffffffffffff811115611b66578182fd5b8201601f81018413611b76578182fd5b61109a84823560208401611904565b600060208284031215611b96578081fd5b5035919050565b60008151808452611bb581602086016020860161231d565b601f01601f19169290920160200192915050565b60008351611bdb81846020880161231d565b835190830190611bef81836020880161231d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4290830184611b9d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8457835183529284019291840191600101611c68565b50909695505050505050565b901515815260200190565b600060208252610ea56020830184611b9d565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b600082198211156122ce576122ce6123b3565b500190565b6000826122e2576122e26123c9565b500490565b6000816000190483118215151615612301576123016123b3565b500290565b600082821015612318576123186123b3565b500390565b60005b83811015612338578181015183820152602001612320565b83811115610e235750506000910152565b60028104600182168061235d57607f821691505b6020821081141561237e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612398576123986123b3565b5060010190565b6000826123ae576123ae6123c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090857600080fdfea2646970667358221220141f4d34e9519ca88592eb08d1e7cf54ffd578c21b63f94549cdd7cd3d1e696164736f6c634300080000330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80634f6ccce71161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461050c578063d5abeb011461052c578063e985e9c514610541578063f2fde38b14610561576101d8565b806395d89b41146104a4578063a0712d68146104b9578063a22cb465146104cc578063b88d4fde146104ec576101d8565b806370a08231116100d157806370a082311461043a578063715018a61461045a5780637f00c7a61461046f5780638da5cb5b1461048f576101d8565b80634f6ccce7146103c557806355f804b3146103e55780635c975abb146104055780636352211e1461041a576101d8565b806318160ddd1161017a5780633ccfd60b116101495780633ccfd60b1461035057806342842e0e14610358578063438b63001461037857806344a0d68a146103a5576101d8565b806318160ddd146102e6578063239c70ae146102fb57806323b872dd146103105780632f745c5914610330576101d8565b806306fdde03116101b657806306fdde0314610255578063081812fc14610277578063095ea7b3146102a457806313faede6146102c4576101d8565b806301ffc9a7146101dd57806302329a2914610213578063045f785014610235575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b07565b610581565b60405161020a9190611c90565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004611aed565b6105ae565b005b34801561024157600080fd5b50610233610250366004611ac4565b610609565b34801561026157600080fd5b5061026a610657565b60405161020a9190611c9b565b34801561028357600080fd5b50610297610292366004611b85565b6106e9565b60405161020a9190611bfb565b3480156102b057600080fd5b506102336102bf366004611ac4565b61072c565b3480156102d057600080fd5b506102d96107c4565b60405161020a91906122b2565b3480156102f257600080fd5b506102d96107ca565b34801561030757600080fd5b506102d96107d0565b34801561031c57600080fd5b5061023361032b3660046119e7565b6107d6565b34801561033c57600080fd5b506102d961034b366004611ac4565b61080e565b610233610860565b34801561036457600080fd5b506102336103733660046119e7565b61090b565b34801561038457600080fd5b5061039861039336600461199b565b610926565b60405161020a9190611c4c565b3480156103b157600080fd5b506102336103c0366004611b85565b6109e4565b3480156103d157600080fd5b506102d96103e0366004611b85565b610a28565b3480156103f157600080fd5b50610233610400366004611b3f565b610a83565b34801561041157600080fd5b506101fd610ad5565b34801561042657600080fd5b50610297610435366004611b85565b610ade565b34801561044657600080fd5b506102d961045536600461199b565b610b13565b34801561046657600080fd5b50610233610b57565b34801561047b57600080fd5b5061023361048a366004611b85565b610ba2565b34801561049b57600080fd5b50610297610be6565b3480156104b057600080fd5b5061026a610bf5565b6102336104c7366004611b85565b610c04565b3480156104d857600080fd5b506102336104e7366004611a9b565b610d1c565b3480156104f857600080fd5b50610233610507366004611a22565b610dea565b34801561051857600080fd5b5061026a610527366004611b85565b610e29565b34801561053857600080fd5b506102d9610eac565b34801561054d57600080fd5b506101fd61055c3660046119b5565b610eb2565b34801561056d57600080fd5b5061023361057c36600461199b565b610ee0565b60006001600160e01b0319821663780e9d6360e01b14806105a657506105a682610f4e565b90505b919050565b6105b6610f8e565b6001600160a01b03166105c7610be6565b6001600160a01b0316146105f65760405162461bcd60e51b81526004016105ed90612074565b60405180910390fd5b600f805460ff1916911515919091179055565b610611610f8e565b6001600160a01b0316610622610be6565b6001600160a01b0316146106485760405162461bcd60e51b81526004016105ed90612074565b61065333838361090b565b5050565b60606000805461066690612349565b80601f016020809104026020016040519081016040528092919081815260200182805461069290612349565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f482610f92565b6107105760405162461bcd60e51b81526004016105ed90612028565b506000908152600460205260409020546001600160a01b031690565b600061073782610ade565b9050806001600160a01b0316836001600160a01b0316141561076b5760405162461bcd60e51b81526004016105ed90612171565b806001600160a01b031661077d610f8e565b6001600160a01b0316148061079957506107998161055c610f8e565b6107b55760405162461bcd60e51b81526004016105ed90611e8f565b6107bf8383610faf565b505050565b600c5481565b60085490565b600e5481565b6107e76107e1610f8e565b8261101d565b6108035760405162461bcd60e51b81526004016105ed906121de565b6107bf8383836110a2565b600061081983610b13565b82106108375760405162461bcd60e51b81526004016105ed90611cae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610868610f8e565b6001600160a01b0316610879610be6565b6001600160a01b03161461089f5760405162461bcd60e51b81526004016105ed90612074565b6000336001600160a01b0316476040516108b890611bf8565b60006040518083038185875af1925050503d80600081146108f5576040519150601f19603f3d011682016040523d82523d6000602084013e6108fa565b606091505b505090508061090857600080fd5b50565b6107bf83838360405180602001604052806000815250610dea565b6060600061093383610b13565b905060008167ffffffffffffffff81111561095e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610987578160200160208202803683370190505b50905060005b828110156109dc5761099f858261080e565b8282815181106109bf57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109d481612384565b91505061098d565b509392505050565b6109ec610f8e565b6001600160a01b03166109fd610be6565b6001600160a01b031614610a235760405162461bcd60e51b81526004016105ed90612074565b600c55565b6000610a326107ca565b8210610a505760405162461bcd60e51b81526004016105ed9061222f565b60088281548110610a7157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a8b610f8e565b6001600160a01b0316610a9c610be6565b6001600160a01b031614610ac25760405162461bcd60e51b81526004016105ed90612074565b805161065390600b90602084019061186b565b600f5460ff1681565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b81526004016105ed90611f36565b60006001600160a01b038216610b3b5760405162461bcd60e51b81526004016105ed90611eec565b506001600160a01b031660009081526003602052604090205490565b610b5f610f8e565b6001600160a01b0316610b70610be6565b6001600160a01b031614610b965760405162461bcd60e51b81526004016105ed90612074565b610ba060006111cf565b565b610baa610f8e565b6001600160a01b0316610bbb610be6565b6001600160a01b031614610be15760405162461bcd60e51b81526004016105ed90612074565b600e55565b600a546001600160a01b031690565b60606001805461066690612349565b600f5460ff1615610c275760405162461bcd60e51b81526004016105ed906120a9565b6000610c316107ca565b905060008211610c535760405162461bcd60e51b81526004016105ed9061227b565b600e54821115610c755760405162461bcd60e51b81526004016105ed90611faf565b600d54610c8283836122bb565b1115610ca05760405162461bcd60e51b81526004016105ed90611f7f565b610ca8610be6565b6001600160a01b0316336001600160a01b031614610ced5781600c54610cce91906122e7565b341015610ced5760405162461bcd60e51b81526004016105ed906121b2565b60015b8281116107bf57610d0a33610d0583856122bb565b611221565b80610d1481612384565b915050610cf0565b610d24610f8e565b6001600160a01b0316826001600160a01b03161415610d555760405162461bcd60e51b81526004016105ed90611e0c565b8060056000610d62610f8e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610da6610f8e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dde9190611c90565b60405180910390a35050565b610dfb610df5610f8e565b8361101d565b610e175760405162461bcd60e51b81526004016105ed906121de565b610e238484848461123b565b50505050565b6060610e3482610f92565b610e505760405162461bcd60e51b81526004016105ed90612122565b6000610e5a61126e565b90506000815111610e7a5760405180602001604052806000815250610ea5565b80610e848461127d565b604051602001610e95929190611bc9565b6040516020818303038152906040525b9392505050565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ee8610f8e565b6001600160a01b0316610ef9610be6565b6001600160a01b031614610f1f5760405162461bcd60e51b81526004016105ed90612074565b6001600160a01b038116610f455760405162461bcd60e51b81526004016105ed90611d4b565b610908816111cf565b60006001600160e01b031982166380ac58cd60e01b1480610f7f57506001600160e01b03198216635b5e139f60e01b145b806105a657506105a682611398565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fe482610ade565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061102882610f92565b6110445760405162461bcd60e51b81526004016105ed90611e43565b600061104f83610ade565b9050806001600160a01b0316846001600160a01b0316148061108a5750836001600160a01b031661107f846106e9565b6001600160a01b0316145b8061109a575061109a8185610eb2565b949350505050565b826001600160a01b03166110b582610ade565b6001600160a01b0316146110db5760405162461bcd60e51b81526004016105ed906120d9565b6001600160a01b0382166111015760405162461bcd60e51b81526004016105ed90611dc8565b61110c8383836113b1565b611117600082610faf565b6001600160a01b0383166000908152600360205260408120805460019290611140908490612306565b90915550506001600160a01b038216600090815260036020526040812080546001929061116e9084906122bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61065382826040518060200160405280600081525061143a565b6112468484846110a2565b6112528484848461146d565b610e235760405162461bcd60e51b81526004016105ed90611cf9565b6060600b805461066690612349565b6060816112a257506040805180820190915260018152600360fc1b60208201526105a9565b8160005b81156112cc57806112b681612384565b91506112c59050600a836122d3565b91506112a6565b60008167ffffffffffffffff8111156112f557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561131f576020820181803683370190505b5090505b841561109a57611334600183612306565b9150611341600a8661239f565b61134c9060306122bb565b60f81b81838151811061136f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611391600a866122d3565b9450611323565b6001600160e01b031981166301ffc9a760e01b14919050565b6113bc8383836107bf565b6001600160a01b0383166113d8576113d381611588565b6113fb565b816001600160a01b0316836001600160a01b0316146113fb576113fb83826115cc565b6001600160a01b0382166114175761141281611669565b6107bf565b826001600160a01b0316826001600160a01b0316146107bf576107bf8282611742565b6114448383611786565b611451600084848461146d565b6107bf5760405162461bcd60e51b81526004016105ed90611cf9565b6000611481846001600160a01b0316611865565b1561157d57836001600160a01b031663150b7a0261149d610f8e565b8786866040518563ffffffff1660e01b81526004016114bf9493929190611c0f565b602060405180830381600087803b1580156114d957600080fd5b505af1925050508015611509575060408051601f3d908101601f1916820190925261150691810190611b23565b60015b611563573d808015611537576040519150601f19603f3d011682016040523d82523d6000602084013e61153c565b606091505b50805161155b5760405162461bcd60e51b81526004016105ed90611cf9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061109a565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016115d984610b13565b6115e39190612306565b600083815260076020526040902054909150808214611636576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061167b90600190612306565b600083815260096020526040812054600880549394509092849081106116b157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106116e057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061172657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061174d83610b13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117ac5760405162461bcd60e51b81526004016105ed90611ff3565b6117b581610f92565b156117d25760405162461bcd60e51b81526004016105ed90611d91565b6117de600083836113b1565b6001600160a01b03821660009081526003602052604081208054600192906118079084906122bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461187790612349565b90600052602060002090601f01602090048101928261189957600085556118df565b82601f106118b257805160ff19168380011785556118df565b828001600101855582156118df579182015b828111156118df5782518255916020019190600101906118c4565b506118eb9291506118ef565b5090565b5b808211156118eb57600081556001016118f0565b600067ffffffffffffffff8084111561191f5761191f6123df565b604051601f8501601f191681016020018281118282101715611943576119436123df565b60405284815291508183850186101561195b57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105a957600080fd5b803580151581146105a957600080fd5b6000602082840312156119ac578081fd5b610ea582611974565b600080604083850312156119c7578081fd5b6119d083611974565b91506119de60208401611974565b90509250929050565b6000806000606084860312156119fb578081fd5b611a0484611974565b9250611a1260208501611974565b9150604084013590509250925092565b60008060008060808587031215611a37578081fd5b611a4085611974565b9350611a4e60208601611974565b925060408501359150606085013567ffffffffffffffff811115611a70578182fd5b8501601f81018713611a80578182fd5b611a8f87823560208401611904565b91505092959194509250565b60008060408385031215611aad578182fd5b611ab683611974565b91506119de6020840161198b565b60008060408385031215611ad6578182fd5b611adf83611974565b946020939093013593505050565b600060208284031215611afe578081fd5b610ea58261198b565b600060208284031215611b18578081fd5b8135610ea5816123f5565b600060208284031215611b34578081fd5b8151610ea5816123f5565b600060208284031215611b50578081fd5b813567ffffffffffffffff811115611b66578182fd5b8201601f81018413611b76578182fd5b61109a84823560208401611904565b600060208284031215611b96578081fd5b5035919050565b60008151808452611bb581602086016020860161231d565b601f01601f19169290920160200192915050565b60008351611bdb81846020880161231d565b835190830190611bef81836020880161231d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4290830184611b9d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8457835183529284019291840191600101611c68565b50909695505050505050565b901515815260200190565b600060208252610ea56020830184611b9d565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b600082198211156122ce576122ce6123b3565b500190565b6000826122e2576122e26123c9565b500490565b6000816000190483118215151615612301576123016123b3565b500290565b600082821015612318576123186123b3565b500390565b60005b83811015612338578181015183820152602001612320565b83811115610e235750506000910152565b60028104600182168061235d57607f821691505b6020821081141561237e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612398576123986123b3565b5060010190565b6000826123ae576123ae6123c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090857600080fdfea2646970667358221220141f4d34e9519ca88592eb08d1e7cf54ffd578c21b63f94549cdd7cd3d1e696164736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string):
Arg [1] : _symbol (string):
Arg [2] : _initBaseURI (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43142:2638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36931:224;;;;;;;;;;-1:-1:-1;36931:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45533:73;;;;;;;;;;-1:-1:-1;45533:73:0;;;;;:::i;:::-;;:::i;:::-;;45077:130;;;;;;;;;;-1:-1:-1;45077:130:0;;;;;:::i;:::-;;:::i;24823:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26382:221::-;;;;;;;;;;-1:-1:-1;26382:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25905:411::-;;;;;;;;;;-1:-1:-1;25905:411:0;;;;;:::i;:::-;;:::i;43258:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37571:113::-;;;;;;;;;;;;;:::i;43331:33::-;;;;;;;;;;;;;:::i;27272:339::-;;;;;;;;;;-1:-1:-1;27272:339:0;;;;;:::i;:::-;;:::i;37239:256::-;;;;;;;;;;-1:-1:-1;37239:256:0;;;;;:::i;:::-;;:::i;45614:158::-;;;:::i;27682:185::-;;;;;;;;;;-1:-1:-1;27682:185:0;;;;;:::i;:::-;;:::i;44301:348::-;;;;;;;;;;-1:-1:-1;44301:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45215:82::-;;;;;;;;;;-1:-1:-1;45215:82:0;;;;;:::i;:::-;;:::i;37761:233::-;;;;;;;;;;-1:-1:-1;37761:233:0;;;;;:::i;:::-;;:::i;45427:98::-;;;;;;;;;;-1:-1:-1;45427:98:0;;;;;:::i;:::-;;:::i;43373:26::-;;;;;;;;;;;;;:::i;24517:239::-;;;;;;;;;;-1:-1:-1;24517:239:0;;;;;:::i;:::-;;:::i;24247:208::-;;;;;;;;;;-1:-1:-1;24247:208:0;;;;;:::i;:::-;;:::i;9739:94::-;;;;;;;;;;;;;:::i;45303:118::-;;;;;;;;;;-1:-1:-1;45303:118:0;;;;;:::i;:::-;;:::i;9088:87::-;;;;;;;;;;;;;:::i;24992:104::-;;;;;;;;;;;;;:::i;43714:575::-;;;;;;:::i;:::-;;:::i;26675:295::-;;;;;;;;;;-1:-1:-1;26675:295:0;;;;;:::i;:::-;;:::i;27938:328::-;;;;;;;;;;-1:-1:-1;27938:328:0;;;;;:::i;:::-;;:::i;44655:414::-;;;;;;;;;;-1:-1:-1;44655:414:0;;;;;:::i;:::-;;:::i;43295:31::-;;;;;;;;;;;;;:::i;27041:164::-;;;;;;;;;;-1:-1:-1;27041:164:0;;;;;:::i;:::-;;:::i;9988:192::-;;;;;;;;;;-1:-1:-1;9988:192:0;;;;;:::i;:::-;;:::i;36931:224::-;37033:4;-1:-1:-1;;;;;;37057:50:0;;-1:-1:-1;;;37057:50:0;;:90;;;37111:36;37135:11;37111:23;:36::i;:::-;37050:97;;36931:224;;;;:::o;45533:73::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;;;;;;;;;45585:6:::1;:15:::0;;-1:-1:-1;;45585:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45533:73::o;45077:130::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;45152:49:::1;45178:10;45190:2;45193:7;45152:16;:49::i;:::-;45077:130:::0;;:::o;24823:100::-;24877:13;24910:5;24903:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24823:100;:::o;26382:221::-;26458:7;26486:16;26494:7;26486;:16::i;:::-;26478:73;;;;-1:-1:-1;;;26478:73:0;;;;;;;:::i;:::-;-1:-1:-1;26571:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26571:24:0;;26382:221::o;25905:411::-;25986:13;26002:23;26017:7;26002:14;:23::i;:::-;25986:39;;26050:5;-1:-1:-1;;;;;26044:11:0;:2;-1:-1:-1;;;;;26044:11:0;;;26036:57;;;;-1:-1:-1;;;26036:57:0;;;;;;;:::i;:::-;26144:5;-1:-1:-1;;;;;26128:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26128:21:0;;:62;;;;26153:37;26170:5;26177:12;:10;:12::i;26153:37::-;26106:168;;;;-1:-1:-1;;;26106:168:0;;;;;;;:::i;:::-;26287:21;26296:2;26300:7;26287:8;:21::i;:::-;25905:411;;;:::o;43258:32::-;;;;:::o;37571:113::-;37659:10;:17;37571:113;:::o;43331:33::-;;;;:::o;27272:339::-;27467:41;27486:12;:10;:12::i;:::-;27500:7;27467:18;:41::i;:::-;27459:103;;;;-1:-1:-1;;;27459:103:0;;;;;;;:::i;:::-;27575:28;27585:4;27591:2;27595:7;27575:9;:28::i;37239:256::-;37336:7;37372:23;37389:5;37372:16;:23::i;:::-;37364:5;:31;37356:87;;;;-1:-1:-1;;;37356:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37461:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37239:256::o;45614:158::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;45667:12:::1;45693:10;-1:-1:-1::0;;;;;45685:24:0::1;45717:21;45685:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45666:77;;;45758:7;45750:16;;;::::0;::::1;;9379:1;45614:158::o:0;27682:185::-;27820:39;27837:4;27843:2;27847:7;27820:39;;;;;;;;;;;;:16;:39::i;44301:348::-;44376:16;44404:23;44430:17;44440:6;44430:9;:17::i;:::-;44404:43;;44454:25;44496:15;44482:30;;;;;;-1:-1:-1;;;44482:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44482:30:0;;44454:58;;44524:9;44519:103;44539:15;44535:1;:19;44519:103;;;44584:30;44604:6;44612:1;44584:19;:30::i;:::-;44570:8;44579:1;44570:11;;;;;;-1:-1:-1;;;44570:11:0;;;;;;;;;;;;;;;;;;:44;44556:3;;;;:::i;:::-;;;;44519:103;;;-1:-1:-1;44635:8:0;44301:348;-1:-1:-1;;;44301:348:0:o;45215:82::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;45276:4:::1;:15:::0;45215:82::o;37761:233::-;37836:7;37872:30;:28;:30::i;:::-;37864:5;:38;37856:95;;;;-1:-1:-1;;;37856:95:0;;;;;;;:::i;:::-;37969:10;37980:5;37969:17;;;;;;-1:-1:-1;;;37969:17:0;;;;;;;;;;;;;;;;;37962:24;;37761:233;;;:::o;45427:98::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;45498:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43373:26::-:0;;;;;;:::o;24517:239::-;24589:7;24625:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24625:16:0;24660:19;24652:73;;;;-1:-1:-1;;;24652:73:0;;;;;;;:::i;24247:208::-;24319:7;-1:-1:-1;;;;;24347:19:0;;24339:74;;;;-1:-1:-1;;;24339:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24431:16:0;;;;;:9;:16;;;;;;;24247:208::o;9739:94::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;45303:118::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;45382:13:::1;:33:::0;45303:118::o;9088:87::-;9161:6;;-1:-1:-1;;;;;9161:6:0;9088:87;:::o;24992:104::-;25048:13;25081:7;25074:14;;;;;:::i;43714:575::-;43780:6;;;;43779:7;43771:42;;;;-1:-1:-1;;;43771:42:0;;;;;;;:::i;:::-;43820:14;43837:13;:11;:13::i;:::-;43820:30;;43879:1;43865:11;:15;43857:55;;;;-1:-1:-1;;;43857:55:0;;;;;;;:::i;:::-;43942:13;;43927:11;:28;;43919:77;;;;-1:-1:-1;;;43919:77:0;;;;;;;:::i;:::-;44035:9;;44011:20;44020:11;44011:6;:20;:::i;:::-;:33;;44003:68;;;;-1:-1:-1;;;44003:68:0;;;;;;;:::i;:::-;44096:7;:5;:7::i;:::-;-1:-1:-1;;;;;44082:21:0;:10;-1:-1:-1;;;;;44082:21:0;;44078:107;;44143:11;44136:4;;:18;;;;:::i;:::-;44123:9;:31;;44115:62;;;;-1:-1:-1;;;44115:62:0;;;;;;;:::i;:::-;44208:1;44191:93;44216:11;44211:1;:16;44191:93;;44243:33;44253:10;44265;44274:1;44265:6;:10;:::i;:::-;44243:9;:33::i;:::-;44229:3;;;;:::i;:::-;;;;44191:93;;26675:295;26790:12;:10;:12::i;:::-;-1:-1:-1;;;;;26778:24:0;:8;-1:-1:-1;;;;;26778:24:0;;;26770:62;;;;-1:-1:-1;;;26770:62:0;;;;;;;:::i;:::-;26890:8;26845:18;:32;26864:12;:10;:12::i;:::-;-1:-1:-1;;;;;26845:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26845:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26845:53:0;;;;;;;;;;;26929:12;:10;:12::i;:::-;-1:-1:-1;;;;;26914:48:0;;26953:8;26914:48;;;;;;:::i;:::-;;;;;;;;26675:295;;:::o;27938:328::-;28113:41;28132:12;:10;:12::i;:::-;28146:7;28113:18;:41::i;:::-;28105:103;;;;-1:-1:-1;;;28105:103:0;;;;;;;:::i;:::-;28219:39;28233:4;28239:2;28243:7;28252:5;28219:13;:39::i;:::-;27938:328;;;;:::o;44655:414::-;44753:13;44794:16;44802:7;44794;:16::i;:::-;44778:97;;;;-1:-1:-1;;;44778:97:0;;;;;;;:::i;:::-;44890:28;44921:10;:8;:10::i;:::-;44890:41;;44976:1;44951:14;44945:28;:32;:118;;;;;;;;;;;;;;;;;45013:14;45029:18;:7;:16;:18::i;:::-;44996:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44945:118;44938:125;44655:414;-1:-1:-1;;;44655:414:0:o;43295:31::-;;;;:::o;27041:164::-;-1:-1:-1;;;;;27162:25:0;;;27138:4;27162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27041:164::o;9988:192::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10077:22:0;::::1;10069:73;;;;-1:-1:-1::0;;;10069:73:0::1;;;;;;;:::i;:::-;10153:19;10163:8;10153:9;:19::i;23878:305::-:0;23980:4;-1:-1:-1;;;;;;24017:40:0;;-1:-1:-1;;;24017:40:0;;:105;;-1:-1:-1;;;;;;;24074:48:0;;-1:-1:-1;;;24074:48:0;24017:105;:158;;;;24139:36;24163:11;24139:23;:36::i;7888:98::-;7968:10;7888:98;:::o;29776:127::-;29841:4;29865:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29865:16:0;:30;;;29776:127::o;33758:174::-;33833:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33833:29:0;-1:-1:-1;;;;;33833:29:0;;;;;;;;:24;;33887:23;33833:24;33887:14;:23::i;:::-;-1:-1:-1;;;;;33878:46:0;;;;;;;;;;;33758:174;;:::o;30070:348::-;30163:4;30188:16;30196:7;30188;:16::i;:::-;30180:73;;;;-1:-1:-1;;;30180:73:0;;;;;;;:::i;:::-;30264:13;30280:23;30295:7;30280:14;:23::i;:::-;30264:39;;30333:5;-1:-1:-1;;;;;30322:16:0;:7;-1:-1:-1;;;;;30322:16:0;;:51;;;;30366:7;-1:-1:-1;;;;;30342:31:0;:20;30354:7;30342:11;:20::i;:::-;-1:-1:-1;;;;;30342:31:0;;30322:51;:87;;;;30377:32;30394:5;30401:7;30377:16;:32::i;:::-;30314:96;30070:348;-1:-1:-1;;;;30070:348:0:o;33062:578::-;33221:4;-1:-1:-1;;;;;33194:31:0;:23;33209:7;33194:14;:23::i;:::-;-1:-1:-1;;;;;33194:31:0;;33186:85;;;;-1:-1:-1;;;33186:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33290:16:0;;33282:65;;;;-1:-1:-1;;;33282:65:0;;;;;;;:::i;:::-;33360:39;33381:4;33387:2;33391:7;33360:20;:39::i;:::-;33464:29;33481:1;33485:7;33464:8;:29::i;:::-;-1:-1:-1;;;;;33506:15:0;;;;;;:9;:15;;;;;:20;;33525:1;;33506:15;:20;;33525:1;;33506:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33537:13:0;;;;;;:9;:13;;;;;:18;;33554:1;;33537:13;:18;;33554:1;;33537:18;:::i;:::-;;;;-1:-1:-1;;33566:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33566:21:0;-1:-1:-1;;;;;33566:21:0;;;;;;;;;33605:27;;33566:16;;33605:27;;;;;;;33062:578;;;:::o;10188:173::-;10263:6;;;-1:-1:-1;;;;;10280:17:0;;;-1:-1:-1;;;;;;10280:17:0;;;;;;;10313:40;;10263:6;;;10280:17;10263:6;;10313:40;;10244:16;;10313:40;10188:173;;:::o;30760:110::-;30836:26;30846:2;30850:7;30836:26;;;;;;;;;;;;:9;:26::i;29148:315::-;29305:28;29315:4;29321:2;29325:7;29305:9;:28::i;:::-;29352:48;29375:4;29381:2;29385:7;29394:5;29352:22;:48::i;:::-;29344:111;;;;-1:-1:-1;;;29344:111:0;;;;;;;:::i;43591:102::-;43651:13;43680:7;43673:14;;;;;:::i;11745:723::-;11801:13;12022:10;12018:53;;-1:-1:-1;12049:10:0;;;;;;;;;;;;-1:-1:-1;;;12049:10:0;;;;;;12018:53;12096:5;12081:12;12137:78;12144:9;;12137:78;;12170:8;;;;:::i;:::-;;-1:-1:-1;12193:10:0;;-1:-1:-1;12201:2:0;12193:10;;:::i;:::-;;;12137:78;;;12225:19;12257:6;12247:17;;;;;;-1:-1:-1;;;12247:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12247:17:0;;12225:39;;12275:154;12282:10;;12275:154;;12309:11;12319:1;12309:11;;:::i;:::-;;-1:-1:-1;12378:10:0;12386:2;12378:5;:10;:::i;:::-;12365:24;;:2;:24;:::i;:::-;12352:39;;12335:6;12342;12335:14;;;;;;-1:-1:-1;;;12335:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;12335:56:0;;;;;;;;-1:-1:-1;12406:11:0;12415:2;12406:11;;:::i;:::-;;;12275:154;;1599:157;-1:-1:-1;;;;;;1708:40:0;;-1:-1:-1;;;1708:40:0;1599:157;;;:::o;38607:589::-;38751:45;38778:4;38784:2;38788:7;38751:26;:45::i;:::-;-1:-1:-1;;;;;38813:18:0;;38809:187;;38848:40;38880:7;38848:31;:40::i;:::-;38809:187;;;38918:2;-1:-1:-1;;;;;38910:10:0;:4;-1:-1:-1;;;;;38910:10:0;;38906:90;;38937:47;38970:4;38976:7;38937:32;:47::i;:::-;-1:-1:-1;;;;;39010:16:0;;39006:183;;39043:45;39080:7;39043:36;:45::i;:::-;39006:183;;;39116:4;-1:-1:-1;;;;;39110:10:0;:2;-1:-1:-1;;;;;39110:10:0;;39106:83;;39137:40;39165:2;39169:7;39137:27;:40::i;31097:321::-;31227:18;31233:2;31237:7;31227:5;:18::i;:::-;31278:54;31309:1;31313:2;31317:7;31326:5;31278:22;:54::i;:::-;31256:154;;;;-1:-1:-1;;;31256:154:0;;;;;;;:::i;34497:799::-;34652:4;34673:15;:2;-1:-1:-1;;;;;34673:13:0;;:15::i;:::-;34669:620;;;34725:2;-1:-1:-1;;;;;34709:36:0;;34746:12;:10;:12::i;:::-;34760:4;34766:7;34775:5;34709:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34709:72:0;;;;;;;;-1:-1:-1;;34709:72:0;;;;;;;;;;;;:::i;:::-;;;34705:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34951:13:0;;34947:272;;34994:60;;-1:-1:-1;;;34994:60:0;;;;;;;:::i;34947:272::-;35169:6;35163:13;35154:6;35150:2;35146:15;35139:38;34705:529;-1:-1:-1;;;;;;34832:51:0;-1:-1:-1;;;34832:51:0;;-1:-1:-1;34825:58:0;;34669:620;-1:-1:-1;35273:4:0;34497:799;;;;;;:::o;39919:164::-;40023:10;:17;;39996:24;;;;:15;:24;;;;;:44;;;40051:24;;;;;;;;;;;;39919:164::o;40710:988::-;40976:22;41026:1;41001:22;41018:4;41001:16;:22::i;:::-;:26;;;;:::i;:::-;41038:18;41059:26;;;:17;:26;;;;;;40976:51;;-1:-1:-1;41192:28:0;;;41188:328;;-1:-1:-1;;;;;41259:18:0;;41237:19;41259:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41310:30;;;;;;:44;;;41427:30;;:17;:30;;;;;:43;;;41188:328;-1:-1:-1;41612:26:0;;;;:17;:26;;;;;;;;41605:33;;;-1:-1:-1;;;;;41656:18:0;;;;;:12;:18;;;;;:34;;;;;;;41649:41;40710:988::o;41993:1079::-;42271:10;:17;42246:22;;42271:21;;42291:1;;42271:21;:::i;:::-;42303:18;42324:24;;;:15;:24;;;;;;42697:10;:26;;42246:46;;-1:-1:-1;42324:24:0;;42246:46;;42697:26;;;;-1:-1:-1;;;42697:26:0;;;;;;;;;;;;;;;;;42675:48;;42761:11;42736:10;42747;42736:22;;;;;;-1:-1:-1;;;42736:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42841:28;;;:15;:28;;;;;;;:41;;;43013:24;;;;;43006:31;43048:10;:16;;;;;-1:-1:-1;;;43048:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41993:1079;;;;:::o;39497:221::-;39582:14;39599:20;39616:2;39599:16;:20::i;:::-;-1:-1:-1;;;;;39630:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39675:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39497:221:0:o;31754:382::-;-1:-1:-1;;;;;31834:16:0;;31826:61;;;;-1:-1:-1;;;31826:61:0;;;;;;;:::i;:::-;31907:16;31915:7;31907;:16::i;:::-;31906:17;31898:58;;;;-1:-1:-1;;;31898:58:0;;;;;;;:::i;:::-;31969:45;31998:1;32002:2;32006:7;31969:20;:45::i;:::-;-1:-1:-1;;;;;32027:13:0;;;;;;:9;:13;;;;;:18;;32044:1;;32027:13;:18;;32044:1;;32027:18;:::i;:::-;;;;-1:-1:-1;;32056:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32056:21:0;-1:-1:-1;;;;;32056:21:0;;;;;;;;32095:33;;32056:16;;;32095:33;;32056:16;;32095:33;31754:382;;:::o;14272:387::-;14595:20;14643:8;;;14272:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:1:o;5199:205::-;5399:3;5390:14::o;5409:203::-;-1:-1:-1;;;;;5573:32:1;;;;5555:51;;5543:2;5528:18;;5510:102::o;5617:490::-;-1:-1:-1;;;;;5886:15:1;;;5868:34;;5938:15;;5933:2;5918:18;;5911:43;5985:2;5970:18;;5963:34;;;6033:3;6028:2;6013:18;;6006:31;;;5617:490;;6054:47;;6081:19;;6073:6;6054:47;:::i;:::-;6046:55;5820:287;-1:-1:-1;;;;;;5820:287:1:o;6112:635::-;6283:2;6335:21;;;6405:13;;6308:18;;;6427:22;;;6112:635;;6283:2;6506:15;;;;6480:2;6465:18;;;6112:635;6552:169;6566:6;6563:1;6560:13;6552:169;;;6627:13;;6615:26;;6696:15;;;;6661:12;;;;6588:1;6581:9;6552:169;;;-1:-1:-1;6738:3:1;;6263:484;-1:-1:-1;;;;;;6263:484:1:o;6752:187::-;6917:14;;6910:22;6892:41;;6880:2;6865:18;;6847:92::o;6944:221::-;;7093:2;7082:9;7075:21;7113:46;7155:2;7144:9;7140:18;7132:6;7113:46;:::i;7170:407::-;7372:2;7354:21;;;7411:2;7391:18;;;7384:30;7450:34;7445:2;7430:18;;7423:62;-1:-1:-1;;;7516:2:1;7501:18;;7494:41;7567:3;7552:19;;7344:233::o;7582:414::-;7784:2;7766:21;;;7823:2;7803:18;;;7796:30;7862:34;7857:2;7842:18;;7835:62;-1:-1:-1;;;7928:2:1;7913:18;;7906:48;7986:3;7971:19;;7756:240::o;8001:402::-;8203:2;8185:21;;;8242:2;8222:18;;;8215:30;8281:34;8276:2;8261:18;;8254:62;-1:-1:-1;;;8347:2:1;8332:18;;8325:36;8393:3;8378:19;;8175:228::o;8408:352::-;8610:2;8592:21;;;8649:2;8629:18;;;8622:30;8688;8683:2;8668:18;;8661:58;8751:2;8736:18;;8582:178::o;8765:400::-;8967:2;8949:21;;;9006:2;8986:18;;;8979:30;9045:34;9040:2;9025:18;;9018:62;-1:-1:-1;;;9111:2:1;9096:18;;9089:34;9155:3;9140:19;;8939:226::o;9170:349::-;9372:2;9354:21;;;9411:2;9391:18;;;9384:30;9450:27;9445:2;9430:18;;9423:55;9510:2;9495:18;;9344:175::o;9524:408::-;9726:2;9708:21;;;9765:2;9745:18;;;9738:30;9804:34;9799:2;9784:18;;9777:62;-1:-1:-1;;;9870:2:1;9855:18;;9848:42;9922:3;9907:19;;9698:234::o;9937:420::-;10139:2;10121:21;;;10178:2;10158:18;;;10151:30;10217:34;10212:2;10197:18;;10190:62;10288:26;10283:2;10268:18;;10261:54;10347:3;10332:19;;10111:246::o;10362:406::-;10564:2;10546:21;;;10603:2;10583:18;;;10576:30;10642:34;10637:2;10622:18;;10615:62;-1:-1:-1;;;10708:2:1;10693:18;;10686:40;10758:3;10743:19;;10536:232::o;10773:405::-;10975:2;10957:21;;;11014:2;10994:18;;;10987:30;11053:34;11048:2;11033:18;;11026:62;-1:-1:-1;;;11119:2:1;11104:18;;11097:39;11168:3;11153:19;;10947:231::o;11183:346::-;11385:2;11367:21;;;11424:2;11404:18;;;11397:30;-1:-1:-1;;;11458:2:1;11443:18;;11436:52;11520:2;11505:18;;11357:172::o;11534:400::-;11736:2;11718:21;;;11775:2;11755:18;;;11748:30;11814:34;11809:2;11794:18;;11787:62;-1:-1:-1;;;11880:2:1;11865:18;;11858:34;11924:3;11909:19;;11708:226::o;11939:356::-;12141:2;12123:21;;;12160:18;;;12153:30;12219:34;12214:2;12199:18;;12192:62;12286:2;12271:18;;12113:182::o;12300:408::-;12502:2;12484:21;;;12541:2;12521:18;;;12514:30;12580:34;12575:2;12560:18;;12553:62;-1:-1:-1;;;12646:2:1;12631:18;;12624:42;12698:3;12683:19;;12474:234::o;12713:356::-;12915:2;12897:21;;;12934:18;;;12927:30;12993:34;12988:2;12973:18;;12966:62;13060:2;13045:18;;12887:182::o;13074:346::-;13276:2;13258:21;;;13315:2;13295:18;;;13288:30;-1:-1:-1;;;13349:2:1;13334:18;;13327:52;13411:2;13396:18;;13248:172::o;13425:405::-;13627:2;13609:21;;;13666:2;13646:18;;;13639:30;13705:34;13700:2;13685:18;;13678:62;-1:-1:-1;;;13771:2:1;13756:18;;13749:39;13820:3;13805:19;;13599:231::o;13835:411::-;14037:2;14019:21;;;14076:2;14056:18;;;14049:30;14115:34;14110:2;14095:18;;14088:62;-1:-1:-1;;;14181:2:1;14166:18;;14159:45;14236:3;14221:19;;14009:237::o;14251:397::-;14453:2;14435:21;;;14492:2;14472:18;;;14465:30;14531:34;14526:2;14511:18;;14504:62;-1:-1:-1;;;14597:2:1;14582:18;;14575:31;14638:3;14623:19;;14425:223::o;14653:342::-;14855:2;14837:21;;;14894:2;14874:18;;;14867:30;-1:-1:-1;;;14928:2:1;14913:18;;14906:48;14986:2;14971:18;;14827:168::o;15000:413::-;15202:2;15184:21;;;15241:2;15221:18;;;15214:30;15280:34;15275:2;15260:18;;15253:62;-1:-1:-1;;;15346:2:1;15331:18;;15324:47;15403:3;15388:19;;15174:239::o;15418:408::-;15620:2;15602:21;;;15659:2;15639:18;;;15632:30;15698:34;15693:2;15678:18;;15671:62;-1:-1:-1;;;15764:2:1;15749:18;;15742:42;15816:3;15801:19;;15592:234::o;15831:351::-;16033:2;16015:21;;;16072:2;16052:18;;;16045:30;16111:29;16106:2;16091:18;;16084:57;16173:2;16158:18;;16005:177::o;16187:::-;16333:25;;;16321:2;16306:18;;16288:76::o;16369:128::-;;16440:1;16436:6;16433:1;16430:13;16427:2;;;16446:18;;:::i;:::-;-1:-1:-1;16482:9:1;;16417:80::o;16502:120::-;;16568:1;16558:2;;16573:18;;:::i;:::-;-1:-1:-1;16607:9:1;;16548:74::o;16627:168::-;;16733:1;16729;16725:6;16721:14;16718:1;16715:21;16710:1;16703:9;16696:17;16692:45;16689:2;;;16740:18;;:::i;:::-;-1:-1:-1;16780:9:1;;16679:116::o;16800:125::-;;16868:1;16865;16862:8;16859:2;;;16873:18;;:::i;:::-;-1:-1:-1;16910:9:1;;16849:76::o;16930:258::-;17002:1;17012:113;17026:6;17023:1;17020:13;17012:113;;;17102:11;;;17096:18;17083:11;;;17076:39;17048:2;17041:10;17012:113;;;17143:6;17140:1;17137:13;17134:2;;;-1:-1:-1;;17178:1:1;17160:16;;17153:27;16983:205::o;17193:380::-;17278:1;17268:12;;17325:1;17315:12;;;17336:2;;17390:4;17382:6;17378:17;17368:27;;17336:2;17443;17435:6;17432:14;17412:18;17409:38;17406:2;;;17489:10;17484:3;17480:20;17477:1;17470:31;17524:4;17521:1;17514:15;17552:4;17549:1;17542:15;17406:2;;17248:325;;;:::o;17578:135::-;;-1:-1:-1;;17638:17:1;;17635:2;;;17658:18;;:::i;:::-;-1:-1:-1;17705:1:1;17694:13;;17625:88::o;17718:112::-;;17776:1;17766:2;;17781:18;;:::i;:::-;-1:-1:-1;17815:9:1;;17756:74::o;17835:127::-;17896:10;17891:3;17887:20;17884:1;17877:31;17927:4;17924:1;17917:15;17951:4;17948:1;17941:15;17967:127;18028:10;18023:3;18019:20;18016:1;18009:31;18059:4;18056:1;18049:15;18083:4;18080:1;18073:15;18099:127;18160:10;18155:3;18151:20;18148:1;18141:31;18191:4;18188:1;18181:15;18215:4;18212:1;18205:15;18231:133;-1:-1:-1;;;;;;18307:32:1;;18297:43;;18287:2;;18354:1;18351;18344:12

Swarm Source

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