ETH Price: $3,466.05 (+2.12%)
Gas: 10 Gwei

Token

Meta Force (FORCE)
 

Overview

Max Total Supply

538 FORCE

Holders

295

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tragan47.eth
Balance
1 FORCE
0xe3a33bd4e6a6844efdb4eca61778aaf8851b80f7
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:
MetaForce

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;

contract MetaForce is ERC721, Ownable {
    uint256 public constant MAX_SUPPLY = 777;
    uint16 private mintCount = 0;

    uint256 public price = 80000000000000000;
    string baseTokenURI;
    bool public saleOpen = false;

    event Minted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Meta Force", "FORCE") {
        setBaseURI(baseURI);
    }

    function totalSupply() public view returns (uint16) {
        return mintCount;
    }

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

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function toggleSale() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    function mint(address _to,uint16 _count) external payable {
        uint16 supply = totalSupply();

        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        require(_count > 0, "Minimum 1 NFT has to be minted per transaction");

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 5,
                "Maximum 5 NFTs can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        mintCount += _count;

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, ++supply);
            emit Minted(supply);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"","type":"uint16"}],"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"}]

60806040526006805461ffff60a01b1916905567011c37937e0800006007556009805460ff191690553480156200003557600080fd5b50604051620022d4380380620022d483398101604081905262000058916200025f565b604080518082018252600a8152694d65746120466f72636560b01b602080830191825283518085019094526005845264464f52434560d81b908401528151919291620000a791600091620001b9565b508051620000bd906001906020840190620001b9565b505050620000da620000d4620000ec60201b60201c565b620000f0565b620000e58162000142565b50620003b6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014c620000ec565b6001600160a01b03166200015f620001aa565b6001600160a01b031614620001915760405162461bcd60e51b815260040162000188906200032e565b60405180910390fd5b8051620001a6906008906020840190620001b9565b5050565b6006546001600160a01b031690565b828054620001c79062000363565b90600052602060002090601f016020900481019282620001eb576000855562000236565b82601f106200020657805160ff191683800117855562000236565b8280016001018555821562000236579182015b828111156200023657825182559160200191906001019062000219565b506200024492915062000248565b5090565b5b8082111562000244576000815560010162000249565b6000602080838503121562000272578182fd5b82516001600160401b038082111562000289578384fd5b818501915085601f8301126200029d578384fd5b815181811115620002b257620002b2620003a0565b604051601f8201601f1916810185018381118282101715620002d857620002d8620003a0565b6040528181528382018501881015620002ef578586fd5b8592505b81831015620003125783830185015181840186015291840191620002f3565b818311156200032357858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200037857607f821691505b602082108114156200039a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f0e80620003c66000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103dc578063c87b56dd146103fc578063e985e9c51461041c578063f2fde38b1461043c57610166565b8063a22cb46514610389578063a2b40d19146103a9578063ad0be4bd146103c957610166565b8063715018a61461030b5780637d8966e4146103205780638da5cb5b1461033557806395d89b411461034a57806399288dbb1461035f578063a035b1fe1461037457610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461027657806342842e0e1461028b57806355f804b3146102ab5780636352211e146102cb57806370a08231146102eb57610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b6101863660046115f7565b61045c565b604051610198919061173c565b60405180910390f35b3480156101ad57600080fd5b506101b66104a4565b6040516101989190611747565b3480156101cf57600080fd5b506101e36101de366004611675565b610536565b60405161019891906116eb565b3480156101fc57600080fd5b5061021061020b3660046115ce565b610582565b005b34801561021e57600080fd5b5061022761061a565b6040516101989190611d31565b34801561024057600080fd5b5061021061024f3660046114af565b61062b565b34801561026057600080fd5b50610269610663565b6040516101989190611d40565b34801561028257600080fd5b50610210610669565b34801561029757600080fd5b506102106102a63660046114af565b610727565b3480156102b757600080fd5b506102106102c636600461162f565b610742565b3480156102d757600080fd5b506101e36102e6366004611675565b610798565b3480156102f757600080fd5b50610269610306366004611463565b6107cd565b34801561031757600080fd5b50610210610811565b34801561032c57600080fd5b5061021061085c565b34801561034157600080fd5b506101e36108af565b34801561035657600080fd5b506101b66108be565b34801561036b57600080fd5b5061018b6108cd565b34801561038057600080fd5b506102696108d6565b34801561039557600080fd5b506102106103a4366004611563565b6108dc565b3480156103b557600080fd5b506102106103c4366004611675565b6109aa565b6102106103d736600461159d565b6109ee565b3480156103e857600080fd5b506102106103f73660046114ea565b610b95565b34801561040857600080fd5b506101b6610417366004611675565b610bce565b34801561042857600080fd5b5061018b61043736600461147d565b610c51565b34801561044857600080fd5b50610210610457366004611463565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061048d57506001600160e01b03198216635b5e139f60e01b145b8061049c575061049c82610ced565b90505b919050565b6060600080546104b390611df4565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611df4565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b600061054182610d06565b6105665760405162461bcd60e51b815260040161055d90611add565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058d82610798565b9050806001600160a01b0316836001600160a01b031614156105c15760405162461bcd60e51b815260040161055d90611c45565b806001600160a01b03166105d3610d23565b6001600160a01b031614806105ef57506105ef81610437610d23565b61060b5760405162461bcd60e51b815260040161055d906119b8565b6106158383610d27565b505050565b600654600160a01b900461ffff1690565b61063c610636610d23565b82610d95565b6106585760405162461bcd60e51b815260040161055d90611ce0565b610615838383610e1a565b61030981565b610671610d23565b6001600160a01b03166106826108af565b6001600160a01b0316146106a85760405162461bcd60e51b815260040161055d90611b78565b6000336001600160a01b0316476040516106c1906116e8565b60006040518083038185875af1925050503d80600081146106fe576040519150601f19603f3d011682016040523d82523d6000602084013e610703565b606091505b50509050806107245760405162461bcd60e51b815260040161055d90611cb6565b50565b61061583838360405180602001604052806000815250610b95565b61074a610d23565b6001600160a01b031661075b6108af565b6001600160a01b0316146107815760405162461bcd60e51b815260040161055d90611b78565b8051610794906008906020840190611343565b5050565b6000818152600260205260408120546001600160a01b03168061049c5760405162461bcd60e51b815260040161055d90611a5f565b60006001600160a01b0382166107f55760405162461bcd60e51b815260040161055d90611a15565b506001600160a01b031660009081526003602052604090205490565b610819610d23565b6001600160a01b031661082a6108af565b6001600160a01b0316146108505760405162461bcd60e51b815260040161055d90611b78565b61085a6000610f47565b565b610864610d23565b6001600160a01b03166108756108af565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161055d90611b78565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104b390611df4565b60095460ff1681565b60075481565b6108e4610d23565b6001600160a01b0316826001600160a01b031614156109155760405162461bcd60e51b815260040161055d906118bb565b8060056000610922610d23565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610966610d23565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161099e919061173c565b60405180910390a35050565b6109b2610d23565b6001600160a01b03166109c36108af565b6001600160a01b0316146109e95760405162461bcd60e51b815260040161055d90611b78565b600755565b60006109f861061a565b9050610309610a078383611d49565b61ffff161115610a295760405162461bcd60e51b815260040161055d90611c86565b60008261ffff1611610a4d5760405162461bcd60e51b815260040161055d9061175a565b610a556108af565b6001600160a01b0316336001600160a01b031614610ae55760095460ff16610a8f5760405162461bcd60e51b815260040161055d906118f2565b60058261ffff161115610ab45760405162461bcd60e51b815260040161055d90611920565b8161ffff16600754610ac69190611d92565b341015610ae55760405162461bcd60e51b815260040161055d90611b29565b81600660148282829054906101000a900461ffff16610b049190611d49565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015610b8f57610b4684610b3a84611e2f565b93508361ffff16610f99565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610b759190611d31565b60405180910390a180610b8781611e51565b915050610b21565b50505050565b610ba6610ba0610d23565b83610d95565b610bc25760405162461bcd60e51b815260040161055d90611ce0565b610b8f84848484610fb3565b6060610bd982610d06565b610bf55760405162461bcd60e51b815260040161055d90611bf6565b6000610bff610fe6565b90506000815111610c1f5760405180602001604052806000815250610c4a565b80610c2984610ff5565b604051602001610c3a9291906116b9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c87610d23565b6001600160a01b0316610c986108af565b6001600160a01b031614610cbe5760405162461bcd60e51b815260040161055d90611b78565b6001600160a01b038116610ce45760405162461bcd60e51b815260040161055d906117fa565b61072481610f47565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d5c82610798565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610da082610d06565b610dbc5760405162461bcd60e51b815260040161055d9061196c565b6000610dc783610798565b9050806001600160a01b0316846001600160a01b03161480610e025750836001600160a01b0316610df784610536565b6001600160a01b0316145b80610e125750610e128185610c51565b949350505050565b826001600160a01b0316610e2d82610798565b6001600160a01b031614610e535760405162461bcd60e51b815260040161055d90611bad565b6001600160a01b038216610e795760405162461bcd60e51b815260040161055d90611877565b610e84838383610615565b610e8f600082610d27565b6001600160a01b0383166000908152600360205260408120805460019290610eb8908490611db1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ee6908490611d66565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610794828260405180602001604052806000815250611110565b610fbe848484610e1a565b610fca84848484611143565b610b8f5760405162461bcd60e51b815260040161055d906117a8565b6060600880546104b390611df4565b60608161101a57506040805180820190915260018152600360fc1b602082015261049f565b8160005b8115611044578061102e81611e51565b915061103d9050600a83611d7e565b915061101e565b60008167ffffffffffffffff81111561106d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611097576020820181803683370190505b5090505b8415610e12576110ac600183611db1565b91506110b9600a86611e6c565b6110c4906030611d66565b60f81b8183815181106110e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611109600a86611d7e565b945061109b565b61111a838361125e565b6111276000848484611143565b6106155760405162461bcd60e51b815260040161055d906117a8565b6000611157846001600160a01b031661133d565b1561125357836001600160a01b031663150b7a02611173610d23565b8786866040518563ffffffff1660e01b815260040161119594939291906116ff565b602060405180830381600087803b1580156111af57600080fd5b505af19250505080156111df575060408051601f3d908101601f191682019092526111dc91810190611613565b60015b611239573d80801561120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5080516112315760405162461bcd60e51b815260040161055d906117a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e12565b506001949350505050565b6001600160a01b0382166112845760405162461bcd60e51b815260040161055d90611aa8565b61128d81610d06565b156112aa5760405162461bcd60e51b815260040161055d90611840565b6112b660008383610615565b6001600160a01b03821660009081526003602052604081208054600192906112df908490611d66565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461134f90611df4565b90600052602060002090601f01602090048101928261137157600085556113b7565b82601f1061138a57805160ff19168380011785556113b7565b828001600101855582156113b7579182015b828111156113b757825182559160200191906001019061139c565b506113c39291506113c7565b5090565b5b808211156113c357600081556001016113c8565b600067ffffffffffffffff808411156113f7576113f7611eac565b604051601f8501601f19168101602001828111828210171561141b5761141b611eac565b60405284815291508183850186101561143357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049f57600080fd5b600060208284031215611474578081fd5b610c4a8261144c565b6000806040838503121561148f578081fd5b6114988361144c565b91506114a66020840161144c565b90509250929050565b6000806000606084860312156114c3578081fd5b6114cc8461144c565b92506114da6020850161144c565b9150604084013590509250925092565b600080600080608085870312156114ff578081fd5b6115088561144c565b93506115166020860161144c565b925060408501359150606085013567ffffffffffffffff811115611538578182fd5b8501601f81018713611548578182fd5b611557878235602084016113dc565b91505092959194509250565b60008060408385031215611575578182fd5b61157e8361144c565b915060208301358015158114611592578182fd5b809150509250929050565b600080604083850312156115af578182fd5b6115b88361144c565b9150602083013561ffff81168114611592578182fd5b600080604083850312156115e0578182fd5b6115e98361144c565b946020939093013593505050565b600060208284031215611608578081fd5b8135610c4a81611ec2565b600060208284031215611624578081fd5b8151610c4a81611ec2565b600060208284031215611640578081fd5b813567ffffffffffffffff811115611656578182fd5b8201601f81018413611666578182fd5b610e12848235602084016113dc565b600060208284031215611686578081fd5b5035919050565b600081518084526116a5816020860160208601611dc8565b601f01601f19169290920160200192915050565b600083516116cb818460208801611dc8565b8351908301906116df818360208801611dc8565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117329083018461168d565b9695505050505050565b901515815260200190565b600060208252610c4a602083018461168d565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156116df576116df611e80565b60008219821115611d7957611d79611e80565b500190565b600082611d8d57611d8d611e96565b500490565b6000816000190483118215151615611dac57611dac611e80565b500290565b600082821015611dc357611dc3611e80565b500390565b60005b83811015611de3578181015183820152602001611dcb565b83811115610b8f5750506000910152565b600281046001821680611e0857607f821691505b60208210811415611e2957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611e4757611e47611e80565b6001019392505050565b6000600019821415611e6557611e65611e80565b5060010190565b600082611e7b57611e7b611e96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461072457600080fdfea2646970667358221220d91936ba7bf2b5942018b6f857935f070f83aef8464c3a63e85a6c793d92429864736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103dc578063c87b56dd146103fc578063e985e9c51461041c578063f2fde38b1461043c57610166565b8063a22cb46514610389578063a2b40d19146103a9578063ad0be4bd146103c957610166565b8063715018a61461030b5780637d8966e4146103205780638da5cb5b1461033557806395d89b411461034a57806399288dbb1461035f578063a035b1fe1461037457610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461027657806342842e0e1461028b57806355f804b3146102ab5780636352211e146102cb57806370a08231146102eb57610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b6101863660046115f7565b61045c565b604051610198919061173c565b60405180910390f35b3480156101ad57600080fd5b506101b66104a4565b6040516101989190611747565b3480156101cf57600080fd5b506101e36101de366004611675565b610536565b60405161019891906116eb565b3480156101fc57600080fd5b5061021061020b3660046115ce565b610582565b005b34801561021e57600080fd5b5061022761061a565b6040516101989190611d31565b34801561024057600080fd5b5061021061024f3660046114af565b61062b565b34801561026057600080fd5b50610269610663565b6040516101989190611d40565b34801561028257600080fd5b50610210610669565b34801561029757600080fd5b506102106102a63660046114af565b610727565b3480156102b757600080fd5b506102106102c636600461162f565b610742565b3480156102d757600080fd5b506101e36102e6366004611675565b610798565b3480156102f757600080fd5b50610269610306366004611463565b6107cd565b34801561031757600080fd5b50610210610811565b34801561032c57600080fd5b5061021061085c565b34801561034157600080fd5b506101e36108af565b34801561035657600080fd5b506101b66108be565b34801561036b57600080fd5b5061018b6108cd565b34801561038057600080fd5b506102696108d6565b34801561039557600080fd5b506102106103a4366004611563565b6108dc565b3480156103b557600080fd5b506102106103c4366004611675565b6109aa565b6102106103d736600461159d565b6109ee565b3480156103e857600080fd5b506102106103f73660046114ea565b610b95565b34801561040857600080fd5b506101b6610417366004611675565b610bce565b34801561042857600080fd5b5061018b61043736600461147d565b610c51565b34801561044857600080fd5b50610210610457366004611463565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061048d57506001600160e01b03198216635b5e139f60e01b145b8061049c575061049c82610ced565b90505b919050565b6060600080546104b390611df4565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611df4565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b600061054182610d06565b6105665760405162461bcd60e51b815260040161055d90611add565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058d82610798565b9050806001600160a01b0316836001600160a01b031614156105c15760405162461bcd60e51b815260040161055d90611c45565b806001600160a01b03166105d3610d23565b6001600160a01b031614806105ef57506105ef81610437610d23565b61060b5760405162461bcd60e51b815260040161055d906119b8565b6106158383610d27565b505050565b600654600160a01b900461ffff1690565b61063c610636610d23565b82610d95565b6106585760405162461bcd60e51b815260040161055d90611ce0565b610615838383610e1a565b61030981565b610671610d23565b6001600160a01b03166106826108af565b6001600160a01b0316146106a85760405162461bcd60e51b815260040161055d90611b78565b6000336001600160a01b0316476040516106c1906116e8565b60006040518083038185875af1925050503d80600081146106fe576040519150601f19603f3d011682016040523d82523d6000602084013e610703565b606091505b50509050806107245760405162461bcd60e51b815260040161055d90611cb6565b50565b61061583838360405180602001604052806000815250610b95565b61074a610d23565b6001600160a01b031661075b6108af565b6001600160a01b0316146107815760405162461bcd60e51b815260040161055d90611b78565b8051610794906008906020840190611343565b5050565b6000818152600260205260408120546001600160a01b03168061049c5760405162461bcd60e51b815260040161055d90611a5f565b60006001600160a01b0382166107f55760405162461bcd60e51b815260040161055d90611a15565b506001600160a01b031660009081526003602052604090205490565b610819610d23565b6001600160a01b031661082a6108af565b6001600160a01b0316146108505760405162461bcd60e51b815260040161055d90611b78565b61085a6000610f47565b565b610864610d23565b6001600160a01b03166108756108af565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161055d90611b78565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104b390611df4565b60095460ff1681565b60075481565b6108e4610d23565b6001600160a01b0316826001600160a01b031614156109155760405162461bcd60e51b815260040161055d906118bb565b8060056000610922610d23565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610966610d23565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161099e919061173c565b60405180910390a35050565b6109b2610d23565b6001600160a01b03166109c36108af565b6001600160a01b0316146109e95760405162461bcd60e51b815260040161055d90611b78565b600755565b60006109f861061a565b9050610309610a078383611d49565b61ffff161115610a295760405162461bcd60e51b815260040161055d90611c86565b60008261ffff1611610a4d5760405162461bcd60e51b815260040161055d9061175a565b610a556108af565b6001600160a01b0316336001600160a01b031614610ae55760095460ff16610a8f5760405162461bcd60e51b815260040161055d906118f2565b60058261ffff161115610ab45760405162461bcd60e51b815260040161055d90611920565b8161ffff16600754610ac69190611d92565b341015610ae55760405162461bcd60e51b815260040161055d90611b29565b81600660148282829054906101000a900461ffff16610b049190611d49565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015610b8f57610b4684610b3a84611e2f565b93508361ffff16610f99565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610b759190611d31565b60405180910390a180610b8781611e51565b915050610b21565b50505050565b610ba6610ba0610d23565b83610d95565b610bc25760405162461bcd60e51b815260040161055d90611ce0565b610b8f84848484610fb3565b6060610bd982610d06565b610bf55760405162461bcd60e51b815260040161055d90611bf6565b6000610bff610fe6565b90506000815111610c1f5760405180602001604052806000815250610c4a565b80610c2984610ff5565b604051602001610c3a9291906116b9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c87610d23565b6001600160a01b0316610c986108af565b6001600160a01b031614610cbe5760405162461bcd60e51b815260040161055d90611b78565b6001600160a01b038116610ce45760405162461bcd60e51b815260040161055d906117fa565b61072481610f47565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d5c82610798565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610da082610d06565b610dbc5760405162461bcd60e51b815260040161055d9061196c565b6000610dc783610798565b9050806001600160a01b0316846001600160a01b03161480610e025750836001600160a01b0316610df784610536565b6001600160a01b0316145b80610e125750610e128185610c51565b949350505050565b826001600160a01b0316610e2d82610798565b6001600160a01b031614610e535760405162461bcd60e51b815260040161055d90611bad565b6001600160a01b038216610e795760405162461bcd60e51b815260040161055d90611877565b610e84838383610615565b610e8f600082610d27565b6001600160a01b0383166000908152600360205260408120805460019290610eb8908490611db1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ee6908490611d66565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610794828260405180602001604052806000815250611110565b610fbe848484610e1a565b610fca84848484611143565b610b8f5760405162461bcd60e51b815260040161055d906117a8565b6060600880546104b390611df4565b60608161101a57506040805180820190915260018152600360fc1b602082015261049f565b8160005b8115611044578061102e81611e51565b915061103d9050600a83611d7e565b915061101e565b60008167ffffffffffffffff81111561106d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611097576020820181803683370190505b5090505b8415610e12576110ac600183611db1565b91506110b9600a86611e6c565b6110c4906030611d66565b60f81b8183815181106110e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611109600a86611d7e565b945061109b565b61111a838361125e565b6111276000848484611143565b6106155760405162461bcd60e51b815260040161055d906117a8565b6000611157846001600160a01b031661133d565b1561125357836001600160a01b031663150b7a02611173610d23565b8786866040518563ffffffff1660e01b815260040161119594939291906116ff565b602060405180830381600087803b1580156111af57600080fd5b505af19250505080156111df575060408051601f3d908101601f191682019092526111dc91810190611613565b60015b611239573d80801561120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5080516112315760405162461bcd60e51b815260040161055d906117a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e12565b506001949350505050565b6001600160a01b0382166112845760405162461bcd60e51b815260040161055d90611aa8565b61128d81610d06565b156112aa5760405162461bcd60e51b815260040161055d90611840565b6112b660008383610615565b6001600160a01b03821660009081526003602052604081208054600192906112df908490611d66565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461134f90611df4565b90600052602060002090601f01602090048101928261137157600085556113b7565b82601f1061138a57805160ff19168380011785556113b7565b828001600101855582156113b7579182015b828111156113b757825182559160200191906001019061139c565b506113c39291506113c7565b5090565b5b808211156113c357600081556001016113c8565b600067ffffffffffffffff808411156113f7576113f7611eac565b604051601f8501601f19168101602001828111828210171561141b5761141b611eac565b60405284815291508183850186101561143357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049f57600080fd5b600060208284031215611474578081fd5b610c4a8261144c565b6000806040838503121561148f578081fd5b6114988361144c565b91506114a66020840161144c565b90509250929050565b6000806000606084860312156114c3578081fd5b6114cc8461144c565b92506114da6020850161144c565b9150604084013590509250925092565b600080600080608085870312156114ff578081fd5b6115088561144c565b93506115166020860161144c565b925060408501359150606085013567ffffffffffffffff811115611538578182fd5b8501601f81018713611548578182fd5b611557878235602084016113dc565b91505092959194509250565b60008060408385031215611575578182fd5b61157e8361144c565b915060208301358015158114611592578182fd5b809150509250929050565b600080604083850312156115af578182fd5b6115b88361144c565b9150602083013561ffff81168114611592578182fd5b600080604083850312156115e0578182fd5b6115e98361144c565b946020939093013593505050565b600060208284031215611608578081fd5b8135610c4a81611ec2565b600060208284031215611624578081fd5b8151610c4a81611ec2565b600060208284031215611640578081fd5b813567ffffffffffffffff811115611656578182fd5b8201601f81018413611666578182fd5b610e12848235602084016113dc565b600060208284031215611686578081fd5b5035919050565b600081518084526116a5816020860160208601611dc8565b601f01601f19169290920160200192915050565b600083516116cb818460208801611dc8565b8351908301906116df818360208801611dc8565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117329083018461168d565b9695505050505050565b901515815260200190565b600060208252610c4a602083018461168d565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156116df576116df611e80565b60008219821115611d7957611d79611e80565b500190565b600082611d8d57611d8d611e96565b500490565b6000816000190483118215151615611dac57611dac611e80565b500290565b600082821015611dc357611dc3611e80565b500390565b60005b83811015611de3578181015183820152602001611dcb565b83811115610b8f5750506000910152565b600281046001821680611e0857607f821691505b60208210811415611e2957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611e4757611e47611e80565b6001019392505050565b6000600019821415611e6557611e65611e80565b5060010190565b600082611e7b57611e7b611e96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461072457600080fdfea2646970667358221220d91936ba7bf2b5942018b6f857935f070f83aef8464c3a63e85a6c793d92429864736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

36559:1944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25830:411::-;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;36951:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27366:376::-;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;36604:40::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37346:206::-;;;;;;;;;;;;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;37046:101::-;;;;;;;;;;-1:-1:-1;37046:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;37258:80::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;;;;:::i;24783:104::-;;;;;;;;;;;;;:::i;36761:28::-;;;;;;;;;;;;;:::i;36688:40::-;;;;;;;;;;;;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;37155:95::-;;;;;;;;;;-1:-1:-1;37155:95:0;;;;;:::i;:::-;;:::i;37560:819::-;;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;;:::i;8582:229::-;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;;23756:36;23780:11;23756:23;:36::i;:::-;23614:178;;23445:355;;;;:::o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;26475:16;26483:7;26475;:16::i;:::-;26453:110;;;;-1:-1:-1;;;26453:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;;;;;;:::i;:::-;26069:5;-1:-1:-1;;;;;26053:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26053:21:0;;:62;;;;26078:37;26095:5;26102:12;:10;:12::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;;;;;;:::i;:::-;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25830:411;;;:::o;36951:87::-;37021:9;;-1:-1:-1;;;37021:9:0;;;;;36951:87::o;27366:376::-;27575:41;27594:12;:10;:12::i;:::-;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;36604:40::-;36641:3;36604:40;:::o;37346:206::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37397:12:::1;37423:10;-1:-1:-1::0;;;;;37415:24:0::1;37461:21;37415:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37396:101;;;37516:7;37508:36;;;;-1:-1:-1::0;;;37508:36:0::1;;;;;;;:::i;:::-;7973:1;37346:206::o:0;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;37046:101::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37117:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37046:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;;;;;;:::i;23864:295::-;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;37258:80::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37322:8:::1;::::0;;-1:-1:-1;;37310:20:0;::::1;37322:8;::::0;;::::1;37321:9;37310:20;::::0;;37258:80::o;7682:87::-;7755:6;;-1:-1:-1;;;;;7755:6:0;7682:87;:::o;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;36761:28::-;;;;;;:::o;36688:40::-;;;;:::o;26687:327::-;26834:12;:10;:12::i;:::-;-1:-1:-1;;;;;26822:24:0;:8;-1:-1:-1;;;;;26822:24:0;;;26814:62;;;;-1:-1:-1;;;26814:62:0;;;;;;;:::i;:::-;26934:8;26889:18;:32;26908:12;:10;:12::i;:::-;-1:-1:-1;;;;;26889:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26889:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;;26973:12;:10;:12::i;:::-;-1:-1:-1;;;;;26958:48:0;;26997:8;26958:48;;;;;;:::i;:::-;;;;;;;;26687:327;;:::o;37155:95::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37225:5:::1;:17:::0;37155:95::o;37560:819::-;37629:13;37645;:11;:13::i;:::-;37629:29;-1:-1:-1;36641:3:0;37679:15;37688:6;37629:29;37679:15;:::i;:::-;:29;;;;37671:64;;;;-1:-1:-1;;;37671:64:0;;;;;;;:::i;:::-;37763:1;37754:6;:10;;;37746:69;;;;-1:-1:-1;;;37746:69:0;;;;;;;:::i;:::-;37846:7;:5;:7::i;:::-;-1:-1:-1;;;;;37832:21:0;:10;-1:-1:-1;;;;;37832:21:0;;37828:378;;37878:8;;;;37870:41;;;;-1:-1:-1;;;37870:41:0;;;;;;;:::i;:::-;37962:1;37952:6;:11;;;;37926:117;;;;-1:-1:-1;;;37926:117:0;;;;;;;:::i;:::-;38105:6;38097:14;;:5;;:14;;;;:::i;:::-;38084:9;:27;;38058:136;;;;-1:-1:-1;;;38058:136:0;;;;;;;:::i;:::-;38231:6;38218:9;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38255:9;38250:122;38274:6;38270:10;;:1;:10;38250:122;;;38302:24;38312:3;38317:8;;;:::i;:::-;;;;38302:24;;:9;:24::i;:::-;38346:14;38353:6;38346:14;;;;;;:::i;:::-;;;;;;;;38282:3;;;;:::i;:::-;;;;38250:122;;;;37560:819;;;:::o;28069:365::-;28258:41;28277:12;:10;:12::i;:::-;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;24958:468::-;25076:13;25129:16;25137:7;25129;:16::i;:::-;25107:113;;;;-1:-1:-1;;;25107:113:0;;;;;;;:::i;:::-;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;27085:214::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214::o;8582:229::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;;-1:-1:-1::0;;;8663:110:0::1;;;;;;;:::i;:::-;8784:19;8794:8;8784:9;:19::i;9791:207::-:0;-1:-1:-1;;;;;;9950:40:0;;-1:-1:-1;;;9950:40:0;9791:207;;;:::o;29981:127::-;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;;;29981:127::o;655:98::-;735:10;655:98;:::o;34104:174::-;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30448:16;30456:7;30448;:16::i;:::-;30426:110;;;;-1:-1:-1;;;30426:110:0;;;;;;;:::i;:::-;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;;30686:32;30703:5;30710:7;30686:16;:32::i;:::-;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;;;;;;:::i;:::-;33706:39;33727:4;33733:2;33737:7;33706:20;:39::i;:::-;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8819:173;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;38387:113::-;38447:13;38480:12;38473:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;;10585:53;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;-1:-1:-1;;;10814:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;-1:-1:-1;;;10902:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;35019:15;:2;-1:-1:-1;;;;;35019:13:0;;:15::i;:::-;35015:805;;;35088:2;-1:-1:-1;;;;;35072:36:0;;35131:12;:10;:12::i;:::-;35166:4;35193:7;35223:5;35072:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;;;;;;:::i;:::-;32216:16;32224:7;32216;:16::i;:::-;32215:17;32207:58;;;;-1:-1:-1;;;32207:58:0;;;;;;;:::i;:::-;32278:45;32307:1;32311:2;32315:7;32278:20;:45::i;:::-;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063:382;;:::o;12865:387::-;13188:20;13236:8;;;12865:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:368::-;;;2844:2;2832:9;2823:7;2819:23;2815:32;2812:2;;;2865:6;2857;2850:22;2812:2;2893:31;2914:9;2893:31;:::i;:::-;2883:41;;2974:2;2963:9;2959:18;2946:32;3018:6;3011:5;3007:18;3000:5;2997:29;2987:2;;3045:6;3037;3030:22;3089:266;;;3218:2;3206:9;3197:7;3193:23;3189:32;3186:2;;;3239:6;3231;3224:22;3186:2;3267:31;3288:9;3267:31;:::i;:::-;3257:41;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3176:179:1:o;3360:257::-;;3471:2;3459:9;3450:7;3446:23;3442:32;3439:2;;;3492:6;3484;3477:22;3439:2;3536:9;3523:23;3555:32;3581:5;3555:32;:::i;3622:261::-;;3744:2;3732:9;3723:7;3719:23;3715:32;3712:2;;;3765:6;3757;3750:22;3712:2;3802:9;3796:16;3821:32;3847:5;3821:32;:::i;3888:482::-;;4010:2;3998:9;3989:7;3985:23;3981:32;3978:2;;;4031:6;4023;4016:22;3978:2;4076:9;4063:23;4109:18;4101:6;4098:30;4095:2;;;4146:6;4138;4131:22;4095:2;4174:22;;4227:4;4219:13;;4215:27;-1:-1:-1;4205:2:1;;4261:6;4253;4246:22;4205:2;4289:75;4356:7;4351:2;4338:16;4333:2;4329;4325:11;4289:75;:::i;4375:190::-;;4487:2;4475:9;4466:7;4462:23;4458:32;4455:2;;;4508:6;4500;4493:22;4455:2;-1:-1:-1;4536:23:1;;4445:120;-1:-1:-1;4445:120:1:o;4570:259::-;;4651:5;4645:12;4678:6;4673:3;4666:19;4694:63;4750:6;4743:4;4738:3;4734:14;4727:4;4720:5;4716:16;4694:63;:::i;:::-;4811:2;4790:15;-1:-1:-1;;4786:29:1;4777:39;;;;4818:4;4773:50;;4621:208;-1:-1:-1;;4621:208:1:o;4834:470::-;;5051:6;5045:13;5067:53;5113:6;5108:3;5101:4;5093:6;5089:17;5067:53;:::i;:::-;5183:13;;5142:16;;;;5205:57;5183:13;5142:16;5239:4;5227:17;;5205:57;:::i;:::-;5278:20;;5021:283;-1:-1:-1;;;;5021:283:1:o;5309:205::-;5509:3;5500:14::o;5519:203::-;-1:-1:-1;;;;;5683:32:1;;;;5665:51;;5653:2;5638:18;;5620:102::o;5727:490::-;-1:-1:-1;;;;;5996:15:1;;;5978:34;;6048:15;;6043:2;6028:18;;6021:43;6095:2;6080:18;;6073:34;;;6143:3;6138:2;6123:18;;6116:31;;;5727:490;;6164:47;;6191:19;;6183:6;6164:47;:::i;:::-;6156:55;5930:287;-1:-1:-1;;;;;;5930:287:1:o;6222:187::-;6387:14;;6380:22;6362:41;;6350:2;6335:18;;6317:92::o;6414:221::-;;6563:2;6552:9;6545:21;6583:46;6625:2;6614:9;6610:18;6602:6;6583:46;:::i;6640:410::-;6842:2;6824:21;;;6881:2;6861:18;;;6854:30;6920:34;6915:2;6900:18;;6893:62;-1:-1:-1;;;6986:2:1;6971:18;;6964:44;7040:3;7025:19;;6814:236::o;7055:414::-;7257:2;7239:21;;;7296:2;7276:18;;;7269:30;7335:34;7330:2;7315:18;;7308:62;-1:-1:-1;;;7401:2:1;7386:18;;7379:48;7459:3;7444:19;;7229:240::o;7474:402::-;7676:2;7658:21;;;7715:2;7695:18;;;7688:30;7754:34;7749:2;7734:18;;7727:62;-1:-1:-1;;;7820:2:1;7805:18;;7798:36;7866:3;7851:19;;7648:228::o;7881:352::-;8083:2;8065:21;;;8122:2;8102:18;;;8095:30;8161;8156:2;8141:18;;8134:58;8224:2;8209:18;;8055:178::o;8238:400::-;8440:2;8422:21;;;8479:2;8459:18;;;8452:30;8518:34;8513:2;8498:18;;8491:62;-1:-1:-1;;;8584:2:1;8569:18;;8562:34;8628:3;8613:19;;8412:226::o;8643:349::-;8845:2;8827:21;;;8884:2;8864:18;;;8857:30;8923:27;8918:2;8903:18;;8896:55;8983:2;8968:18;;8817:175::o;8997:344::-;9199:2;9181:21;;;9238:2;9218:18;;;9211:30;-1:-1:-1;;;9272:2:1;9257:18;;9250:50;9332:2;9317:18;;9171:170::o;9346:408::-;9548:2;9530:21;;;9587:2;9567:18;;;9560:30;9626:34;9621:2;9606:18;;9599:62;-1:-1:-1;;;9692:2:1;9677:18;;9670:42;9744:3;9729:19;;9520:234::o;9759:408::-;9961:2;9943:21;;;10000:2;9980:18;;;9973:30;10039:34;10034:2;10019:18;;10012:62;-1:-1:-1;;;10105:2:1;10090:18;;10083:42;10157:3;10142:19;;9933:234::o;10172:420::-;10374:2;10356:21;;;10413:2;10393:18;;;10386:30;10452:34;10447:2;10432:18;;10425:62;10523:26;10518:2;10503:18;;10496:54;10582:3;10567:19;;10346:246::o;10597:406::-;10799:2;10781:21;;;10838:2;10818:18;;;10811:30;10877:34;10872:2;10857:18;;10850:62;-1:-1:-1;;;10943:2:1;10928:18;;10921:40;10993:3;10978:19;;10771:232::o;11008:405::-;11210:2;11192:21;;;11249:2;11229:18;;;11222:30;11288:34;11283:2;11268:18;;11261:62;-1:-1:-1;;;11354:2:1;11339:18;;11332:39;11403:3;11388:19;;11182:231::o;11418:356::-;11620:2;11602:21;;;11639:18;;;11632:30;11698:34;11693:2;11678:18;;11671:62;11765:2;11750:18;;11592:182::o;11779:408::-;11981:2;11963:21;;;12020:2;12000:18;;;11993:30;12059:34;12054:2;12039:18;;12032:62;-1:-1:-1;;;12125:2:1;12110:18;;12103:42;12177:3;12162:19;;11953:234::o;12192:411::-;12394:2;12376:21;;;12433:2;12413:18;;;12406:30;12472:34;12467:2;12452:18;;12445:62;-1:-1:-1;;;12538:2:1;12523:18;;12516:45;12593:3;12578:19;;12366:237::o;12608:356::-;12810:2;12792:21;;;12829:18;;;12822:30;12888:34;12883:2;12868:18;;12861:62;12955:2;12940:18;;12782:182::o;12969:405::-;13171:2;13153:21;;;13210:2;13190:18;;;13183:30;13249:34;13244:2;13229:18;;13222:62;-1:-1:-1;;;13315:2:1;13300:18;;13293:39;13364:3;13349:19;;13143:231::o;13379:411::-;13581:2;13563:21;;;13620:2;13600:18;;;13593:30;13659:34;13654:2;13639:18;;13632:62;-1:-1:-1;;;13725:2:1;13710:18;;13703:45;13780:3;13765:19;;13553:237::o;13795:397::-;13997:2;13979:21;;;14036:2;14016:18;;;14009:30;14075:34;14070:2;14055:18;;14048:62;-1:-1:-1;;;14141:2:1;14126:18;;14119:31;14182:3;14167:19;;13969:223::o;14197:346::-;14399:2;14381:21;;;14438:2;14418:18;;;14411:30;-1:-1:-1;;;14472:2:1;14457:18;;14450:52;14534:2;14519:18;;14371:172::o;14548:340::-;14750:2;14732:21;;;14789:2;14769:18;;;14762:30;-1:-1:-1;;;14823:2:1;14808:18;;14801:46;14879:2;14864:18;;14722:166::o;14893:413::-;15095:2;15077:21;;;15134:2;15114:18;;;15107:30;15173:34;15168:2;15153:18;;15146:62;-1:-1:-1;;;15239:2:1;15224:18;;15217:47;15296:3;15281:19;;15067:239::o;15311:188::-;15485:6;15473:19;;;;15455:38;;15443:2;15428:18;;15410:89::o;15698:177::-;15844:25;;;15832:2;15817:18;;15799:76::o;15880:224::-;;15947:6;15980:2;15977:1;15973:10;16010:2;16007:1;16003:10;16041:3;16037:2;16033:12;16028:3;16025:21;16022:2;;;16049:18;;:::i;16109:128::-;;16180:1;16176:6;16173:1;16170:13;16167:2;;;16186:18;;:::i;:::-;-1:-1:-1;16222:9:1;;16157:80::o;16242:120::-;;16308:1;16298:2;;16313:18;;:::i;:::-;-1:-1:-1;16347:9:1;;16288:74::o;16367:168::-;;16473:1;16469;16465:6;16461:14;16458:1;16455:21;16450:1;16443:9;16436:17;16432:45;16429:2;;;16480:18;;:::i;:::-;-1:-1:-1;16520:9:1;;16419:116::o;16540:125::-;;16608:1;16605;16602:8;16599:2;;;16613:18;;:::i;:::-;-1:-1:-1;16650:9:1;;16589:76::o;16670:258::-;16742:1;16752:113;16766:6;16763:1;16760:13;16752:113;;;16842:11;;;16836:18;16823:11;;;16816:39;16788:2;16781:10;16752:113;;;16883:6;16880:1;16877:13;16874:2;;;-1:-1:-1;;16918:1:1;16900:16;;16893:27;16723:205::o;16933:380::-;17018:1;17008:12;;17065:1;17055:12;;;17076:2;;17130:4;17122:6;17118:17;17108:27;;17076:2;17183;17175:6;17172:14;17152:18;17149:38;17146:2;;;17229:10;17224:3;17220:20;17217:1;17210:31;17264:4;17261:1;17254:15;17292:4;17289:1;17282:15;17146:2;;16988:325;;;:::o;17318:197::-;;17384:6;17425:2;17418:5;17414:14;17452:2;17443:7;17440:15;17437:2;;;17458:18;;:::i;:::-;17507:1;17494:15;;17364:151;-1:-1:-1;;;17364:151:1:o;17520:135::-;;-1:-1:-1;;17580:17:1;;17577:2;;;17600:18;;:::i;:::-;-1:-1:-1;17647:1:1;17636:13;;17567:88::o;17660:112::-;;17718:1;17708:2;;17723:18;;:::i;:::-;-1:-1:-1;17757:9:1;;17698:74::o;17777:127::-;17838:10;17833:3;17829:20;17826:1;17819:31;17869:4;17866:1;17859:15;17893:4;17890:1;17883:15;17909:127;17970:10;17965:3;17961:20;17958:1;17951:31;18001:4;17998:1;17991:15;18025:4;18022:1;18015:15;18041:127;18102:10;18097:3;18093:20;18090:1;18083:31;18133:4;18130:1;18123:15;18157:4;18154:1;18147:15;18173:133;-1:-1:-1;;;;;;18249:32:1;;18239:43;;18229:2;;18296:1;18293;18286:12

Swarm Source

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