ETH Price: $3,238.74 (-0.49%)
Gas: 1 Gwei

Token

DODONFT (DODONFT)
 

Overview

Max Total Supply

28 DODONFT

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
9000001000009.eth
Balance
1 DODONFT
0xFCFA4369EAa965AC4e36f1Dd9fd2852C6542b0F7
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:
DODONFT

Compiler Version
v0.6.9+commit.3e3065ac

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
*/

// File: contracts/intf/IERC165.sol

// This is a file copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/solc-0.6/contracts/introspection/IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.9;

/**
 * @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: contracts/intf/IERC721.sol



/**
 * @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: contracts/intf/IERC721Receiver.sol


/**
 * @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: contracts/intf/IERC721Metadata.sol

/**
 * @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: contracts/external/utils/ERC165.sol

/**
 * @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: contracts/external/utils/Strings.sol


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

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

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

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

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

}

// File: contracts/external/utils/Address.sol


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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: contracts/external/utils/Context.sol


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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: contracts/external/ERC721/ERC721.sol

/**
 * @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 internal _name;

    // Token symbol
    string internal _symbol;

    string internal _baseUri = "";

    // 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return _baseUri;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/intf/IERC721Enumerable.sol


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: contracts/external/ERC721/ERC721Enumerable.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/external/ERC721/ERC721URIStorage.sol


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721Enumerable {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

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

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

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/lib/InitializableOwnable.sol


/**
 * @title Ownable
 * @author DODO Breeder
 *
 * @notice Ownership related functions
 */
contract InitializableOwnable {
    address public _OWNER_;
    address public _NEW_OWNER_;
    bool internal _INITIALIZED_;

    // ============ Events ============

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

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

    // ============ Modifiers ============

    modifier notInitialized() {
        require(!_INITIALIZED_, "DODO_INITIALIZED");
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == _OWNER_, "NOT_OWNER");
        _;
    }

    // ============ Functions ============

    function initOwner(address newOwner) public notInitialized {
        _INITIALIZED_ = true;
        _OWNER_ = newOwner;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        emit OwnershipTransferPrepared(_OWNER_, newOwner);
        _NEW_OWNER_ = newOwner;
    }

    function claimOwnership() public {
        require(msg.sender == _NEW_OWNER_, "INVALID_CLAIM");
        emit OwnershipTransferred(_OWNER_, _NEW_OWNER_);
        _OWNER_ = _NEW_OWNER_;
        _NEW_OWNER_ = address(0);
    }
}

// File: contracts/Factory/DODONFT.sol



contract DODONFT is ERC721URIStorage, InitializableOwnable {
    
    uint256 public _CUR_TOKENID_;

    // ============ Event =============
    event DODONFTMint(address creator, uint256 tokenId);
    event DODONFTBurn(uint256 tokenId);
    
    function init(
        address owner,
        string memory name,
        string memory symbol
    ) public {
        initOwner(owner);
        _name = name;
        _symbol = symbol;
    }

    function mint(string calldata uri) external {
        _safeMint(msg.sender, _CUR_TOKENID_);
        _setTokenURI(_CUR_TOKENID_, uri);
        emit DODONFTMint(msg.sender, _CUR_TOKENID_);
        _CUR_TOKENID_ = _CUR_TOKENID_ + 1;
    }

    function burn(uint256 tokenId) external onlyOwner {
        require(tokenId < _CUR_TOKENID_, "TOKENID_INVALID");
        _burn(tokenId);
        emit DODONFTBurn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"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":"tokenId","type":"uint256"}],"name":"DODONFTBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"DODONFTMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferPrepared","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":"_CUR_TOKENID_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_NEW_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"initOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160029162000030565b503480156200002957600080fd5b50620000d5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200007357805160ff1916838001178555620000a3565b82800160010185558215620000a3579182015b82811115620000a357825182559160200191906001019062000086565b50620000b1929150620000b5565b5090565b620000d291905b80821115620000b15760008155600101620000bc565b90565b61226980620000e56000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634f6ccce7116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461063f578063d85d3d271461065c578063e985e9c5146106ca578063f2fde38b146106f857610173565b8063a22cb46514610414578063b2b45df514610442578063b88d4fde1461057b57610173565b80634f6ccce71461039c5780636352211e146103b957806370a08231146103d65780638456db15146103fc5780638698dbd61461040457806395d89b411461040c57610173565b806318160ddd1161013057806318160ddd146102c557806323b872dd146102df5780632f745c591461031557806342842e0e1461034157806342966c68146103775780634e71e0c81461039457610173565b806301ffc9a71461017857806306fdde03146101b3578063081812fc14610230578063095ea7b3146102695780630d0092971461029757806316048bc4146102bd575b600080fd5b61019f6004803603602081101561018e57600080fd5b50356001600160e01b03191661071e565b604080519115158252519081900360200190f35b6101bb61074b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f55781810151838201526020016101dd565b50505050905090810190601f1680156102225780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61024d6004803603602081101561024657600080fd5b50356107e2565b604080516001600160a01b039092168252519081900360200190f35b6102956004803603604081101561027f57600080fd5b506001600160a01b038135169060200135610844565b005b610295600480360360208110156102ad57600080fd5b50356001600160a01b031661091f565b61024d6109a7565b6102cd6109b6565b60408051918252519081900360200190f35b610295600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356109bc565b6102cd6004803603604081101561032b57600080fd5b506001600160a01b038135169060200135610a13565b6102956004803603606081101561035757600080fd5b506001600160a01b03813581169160208101359091169060400135610a84565b6102956004803603602081101561038d57600080fd5b5035610a9f565b610295610b71565b6102cd600480360360208110156103b257600080fd5b5035610c26565b61024d600480360360208110156103cf57600080fd5b5035610c8c565b6102cd600480360360208110156103ec57600080fd5b50356001600160a01b0316610ce0565b61024d610d43565b6102cd610d52565b6101bb610d58565b6102956004803603604081101561042a57600080fd5b506001600160a01b0381351690602001351515610db8565b6102956004803603606081101561045857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561048257600080fd5b82018360208201111561049457600080fd5b803590602001918460018302840111600160201b831117156104b557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561050757600080fd5b82018360208201111561051957600080fd5b803590602001918460018302840111600160201b8311171561053a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ebd945050505050565b6102956004803603608081101561059157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105cb57600080fd5b8201836020820111156105dd57600080fd5b803590602001918460018302840111600160201b831117156105fe57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef3945050505050565b6101bb6004803603602081101561065557600080fd5b5035610f4b565b6102956004803603602081101561067257600080fd5b810190602081018135600160201b81111561068c57600080fd5b82018360208201111561069e57600080fd5b803590602001918460018302840111600160201b831117156106bf57600080fd5b50909250905061111d565b61019f600480360360408110156106e057600080fd5b506001600160a01b03813581169160200135166111b6565b6102956004803603602081101561070e57600080fd5b50356001600160a01b03166111e4565b60006001600160e01b0319821663780e9d6360e01b148061074357506107438261128b565b90505b919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b505050505090505b90565b60006107ed826112cb565b6108285760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084f82610c8c565b9050806001600160a01b0316836001600160a01b031614156108a25760405162461bcd60e51b81526004018080602001828103825260218152602001806121b66021913960400191505060405180910390fd5b806001600160a01b03166108b46112e8565b6001600160a01b031614806108d557506108d5816108d06112e8565b6111b6565b6109105760405162461bcd60e51b81526004018080602001828103825260388152602001806120486038913960400191505060405180910390fd5b61091a83836112ec565b505050565b600d54600160a01b900460ff1615610971576040805162461bcd60e51b815260206004820152601060248201526f1113d113d7d25392551250531256915160821b604482015290519081900360640190fd5b600d805460ff60a01b1916600160a01b179055600c80546001600160a01b039092166001600160a01b0319909216919091179055565b600c546001600160a01b031681565b60095490565b6109cd6109c76112e8565b8261135a565b610a085760405162461bcd60e51b81526004018080602001828103825260318152602001806121d76031913960400191505060405180910390fd5b61091a8383836113f6565b6000610a1e83610ce0565b8210610a5b5760405162461bcd60e51b815260040180806020018281038252602b815260200180611f9b602b913960400191505060405180910390fd5b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61091a83838360405180602001604052806000815250610ef3565b600c546001600160a01b03163314610aea576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b600e548110610b32576040805162461bcd60e51b815260206004820152600f60248201526e1513d2d153925117d2539590531251608a1b604482015290519081900360640190fd5b610b3b81611526565b6040805182815290517f1dd2a9cbc8ce356356dcb8c70cdb31cda3180f372efd9800cd272ca607e3bb979181900360200190a150565b600d546001600160a01b03163314610bc0576040805162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f434c41494d60981b604482015290519081900360640190fd5b600d54600c546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d8054600c80546001600160a01b03199081166001600160a01b03841617909155169055565b6000610c306109b6565b8210610c6d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612208602c913960400191505060405180910390fd5b60098281548110610c7a57fe5b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b0316806107435760405162461bcd60e51b81526004018080602001828103825260298152602001806120aa6029913960400191505060405180910390fd5b60006001600160a01b038216610d275760405162461bcd60e51b815260040180806020018281038252602a815260200180612080602a913960400191505060405180910390fd5b506001600160a01b031660009081526004602052604090205490565b600d546001600160a01b031681565b600e5481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b610dc06112e8565b6001600160a01b0316826001600160a01b03161415610e26576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060066000610e336112e8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e776112e8565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610ec68361091f565b8151610ed9906000906020850190611ec2565b508051610eed906001906020840190611ec2565b50505050565b610f04610efe6112e8565b8361135a565b610f3f5760405162461bcd60e51b81526004018080602001828103825260318152602001806121d76031913960400191505060405180910390fd5b610eed84848484611570565b6060610f56826112cb565b610f915760405162461bcd60e51b81526004018080602001828103825260318152602001806121016031913960400191505060405180910390fd5b6000828152600b602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905060606110376115c2565b905080516000141561104b57509050610746565b81511561110c5780826040516020018083805190602001908083835b602083106110865780518252601f199092019160209182019101611067565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106110ce5780518252601f1990920191602091820191016110af565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610746565b61111584611620565b949350505050565b61112933600e54611751565b61116b600e5483838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061176f92505050565b600e5460408051338152602081019290925280517f89221aafd5f0e89b6ae1947998ec119865b3fb77b4c1967444676f1942fd7fcc9281900390910190a15050600e80546001019055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b0316331461122f576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b600c546040516001600160a01b038084169216907fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6290600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112bc57506001600160e01b03198216635b5e139f60e01b145b806107435750610743826117d2565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061132182610c8c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611365826112cb565b6113a05760405162461bcd60e51b815260040180806020018281038252602c81526020018061201c602c913960400191505060405180910390fd5b60006113ab83610c8c565b9050806001600160a01b0316846001600160a01b031614806113e65750836001600160a01b03166113db846107e2565b6001600160a01b0316145b80611115575061111581856111b6565b826001600160a01b031661140982610c8c565b6001600160a01b03161461144e5760405162461bcd60e51b815260040180806020018281038252602981526020018061215e6029913960400191505060405180910390fd5b6001600160a01b0382166114935760405162461bcd60e51b8152600401808060200182810382526024815260200180611ff86024913960400191505060405180910390fd5b61149e8383836117eb565b6114a96000826112ec565b6001600160a01b038084166000818152600460209081526040808320805460001901905593861680835284832080546001019055858352600390915283822080546001600160a01b031916821790559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61152f81611874565b6000818152600b6020526040902054600260001961010060018416150201909116041561156d576000818152600b6020526040812061156d91611f40565b50565b61157b8484846113f6565b61158784848484611901565b610eed5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b606061162b826112cb565b6116665760405162461bcd60e51b815260040180806020018281038252602f815260200180612187602f913960400191505060405180910390fd5b60606116706115c2565b90506000815111611690576040518060200160405280600081525061174a565b8061169a84611ac8565b6040516020018083805190602001908083835b602083106116cc5780518252601f1990920191602091820191016116ad565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117145780518252601f1990920191602091820191016116f5565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b61176b828260405180602001604052806000815250611b92565b5050565b611778826112cb565b6117b35760405162461bcd60e51b815260040180806020018281038252602e8152602001806120d3602e913960400191505060405180910390fd5b6000828152600b60209081526040909120825161091a92840190611ec2565b6001600160e01b031981166301ffc9a760e01b14919050565b6117f683838361091a565b6001600160a01b0383166118125761180d81611be4565b611835565b816001600160a01b0316836001600160a01b031614611835576118358382611c28565b6001600160a01b0382166118515761184c81611cbd565b61091a565b826001600160a01b0316826001600160a01b03161461091a5761091a8282611d4b565b600061187f82610c8c565b905061188d816000846117eb565b6118986000836112ec565b6001600160a01b03811660008181526004602090815260408083208054600019019055858352600390915280822080546001600160a01b0319169055518492907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611915846001600160a01b0316611d8f565b15611abd57836001600160a01b031663150b7a026119316112e8565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156119b657818101518382015260200161199e565b50505050905090810190601f1680156119e35780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611a0557600080fd5b505af1925050508015611a2a57506040513d6020811015611a2557600080fd5b505160015b611aa3573d808015611a58576040519150601f19603f3d011682016040523d82523d6000602084013e611a5d565b606091505b508051611a9b5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611115565b506001949350505050565b606081611aed57506040805180820190915260018152600360fc1b6020820152610746565b8160005b8115611b0557600101600a82049150611af1565b60608167ffffffffffffffff81118015611b1e57600080fd5b506040519080825280601f01601f191660200182016040528015611b49576020820181803683370190505b5090505b84156111155760001990910190600a850660300160f81b818381518110611b7057fe5b60200101906001600160f81b031916908160001a905350600a85049450611b4d565b611b9c8383611d95565b611ba96000848484611901565b61091a5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611c3584610ce0565b6000848152600860205260409020549190039150808214611c8a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600980546000838152600a6020526040812054600019830193909284908110611ce257fe5b906000526020600020015490508060098381548110611cfd57fe5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611d2f57fe5b6001900381819060005260206000200160009055905550505050565b6000611d5683610ce0565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b3b151590565b6001600160a01b038216611df0576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611df9816112cb565b15611e4b576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b611e57600083836117eb565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f0357805160ff1916838001178555611f30565b82800160010185558215611f30579182015b82811115611f30578251825591602001919060010190611f15565b50611f3c929150611f80565b5090565b50805460018160011615610100020316600290046000825580601f10611f66575061156d565b601f01602090049060005260206000209081019061156d91905b6107df91905b80821115611f3c5760008155600101611f8656fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e45524337323155524953746f726167653a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e45524337323155524953746f726167653a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a2646970667358221220ab0edce52ecf2ae19fd0dfe62deee28dbfbeb00fe7f9efba457af65a164f86b664736f6c63430006090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634f6ccce7116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461063f578063d85d3d271461065c578063e985e9c5146106ca578063f2fde38b146106f857610173565b8063a22cb46514610414578063b2b45df514610442578063b88d4fde1461057b57610173565b80634f6ccce71461039c5780636352211e146103b957806370a08231146103d65780638456db15146103fc5780638698dbd61461040457806395d89b411461040c57610173565b806318160ddd1161013057806318160ddd146102c557806323b872dd146102df5780632f745c591461031557806342842e0e1461034157806342966c68146103775780634e71e0c81461039457610173565b806301ffc9a71461017857806306fdde03146101b3578063081812fc14610230578063095ea7b3146102695780630d0092971461029757806316048bc4146102bd575b600080fd5b61019f6004803603602081101561018e57600080fd5b50356001600160e01b03191661071e565b604080519115158252519081900360200190f35b6101bb61074b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f55781810151838201526020016101dd565b50505050905090810190601f1680156102225780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61024d6004803603602081101561024657600080fd5b50356107e2565b604080516001600160a01b039092168252519081900360200190f35b6102956004803603604081101561027f57600080fd5b506001600160a01b038135169060200135610844565b005b610295600480360360208110156102ad57600080fd5b50356001600160a01b031661091f565b61024d6109a7565b6102cd6109b6565b60408051918252519081900360200190f35b610295600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356109bc565b6102cd6004803603604081101561032b57600080fd5b506001600160a01b038135169060200135610a13565b6102956004803603606081101561035757600080fd5b506001600160a01b03813581169160208101359091169060400135610a84565b6102956004803603602081101561038d57600080fd5b5035610a9f565b610295610b71565b6102cd600480360360208110156103b257600080fd5b5035610c26565b61024d600480360360208110156103cf57600080fd5b5035610c8c565b6102cd600480360360208110156103ec57600080fd5b50356001600160a01b0316610ce0565b61024d610d43565b6102cd610d52565b6101bb610d58565b6102956004803603604081101561042a57600080fd5b506001600160a01b0381351690602001351515610db8565b6102956004803603606081101561045857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561048257600080fd5b82018360208201111561049457600080fd5b803590602001918460018302840111600160201b831117156104b557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561050757600080fd5b82018360208201111561051957600080fd5b803590602001918460018302840111600160201b8311171561053a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ebd945050505050565b6102956004803603608081101561059157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105cb57600080fd5b8201836020820111156105dd57600080fd5b803590602001918460018302840111600160201b831117156105fe57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef3945050505050565b6101bb6004803603602081101561065557600080fd5b5035610f4b565b6102956004803603602081101561067257600080fd5b810190602081018135600160201b81111561068c57600080fd5b82018360208201111561069e57600080fd5b803590602001918460018302840111600160201b831117156106bf57600080fd5b50909250905061111d565b61019f600480360360408110156106e057600080fd5b506001600160a01b03813581169160200135166111b6565b6102956004803603602081101561070e57600080fd5b50356001600160a01b03166111e4565b60006001600160e01b0319821663780e9d6360e01b148061074357506107438261128b565b90505b919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b505050505090505b90565b60006107ed826112cb565b6108285760405162461bcd60e51b815260040180806020018281038252602c815260200180612132602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084f82610c8c565b9050806001600160a01b0316836001600160a01b031614156108a25760405162461bcd60e51b81526004018080602001828103825260218152602001806121b66021913960400191505060405180910390fd5b806001600160a01b03166108b46112e8565b6001600160a01b031614806108d557506108d5816108d06112e8565b6111b6565b6109105760405162461bcd60e51b81526004018080602001828103825260388152602001806120486038913960400191505060405180910390fd5b61091a83836112ec565b505050565b600d54600160a01b900460ff1615610971576040805162461bcd60e51b815260206004820152601060248201526f1113d113d7d25392551250531256915160821b604482015290519081900360640190fd5b600d805460ff60a01b1916600160a01b179055600c80546001600160a01b039092166001600160a01b0319909216919091179055565b600c546001600160a01b031681565b60095490565b6109cd6109c76112e8565b8261135a565b610a085760405162461bcd60e51b81526004018080602001828103825260318152602001806121d76031913960400191505060405180910390fd5b61091a8383836113f6565b6000610a1e83610ce0565b8210610a5b5760405162461bcd60e51b815260040180806020018281038252602b815260200180611f9b602b913960400191505060405180910390fd5b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61091a83838360405180602001604052806000815250610ef3565b600c546001600160a01b03163314610aea576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b600e548110610b32576040805162461bcd60e51b815260206004820152600f60248201526e1513d2d153925117d2539590531251608a1b604482015290519081900360640190fd5b610b3b81611526565b6040805182815290517f1dd2a9cbc8ce356356dcb8c70cdb31cda3180f372efd9800cd272ca607e3bb979181900360200190a150565b600d546001600160a01b03163314610bc0576040805162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f434c41494d60981b604482015290519081900360640190fd5b600d54600c546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d8054600c80546001600160a01b03199081166001600160a01b03841617909155169055565b6000610c306109b6565b8210610c6d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612208602c913960400191505060405180910390fd5b60098281548110610c7a57fe5b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b0316806107435760405162461bcd60e51b81526004018080602001828103825260298152602001806120aa6029913960400191505060405180910390fd5b60006001600160a01b038216610d275760405162461bcd60e51b815260040180806020018281038252602a815260200180612080602a913960400191505060405180910390fd5b506001600160a01b031660009081526004602052604090205490565b600d546001600160a01b031681565b600e5481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b610dc06112e8565b6001600160a01b0316826001600160a01b03161415610e26576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060066000610e336112e8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e776112e8565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610ec68361091f565b8151610ed9906000906020850190611ec2565b508051610eed906001906020840190611ec2565b50505050565b610f04610efe6112e8565b8361135a565b610f3f5760405162461bcd60e51b81526004018080602001828103825260318152602001806121d76031913960400191505060405180910390fd5b610eed84848484611570565b6060610f56826112cb565b610f915760405162461bcd60e51b81526004018080602001828103825260318152602001806121016031913960400191505060405180910390fd5b6000828152600b602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905060606110376115c2565b905080516000141561104b57509050610746565b81511561110c5780826040516020018083805190602001908083835b602083106110865780518252601f199092019160209182019101611067565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106110ce5780518252601f1990920191602091820191016110af565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610746565b61111584611620565b949350505050565b61112933600e54611751565b61116b600e5483838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061176f92505050565b600e5460408051338152602081019290925280517f89221aafd5f0e89b6ae1947998ec119865b3fb77b4c1967444676f1942fd7fcc9281900390910190a15050600e80546001019055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b0316331461122f576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b600c546040516001600160a01b038084169216907fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6290600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112bc57506001600160e01b03198216635b5e139f60e01b145b806107435750610743826117d2565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061132182610c8c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611365826112cb565b6113a05760405162461bcd60e51b815260040180806020018281038252602c81526020018061201c602c913960400191505060405180910390fd5b60006113ab83610c8c565b9050806001600160a01b0316846001600160a01b031614806113e65750836001600160a01b03166113db846107e2565b6001600160a01b0316145b80611115575061111581856111b6565b826001600160a01b031661140982610c8c565b6001600160a01b03161461144e5760405162461bcd60e51b815260040180806020018281038252602981526020018061215e6029913960400191505060405180910390fd5b6001600160a01b0382166114935760405162461bcd60e51b8152600401808060200182810382526024815260200180611ff86024913960400191505060405180910390fd5b61149e8383836117eb565b6114a96000826112ec565b6001600160a01b038084166000818152600460209081526040808320805460001901905593861680835284832080546001019055858352600390915283822080546001600160a01b031916821790559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61152f81611874565b6000818152600b6020526040902054600260001961010060018416150201909116041561156d576000818152600b6020526040812061156d91611f40565b50565b61157b8484846113f6565b61158784848484611901565b610eed5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107d75780601f106107ac576101008083540402835291602001916107d7565b606061162b826112cb565b6116665760405162461bcd60e51b815260040180806020018281038252602f815260200180612187602f913960400191505060405180910390fd5b60606116706115c2565b90506000815111611690576040518060200160405280600081525061174a565b8061169a84611ac8565b6040516020018083805190602001908083835b602083106116cc5780518252601f1990920191602091820191016116ad565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117145780518252601f1990920191602091820191016116f5565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b61176b828260405180602001604052806000815250611b92565b5050565b611778826112cb565b6117b35760405162461bcd60e51b815260040180806020018281038252602e8152602001806120d3602e913960400191505060405180910390fd5b6000828152600b60209081526040909120825161091a92840190611ec2565b6001600160e01b031981166301ffc9a760e01b14919050565b6117f683838361091a565b6001600160a01b0383166118125761180d81611be4565b611835565b816001600160a01b0316836001600160a01b031614611835576118358382611c28565b6001600160a01b0382166118515761184c81611cbd565b61091a565b826001600160a01b0316826001600160a01b03161461091a5761091a8282611d4b565b600061187f82610c8c565b905061188d816000846117eb565b6118986000836112ec565b6001600160a01b03811660008181526004602090815260408083208054600019019055858352600390915280822080546001600160a01b0319169055518492907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611915846001600160a01b0316611d8f565b15611abd57836001600160a01b031663150b7a026119316112e8565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156119b657818101518382015260200161199e565b50505050905090810190601f1680156119e35780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611a0557600080fd5b505af1925050508015611a2a57506040513d6020811015611a2557600080fd5b505160015b611aa3573d808015611a58576040519150601f19603f3d011682016040523d82523d6000602084013e611a5d565b606091505b508051611a9b5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611115565b506001949350505050565b606081611aed57506040805180820190915260018152600360fc1b6020820152610746565b8160005b8115611b0557600101600a82049150611af1565b60608167ffffffffffffffff81118015611b1e57600080fd5b506040519080825280601f01601f191660200182016040528015611b49576020820181803683370190505b5090505b84156111155760001990910190600a850660300160f81b818381518110611b7057fe5b60200101906001600160f81b031916908160001a905350600a85049450611b4d565b611b9c8383611d95565b611ba96000848484611901565b61091a5760405162461bcd60e51b8152600401808060200182810382526032815260200180611fc66032913960400191505060405180910390fd5b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611c3584610ce0565b6000848152600860205260409020549190039150808214611c8a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600980546000838152600a6020526040812054600019830193909284908110611ce257fe5b906000526020600020015490508060098381548110611cfd57fe5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611d2f57fe5b6001900381819060005260206000200160009055905550505050565b6000611d5683610ce0565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b3b151590565b6001600160a01b038216611df0576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611df9816112cb565b15611e4b576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b611e57600083836117eb565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f0357805160ff1916838001178555611f30565b82800160010185558215611f30579182015b82811115611f30578251825591602001919060010190611f15565b50611f3c929150611f80565b5090565b50805460018160011615610100020316600290046000825580601f10611f66575061156d565b601f01602090049060005260206000209081019061156d91905b6107df91905b80821115611f3c5760008155600101611f8656fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e45524337323155524953746f726167653a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e45524337323155524953746f726167653a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a2646970667358221220ab0edce52ecf2ae19fd0dfe62deee28dbfbeb00fe7f9efba457af65a164f86b664736f6c63430006090033

Deployed Bytecode Sourcemap

43295:892:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33878:237;;;;;;;;;;;;;;;;-1:-1:-1;33878:237:0;-1:-1:-1;;;;;;33878:237:0;;:::i;:::-;;;;;;;;;;;;;;;;;;21198:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22664:221;;;;;;;;;;;;;;;;-1:-1:-1;22664:221:0;;:::i;:::-;;;;-1:-1:-1;;;;;22664:221:0;;;;;;;;;;;;;;22201:397;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22201:397:0;;;;;;;;:::i;:::-;;42708:127;;;;;;;;;;;;;;;;-1:-1:-1;42708:127:0;-1:-1:-1;;;;;42708:127:0;;:::i;42075:22::-;;;:::i;34531:113::-;;;:::i;:::-;;;;;;;;;;;;;;;;23554:305;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23554:305:0;;;;;;;;;;;;;;;;;:::i;34199:256::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34199:256:0;;;;;;;;:::i;23930:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23930:151:0;;;;;;;;;;;;;;;;;:::i;44003:181::-;;;;;;;;;;;;;;;;-1:-1:-1;44003:181:0;;:::i;43014:228::-;;;:::i;34721:233::-;;;;;;;;;;;;;;;;-1:-1:-1;34721:233:0;;:::i;20892:239::-;;;;;;;;;;;;;;;;-1:-1:-1;20892:239:0;;:::i;20622:208::-;;;;;;;;;;;;;;;;-1:-1:-1;20622:208:0;-1:-1:-1;;;;;20622:208:0;;:::i;42104:26::-;;;:::i;43367:28::-;;;:::i;21367:104::-;;;:::i;22957:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22957:295:0;;;;;;;;;;:::i;43550:197::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43550:197:0;;;;;;;;;;;;;;;-1:-1:-1;;;43550:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43550:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43550:197:0;;;;;;;;-1:-1:-1;43550:197:0;;-1:-1:-1;;;;;43550:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43550:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43550:197:0;;-1:-1:-1;43550:197:0;;-1:-1:-1;;;;;43550:197:0:i;24152:285::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24152:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24152:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24152:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24152:285:0;;-1:-1:-1;24152:285:0;;-1:-1:-1;;;;;24152:285:0:i;40393:679::-;;;;;;;;;;;;;;;;-1:-1:-1;40393:679:0;;:::i;43755:240::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43755:240:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43755:240:0;;;;;;;;;;-1:-1:-1;43755:240:0;;-1:-1:-1;43755:240:0;-1:-1:-1;43755:240:0;:::i;23323:164::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23323:164:0;;;;;;;;;;:::i;42843:163::-;;;;;;;;;;;;;;;;-1:-1:-1;42843:163:0;-1:-1:-1;;;;;42843:163:0;;:::i;33878:237::-;33980:4;-1:-1:-1;;;;;;34004:50:0;;-1:-1:-1;;;34004:50:0;;:103;;;34071:36;34095:11;34071:23;:36::i;:::-;33997:110;;33878:237;;;;:::o;21198:100::-;21285:5;21278:12;;;;;;;;-1:-1:-1;;21278:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21252:13;;21278:12;;21285:5;;21278:12;;21285:5;21278:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21198:100;;:::o;22664:221::-;22740:7;22768:16;22776:7;22768;:16::i;:::-;22760:73;;;;-1:-1:-1;;;22760:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22853:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22853:24:0;;22664:221::o;22201:397::-;22282:13;22298:23;22313:7;22298:14;:23::i;:::-;22282:39;;22346:5;-1:-1:-1;;;;;22340:11:0;:2;-1:-1:-1;;;;;22340:11:0;;;22332:57;;;;-1:-1:-1;;;22332:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22426:5;-1:-1:-1;;;;;22410:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22410:21:0;;:62;;;;22435:37;22452:5;22459:12;:10;:12::i;:::-;22435:16;:37::i;:::-;22402:154;;;;-1:-1:-1;;;22402:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22569:21;22578:2;22582:7;22569:8;:21::i;:::-;22201:397;;;:::o;42708:127::-;42497:13;;-1:-1:-1;;;42497:13:0;;;;42496:14;42488:43;;;;;-1:-1:-1;;;42488:43:0;;;;;;;;;;;;-1:-1:-1;;;42488:43:0;;;;;;;;;;;;;;;42778:13:::1;:20:::0;;-1:-1:-1;;;;42778:20:0::1;-1:-1:-1::0;;;42778:20:0::1;::::0;;42809:7:::1;:18:::0;;-1:-1:-1;;;;;42809:18:0;;::::1;-1:-1:-1::0;;;;;;42809:18:0;;::::1;::::0;;;::::1;::::0;;42708:127::o;42075:22::-;;;-1:-1:-1;;;;;42075:22:0;;:::o;34531:113::-;34619:10;:17;34531:113;:::o;23554:305::-;23715:41;23734:12;:10;:12::i;:::-;23748:7;23715:18;:41::i;:::-;23707:103;;;;-1:-1:-1;;;23707:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23823:28;23833:4;23839:2;23843:7;23823:9;:28::i;34199:256::-;34296:7;34332:23;34349:5;34332:16;:23::i;:::-;34324:5;:31;34316:87;;;;-1:-1:-1;;;34316:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34421:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34199:256::o;23930:151::-;24034:39;24051:4;24057:2;24061:7;24034:39;;;;;;;;;;;;:16;:39::i;44003:181::-;42613:7;;-1:-1:-1;;;;;42613:7:0;42599:10;:21;42591:43;;;;;-1:-1:-1;;;42591:43:0;;;;;;;;;;;;-1:-1:-1;;;42591:43:0;;;;;;;;;;;;;;;44082:13:::1;;44072:7;:23;44064:51;;;::::0;;-1:-1:-1;;;44064:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44064:51:0;;;;;;;;;;;;;::::1;;44126:14;44132:7;44126:5;:14::i;:::-;44156:20;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44003:181:::0;:::o;43014:228::-;43080:11;;-1:-1:-1;;;;;43080:11:0;43066:10;:25;43058:51;;;;;-1:-1:-1;;;43058:51:0;;;;;;;;;;;;-1:-1:-1;;;43058:51:0;;;;;;;;;;;;;;;43155:11;;43146:7;;43125:42;;-1:-1:-1;;;;;43155:11:0;;;;43146:7;;;;43125:42;;43155:11;;43125:42;43188:11;;;43178:7;:21;;-1:-1:-1;;;;;;43178:21:0;;;-1:-1:-1;;;;;43188:11:0;;43178:21;;;;43210:24;;;43014:228::o;34721:233::-;34796:7;34832:30;:28;:30::i;:::-;34824:5;:38;34816:95;;;;-1:-1:-1;;;34816:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34929:10;34940:5;34929:17;;;;;;;;;;;;;;;;34922:24;;34721:233;;;:::o;20892:239::-;20964:7;21000:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21000:16:0;21035:19;21027:73;;;;-1:-1:-1;;;21027:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20622:208;20694:7;-1:-1:-1;;;;;20722:19:0;;20714:74;;;;-1:-1:-1;;;20714:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20806:16:0;;;;;:9;:16;;;;;;;20622:208::o;42104:26::-;;;-1:-1:-1;;;;;42104:26:0;;:::o;43367:28::-;;;;:::o;21367:104::-;21456:7;21449:14;;;;;;;;-1:-1:-1;;21449:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21423:13;;21449:14;;21456:7;;21449:14;;21456:7;21449:14;;;;;;;;;;;;;;;;;;;;;;;;22957:295;23072:12;:10;:12::i;:::-;-1:-1:-1;;;;;23060:24:0;:8;-1:-1:-1;;;;;23060:24:0;;;23052:62;;;;;-1:-1:-1;;;23052:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23172:8;23127:18;:32;23146:12;:10;:12::i;:::-;-1:-1:-1;;;;;23127:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23127:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23127:53:0;;;;;;;;;;;23211:12;:10;:12::i;:::-;23196:48;;;;;;;;;;-1:-1:-1;;;;;23196:48:0;;;;;;;;;;;;;;22957:295;;:::o;43550:197::-;43673:16;43683:5;43673:9;:16::i;:::-;43700:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;43723:16:0;;;;:7;;:16;;;;;:::i;:::-;;43550:197;;;:::o;24152:285::-;24284:41;24303:12;:10;:12::i;:::-;24317:7;24284:18;:41::i;:::-;24276:103;;;;-1:-1:-1;;;24276:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24390:39;24404:4;24410:2;24414:7;24423:5;24390:13;:39::i;40393:679::-;40466:13;40500:16;40508:7;40500;:16::i;:::-;40492:78;;;;-1:-1:-1;;;40492:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40609:19;;;;:10;:19;;;;;;;;;40583:45;;;;;;-1:-1:-1;;40583:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;40609:19;40583:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40639:18;40660:10;:8;:10::i;:::-;40639:31;;40752:4;40746:18;40768:1;40746:23;40742:72;;;-1:-1:-1;40793:9:0;-1:-1:-1;40786:16:0;;40742:72;40918:23;;:27;40914:108;;40993:4;40999:9;40976:33;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40976:33:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40976:33:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40976:33:0;;;;;;;;;;;;;-1:-1:-1;;40976:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40962:48;;;;;;40914:108;41041:23;41056:7;41041:14;:23::i;:::-;41034:30;40393:679;-1:-1:-1;;;;40393:679:0:o;43755:240::-;43810:36;43820:10;43832:13;;43810:9;:36::i;:::-;43857:32;43870:13;;43885:3;;43857:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43857:12:0;;-1:-1:-1;;;43857:32:0:i;:::-;43929:13;;43905:38;;;43917:10;43905:38;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43970:13:0;;;43986:1;43970:17;43954:33;;43755:240::o;23323:164::-;-1:-1:-1;;;;;23444:25:0;;;23420:4;23444:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23323:164::o;42843:163::-;42613:7;;-1:-1:-1;;;;;42613:7:0;42599:10;:21;42591:43;;;;;-1:-1:-1;;;42591:43:0;;;;;;;;;;;;-1:-1:-1;;;42591:43:0;;;;;;;;;;;;;;;42947:7:::1;::::0;42921:44:::1;::::0;-1:-1:-1;;;;;42921:44:0;;::::1;::::0;42947:7:::1;::::0;42921:44:::1;::::0;42947:7:::1;::::0;42921:44:::1;42976:11;:22:::0;;-1:-1:-1;;;;;;42976:22:0::1;-1:-1:-1::0;;;;;42976:22:0;;;::::1;::::0;;;::::1;::::0;;42843:163::o;20266:292::-;20368:4;-1:-1:-1;;;;;;20392:40:0;;-1:-1:-1;;;20392:40:0;;:105;;-1:-1:-1;;;;;;;20449:48:0;;-1:-1:-1;;;20449:48:0;20392:105;:158;;;;20514:36;20538:11;20514:23;:36::i;25904:127::-;25969:4;25993:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25993:16:0;:30;;;25904:127::o;18837:98::-;18917:10;18837:98;:::o;29781:174::-;29856:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29856:29:0;-1:-1:-1;;;;;29856:29:0;;;;;;;;:24;;29910:23;29856:24;29910:14;:23::i;:::-;-1:-1:-1;;;;;29901:46:0;;;;;;;;;;;29781:174;;:::o;26198:348::-;26291:4;26316:16;26324:7;26316;:16::i;:::-;26308:73;;;;-1:-1:-1;;;26308:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26392:13;26408:23;26423:7;26408:14;:23::i;:::-;26392:39;;26461:5;-1:-1:-1;;;;;26450:16:0;:7;-1:-1:-1;;;;;26450:16:0;;:51;;;;26494:7;-1:-1:-1;;;;;26470:31:0;:20;26482:7;26470:11;:20::i;:::-;-1:-1:-1;;;;;26470:31:0;;26450:51;:87;;;;26505:32;26522:5;26529:7;26505:16;:32::i;29119:544::-;29244:4;-1:-1:-1;;;;;29217:31:0;:23;29232:7;29217:14;:23::i;:::-;-1:-1:-1;;;;;29217:31:0;;29209:85;;;;-1:-1:-1;;;29209:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29313:16:0;;29305:65;;;;-1:-1:-1;;;29305:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29383:39;29404:4;29410:2;29414:7;29383:20;:39::i;:::-;29487:29;29504:1;29508:7;29487:8;:29::i;:::-;-1:-1:-1;;;;;29529:15:0;;;;;;;:9;:15;;;;;;;;:20;;-1:-1:-1;;29529:20:0;;;29560:13;;;;;;;;;:18;;29548:1;29560:18;;;29589:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29589:21:0;;;;;29628:27;;29597:7;;29560:13;29529:15;29628:27;;;29119:544;;;:::o;41674:206::-;41743:20;41755:7;41743:11;:20::i;:::-;41786:19;;;;:10;:19;;;;;41780:33;;-1:-1:-1;;41780:33:0;;;;;;;;;;;:38;41776:97;;41842:19;;;;:10;:19;;;;;41835:26;;;:::i;:::-;41674:206;:::o;25319:272::-;25433:28;25443:4;25449:2;25453:7;25433:9;:28::i;:::-;25480:48;25503:4;25509:2;25513:7;25522:5;25480:22;:48::i;:::-;25472:111;;;;-1:-1:-1;;;25472:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22039:100;22123:8;22116:15;;;;;;;-1:-1:-1;;22116:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22090:13;;22116:15;;22123:8;;22116:15;;22123:8;22116:15;;;;;;;;;;;;;;;;;;;;;;;;21542:360;21615:13;21649:16;21657:7;21649;:16::i;:::-;21641:76;;;;-1:-1:-1;;;21641:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21730:21;21754:10;:8;:10::i;:::-;21730:34;;21806:1;21788:7;21782:21;:25;:112;;;;;;;;;;;;;;;;;21847:7;21856:18;:7;:16;:18::i;:::-;21830:45;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21830:45:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21830:45:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21830:45:0;;;;;;;;;;;;;-1:-1:-1;;21830:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21782:112;21775:119;21542:360;-1:-1:-1;;;21542:360:0:o;26888:110::-;26964:26;26974:2;26978:7;26964:26;;;;;;;;;;;;:9;:26::i;:::-;26888:110;;:::o;41228:217::-;41328:16;41336:7;41328;:16::i;:::-;41320:75;;;;-1:-1:-1;;;41320:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41406:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;8062:157::-;-1:-1:-1;;;;;;8171:40:0;;-1:-1:-1;;;8171:40:0;8062:157;;;:::o;35567:555::-;35677:45;35704:4;35710:2;35714:7;35677:26;:45::i;:::-;-1:-1:-1;;;;;35739:18:0;;35735:187;;35774:40;35806:7;35774:31;:40::i;:::-;35735:187;;;35844:2;-1:-1:-1;;;;;35836:10:0;:4;-1:-1:-1;;;;;35836:10:0;;35832:90;;35863:47;35896:4;35902:7;35863:32;:47::i;:::-;-1:-1:-1;;;;;35936:16:0;;35932:183;;35969:45;36006:7;35969:36;:45::i;:::-;35932:183;;;36042:4;-1:-1:-1;;;;;36036:10:0;:2;-1:-1:-1;;;;;36036:10:0;;36032:83;;36063:40;36091:2;36095:7;36063:27;:40::i;28422:360::-;28482:13;28498:23;28513:7;28498:14;:23::i;:::-;28482:39;;28534:48;28555:5;28570:1;28574:7;28534:20;:48::i;:::-;28623:29;28640:1;28644:7;28623:8;:29::i;:::-;-1:-1:-1;;;;;28665:16:0;;;;;;:9;:16;;;;;;;;:21;;-1:-1:-1;;28665:21:0;;;28704:16;;;:7;:16;;;;;;28697:23;;-1:-1:-1;;;;;;28697:23:0;;;28738:36;28712:7;;28665:16;28738:36;;28665:16;;28738:36;28422:360;;:::o;30520:843::-;30641:4;30667:15;:2;-1:-1:-1;;;;;30667:13:0;;:15::i;:::-;30663:693;;;30719:2;-1:-1:-1;;;;;30703:36:0;;30740:12;:10;:12::i;:::-;30754:4;30760:7;30769:5;30703:72;;;;;;;;;;;;;-1:-1:-1;;;;;30703:72:0;-1:-1:-1;;;;;30703:72:0;;;;;;-1:-1:-1;;;;;30703:72:0;-1:-1:-1;;;;;30703:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30703:72:0;;;30699:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30949:13:0;;30945:341;;30992:60;;-1:-1:-1;;;30992:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30945:341;31236:6;31230:13;31221:6;31217:2;31213:15;31206:38;30699:602;-1:-1:-1;;;;;;30826:55:0;-1:-1:-1;;;30826:55:0;;-1:-1:-1;30819:62:0;;30663:693;-1:-1:-1;31340:4:0;30520:843;;;;;;:::o;8499:723::-;8555:13;8776:10;8772:53;;-1:-1:-1;8803:10:0;;;;;;;;;;;;-1:-1:-1;;;8803:10:0;;;;;;8772:53;8850:5;8835:12;8891:78;8898:9;;8891:78;;8924:8;;8955:2;8947:10;;;;8891:78;;;8979:19;9011:6;9001:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9001:17:0;;8979:39;;9029:154;9036:10;;9029:154;;-1:-1:-1;;9063:11:0;;;;9140:2;9132:5;:10;9119:2;:24;9106:39;;9089:6;9096;9089:14;;;;;;;;;;;:56;-1:-1:-1;;;;;9089:56:0;;;;;;;;-1:-1:-1;9169:2:0;9160:11;;;;9029:154;;27225:250;27321:18;27327:2;27331:7;27321:5;:18::i;:::-;27358:54;27389:1;27393:2;27397:7;27406:5;27358:22;:54::i;:::-;27350:117;;;;-1:-1:-1;;;27350:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36845:164;36949:10;:17;;36922:24;;;;:15;:24;;;;;:44;;;36977:24;;;;;;;;;;;;36845:164::o;37636:988::-;37902:22;37952:1;37927:22;37944:4;37927:16;:22::i;:::-;37964:18;37985:26;;;:17;:26;;;;;;37927;;;;-1:-1:-1;38118:28:0;;;38114:328;;-1:-1:-1;;;;;38185:18:0;;38163:19;38185:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38236:30;;;;;;:44;;;38353:30;;:17;:30;;;;;:43;;;38114:328;-1:-1:-1;38538:26:0;;;;:17;:26;;;;;;;;38531:33;;;-1:-1:-1;;;;;38582:18:0;;;;;:12;:18;;;;;:34;;;;;;;38575:41;37636:988::o;38919:1079::-;39197:10;:17;;39172:22;39250:24;;;:15;:24;;;;;;-1:-1:-1;;39197:21:0;;;39250:24;;39197:21;;39623:26;;;;;;;;;;;;;;39601:48;;39687:11;39662:10;39673;39662:22;;;;;;;;;;;;;;;;;;;:36;;;;39767:28;;;:15;:28;;;;;;;:41;;;39939:24;;;;;39932:31;39974:10;:16;;;;;;;;;;;;;;;;;;;;;;;;38919:1079;;;;:::o;36423:221::-;36508:14;36525:20;36542:2;36525:16;:20::i;:::-;-1:-1:-1;;;;;36556:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36601:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36423:221:0:o;10988:422::-;11355:20;11394:8;;;10988:422::o;27811:382::-;-1:-1:-1;;;;;27891:16:0;;27883:61;;;;;-1:-1:-1;;;27883:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27964:16;27972:7;27964;:16::i;:::-;27963:17;27955:58;;;;;-1:-1:-1;;;27955:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28026:45;28055:1;28059:2;28063:7;28026:20;:45::i;:::-;-1:-1:-1;;;;;28084:13:0;;;;;;:9;:13;;;;;;;;:18;;28101:1;28084:18;;;28113:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28113:21:0;;;;;28152:33;28121:7;;28084:13;;28152:33;;28084:13;;28152:33;27811:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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