ETH Price: $3,688.67 (+0.83%)

Token

ERC-20: Elons Tesla (ETESLA)
 

Overview

Max Total Supply

177 ETESLA

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
loonez.eth
Balance
2 ETESLA
0x0515969fc614a45d1c8a6834c149ba08eaf12999
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:
ElonsTesla

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-05
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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 {}
}

// File: node_modules\openzeppelin-solidity\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-solidity\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\lib\Counters.sol

pragma solidity ^0.8.0;

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

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

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

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

// File: openzeppelin-solidity\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;
    address private _creator;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), 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() || _creator == _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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

contract ElonsTesla is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public constant TESLAS_MAX = 5000;
    uint256 public constant PURCHASE_LIMIT = 25;
    uint256 public PRICE = 80_000_000_000_000_000; // 0.08 ETH

    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;

    Counters.Counter private _publicTeslas;

    constructor() ERC721("Elons Tesla", "ETESLA") {}

    function setActive(bool isActive) external onlyOwner {
        _isActive = isActive;
    }

    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

    function gift(address to, uint256 numberOfTokens) external onlyOwner {
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 25 tokens"
        );
        require(
            _publicTeslas.current() < TESLAS_MAX,
            "Purchase would exceed TESLAS_MAX"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicTeslas.current();

            if (_publicTeslas.current() < TESLAS_MAX) {
                _publicTeslas.increment();
                _safeMint(to, tokenId);
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(_isActive, "Contract is not active");
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 25 tokens"
        );
        require(
            _publicTeslas.current() < TESLAS_MAX,
            "Purchase would exceed TESLAS_MAX"
        );
        require(
            PRICE * numberOfTokens <= msg.value,
            "ETH amount is not sufficient"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicTeslas.current();

            if (_publicTeslas.current() < TESLAS_MAX) {
                _publicTeslas.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TESLAS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"bool","name":"isActive","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67011c37937e080000600c5560a06040819052600060808190526200002791600d9162000141565b506040805160208101918290526000908190526200004891600e9162000141565b50600f805460ff191690553480156200006057600080fd5b50604080518082018252600b81526a456c6f6e73205465736c6160a81b602080830191825283518085019094526006845265455445534c4160d01b908401528151919291620000b29160009162000141565b508051620000c890600190602084019062000141565b5050506000620000dd6200013d60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000224565b3390565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b61230380620002346000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c5146104f5578063efef39a11461053e578063f2fde38b14610551578063f4a0a5281461057157600080fd5b8063c87b56dd1461048b578063cbce4c97146104ab578063d75e6110146104cb578063e8a3d485146104e057600080fd5b8063991076fb116100d1578063991076fb14610415578063a22cb4651461042b578063acec338a1461044b578063b88d4fde1461046b57600080fd5b80638da5cb5b146103c2578063938e3d7b146103e057806395d89b411461040057600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461035757806370a0823114610377578063715018a6146103975780638d859f3e146103ac57600080fd5b80633ccfd60b146102e257806342842e0e146102f75780634f6ccce71461031757806355f804b31461033757600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ece565b610591565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bc565b6040516101fe919061208f565b34801561023557600080fd5b50610249610244366004611f4c565b61064e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611e8b565b6106e8565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611dae565b6107fe565b3480156102ce57600080fd5b506102946102dd366004611e8b565b61082f565b3480156102ee57600080fd5b506102816108c5565b34801561030357600080fd5b50610281610312366004611dae565b610937565b34801561032357600080fd5b50610294610332366004611f4c565b610952565b34801561034357600080fd5b50610281610352366004611f06565b6109f3565b34801561036357600080fd5b50610249610372366004611f4c565b610a45565b34801561038357600080fd5b50610294610392366004611d5b565b610abc565b3480156103a357600080fd5b50610281610b43565b3480156103b857600080fd5b50610294600c5481565b3480156103ce57600080fd5b50600a546001600160a01b0316610249565b3480156103ec57600080fd5b506102816103fb366004611f06565b610bcc565b34801561040c57600080fd5b5061021c610c1e565b34801561042157600080fd5b5061029461138881565b34801561043757600080fd5b50610281610446366004611e62565b610c2d565b34801561045757600080fd5b50610281610466366004611eb4565b610cf2565b34801561047757600080fd5b50610281610486366004611de9565b610d44565b34801561049757600080fd5b5061021c6104a6366004611f4c565b610d7c565b3480156104b757600080fd5b506102816104c6366004611e8b565b610e0c565b3480156104d757600080fd5b50610294601981565b3480156104ec57600080fd5b5061021c610f46565b34801561050157600080fd5b506101f2610510366004611d7c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028161054c366004611f4c565b610f55565b34801561055d57600080fd5b5061028161056c366004611d5b565b6110f8565b34801561057d57600080fd5b5061028161058c366004611f4c565b6111f8565b60006001600160e01b0319821663780e9d6360e01b14806105b657506105b68261123c565b92915050565b6060600080546105cb90612208565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790612208565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f382610a45565b9050806001600160a01b0316836001600160a01b031614156107615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c3565b336001600160a01b038216148061077d575061077d8133610510565b6107ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c3565b6107f9838361128c565b505050565b61080833826112fa565b6108245760405162461bcd60e51b81526004016106c390612129565b6107f98383836113f1565b600061083a83610abc565b821061089c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108e85750600b546001600160a01b031633145b6109045760405162461bcd60e51b81526004016106c3906120f4565b6040514790339082156108fc029083906000818181858888f19350505050158015610933573d6000803e3d6000fd5b5050565b6107f983838360405180602001604052806000815250610d44565b600061095d60085490565b82106109c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c3565b600882815481106109e157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331480610a165750600b546001600160a01b031633145b610a325760405162461bcd60e51b81526004016106c3906120f4565b805161093390600e906020840190611c20565b6000818152600260205260408120546001600160a01b0316806105b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c3565b60006001600160a01b038216610b275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b665750600b546001600160a01b031633145b610b825760405162461bcd60e51b81526004016106c3906120f4565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bef5750600b546001600160a01b031633145b610c0b5760405162461bcd60e51b81526004016106c3906120f4565b805161093390600d906020840190611c20565b6060600180546105cb90612208565b6001600160a01b038216331415610c865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610d155750600b546001600160a01b031633145b610d315760405162461bcd60e51b81526004016106c3906120f4565b600f805460ff1916911515919091179055565b610d4e33836112fa565b610d6a5760405162461bcd60e51b81526004016106c390612129565b610d768484848461159c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dda5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106c3565b600e610de5836115cf565b604051602001610df6929190611fac565b6040516020818303038152906040529050919050565b600a546001600160a01b0316331480610e2f5750600b546001600160a01b031633145b610e4b5760405162461bcd60e51b81526004016106c3906120f4565b6019811115610e9c5760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206d696e7420757020746f20323520746f6b656e7300000060448201526064016106c3565b611388610ea860105490565b10610ef55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564205445534c41535f4d415860448201526064016106c3565b60005b818110156107f9576000610f0b60105490565b9050611388610f1960105490565b1015610f3357610f2960106116e9565b610f338482611706565b5080610f3e81612243565b915050610ef8565b6060600d80546105cb90612208565b600f5460ff16610fa05760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016106c3565b6019811115610ff15760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206d696e7420757020746f20323520746f6b656e7300000060448201526064016106c3565b611388610ffd60105490565b1061104a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564205445534c41535f4d415860448201526064016106c3565b3481600c5461105991906121a6565b11156110a75760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106c3565b60005b818110156109335760006110bd60105490565b90506113886110cb60105490565b10156110e5576110db60106116e9565b6110e53382611706565b50806110f081612243565b9150506110aa565b600a546001600160a01b031633148061111b5750600b546001600160a01b031633145b6111375760405162461bcd60e51b81526004016106c3906120f4565b6001600160a01b03811661119c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c3565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633148061121b5750600b546001600160a01b031633145b6112375760405162461bcd60e51b81526004016106c3906120f4565b600c55565b60006001600160e01b031982166380ac58cd60e01b148061126d57506001600160e01b03198216635b5e139f60e01b145b806105b657506301ffc9a760e01b6001600160e01b03198316146105b6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c182610a45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c3565b600061137e83610a45565b9050806001600160a01b0316846001600160a01b031614806113b95750836001600160a01b03166113ae8461064e565b6001600160a01b0316145b806113e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140482610a45565b6001600160a01b03161461146c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c3565b6001600160a01b0382166114ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c3565b6114d9838383611720565b6114e460008261128c565b6001600160a01b038316600090815260036020526040812080546001929061150d9084906121c5565b90915550506001600160a01b038216600090815260036020526040812080546001929061153b90849061217a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115a78484846113f1565b6115b3848484846117d8565b610d765760405162461bcd60e51b81526004016106c3906120a2565b6060816115f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561161d578061160781612243565b91506116169050600a83612192565b91506115f7565b60008167ffffffffffffffff81111561164657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611670576020820181803683370190505b5090505b84156113e9576116856001836121c5565b9150611692600a8661225e565b61169d90603061217a565b60f81b8183815181106116c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116e2600a86612192565b9450611674565b60018160000160008282546116fe919061217a565b909155505050565b6109338282604051806020016040528060008152506118e5565b6001600160a01b03831661177b5761177681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61179e565b816001600160a01b0316836001600160a01b03161461179e5761179e8382611918565b6001600160a01b0382166117b5576107f9816119b5565b826001600160a01b0316826001600160a01b0316146107f9576107f98282611a8e565b60006001600160a01b0384163b156118da57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181c903390899088908890600401612052565b602060405180830381600087803b15801561183657600080fd5b505af1925050508015611866575060408051601f3d908101601f1916820190925261186391810190611eea565b60015b6118c0573d808015611894576040519150601f19603f3d011682016040523d82523d6000602084013e611899565b606091505b5080516118b85760405162461bcd60e51b81526004016106c3906120a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e9565b506001949350505050565b6118ef8383611ad2565b6118fc60008484846117d8565b6107f95760405162461bcd60e51b81526004016106c3906120a2565b6000600161192584610abc565b61192f91906121c5565b600083815260076020526040902054909150808214611982576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c7906001906121c5565b600083815260096020526040812054600880549394509092849081106119fd57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a2c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a7257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a9983610abc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b6000818152600260205260409020546001600160a01b031615611b8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b611b9960008383611720565b6001600160a01b0382166000908152600360205260408120805460019290611bc290849061217a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c2c90612208565b90600052602060002090601f016020900481019282611c4e5760008555611c94565b82601f10611c6757805160ff1916838001178555611c94565b82800160010185558215611c94579182015b82811115611c94578251825591602001919060010190611c79565b50611ca0929150611ca4565b5090565b5b80821115611ca05760008155600101611ca5565b600067ffffffffffffffff80841115611cd457611cd461229e565b604051601f8501601f19908116603f01168101908282118183101715611cfc57611cfc61229e565b81604052809350858152868686011115611d1557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d4657600080fd5b919050565b80358015158114611d4657600080fd5b600060208284031215611d6c578081fd5b611d7582611d2f565b9392505050565b60008060408385031215611d8e578081fd5b611d9783611d2f565b9150611da560208401611d2f565b90509250929050565b600080600060608486031215611dc2578081fd5b611dcb84611d2f565b9250611dd960208501611d2f565b9150604084013590509250925092565b60008060008060808587031215611dfe578081fd5b611e0785611d2f565b9350611e1560208601611d2f565b925060408501359150606085013567ffffffffffffffff811115611e37578182fd5b8501601f81018713611e47578182fd5b611e5687823560208401611cb9565b91505092959194509250565b60008060408385031215611e74578182fd5b611e7d83611d2f565b9150611da560208401611d4b565b60008060408385031215611e9d578182fd5b611ea683611d2f565b946020939093013593505050565b600060208284031215611ec5578081fd5b611d7582611d4b565b600060208284031215611edf578081fd5b8135611d75816122b4565b600060208284031215611efb578081fd5b8151611d75816122b4565b600060208284031215611f17578081fd5b813567ffffffffffffffff811115611f2d578182fd5b8201601f81018413611f3d578182fd5b6113e984823560208401611cb9565b600060208284031215611f5d578081fd5b5035919050565b60008151808452611f7c8160208601602086016121dc565b601f01601f19169290920160200192915050565b60008151611fa28185602086016121dc565b9290920192915050565b600080845482600182811c915080831680611fc857607f831692505b6020808410821415611fe857634e487b7160e01b87526022600452602487fd5b818015611ffc576001811461200d57612039565b60ff19861689528489019650612039565b60008b815260209020885b868110156120315781548b820152908501908301612018565b505084890196505b5050505050506120498185611f90565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208590830184611f64565b9695505050505050565b602081526000611d756020830184611f64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561218d5761218d612272565b500190565b6000826121a1576121a1612288565b500490565b60008160001904831182151516156121c0576121c0612272565b500290565b6000828210156121d7576121d7612272565b500390565b60005b838110156121f75781810151838201526020016121df565b83811115610d765750506000910152565b600181811c9082168061221c57607f821691505b6020821081141561223d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561225757612257612272565b5060010190565b60008261226d5761226d612288565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146122ca57600080fd5b5056fea264697066735822122023a792e561551eef3960f455506b524086f862cea5b9b5a8152cb836f72bcfe564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c5146104f5578063efef39a11461053e578063f2fde38b14610551578063f4a0a5281461057157600080fd5b8063c87b56dd1461048b578063cbce4c97146104ab578063d75e6110146104cb578063e8a3d485146104e057600080fd5b8063991076fb116100d1578063991076fb14610415578063a22cb4651461042b578063acec338a1461044b578063b88d4fde1461046b57600080fd5b80638da5cb5b146103c2578063938e3d7b146103e057806395d89b411461040057600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461035757806370a0823114610377578063715018a6146103975780638d859f3e146103ac57600080fd5b80633ccfd60b146102e257806342842e0e146102f75780634f6ccce71461031757806355f804b31461033757600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ece565b610591565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bc565b6040516101fe919061208f565b34801561023557600080fd5b50610249610244366004611f4c565b61064e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611e8b565b6106e8565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611dae565b6107fe565b3480156102ce57600080fd5b506102946102dd366004611e8b565b61082f565b3480156102ee57600080fd5b506102816108c5565b34801561030357600080fd5b50610281610312366004611dae565b610937565b34801561032357600080fd5b50610294610332366004611f4c565b610952565b34801561034357600080fd5b50610281610352366004611f06565b6109f3565b34801561036357600080fd5b50610249610372366004611f4c565b610a45565b34801561038357600080fd5b50610294610392366004611d5b565b610abc565b3480156103a357600080fd5b50610281610b43565b3480156103b857600080fd5b50610294600c5481565b3480156103ce57600080fd5b50600a546001600160a01b0316610249565b3480156103ec57600080fd5b506102816103fb366004611f06565b610bcc565b34801561040c57600080fd5b5061021c610c1e565b34801561042157600080fd5b5061029461138881565b34801561043757600080fd5b50610281610446366004611e62565b610c2d565b34801561045757600080fd5b50610281610466366004611eb4565b610cf2565b34801561047757600080fd5b50610281610486366004611de9565b610d44565b34801561049757600080fd5b5061021c6104a6366004611f4c565b610d7c565b3480156104b757600080fd5b506102816104c6366004611e8b565b610e0c565b3480156104d757600080fd5b50610294601981565b3480156104ec57600080fd5b5061021c610f46565b34801561050157600080fd5b506101f2610510366004611d7c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028161054c366004611f4c565b610f55565b34801561055d57600080fd5b5061028161056c366004611d5b565b6110f8565b34801561057d57600080fd5b5061028161058c366004611f4c565b6111f8565b60006001600160e01b0319821663780e9d6360e01b14806105b657506105b68261123c565b92915050565b6060600080546105cb90612208565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790612208565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f382610a45565b9050806001600160a01b0316836001600160a01b031614156107615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c3565b336001600160a01b038216148061077d575061077d8133610510565b6107ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c3565b6107f9838361128c565b505050565b61080833826112fa565b6108245760405162461bcd60e51b81526004016106c390612129565b6107f98383836113f1565b600061083a83610abc565b821061089c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108e85750600b546001600160a01b031633145b6109045760405162461bcd60e51b81526004016106c3906120f4565b6040514790339082156108fc029083906000818181858888f19350505050158015610933573d6000803e3d6000fd5b5050565b6107f983838360405180602001604052806000815250610d44565b600061095d60085490565b82106109c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c3565b600882815481106109e157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331480610a165750600b546001600160a01b031633145b610a325760405162461bcd60e51b81526004016106c3906120f4565b805161093390600e906020840190611c20565b6000818152600260205260408120546001600160a01b0316806105b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c3565b60006001600160a01b038216610b275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b665750600b546001600160a01b031633145b610b825760405162461bcd60e51b81526004016106c3906120f4565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bef5750600b546001600160a01b031633145b610c0b5760405162461bcd60e51b81526004016106c3906120f4565b805161093390600d906020840190611c20565b6060600180546105cb90612208565b6001600160a01b038216331415610c865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610d155750600b546001600160a01b031633145b610d315760405162461bcd60e51b81526004016106c3906120f4565b600f805460ff1916911515919091179055565b610d4e33836112fa565b610d6a5760405162461bcd60e51b81526004016106c390612129565b610d768484848461159c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dda5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106c3565b600e610de5836115cf565b604051602001610df6929190611fac565b6040516020818303038152906040529050919050565b600a546001600160a01b0316331480610e2f5750600b546001600160a01b031633145b610e4b5760405162461bcd60e51b81526004016106c3906120f4565b6019811115610e9c5760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206d696e7420757020746f20323520746f6b656e7300000060448201526064016106c3565b611388610ea860105490565b10610ef55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564205445534c41535f4d415860448201526064016106c3565b60005b818110156107f9576000610f0b60105490565b9050611388610f1960105490565b1015610f3357610f2960106116e9565b610f338482611706565b5080610f3e81612243565b915050610ef8565b6060600d80546105cb90612208565b600f5460ff16610fa05760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016106c3565b6019811115610ff15760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206d696e7420757020746f20323520746f6b656e7300000060448201526064016106c3565b611388610ffd60105490565b1061104a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564205445534c41535f4d415860448201526064016106c3565b3481600c5461105991906121a6565b11156110a75760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016106c3565b60005b818110156109335760006110bd60105490565b90506113886110cb60105490565b10156110e5576110db60106116e9565b6110e53382611706565b50806110f081612243565b9150506110aa565b600a546001600160a01b031633148061111b5750600b546001600160a01b031633145b6111375760405162461bcd60e51b81526004016106c3906120f4565b6001600160a01b03811661119c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c3565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633148061121b5750600b546001600160a01b031633145b6112375760405162461bcd60e51b81526004016106c3906120f4565b600c55565b60006001600160e01b031982166380ac58cd60e01b148061126d57506001600160e01b03198216635b5e139f60e01b145b806105b657506301ffc9a760e01b6001600160e01b03198316146105b6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c182610a45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c3565b600061137e83610a45565b9050806001600160a01b0316846001600160a01b031614806113b95750836001600160a01b03166113ae8461064e565b6001600160a01b0316145b806113e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140482610a45565b6001600160a01b03161461146c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c3565b6001600160a01b0382166114ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c3565b6114d9838383611720565b6114e460008261128c565b6001600160a01b038316600090815260036020526040812080546001929061150d9084906121c5565b90915550506001600160a01b038216600090815260036020526040812080546001929061153b90849061217a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115a78484846113f1565b6115b3848484846117d8565b610d765760405162461bcd60e51b81526004016106c3906120a2565b6060816115f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561161d578061160781612243565b91506116169050600a83612192565b91506115f7565b60008167ffffffffffffffff81111561164657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611670576020820181803683370190505b5090505b84156113e9576116856001836121c5565b9150611692600a8661225e565b61169d90603061217a565b60f81b8183815181106116c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116e2600a86612192565b9450611674565b60018160000160008282546116fe919061217a565b909155505050565b6109338282604051806020016040528060008152506118e5565b6001600160a01b03831661177b5761177681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61179e565b816001600160a01b0316836001600160a01b03161461179e5761179e8382611918565b6001600160a01b0382166117b5576107f9816119b5565b826001600160a01b0316826001600160a01b0316146107f9576107f98282611a8e565b60006001600160a01b0384163b156118da57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181c903390899088908890600401612052565b602060405180830381600087803b15801561183657600080fd5b505af1925050508015611866575060408051601f3d908101601f1916820190925261186391810190611eea565b60015b6118c0573d808015611894576040519150601f19603f3d011682016040523d82523d6000602084013e611899565b606091505b5080516118b85760405162461bcd60e51b81526004016106c3906120a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e9565b506001949350505050565b6118ef8383611ad2565b6118fc60008484846117d8565b6107f95760405162461bcd60e51b81526004016106c3906120a2565b6000600161192584610abc565b61192f91906121c5565b600083815260076020526040902054909150808214611982576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c7906001906121c5565b600083815260096020526040812054600880549394509092849081106119fd57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a2c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a7257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a9983610abc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b6000818152600260205260409020546001600160a01b031615611b8d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b611b9960008383611720565b6001600160a01b0382166000908152600360205260408120805460019290611bc290849061217a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c2c90612208565b90600052602060002090601f016020900481019282611c4e5760008555611c94565b82601f10611c6757805160ff1916838001178555611c94565b82800160010185558215611c94579182015b82811115611c94578251825591602001919060010190611c79565b50611ca0929150611ca4565b5090565b5b80821115611ca05760008155600101611ca5565b600067ffffffffffffffff80841115611cd457611cd461229e565b604051601f8501601f19908116603f01168101908282118183101715611cfc57611cfc61229e565b81604052809350858152868686011115611d1557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d4657600080fd5b919050565b80358015158114611d4657600080fd5b600060208284031215611d6c578081fd5b611d7582611d2f565b9392505050565b60008060408385031215611d8e578081fd5b611d9783611d2f565b9150611da560208401611d2f565b90509250929050565b600080600060608486031215611dc2578081fd5b611dcb84611d2f565b9250611dd960208501611d2f565b9150604084013590509250925092565b60008060008060808587031215611dfe578081fd5b611e0785611d2f565b9350611e1560208601611d2f565b925060408501359150606085013567ffffffffffffffff811115611e37578182fd5b8501601f81018713611e47578182fd5b611e5687823560208401611cb9565b91505092959194509250565b60008060408385031215611e74578182fd5b611e7d83611d2f565b9150611da560208401611d4b565b60008060408385031215611e9d578182fd5b611ea683611d2f565b946020939093013593505050565b600060208284031215611ec5578081fd5b611d7582611d4b565b600060208284031215611edf578081fd5b8135611d75816122b4565b600060208284031215611efb578081fd5b8151611d75816122b4565b600060208284031215611f17578081fd5b813567ffffffffffffffff811115611f2d578182fd5b8201601f81018413611f3d578182fd5b6113e984823560208401611cb9565b600060208284031215611f5d578081fd5b5035919050565b60008151808452611f7c8160208601602086016121dc565b601f01601f19169290920160200192915050565b60008151611fa28185602086016121dc565b9290920192915050565b600080845482600182811c915080831680611fc857607f831692505b6020808410821415611fe857634e487b7160e01b87526022600452602487fd5b818015611ffc576001811461200d57612039565b60ff19861689528489019650612039565b60008b815260209020885b868110156120315781548b820152908501908301612018565b505084890196505b5050505050506120498185611f90565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208590830184611f64565b9695505050505050565b602081526000611d756020830184611f64565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561218d5761218d612272565b500190565b6000826121a1576121a1612288565b500490565b60008160001904831182151516156121c0576121c0612272565b500290565b6000828210156121d7576121d7612272565b500390565b60005b838110156121f75781810151838201526020016121df565b83811115610d765750506000910152565b600181811c9082168061221c57607f821691505b6020821081141561223d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561225757612257612272565b5060010190565b60008261226d5761226d612288565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146122ca57600080fd5b5056fea264697066735822122023a792e561551eef3960f455506b524086f862cea5b9b5a8152cb836f72bcfe564736f6c63430008040033

Deployed Bytecode Sourcemap

46971:2888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36765:300;;;;;;;;;;-1:-1:-1;36765:300:0;;;;;:::i;:::-;;:::i;:::-;;;6951:14:1;;6944:22;6926:41;;6914:2;6899:18;36765:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6249:32:1;;;6231:51;;6219:2;6204:18;24467:308:0;6186:102:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;37568:113;;;;;;;;;;-1:-1:-1;37656:10:0;:17;37568:113;;;15915:25:1;;;15903:2;15888:18;37568:113:0;15870:76:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;37149:343::-;;;;;;;;;;-1:-1:-1;37149:343:0;;;;;:::i;:::-;;:::i;49709:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;37758:320::-;;;;;;;;;;-1:-1:-1;37758:320:0;;;;;:::i;:::-;;:::i;47695:96::-;;;;;;;;;;-1:-1:-1;47695:96:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;46353:148::-;;;;;;;;;;;;;:::i;47201:45::-;;;;;;;;;;;;;;;;45637:87;;;;;;;;;;-1:-1:-1;45710:6:0;;-1:-1:-1;;;;;45710:6:0;45637:87;;47588:99;;;;;;;;;;-1:-1:-1;47588:99:0;;;;;:::i;:::-;;:::i;23054:104::-;;;;;;;;;;;;;:::i;47103:41::-;;;;;;;;;;;;47140:4;47103:41;;24847:327;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;47488:92::-;;;;;;;;;;-1:-1:-1;47488:92:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49425:276::-;;;;;;;;;;-1:-1:-1;49425:276:0;;;;;:::i;:::-;;:::i;47903:612::-;;;;;;;;;;-1:-1:-1;47903:612:0;;;;;:::i;:::-;;:::i;47151:43::-;;;;;;;;;;;;47192:2;47151:43;;49320:97;;;;;;;;;;;;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;48523:789;;;;;;:::i;:::-;;:::i;46656:281::-;;;;;;;;;;-1:-1:-1;46656:281:0;;;;;:::i;:::-;;:::i;47799:96::-;;;;;;;;;;-1:-1:-1;47799:96:0;;;;;:::i;:::-;;:::i;36765:300::-;36912:4;-1:-1:-1;;;;;;36954:50:0;;-1:-1:-1;;;36954:50:0;;:103;;;37021:36;37045:11;37021:23;:36::i;:::-;36934:123;36765:300;-1:-1:-1;;36765:300:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;13196:2:1;24613:110:0;;;13178:21:1;13235:2;13215:18;;;13208:30;13274:34;13254:18;;;13247:62;-1:-1:-1;;;13325:18:1;;;13318:42;13377:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;14738:2:1;24121:57:0;;;14720:21:1;14777:2;14757:18;;;14750:30;14816:34;14796:18;;;14789:62;-1:-1:-1;;;14867:18:1;;;14860:31;14908:19;;24121:57:0;14710:223:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;11238:2:1;24191:168:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:34;11296:18;;;11289:62;11387:26;11367:18;;;11360:54;11431:19;;24191:168:0;11210:246:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;23990:411;;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;37149:343::-;37291:7;37346:23;37363:5;37346:16;:23::i;:::-;37338:5;:31;37316:124;;;;-1:-1:-1;;;37316:124:0;;7404:2:1;37316:124:0;;;7386:21:1;7443:2;7423:18;;;7416:30;7482:34;7462:18;;;7455:62;-1:-1:-1;;;7533:18:1;;;7526:41;7584:19;;37316:124:0;7376:233:1;37316:124:0;-1:-1:-1;;;;;;37458:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37149:343::o;49709:147::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;49811:37:::1;::::0;49777:21:::1;::::0;49819:10:::1;::::0;49811:37;::::1;;;::::0;49777:21;;49759:15:::1;49811:37:::0;49759:15;49811:37;49777:21;49819:10;49811:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45993:1;49709:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;37758:320::-;37878:7;37933:30;37656:10;:17;;37568:113;37933:30;37925:5;:38;37903:132;;;;-1:-1:-1;;;37903:132:0;;15558:2:1;37903:132:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:34;15616:18;;;15609:62;-1:-1:-1;;;15687:18:1;;;15680:42;15739:19;;37903:132:0;15530:234:1;37903:132:0;38053:10;38064:5;38053:17;;;;;;-1:-1:-1;;;38053:17:0;;;;;;;;;;;;;;;;;38046:24;;37758:320;;;:::o;47695:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47764:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;22492:326::-:0;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;12074:2:1;22677:110:0;;;12056:21:1;12113:2;12093:18;;;12086:30;12152:34;12132:18;;;12125:62;-1:-1:-1;;;12203:18:1;;;12196:39;12252:19;;22677:110:0;12046:231:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;11663:2:1;22277:111:0;;;11645:21:1;11702:2;11682:18;;;11675:30;11741:34;11721:18;;;11714:62;-1:-1:-1;;;11792:18:1;;;11785:40;11842:19;;22277:111:0;11635:232:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;46353:148::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;46444:6:::1;::::0;46423:40:::1;::::0;46460:1:::1;::::0;-1:-1:-1;;;;;46444:6:0::1;::::0;46423:40:::1;::::0;46460:1;;46423:40:::1;46474:6;:19:::0;;-1:-1:-1;;;;;;46474:19:0::1;::::0;;46353:148::o;47588:99::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47661:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23054:104::-:0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;9404:2:1;24974:62:0;;;9386:21:1;9443:2;9423:18;;;9416:30;9482:27;9462:18;;;9455:55;9527:18;;24974:62:0;9376:175:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;6926:41:1;;;25049:42:0;;16975:10;25118:48;;6899:18:1;25118:48:0;;;;;;;24847:327;;:::o;47488:92::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47552:9:::1;:20:::0;;-1:-1:-1;;47552:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47488:92::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49425:276::-;28206:4;28230:16;;;:7;:16;;;;;;49534:13;;-1:-1:-1;;;;;28230:16:0;49565:49;;;;-1:-1:-1;;;49565:49:0;;9758:2:1;49565:49:0;;;9740:21:1;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:50;9876:18;;49565:49:0;9730:170:1;49565:49:0;49658:13;49673:18;:7;:16;:18::i;:::-;49641:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49627:66;;49425:276;;;:::o;47903:612::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47192:2:::1;48005:14;:32;;47983:111;;;::::0;-1:-1:-1;;;47983:111:0;;13609:2:1;47983:111:0::1;::::0;::::1;13591:21:1::0;13648:2;13628:18;;;13621:30;13687:31;13667:18;;;13660:59;13736:18;;47983:111:0::1;13581:179:1::0;47983:111:0::1;47140:4;48127:23;:13;44066:14:::0;;43974:114;48127:23:::1;:36;48105:118;;;::::0;-1:-1:-1;;;48105:118:0;;10877:2:1;48105:118:0::1;::::0;::::1;10859:21:1::0;;;10896:18;;;10889:30;10955:34;10935:18;;;10928:62;11007:18;;48105:118:0::1;10849:182:1::0;48105:118:0::1;48241:9;48236:272;48260:14;48256:1;:18;48236:272;;;48296:15;48314:23;:13;44066:14:::0;;43974:114;48314:23:::1;48296:41;;47140:4;48358:23;:13;44066:14:::0;;43974:114;48358:23:::1;:36;48354:143;;;48415:25;:13;:23;:25::i;:::-;48459:22;48469:2;48473:7;48459:9;:22::i;:::-;-1:-1:-1::0;48276:3:0;::::1;::::0;::::1;:::i;:::-;;;;48236:272;;49320:97:::0;49364:13;49397:12;49390:19;;;;;:::i;48523:789::-;48601:9;;;;48593:44;;;;-1:-1:-1;;;48593:44:0;;12845:2:1;48593:44:0;;;12827:21:1;12884:2;12864:18;;;12857:30;-1:-1:-1;;;12903:18:1;;;12896:52;12965:18;;48593:44:0;12817:172:1;48593:44:0;47192:2;48670:14;:32;;48648:111;;;;-1:-1:-1;;;48648:111:0;;13609:2:1;48648:111:0;;;13591:21:1;13648:2;13628:18;;;13621:30;13687:31;13667:18;;;13660:59;13736:18;;48648:111:0;13581:179:1;48648:111:0;47140:4;48792:23;:13;44066:14;;43974:114;48792:23;:36;48770:118;;;;-1:-1:-1;;;48770:118:0;;10877:2:1;48770:118:0;;;10859:21:1;;;10896:18;;;10889:30;10955:34;10935:18;;;10928:62;11007:18;;48770:118:0;10849:182:1;48770:118:0;48947:9;48929:14;48921:5;;:22;;;;:::i;:::-;:35;;48899:113;;;;-1:-1:-1;;;48899:113:0;;10107:2:1;48899:113:0;;;10089:21:1;10146:2;10126:18;;;10119:30;10185;10165:18;;;10158:58;10233:18;;48899:113:0;10079:178:1;48899:113:0;49030:9;49025:280;49049:14;49045:1;:18;49025:280;;;49085:15;49103:23;:13;44066:14;;43974:114;49103:23;49085:41;;47140:4;49147:23;:13;44066:14;;43974:114;49147:23;:36;49143:151;;;49204:25;:13;:23;:25::i;:::-;49248:30;49258:10;49270:7;49248:9;:30::i;:::-;-1:-1:-1;49065:3:0;;;;:::i;:::-;;;;49025:280;;46656:281;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46759:22:0;::::1;46737:110;;;::::0;-1:-1:-1;;;46737:110:0;;8235:2:1;46737:110:0::1;::::0;::::1;8217:21:1::0;8274:2;8254:18;;;8247:30;8313:34;8293:18;;;8286:62;-1:-1:-1;;;8364:18:1;;;8357:36;8410:19;;46737:110:0::1;8207:228:1::0;46737:110:0::1;46884:6;::::0;46863:38:::1;::::0;-1:-1:-1;;;;;46863:38:0;;::::1;::::0;46884:6:::1;::::0;46863:38:::1;::::0;46884:6:::1;::::0;46863:38:::1;46912:6;:17:::0;;-1:-1:-1;;;;;;46912:17:0::1;-1:-1:-1::0;;;;;46912:17:0;;;::::1;::::0;;;::::1;::::0;;46656:281::o;47799:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47870:5:::1;:17:::0;47799:96::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;10464:2:1;28586:110:0;;;10446:21:1;10503:2;10483:18;;;10476:30;10542:34;10522:18;;;10515:62;-1:-1:-1;;;10593:18:1;;;10586:42;10645:19;;28586:110:0;10436:234:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;14328:2:1;31655:122:0;;;14310:21:1;14367:2;14347:18;;;14340:30;14406:34;14386:18;;;14379:62;-1:-1:-1;;;14457:18:1;;;14450:39;14506:19;;31655:122:0;14300:231:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;8999:2:1;31788:65:0;;;8981:21:1;9038:2;9018:18;;;9011:30;9077:34;9057:18;;;9050:62;-1:-1:-1;;;9128:18:1;;;9121:34;9172:19;;31788:65:0;8971:226:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;-1:-1:-1;;;18069:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;-1:-1:-1;;;18157:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;44096:117;44193:1;44175:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;44096:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;38691:589::-;-1:-1:-1;;;;;38897:18:0;;38893:187;;38932:40;38964:7;40107:10;:17;;40080:24;;;;:15;:24;;;;;:44;;;40135:24;;;;;;;;;;;;40003:164;38932:40;38893:187;;;39002:2;-1:-1:-1;;;;;38994:10:0;:4;-1:-1:-1;;;;;38994:10:0;;38990:90;;39021:47;39054:4;39060:7;39021:32;:47::i;:::-;-1:-1:-1;;;;;39094:16:0;;39090:183;;39127:45;39164:7;39127:36;:45::i;39090:183::-;39200:4;-1:-1:-1;;;;;39194:10:0;:2;-1:-1:-1;;;;;39194:10:0;;39190:83;;39221:40;39249:2;39253:7;39221:27;:40::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;40794:1002::-;41074:22;41124:1;41099:22;41116:4;41099:16;:22::i;:::-;:26;;;;:::i;:::-;41136:18;41157:26;;;:17;:26;;;;;;41074:51;;-1:-1:-1;41290:28:0;;;41286:328;;-1:-1:-1;;;;;41357:18:0;;41335:19;41357:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41408:30;;;;;;:44;;;41525:30;;:17;:30;;;;;:43;;;41286:328;-1:-1:-1;41710:26:0;;;;:17;:26;;;;;;;;41703:33;;;-1:-1:-1;;;;;41754:18:0;;;;;:12;:18;;;;;:34;;;;;;;41747:41;40794:1002::o;42091:1079::-;42369:10;:17;42344:22;;42369:21;;42389:1;;42369:21;:::i;:::-;42401:18;42422:24;;;:15;:24;;;;;;42795:10;:26;;42344:46;;-1:-1:-1;42422:24:0;;42344:46;;42795:26;;;;-1:-1:-1;;;42795:26:0;;;;;;;;;;;;;;;;;42773:48;;42859:11;42834:10;42845;42834:22;;;;;;-1:-1:-1;;;42834:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42939:28;;;:15;:28;;;;;;;:41;;;43111:24;;;;;43104:31;43146:10;:16;;;;;-1:-1:-1;;;43146:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42091:1079;;;;:::o;39581:221::-;39666:14;39683:20;39700:2;39683:16;:20::i;:::-;-1:-1:-1;;;;;39714:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39759:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39581:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;12484:2:1;30295:61:0;;;12466:21:1;;;12503:18;;;12496:30;12562:34;12542:18;;;12535:62;12614:18;;30295:61:0;12456:182:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;8642:2:1;30367:58:0;;;8624:21:1;8681:2;8661:18;;;8654:30;8720;8700:18;;;8693:58;8768:18;;30367:58:0;8614:178:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;:::-;1144:39;1063:126;-1:-1:-1;;;1063:126:1:o;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:185::-;4754:3;4792:5;4786:12;4807:52;4852:6;4847:3;4840:4;4833:5;4829:16;4807:52;:::i;:::-;4875:16;;;;;4762:135;-1:-1:-1;;4762:135:1:o;4902:1178::-;5078:3;5107;5142:6;5136:13;5172:3;5194:1;5222:9;5218:2;5214:18;5204:28;;5282:2;5271:9;5267:18;5304;5294:2;;5348:4;5340:6;5336:17;5326:27;;5294:2;5374;5422;5414:6;5411:14;5391:18;5388:38;5385:2;;;-1:-1:-1;;;5449:33:1;;5505:4;5502:1;5495:15;5535:4;5456:3;5523:17;5385:2;5566:18;5593:104;;;;5711:1;5706:322;;;;5559:469;;5593:104;-1:-1:-1;;5626:24:1;;5614:37;;5671:16;;;;-1:-1:-1;5593:104:1;;5706:322;15998:4;16017:17;;;16067:4;16051:21;;5801:3;5817:165;5831:6;5828:1;5825:13;5817:165;;;5909:14;;5896:11;;;5889:35;5952:16;;;;5846:10;;5817:165;;;5821:3;;6011:6;6006:3;6002:16;5995:23;;5559:469;;;;;;;6044:30;6070:3;6062:6;6044:30;:::i;:::-;6037:37;5086:994;-1:-1:-1;;;;;5086:994:1:o;6293:488::-;-1:-1:-1;;;;;6562:15:1;;;6544:34;;6614:15;;6609:2;6594:18;;6587:43;6661:2;6646:18;;6639:34;;;6709:3;6704:2;6689:18;;6682:31;;;6487:4;;6730:45;;6755:19;;6747:6;6730:45;:::i;:::-;6722:53;6496:285;-1:-1:-1;;;;;;6496:285:1:o;6978:219::-;7127:2;7116:9;7109:21;7090:4;7147:44;7187:2;7176:9;7172:18;7164:6;7147:44;:::i;7614:414::-;7816:2;7798:21;;;7855:2;7835:18;;;7828:30;7894:34;7889:2;7874:18;;7867:62;-1:-1:-1;;;7960:2:1;7945:18;;7938:48;8018:3;8003:19;;7788:240::o;13765:356::-;13967:2;13949:21;;;13986:18;;;13979:30;14045:34;14040:2;14025:18;;14018:62;14112:2;14097:18;;13939:182::o;14938:413::-;15140:2;15122:21;;;15179:2;15159:18;;;15152:30;15218:34;15213:2;15198:18;;15191:62;-1:-1:-1;;;15284:2:1;15269:18;;15262:47;15341:3;15326:19;;15112:239::o;16083:128::-;16123:3;16154:1;16150:6;16147:1;16144:13;16141:2;;;16160:18;;:::i;:::-;-1:-1:-1;16196:9:1;;16131:80::o;16216:120::-;16256:1;16282;16272:2;;16287:18;;:::i;:::-;-1:-1:-1;16321:9:1;;16262:74::o;16341:168::-;16381:7;16447:1;16443;16439:6;16435:14;16432:1;16429:21;16424:1;16417:9;16410:17;16406:45;16403:2;;;16454:18;;:::i;:::-;-1:-1:-1;16494:9:1;;16393:116::o;16514:125::-;16554:4;16582:1;16579;16576:8;16573:2;;;16587:18;;:::i;:::-;-1:-1:-1;16624:9:1;;16563:76::o;16644:258::-;16716:1;16726:113;16740:6;16737:1;16734:13;16726:113;;;16816:11;;;16810:18;16797:11;;;16790:39;16762:2;16755:10;16726:113;;;16857:6;16854:1;16851:13;16848:2;;;-1:-1:-1;;16892:1:1;16874:16;;16867:27;16697:205::o;16907:380::-;16986:1;16982:12;;;;17029;;;17050:2;;17104:4;17096:6;17092:17;17082:27;;17050:2;17157;17149:6;17146:14;17126:18;17123:38;17120:2;;;17203:10;17198:3;17194:20;17191:1;17184:31;17238:4;17235:1;17228:15;17266:4;17263:1;17256:15;17120:2;;16962:325;;;:::o;17292:135::-;17331:3;-1:-1:-1;;17352:17:1;;17349:2;;;17372:18;;:::i;:::-;-1:-1:-1;17419:1:1;17408:13;;17339:88::o;17432:112::-;17464:1;17490;17480:2;;17495:18;;:::i;:::-;-1:-1:-1;17529:9:1;;17470:74::o;17549:127::-;17610:10;17605:3;17601:20;17598:1;17591:31;17641:4;17638:1;17631:15;17665:4;17662:1;17655:15;17681:127;17742:10;17737:3;17733:20;17730:1;17723:31;17773:4;17770:1;17763:15;17797:4;17794:1;17787:15;17813:127;17874:10;17869:3;17865:20;17862:1;17855:31;17905:4;17902:1;17895:15;17929:4;17926:1;17919:15;17945:131;-1:-1:-1;;;;;;18019:32:1;;18009:43;;17999:2;;18066:1;18063;18056:12;17999:2;17989:87;:::o

Swarm Source

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