ETH Price: $2,609.21 (-0.47%)

Token

Canverse (CANV)
 

Overview

Max Total Supply

374 CANV

Holders

187

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
msbae.eth
Balance
10 CANV
0x2D260D3c4Af1A42180929De1f639D23ede3328c3
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:
ERC721Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-19
*/

// Sources flattened with hardhat v2.3.3 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

}


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/security/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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


// File @openzeppelin/contracts/utils/structs/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File @openzeppelin/contracts/utils/structs/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;

        mapping (bytes32 => bytes32) _values;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._keys.length();
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        bytes32 key = map._keys.at(index);
        return (key, map._values[key]);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (_contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


// File contracts/tokens/ERC721Token.sol


pragma solidity ^0.8.0;
contract ERC721Token is ERC721Enumerable, ERC721URIStorage, Ownable, ERC721Burnable, ERC721Pausable {
  using EnumerableMap for EnumerableMap.UintToAddressMap;
  using Counters for Counters.Counter;

  // Counter that tracks incremental token ids
  Counters.Counter private _tokenIds;

  // Authors mapping (tokenId -> author address)
  EnumerableMap.UintToAddressMap private _tokenIdAuthor;

  // Constructor will be called only 1 time, when the Smart Contract gets deployed
  constructor(
    string memory _name,
    string memory _symbol
  ) ERC721(_name, _symbol) {}

  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, ERC721) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  /**
   * Minting function. Anyone can call it.
   */
  function mint(address _to, string memory _tokenURI) 
    public
    whenNotPaused
    returns (uint256) 
  {
    return _mint(_to, _tokenURI, _msgSender()); 
  }

  /**
   * Only Owner minting function. To use if minting in the name of an author.
   */
  function mintWithAuthor(address _to, string memory _tokenURI, address _author)
    public
    onlyOwner
    whenNotPaused
    returns (uint256) 
  {
    return _mint(_to, _tokenURI, _author);
  }

  /**
   * Minting function.
   *
   * Will mint a new NFT with the tokenURI as property (ideally should point to a distributed storage URI),
   * setup the mapping of the newly created token ID and the provided author and send the NFT to _to after minting.
   */ 
  function _mint(address _to, string memory _tokenURI, address _author)
    internal
    whenNotPaused
    returns (uint256)
  {
    require(bytes(_tokenURI).length > 0, "ERR: Empty tokenURI");
    require(_author != address(0), "ERR: 0x0 author address");

    _tokenIds.increment();
     
    uint256 _newTokenId = _tokenIds.current();
    super._mint(_to, _newTokenId);
    _setTokenURI(_newTokenId, _tokenURI);

    _tokenIdAuthor.set(_newTokenId, _author);

    return _newTokenId;
  }

  /**
   * Getter to retrieve the author for a given token Id
   */
  function tokenIdAuthor(uint256 _tokenId)
    external
    view
    returns (address author)
  {
    require(_tokenIdAuthor.contains(_tokenId), "ERR: Unexisting token");
 
    return _tokenIdAuthor.get(_tokenId);
  }

  function pause() public onlyOwner {
    super._pause();
  }

  function unpause() public onlyOwner {
    super._unpause();
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Pausable, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function _burn(uint256 tokenId) internal virtual whenNotPaused override(ERC721URIStorage, ERC721) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override (ERC721URIStorage, ERC721) returns (string memory) {
    return super.tokenURI(tokenId);
  }

  function transfer(address from, address to, uint256 tokenId) public virtual {
    return super.safeTransferFrom(from, to, tokenId);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address","name":"_author","type":"address"}],"name":"mintWithAuthor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdAuthor","outputs":[{"internalType":"address","name":"author","type":"address"}],"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":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620029e9380380620029e9833981016040819052620000349162000230565b8151829082906200004d906000906020850190620000df565b50805162000063906001906020840190620000df565b505050600062000078620000db60201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050600b805460ff60a01b1916905550620002ea565b3390565b828054620000ed9062000297565b90600052602060002090601f0160209004810192826200011157600085556200015c565b82601f106200012c57805160ff19168380011785556200015c565b828001600101855582156200015c579182015b828111156200015c5782518255916020019190600101906200013f565b506200016a9291506200016e565b5090565b5b808211156200016a57600081556001016200016f565b600082601f83011262000196578081fd5b81516001600160401b0380821115620001b357620001b3620002d4565b6040516020601f8401601f1916820181018381118382101715620001db57620001db620002d4565b6040528382528584018101871015620001f2578485fd5b8492505b83831015620002155785830181015182840182015291820191620001f6565b838311156200022657848185840101525b5095945050505050565b6000806040838503121562000243578182fd5b82516001600160401b03808211156200025a578384fd5b620002688683870162000185565b935060208501519150808211156200027e578283fd5b506200028d8582860162000185565b9150509250929050565b600281046001821680620002ac57607f821691505b60208210811415620002ce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126ef80620002fa6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b88d4fde11610097578063d0def52111610071578063d0def5211461034a578063e985e9c51461035d578063f2fde38b14610370578063fb6662fd14610383576101a9565b8063b88d4fde14610311578063beabacc814610324578063c87b56dd14610337576101a9565b80638456cb59116100d35780638456cb59146102e65780638da5cb5b146102ee57806395d89b41146102f6578063a22cb465146102fe576101a9565b80636352211e146102b857806370a08231146102cb578063715018a6146102de576101a9565b80632f745c591161016657806342842e0e1161014057806342842e0e1461027757806342966c681461028a5780634f6ccce71461029d5780635c975abb146102b0576101a9565b80632f745c591461024957806335b9dea91461025c5780633f4ba83a1461026f576101a9565b806301ffc9a7146101ae57806306fdde03146101d7578063081812fc146101ec578063095ea7b31461020c57806318160ddd1461022157806323b872dd14610236575b600080fd5b6101c16101bc366004611d0c565b610396565b6040516101ce9190611e08565b60405180910390f35b6101df6103a9565b6040516101ce9190611e13565b6101ff6101fa366004611d44565b61043b565b6040516101ce9190611db7565b61021f61021a366004611ce3565b610487565b005b61022961051f565b6040516101ce919061257f565b61021f610244366004611b4d565b610525565b610229610257366004611ce3565b61055d565b6101ff61026a366004611d44565b6105b2565b61021f6105e6565b61021f610285366004611b4d565b61062f565b61021f610298366004611d44565b61064a565b6102296102ab366004611d44565b61067d565b6101c16106d8565b6101ff6102c6366004611d44565b6106e8565b6102296102d9366004611b01565b61071d565b61021f610761565b61021f6107ea565b6101ff610831565b6101df610840565b61021f61030c366004611c01565b61084f565b61021f61031f366004611b88565b61091d565b61021f610332366004611b4d565b61095c565b6101df610345366004611d44565b610967565b610229610358366004611c3b565b610972565b6101c161036b366004611b1b565b6109b2565b61021f61037e366004611b01565b6109e0565b610229610391366004611c87565b610aa1565b60006103a182610b1a565b90505b919050565b6060600080546103b8906125f7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e4906125f7565b80156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b600061044682610b3f565b61046b5760405162461bcd60e51b81526004016104629061229b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610492826106e8565b9050806001600160a01b0316836001600160a01b031614156104c65760405162461bcd60e51b8152600401610462906123e3565b806001600160a01b03166104d8610b5c565b6001600160a01b031614806104f457506104f48161036b610b5c565b6105105760405162461bcd60e51b8152600401610462906120d7565b61051a8383610b60565b505050565b60085490565b610536610530610b5c565b82610bce565b6105525760405162461bcd60e51b815260040161046290612424565b61051a838383610c4b565b60006105688361071d565b82106105865760405162461bcd60e51b815260040161046290611ecc565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b60006105bf600d83610d78565b6105db5760405162461bcd60e51b8152600401610462906123b4565b6103a1600d83610d84565b6105ee610b5c565b6001600160a01b03166105ff610831565b6001600160a01b0316146106255760405162461bcd60e51b8152600401610462906122e7565b61062d610d90565b565b61051a8383836040518060200160405280600081525061091d565b610655610530610b5c565b6106715760405162461bcd60e51b81526004016104629061252f565b61067a81610e01565b50565b600061068761051f565b82106106a55760405162461bcd60e51b8152600401610462906124ac565b600882815481106106c657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806103a15760405162461bcd60e51b81526004016104629061217e565b60006001600160a01b0382166107455760405162461bcd60e51b815260040161046290612134565b506001600160a01b031660009081526003602052604090205490565b610769610b5c565b6001600160a01b031661077a610831565b6001600160a01b0316146107a05760405162461bcd60e51b8152600401610462906122e7565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b6107f2610b5c565b6001600160a01b0316610803610831565b6001600160a01b0316146108295760405162461bcd60e51b8152600401610462906122e7565b61062d610e2f565b600b546001600160a01b031690565b6060600180546103b8906125f7565b610857610b5c565b6001600160a01b0316826001600160a01b031614156108885760405162461bcd60e51b81526004016104629061202a565b8060056000610895610b5c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556108d9610b5c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109119190611e08565b60405180910390a35050565b61092e610928610b5c565b83610bce565b61094a5760405162461bcd60e51b815260040161046290612424565b61095684848484610e90565b50505050565b61051a83838361062f565b60606103a182610ec3565b600061097c6106d8565b156109995760405162461bcd60e51b8152600401610462906120ad565b6109ab83836109a6610b5c565b610fdc565b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6109e8610b5c565b6001600160a01b03166109f9610831565b6001600160a01b031614610a1f5760405162461bcd60e51b8152600401610462906122e7565b6001600160a01b038116610a455760405162461bcd60e51b815260040161046290611f69565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610aab610b5c565b6001600160a01b0316610abc610831565b6001600160a01b031614610ae25760405162461bcd60e51b8152600401610462906122e7565b610aea6106d8565b15610b075760405162461bcd60e51b8152600401610462906120ad565b610b12848484610fdc565b949350505050565b60006001600160e01b0319821663780e9d6360e01b14806103a157506103a18261108b565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b95826106e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd982610b3f565b610bf55760405162461bcd60e51b815260040161046290612061565b6000610c00836106e8565b9050806001600160a01b0316846001600160a01b03161480610c3b5750836001600160a01b0316610c308461043b565b6001600160a01b0316145b80610b125750610b1281856109b2565b826001600160a01b0316610c5e826106e8565b6001600160a01b031614610c845760405162461bcd60e51b81526004016104629061231c565b6001600160a01b038216610caa5760405162461bcd60e51b815260040161046290611fe6565b610cb58383836110cb565b610cc0600082610b60565b6001600160a01b0383166000908152600360205260408120805460019290610ce99084906125b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d17908490612588565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006109ab83836110d6565b60006109ab83836110e2565b610d986106d8565b610db45760405162461bcd60e51b815260040161046290611e71565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dea610b5c565b604051610df79190611db7565b60405180910390a1565b610e096106d8565b15610e265760405162461bcd60e51b8152600401610462906120ad565b61067a81611122565b610e376106d8565b15610e545760405162461bcd60e51b8152600401610462906120ad565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dea610b5c565b610e9b848484610c4b565b610ea784848484611162565b6109565760405162461bcd60e51b815260040161046290611f17565b6060610ece82610b3f565b610eea5760405162461bcd60e51b81526004016104629061224a565b6000828152600a602052604081208054610f03906125f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f906125f7565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b505050505090506000610f8d61127d565b9050805160001415610fa1575090506103a4565b815115610fd3578082604051602001610fbb929190611d88565b604051602081830303815290604052925050506103a4565b610b128461128f565b6000610fe66106d8565b156110035760405162461bcd60e51b8152600401610462906120ad565b60008351116110245760405162461bcd60e51b815260040161046290611e9f565b6001600160a01b03821661104a5760405162461bcd60e51b815260040161046290612475565b611054600c611311565b6000611060600c61131a565b905061106c858261131e565b61107681856113fd565b611082600d8285611441565b50949350505050565b60006001600160e01b031982166380ac58cd60e01b14806110bc57506001600160e01b03198216635b5e139f60e01b145b806103a157506103a182611457565b61051a838383611470565b60006109ab83836114a0565b600081815260028301602052604081205480151580611106575061110684846110d6565b6109ab5760405162461bcd60e51b8152600401610462906124f8565b61112b816114ac565b6000818152600a602052604090208054611144906125f7565b15905061067a576000818152600a6020526040812061067a91611986565b6000611176846001600160a01b0316611553565b1561127257836001600160a01b031663150b7a02611192610b5c565b8786866040518563ffffffff1660e01b81526004016111b49493929190611dcb565b602060405180830381600087803b1580156111ce57600080fd5b505af19250505080156111fe575060408051601f3d908101601f191682019092526111fb91810190611d28565b60015b611258573d80801561122c576040519150601f19603f3d011682016040523d82523d6000602084013e611231565b606091505b5080516112505760405162461bcd60e51b815260040161046290611f17565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b12565b506001949350505050565b60408051602081019091526000815290565b606061129a82610b3f565b6112b65760405162461bcd60e51b815260040161046290612365565b60006112c061127d565b905060008151116112e057604051806020016040528060008152506109ab565b806112ea84611559565b6040516020016112fb929190611d88565b6040516020818303038152906040529392505050565b80546001019055565b5490565b6001600160a01b0382166113445760405162461bcd60e51b815260040161046290612215565b61134d81610b3f565b1561136a5760405162461bcd60e51b815260040161046290611faf565b611376600083836110cb565b6001600160a01b038216600090815260036020526040812080546001929061139f908490612588565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61140682610b3f565b6114225760405162461bcd60e51b8152600401610462906121c7565b6000828152600a60209081526040909120825161051a928401906119c2565b6000610b1284846001600160a01b038516611674565b6001600160e01b031981166301ffc9a760e01b14919050565b61147b838383611691565b6114836106d8565b1561051a5760405162461bcd60e51b815260040161046290611e26565b60006109ab838361171a565b60006114b7826106e8565b90506114c5816000846110cb565b6114d0600083610b60565b6001600160a01b03811660009081526003602052604081208054600192906114f99084906125b4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b3b151590565b60608161157e57506040805180820190915260018152600360fc1b60208201526103a4565b8160005b81156115a8578061159281612632565b91506115a19050600a836125a0565b9150611582565b60008167ffffffffffffffff8111156115d157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115fb576020820181803683370190505b5090505b8415610b12576116106001836125b4565b915061161d600a8661264d565b611628906030612588565b60f81b81838151811061164b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061166d600a866125a0565b94506115ff565b60008281526002840160205260408120829055610b128484611732565b61169c83838361051a565b6001600160a01b0383166116b8576116b38161173e565b6116db565b816001600160a01b0316836001600160a01b0316146116db576116db8382611782565b6001600160a01b0382166116f7576116f28161181f565b61051a565b826001600160a01b0316826001600160a01b03161461051a5761051a82826118f8565b60009081526001919091016020526040902054151590565b60006109ab838361193c565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161178f8461071d565b61179991906125b4565b6000838152600760205260409020549091508082146117ec576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611831906001906125b4565b6000838152600960205260408120546008805493945090928490811061186757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061189657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118dc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006119038361071d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000611948838361171a565b61197e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105ac565b5060006105ac565b508054611992906125f7565b6000825580601f106119a4575061067a565b601f01602090049060005260206000209081019061067a9190611a46565b8280546119ce906125f7565b90600052602060002090601f0160209004810192826119f05760008555611a36565b82601f10611a0957805160ff1916838001178555611a36565b82800160010185558215611a36579182015b82811115611a36578251825591602001919060010190611a1b565b50611a42929150611a46565b5090565b5b80821115611a425760008155600101611a47565b600067ffffffffffffffff80841115611a7657611a7661268d565b604051601f8501601f191681016020018281118282101715611a9a57611a9a61268d565b604052848152915081838501861015611ab257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146103a457600080fd5b600082601f830112611af2578081fd5b6109ab83833560208501611a5b565b600060208284031215611b12578081fd5b6109ab82611acb565b60008060408385031215611b2d578081fd5b611b3683611acb565b9150611b4460208401611acb565b90509250929050565b600080600060608486031215611b61578081fd5b611b6a84611acb565b9250611b7860208501611acb565b9150604084013590509250925092565b60008060008060808587031215611b9d578081fd5b611ba685611acb565b9350611bb460208601611acb565b925060408501359150606085013567ffffffffffffffff811115611bd6578182fd5b8501601f81018713611be6578182fd5b611bf587823560208401611a5b565b91505092959194509250565b60008060408385031215611c13578182fd5b611c1c83611acb565b915060208301358015158114611c30578182fd5b809150509250929050565b60008060408385031215611c4d578182fd5b611c5683611acb565b9150602083013567ffffffffffffffff811115611c71578182fd5b611c7d85828601611ae2565b9150509250929050565b600080600060608486031215611c9b578283fd5b611ca484611acb565b9250602084013567ffffffffffffffff811115611cbf578283fd5b611ccb86828701611ae2565b925050611cda60408501611acb565b90509250925092565b60008060408385031215611cf5578182fd5b611cfe83611acb565b946020939093013593505050565b600060208284031215611d1d578081fd5b81356109ab816126a3565b600060208284031215611d39578081fd5b81516109ab816126a3565b600060208284031215611d55578081fd5b5035919050565b60008151808452611d748160208601602086016125cb565b601f01601f19169290920160200192915050565b60008351611d9a8184602088016125cb565b835190830190611dae8183602088016125cb565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dfe90830184611d5c565b9695505050505050565b901515815260200190565b6000602082526109ab6020830184611d5c565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601390820152724552523a20456d70747920746f6b656e55524960681b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526015908201527422a9291d102ab732bc34b9ba34b733903a37b5b2b760591b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f4552523a2030783020617574686f722061646472657373000000000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f456e756d657261626c654d61703a206e6f6e6578697374656e74206b65790000604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561259b5761259b612661565b500190565b6000826125af576125af612677565b500490565b6000828210156125c6576125c6612661565b500390565b60005b838110156125e65781810151838201526020016125ce565b838111156109565750506000910152565b60028104600182168061260b57607f821691505b6020821081141561262c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264657612646612661565b5060010190565b60008261265c5761265c612677565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067a57600080fdfea2646970667358221220287370c55f392fdd353edfd6d8e519b9cbdc7fda485042683e0190a7026fa59564736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000843616e7665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443414e5600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b88d4fde11610097578063d0def52111610071578063d0def5211461034a578063e985e9c51461035d578063f2fde38b14610370578063fb6662fd14610383576101a9565b8063b88d4fde14610311578063beabacc814610324578063c87b56dd14610337576101a9565b80638456cb59116100d35780638456cb59146102e65780638da5cb5b146102ee57806395d89b41146102f6578063a22cb465146102fe576101a9565b80636352211e146102b857806370a08231146102cb578063715018a6146102de576101a9565b80632f745c591161016657806342842e0e1161014057806342842e0e1461027757806342966c681461028a5780634f6ccce71461029d5780635c975abb146102b0576101a9565b80632f745c591461024957806335b9dea91461025c5780633f4ba83a1461026f576101a9565b806301ffc9a7146101ae57806306fdde03146101d7578063081812fc146101ec578063095ea7b31461020c57806318160ddd1461022157806323b872dd14610236575b600080fd5b6101c16101bc366004611d0c565b610396565b6040516101ce9190611e08565b60405180910390f35b6101df6103a9565b6040516101ce9190611e13565b6101ff6101fa366004611d44565b61043b565b6040516101ce9190611db7565b61021f61021a366004611ce3565b610487565b005b61022961051f565b6040516101ce919061257f565b61021f610244366004611b4d565b610525565b610229610257366004611ce3565b61055d565b6101ff61026a366004611d44565b6105b2565b61021f6105e6565b61021f610285366004611b4d565b61062f565b61021f610298366004611d44565b61064a565b6102296102ab366004611d44565b61067d565b6101c16106d8565b6101ff6102c6366004611d44565b6106e8565b6102296102d9366004611b01565b61071d565b61021f610761565b61021f6107ea565b6101ff610831565b6101df610840565b61021f61030c366004611c01565b61084f565b61021f61031f366004611b88565b61091d565b61021f610332366004611b4d565b61095c565b6101df610345366004611d44565b610967565b610229610358366004611c3b565b610972565b6101c161036b366004611b1b565b6109b2565b61021f61037e366004611b01565b6109e0565b610229610391366004611c87565b610aa1565b60006103a182610b1a565b90505b919050565b6060600080546103b8906125f7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e4906125f7565b80156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b600061044682610b3f565b61046b5760405162461bcd60e51b81526004016104629061229b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610492826106e8565b9050806001600160a01b0316836001600160a01b031614156104c65760405162461bcd60e51b8152600401610462906123e3565b806001600160a01b03166104d8610b5c565b6001600160a01b031614806104f457506104f48161036b610b5c565b6105105760405162461bcd60e51b8152600401610462906120d7565b61051a8383610b60565b505050565b60085490565b610536610530610b5c565b82610bce565b6105525760405162461bcd60e51b815260040161046290612424565b61051a838383610c4b565b60006105688361071d565b82106105865760405162461bcd60e51b815260040161046290611ecc565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b60006105bf600d83610d78565b6105db5760405162461bcd60e51b8152600401610462906123b4565b6103a1600d83610d84565b6105ee610b5c565b6001600160a01b03166105ff610831565b6001600160a01b0316146106255760405162461bcd60e51b8152600401610462906122e7565b61062d610d90565b565b61051a8383836040518060200160405280600081525061091d565b610655610530610b5c565b6106715760405162461bcd60e51b81526004016104629061252f565b61067a81610e01565b50565b600061068761051f565b82106106a55760405162461bcd60e51b8152600401610462906124ac565b600882815481106106c657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806103a15760405162461bcd60e51b81526004016104629061217e565b60006001600160a01b0382166107455760405162461bcd60e51b815260040161046290612134565b506001600160a01b031660009081526003602052604090205490565b610769610b5c565b6001600160a01b031661077a610831565b6001600160a01b0316146107a05760405162461bcd60e51b8152600401610462906122e7565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b6107f2610b5c565b6001600160a01b0316610803610831565b6001600160a01b0316146108295760405162461bcd60e51b8152600401610462906122e7565b61062d610e2f565b600b546001600160a01b031690565b6060600180546103b8906125f7565b610857610b5c565b6001600160a01b0316826001600160a01b031614156108885760405162461bcd60e51b81526004016104629061202a565b8060056000610895610b5c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556108d9610b5c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109119190611e08565b60405180910390a35050565b61092e610928610b5c565b83610bce565b61094a5760405162461bcd60e51b815260040161046290612424565b61095684848484610e90565b50505050565b61051a83838361062f565b60606103a182610ec3565b600061097c6106d8565b156109995760405162461bcd60e51b8152600401610462906120ad565b6109ab83836109a6610b5c565b610fdc565b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6109e8610b5c565b6001600160a01b03166109f9610831565b6001600160a01b031614610a1f5760405162461bcd60e51b8152600401610462906122e7565b6001600160a01b038116610a455760405162461bcd60e51b815260040161046290611f69565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610aab610b5c565b6001600160a01b0316610abc610831565b6001600160a01b031614610ae25760405162461bcd60e51b8152600401610462906122e7565b610aea6106d8565b15610b075760405162461bcd60e51b8152600401610462906120ad565b610b12848484610fdc565b949350505050565b60006001600160e01b0319821663780e9d6360e01b14806103a157506103a18261108b565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b95826106e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd982610b3f565b610bf55760405162461bcd60e51b815260040161046290612061565b6000610c00836106e8565b9050806001600160a01b0316846001600160a01b03161480610c3b5750836001600160a01b0316610c308461043b565b6001600160a01b0316145b80610b125750610b1281856109b2565b826001600160a01b0316610c5e826106e8565b6001600160a01b031614610c845760405162461bcd60e51b81526004016104629061231c565b6001600160a01b038216610caa5760405162461bcd60e51b815260040161046290611fe6565b610cb58383836110cb565b610cc0600082610b60565b6001600160a01b0383166000908152600360205260408120805460019290610ce99084906125b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d17908490612588565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006109ab83836110d6565b60006109ab83836110e2565b610d986106d8565b610db45760405162461bcd60e51b815260040161046290611e71565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dea610b5c565b604051610df79190611db7565b60405180910390a1565b610e096106d8565b15610e265760405162461bcd60e51b8152600401610462906120ad565b61067a81611122565b610e376106d8565b15610e545760405162461bcd60e51b8152600401610462906120ad565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dea610b5c565b610e9b848484610c4b565b610ea784848484611162565b6109565760405162461bcd60e51b815260040161046290611f17565b6060610ece82610b3f565b610eea5760405162461bcd60e51b81526004016104629061224a565b6000828152600a602052604081208054610f03906125f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f906125f7565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b505050505090506000610f8d61127d565b9050805160001415610fa1575090506103a4565b815115610fd3578082604051602001610fbb929190611d88565b604051602081830303815290604052925050506103a4565b610b128461128f565b6000610fe66106d8565b156110035760405162461bcd60e51b8152600401610462906120ad565b60008351116110245760405162461bcd60e51b815260040161046290611e9f565b6001600160a01b03821661104a5760405162461bcd60e51b815260040161046290612475565b611054600c611311565b6000611060600c61131a565b905061106c858261131e565b61107681856113fd565b611082600d8285611441565b50949350505050565b60006001600160e01b031982166380ac58cd60e01b14806110bc57506001600160e01b03198216635b5e139f60e01b145b806103a157506103a182611457565b61051a838383611470565b60006109ab83836114a0565b600081815260028301602052604081205480151580611106575061110684846110d6565b6109ab5760405162461bcd60e51b8152600401610462906124f8565b61112b816114ac565b6000818152600a602052604090208054611144906125f7565b15905061067a576000818152600a6020526040812061067a91611986565b6000611176846001600160a01b0316611553565b1561127257836001600160a01b031663150b7a02611192610b5c565b8786866040518563ffffffff1660e01b81526004016111b49493929190611dcb565b602060405180830381600087803b1580156111ce57600080fd5b505af19250505080156111fe575060408051601f3d908101601f191682019092526111fb91810190611d28565b60015b611258573d80801561122c576040519150601f19603f3d011682016040523d82523d6000602084013e611231565b606091505b5080516112505760405162461bcd60e51b815260040161046290611f17565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b12565b506001949350505050565b60408051602081019091526000815290565b606061129a82610b3f565b6112b65760405162461bcd60e51b815260040161046290612365565b60006112c061127d565b905060008151116112e057604051806020016040528060008152506109ab565b806112ea84611559565b6040516020016112fb929190611d88565b6040516020818303038152906040529392505050565b80546001019055565b5490565b6001600160a01b0382166113445760405162461bcd60e51b815260040161046290612215565b61134d81610b3f565b1561136a5760405162461bcd60e51b815260040161046290611faf565b611376600083836110cb565b6001600160a01b038216600090815260036020526040812080546001929061139f908490612588565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61140682610b3f565b6114225760405162461bcd60e51b8152600401610462906121c7565b6000828152600a60209081526040909120825161051a928401906119c2565b6000610b1284846001600160a01b038516611674565b6001600160e01b031981166301ffc9a760e01b14919050565b61147b838383611691565b6114836106d8565b1561051a5760405162461bcd60e51b815260040161046290611e26565b60006109ab838361171a565b60006114b7826106e8565b90506114c5816000846110cb565b6114d0600083610b60565b6001600160a01b03811660009081526003602052604081208054600192906114f99084906125b4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b3b151590565b60608161157e57506040805180820190915260018152600360fc1b60208201526103a4565b8160005b81156115a8578061159281612632565b91506115a19050600a836125a0565b9150611582565b60008167ffffffffffffffff8111156115d157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115fb576020820181803683370190505b5090505b8415610b12576116106001836125b4565b915061161d600a8661264d565b611628906030612588565b60f81b81838151811061164b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061166d600a866125a0565b94506115ff565b60008281526002840160205260408120829055610b128484611732565b61169c83838361051a565b6001600160a01b0383166116b8576116b38161173e565b6116db565b816001600160a01b0316836001600160a01b0316146116db576116db8382611782565b6001600160a01b0382166116f7576116f28161181f565b61051a565b826001600160a01b0316826001600160a01b03161461051a5761051a82826118f8565b60009081526001919091016020526040902054151590565b60006109ab838361193c565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161178f8461071d565b61179991906125b4565b6000838152600760205260409020549091508082146117ec576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611831906001906125b4565b6000838152600960205260408120546008805493945090928490811061186757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061189657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118dc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006119038361071d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000611948838361171a565b61197e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105ac565b5060006105ac565b508054611992906125f7565b6000825580601f106119a4575061067a565b601f01602090049060005260206000209081019061067a9190611a46565b8280546119ce906125f7565b90600052602060002090601f0160209004810192826119f05760008555611a36565b82601f10611a0957805160ff1916838001178555611a36565b82800160010185558215611a36579182015b82811115611a36578251825591602001919060010190611a1b565b50611a42929150611a46565b5090565b5b80821115611a425760008155600101611a47565b600067ffffffffffffffff80841115611a7657611a7661268d565b604051601f8501601f191681016020018281118282101715611a9a57611a9a61268d565b604052848152915081838501861015611ab257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146103a457600080fd5b600082601f830112611af2578081fd5b6109ab83833560208501611a5b565b600060208284031215611b12578081fd5b6109ab82611acb565b60008060408385031215611b2d578081fd5b611b3683611acb565b9150611b4460208401611acb565b90509250929050565b600080600060608486031215611b61578081fd5b611b6a84611acb565b9250611b7860208501611acb565b9150604084013590509250925092565b60008060008060808587031215611b9d578081fd5b611ba685611acb565b9350611bb460208601611acb565b925060408501359150606085013567ffffffffffffffff811115611bd6578182fd5b8501601f81018713611be6578182fd5b611bf587823560208401611a5b565b91505092959194509250565b60008060408385031215611c13578182fd5b611c1c83611acb565b915060208301358015158114611c30578182fd5b809150509250929050565b60008060408385031215611c4d578182fd5b611c5683611acb565b9150602083013567ffffffffffffffff811115611c71578182fd5b611c7d85828601611ae2565b9150509250929050565b600080600060608486031215611c9b578283fd5b611ca484611acb565b9250602084013567ffffffffffffffff811115611cbf578283fd5b611ccb86828701611ae2565b925050611cda60408501611acb565b90509250925092565b60008060408385031215611cf5578182fd5b611cfe83611acb565b946020939093013593505050565b600060208284031215611d1d578081fd5b81356109ab816126a3565b600060208284031215611d39578081fd5b81516109ab816126a3565b600060208284031215611d55578081fd5b5035919050565b60008151808452611d748160208601602086016125cb565b601f01601f19169290920160200192915050565b60008351611d9a8184602088016125cb565b835190830190611dae8183602088016125cb565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dfe90830184611d5c565b9695505050505050565b901515815260200190565b6000602082526109ab6020830184611d5c565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601390820152724552523a20456d70747920746f6b656e55524960681b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526015908201527422a9291d102ab732bc34b9ba34b733903a37b5b2b760591b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f4552523a2030783020617574686f722061646472657373000000000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f456e756d657261626c654d61703a206e6f6e6578697374656e74206b65790000604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b6000821982111561259b5761259b612661565b500190565b6000826125af576125af612677565b500490565b6000828210156125c6576125c6612661565b500390565b60005b838110156125e65781810151838201526020016125ce565b838111156109565750506000910152565b60028104600182168061260b57607f821691505b6020821081141561262c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264657612646612661565b5060010190565b60008261265c5761265c612677565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067a57600080fdfea2646970667358221220287370c55f392fdd353edfd6d8e519b9cbdc7fda485042683e0190a7026fa59564736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000843616e7665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443414e5600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Canverse
Arg [1] : _symbol (string): CANV

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 43616e7665727365000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 43414e5600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67435:3170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68026:173;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21624:100;;;:::i;:::-;;;;;;;:::i;23084:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22621:397::-;;;;;;:::i;:::-;;:::i;:::-;;37730:113;;;:::i;:::-;;;;;;;:::i;23974:305::-;;;;;;:::i;:::-;;:::i;37398:256::-;;;;;;:::i;:::-;;:::i;69590:223::-;;;;;;:::i;:::-;;:::i;69886:65::-;;;:::i;24350:151::-;;;;;;:::i;:::-;;:::i;34890:245::-;;;;;;:::i;:::-;;:::i;37920:233::-;;;;;;:::i;:::-;;:::i;44285:86::-;;;:::i;21318:239::-;;;;;;:::i;:::-;;:::i;21048:208::-;;;;;;:::i;:::-;;:::i;66808:148::-;;;:::i;69819:61::-;;;:::i;66157:87::-;;;:::i;21793:104::-;;;:::i;23377:295::-;;;;;;:::i;:::-;;:::i;24572:285::-;;;;;;:::i;:::-;;:::i;70463:137::-;;;;;;:::i;:::-;;:::i;70299:158::-;;;;;;:::i;:::-;;:::i;68263:167::-;;;;;;:::i;:::-;;:::i;23743:164::-;;;;;;:::i;:::-;;:::i;67111:244::-;;;;;;:::i;:::-;;:::i;68529:202::-;;;;;;:::i;:::-;;:::i;68026:173::-;68137:4;68157:36;68181:11;68157:23;:36::i;:::-;68150:43;;68026:173;;;;:::o;21624:100::-;21678:13;21711:5;21704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21624:100;:::o;23084:221::-;23160:7;23188:16;23196:7;23188;:16::i;:::-;23180:73;;;;-1:-1:-1;;;23180:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23273:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23273:24:0;;23084:221::o;22621:397::-;22702:13;22718:23;22733:7;22718:14;:23::i;:::-;22702:39;;22766:5;-1:-1:-1;;;;;22760:11:0;:2;-1:-1:-1;;;;;22760:11:0;;;22752:57;;;;-1:-1:-1;;;22752:57:0;;;;;;;:::i;:::-;22846:5;-1:-1:-1;;;;;22830:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22830:21:0;;:62;;;;22855:37;22872:5;22879:12;:10;:12::i;22855:37::-;22822:154;;;;-1:-1:-1;;;22822:154:0;;;;;;;:::i;:::-;22989:21;22998:2;23002:7;22989:8;:21::i;:::-;22621:397;;;:::o;37730:113::-;37818:10;:17;37730:113;:::o;23974:305::-;24135:41;24154:12;:10;:12::i;:::-;24168:7;24135:18;:41::i;:::-;24127:103;;;;-1:-1:-1;;;24127:103:0;;;;;;;:::i;:::-;24243:28;24253:4;24259:2;24263:7;24243:9;:28::i;37398:256::-;37495:7;37531:23;37548:5;37531:16;:23::i;:::-;37523:5;:31;37515:87;;;;-1:-1:-1;;;37515:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37620:19:0;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37398:256;;;;;:::o;69590:223::-;69669:14;69703:33;:14;69727:8;69703:23;:33::i;:::-;69695:67;;;;-1:-1:-1;;;69695:67:0;;;;;;;:::i;:::-;69779:28;:14;69798:8;69779:18;:28::i;69886:65::-;66388:12;:10;:12::i;:::-;-1:-1:-1;;;;;66377:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66377:23:0;;66369:68;;;;-1:-1:-1;;;66369:68:0;;;;;;;:::i;:::-;69929:16:::1;:14;:16::i;:::-;69886:65::o:0;24350:151::-;24454:39;24471:4;24477:2;24481:7;24454:39;;;;;;;;;;;;:16;:39::i;34890:245::-;35008:41;35027:12;:10;:12::i;35008:41::-;35000:102;;;;-1:-1:-1;;;35000:102:0;;;;;;;:::i;:::-;35113:14;35119:7;35113:5;:14::i;:::-;34890:245;:::o;37920:233::-;37995:7;38031:30;:28;:30::i;:::-;38023:5;:38;38015:95;;;;-1:-1:-1;;;38015:95:0;;;;;;;:::i;:::-;38128:10;38139:5;38128:17;;;;;;-1:-1:-1;;;38128:17:0;;;;;;;;;;;;;;;;;38121:24;;37920:233;;;:::o;44285:86::-;44356:7;;-1:-1:-1;;;44356:7:0;;;;;44285:86::o;21318:239::-;21390:7;21426:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21426:16:0;21461:19;21453:73;;;;-1:-1:-1;;;21453:73:0;;;;;;;:::i;21048:208::-;21120:7;-1:-1:-1;;;;;21148:19:0;;21140:74;;;;-1:-1:-1;;;21140:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21232:16:0;;;;;:9;:16;;;;;;;21048:208::o;66808:148::-;66388:12;:10;:12::i;:::-;-1:-1:-1;;;;;66377:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66377:23:0;;66369:68;;;;-1:-1:-1;;;66369:68:0;;;;;;;:::i;:::-;66899:6:::1;::::0;66878:40:::1;::::0;66915:1:::1;::::0;-1:-1:-1;;;;;66899:6:0::1;::::0;66878:40:::1;::::0;66915:1;;66878:40:::1;66929:6;:19:::0;;-1:-1:-1;;;;;;66929:19:0::1;::::0;;66808:148::o;69819:61::-;66388:12;:10;:12::i;:::-;-1:-1:-1;;;;;66377:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66377:23:0;;66369:68;;;;-1:-1:-1;;;66369:68:0;;;;;;;:::i;:::-;69860:14:::1;:12;:14::i;66157:87::-:0;66230:6;;-1:-1:-1;;;;;66230:6:0;66157:87;:::o;21793:104::-;21849:13;21882:7;21875:14;;;;;:::i;23377:295::-;23492:12;:10;:12::i;:::-;-1:-1:-1;;;;;23480:24:0;:8;-1:-1:-1;;;;;23480:24:0;;;23472:62;;;;-1:-1:-1;;;23472:62:0;;;;;;;:::i;:::-;23592:8;23547:18;:32;23566:12;:10;:12::i;:::-;-1:-1:-1;;;;;23547:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23547:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23547:53:0;;;;;;;;;;;23631:12;:10;:12::i;:::-;-1:-1:-1;;;;;23616:48:0;;23655:8;23616:48;;;;;;:::i;:::-;;;;;;;;23377:295;;:::o;24572:285::-;24704:41;24723:12;:10;:12::i;:::-;24737:7;24704:18;:41::i;:::-;24696:103;;;;-1:-1:-1;;;24696:103:0;;;;;;;:::i;:::-;24810:39;24824:4;24830:2;24834:7;24843:5;24810:13;:39::i;:::-;24572:285;;;;:::o;70463:137::-;70553:41;70576:4;70582:2;70586:7;70553:22;:41::i;70299:158::-;70399:13;70428:23;70443:7;70428:14;:23::i;68263:167::-;68361:7;44611:8;:6;:8::i;:::-;44610:9;44602:38;;;;-1:-1:-1;;;44602:38:0;;;;;;;:::i;:::-;68388:35:::1;68394:3;68399:9;68410:12;:10;:12::i;:::-;68388:5;:35::i;:::-;68381:42:::0;68263:167;-1:-1:-1;;;68263:167:0:o;23743:164::-;-1:-1:-1;;;;;23864:25:0;;;23840:4;23864:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23743:164::o;67111:244::-;66388:12;:10;:12::i;:::-;-1:-1:-1;;;;;66377:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66377:23:0;;66369:68;;;;-1:-1:-1;;;66369:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67200:22:0;::::1;67192:73;;;;-1:-1:-1::0;;;67192:73:0::1;;;;;;;:::i;:::-;67302:6;::::0;67281:38:::1;::::0;-1:-1:-1;;;;;67281:38:0;;::::1;::::0;67302:6:::1;::::0;67281:38:::1;::::0;67302:6:::1;::::0;67281:38:::1;67330:6;:17:::0;;-1:-1:-1;;;;;;67330:17:0::1;-1:-1:-1::0;;;;;67330:17:0;;;::::1;::::0;;;::::1;::::0;;67111:244::o;68529:202::-;68668:7;66388:12;:10;:12::i;:::-;-1:-1:-1;;;;;66377:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66377:23:0;;66369:68;;;;-1:-1:-1;;;66369:68:0;;;;;;;:::i;:::-;44611:8:::1;:6;:8::i;:::-;44610:9;44602:38;;;;-1:-1:-1::0;;;44602:38:0::1;;;;;;;:::i;:::-;68695:30:::2;68701:3;68706:9;68717:7;68695:5;:30::i;:::-;68688:37:::0;68529:202;-1:-1:-1;;;;68529:202:0:o;37077:237::-;37179:4;-1:-1:-1;;;;;;37203:50:0;;-1:-1:-1;;;37203:50:0;;:103;;;37270:36;37294:11;37270:23;:36::i;26324:127::-;26389:4;26413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26413:16:0;:30;;;26324:127::o;15960:98::-;16040:10;15960:98;:::o;30201:174::-;30276:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30276:29:0;-1:-1:-1;;;;;30276:29:0;;;;;;;;:24;;30330:23;30276:24;30330:14;:23::i;:::-;-1:-1:-1;;;;;30321:46:0;;;;;;;;;;;30201:174;;:::o;26618:348::-;26711:4;26736:16;26744:7;26736;:16::i;:::-;26728:73;;;;-1:-1:-1;;;26728:73:0;;;;;;;:::i;:::-;26812:13;26828:23;26843:7;26828:14;:23::i;:::-;26812:39;;26881:5;-1:-1:-1;;;;;26870:16:0;:7;-1:-1:-1;;;;;26870:16:0;;:51;;;;26914:7;-1:-1:-1;;;;;26890:31:0;:20;26902:7;26890:11;:20::i;:::-;-1:-1:-1;;;;;26890:31:0;;26870:51;:87;;;;26925:32;26942:5;26949:7;26925:16;:32::i;29539:544::-;29664:4;-1:-1:-1;;;;;29637:31:0;:23;29652:7;29637:14;:23::i;:::-;-1:-1:-1;;;;;29637:31:0;;29629:85;;;;-1:-1:-1;;;29629:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29733:16:0;;29725:65;;;;-1:-1:-1;;;29725:65:0;;;;;;;:::i;:::-;29803:39;29824:4;29830:2;29834:7;29803:20;:39::i;:::-;29907:29;29924:1;29928:7;29907:8;:29::i;:::-;-1:-1:-1;;;;;29949:15:0;;;;;;:9;:15;;;;;:20;;29968:1;;29949:15;:20;;29968:1;;29949:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29980:13:0;;;;;;:9;:13;;;;;:18;;29997:1;;29980:13;:18;;29997:1;;29980:18;:::i;:::-;;;;-1:-1:-1;;30009:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30009:21:0;-1:-1:-1;;;;;30009:21:0;;;;;;;;;30048:27;;30009:16;;30048:27;;;;;;;29539:544;;;:::o;62848:151::-;62932:4;62956:35;62966:3;62986;62956:9;:35::i;64376:171::-;64455:7;64506:30;64511:3;64531;64506:4;:30::i;45344:120::-;44888:8;:6;:8::i;:::-;44880:41;;;;-1:-1:-1;;;44880:41:0;;;;;;;:::i;:::-;45403:7:::1;:15:::0;;-1:-1:-1;;;;45403:15:0::1;::::0;;45434:22:::1;45443:12;:10;:12::i;:::-;45434:22;;;;;;:::i;:::-;;;;;;;;45344:120::o:0;70162:131::-;44611:8;:6;:8::i;:::-;44610:9;44602:38;;;;-1:-1:-1;;;44602:38:0;;;;;;;:::i;:::-;70267:20:::1;70279:7;70267:11;:20::i;45085:118::-:0;44611:8;:6;:8::i;:::-;44610:9;44602:38;;;;-1:-1:-1;;;44602:38:0;;;;;;;:::i;:::-;45145:7:::1;:14:::0;;-1:-1:-1;;;;45145:14:0::1;-1:-1:-1::0;;;45145:14:0::1;::::0;;45175:20:::1;45182:12;:10;:12::i;25739:272::-:0;25853:28;25863:4;25869:2;25873:7;25853:9;:28::i;:::-;25900:48;25923:4;25929:2;25933:7;25942:5;25900:22;:48::i;:::-;25892:111;;;;-1:-1:-1;;;25892:111:0;;;;;;;:::i;32933:679::-;33006:13;33040:16;33048:7;33040;:16::i;:::-;33032:78;;;;-1:-1:-1;;;33032:78:0;;;;;;;:::i;:::-;33123:23;33149:19;;;:10;:19;;;;;33123:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33179:18;33200:10;:8;:10::i;:::-;33179:31;;33292:4;33286:18;33308:1;33286:23;33282:72;;;-1:-1:-1;33333:9:0;-1:-1:-1;33326:16:0;;33282:72;33458:23;;:27;33454:108;;33533:4;33539:9;33516:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33502:48;;;;;;33454:108;33581:23;33596:7;33581:14;:23::i;69008:505::-;69125:7;44611:8;:6;:8::i;:::-;44610:9;44602:38;;;;-1:-1:-1;;;44602:38:0;;;;;;;:::i;:::-;69178:1:::1;69158:9;69152:23;:27;69144:59;;;;-1:-1:-1::0;;;69144:59:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;69218:21:0;::::1;69210:57;;;;-1:-1:-1::0;;;69210:57:0::1;;;;;;;:::i;:::-;69276:21;:9;:19;:21::i;:::-;69311:19;69333;:9;:17;:19::i;:::-;69311:41;;69359:29;69371:3;69376:11;69359;:29::i;:::-;69395:36;69408:11;69421:9;69395:12;:36::i;:::-;69440:40;:14;69459:11:::0;69472:7;69440:18:::1;:40::i;:::-;-1:-1:-1::0;69496:11:0;69008:505;-1:-1:-1;;;;69008:505:0:o;20692:292::-;20794:4;-1:-1:-1;;;;;;20818:40:0;;-1:-1:-1;;;20818:40:0;;:105;;-1:-1:-1;;;;;;;20875:48:0;;-1:-1:-1;;;20875:48:0;20818:105;:158;;;;20940:36;20964:11;20940:23;:36::i;69957:199::-;70105:45;70132:4;70138:2;70142:7;70105:26;:45::i;59715:126::-;59786:4;59810:23;:3;59829;59810:18;:23::i;61177:236::-;61243:7;61279:16;;;:11;;;:16;;;;;;61314:10;;;;:33;;;61328:19;61338:3;61343;61328:9;:19::i;:::-;61306:76;;;;-1:-1:-1;;;61306:76:0;;;;;;;:::i;34214:206::-;34283:20;34295:7;34283:11;:20::i;:::-;34326:19;;;;:10;:19;;;;;34320:33;;;;;:::i;:::-;:38;;-1:-1:-1;34316:97:0;;34382:19;;;;:10;:19;;;;;34375:26;;;:::i;30940:843::-;31061:4;31087:15;:2;-1:-1:-1;;;;;31087:13:0;;:15::i;:::-;31083:693;;;31139:2;-1:-1:-1;;;;;31123:36:0;;31160:12;:10;:12::i;:::-;31174:4;31180:7;31189:5;31123:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31123:72:0;;;;;;;;-1:-1:-1;;31123:72:0;;;;;;;;;;;;:::i;:::-;;;31119:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31369:13:0;;31365:341;;31412:60;;-1:-1:-1;;;31412:60:0;;;;;;;:::i;31365:341::-;31656:6;31650:13;31641:6;31637:2;31633:15;31626:38;31119:602;-1:-1:-1;;;;;;31246:55:0;-1:-1:-1;;;31246:55:0;;-1:-1:-1;31239:62:0;;31083:693;-1:-1:-1;31760:4:0;30940:843;;;;;;:::o;22465:94::-;22542:9;;;;;;;;;-1:-1:-1;22542:9:0;;22465:94;:::o;21968:360::-;22041:13;22075:16;22083:7;22075;:16::i;:::-;22067:76;;;;-1:-1:-1;;;22067:76:0;;;;;;;:::i;:::-;22156:21;22180:10;:8;:10::i;:::-;22156:34;;22232:1;22214:7;22208:21;:25;:112;;;;;;;;;;;;;;;;;22273:7;22282:18;:7;:16;:18::i;:::-;22256:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22201:119;21968:360;-1:-1:-1;;;21968:360:0:o;47271:127::-;47360:19;;47378:1;47360:19;;;47271:127::o;47149:114::-;47241:14;;47149:114::o;28231:382::-;-1:-1:-1;;;;;28311:16:0;;28303:61;;;;-1:-1:-1;;;28303:61:0;;;;;;;:::i;:::-;28384:16;28392:7;28384;:16::i;:::-;28383:17;28375:58;;;;-1:-1:-1;;;28375:58:0;;;;;;;:::i;:::-;28446:45;28475:1;28479:2;28483:7;28446:20;:45::i;:::-;-1:-1:-1;;;;;28504:13:0;;;;;;:9;:13;;;;;:18;;28521:1;;28504:13;:18;;28521:1;;28504:18;:::i;:::-;;;;-1:-1:-1;;28533:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28533:21:0;-1:-1:-1;;;;;28533:21:0;;;;;;;;28572:33;;28533:16;;;28572:33;;28533:16;;28572:33;28231:382;;:::o;33768:217::-;33868:16;33876:7;33868;:16::i;:::-;33860:75;;;;-1:-1:-1;;;33860:75:0;;;;;;;:::i;:::-;33946:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;62271:185::-;62360:4;62384:64;62389:3;62409;-1:-1:-1;;;;;62423:23:0;;62384:4;:64::i;19184:157::-;-1:-1:-1;;;;;;19293:40:0;;-1:-1:-1;;;19293:40:0;19184:157;;;:::o;46076:241::-;46186:45;46213:4;46219:2;46223:7;46186:26;:45::i;:::-;46253:8;:6;:8::i;:::-;46252:9;46244:65;;;;-1:-1:-1;;;46244:65:0;;;;;;;:::i;53251:140::-;53331:4;53355:28;53365:3;53377:5;53355:9;:28::i;28842:360::-;28902:13;28918:23;28933:7;28918:14;:23::i;:::-;28902:39;;28954:48;28975:5;28990:1;28994:7;28954:20;:48::i;:::-;29043:29;29060:1;29064:7;29043:8;:29::i;:::-;-1:-1:-1;;;;;29085:16:0;;;;;;:9;:16;;;;;:21;;29105:1;;29085:16;:21;;29105:1;;29085:21;:::i;:::-;;;;-1:-1:-1;;29124:16:0;;;;:7;:16;;;;;;29117:23;;-1:-1:-1;;;;;;29117:23:0;;;29158:36;29132:7;;29124:16;-1:-1:-1;;;;;29158:36:0;;;;;29124:16;;29158:36;28842:360;;:::o;8069:422::-;8436:20;8475:8;;;8069:422::o;16623:723::-;16679:13;16900:10;16896:53;;-1:-1:-1;16927:10:0;;;;;;;;;;;;-1:-1:-1;;;16927:10:0;;;;;;16896:53;16974:5;16959:12;17015:78;17022:9;;17015:78;;17048:8;;;;:::i;:::-;;-1:-1:-1;17071:10:0;;-1:-1:-1;17079:2:0;17071:10;;:::i;:::-;;;17015:78;;;17103:19;17135:6;17125:17;;;;;;-1:-1:-1;;;17125:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17125:17:0;;17103:39;;17153:154;17160:10;;17153:154;;17187:11;17197:1;17187:11;;:::i;:::-;;-1:-1:-1;17256:10:0;17264:2;17256:5;:10;:::i;:::-;17243:24;;:2;:24;:::i;:::-;17230:39;;17213:6;17220;17213:14;;;;;;-1:-1:-1;;;17213:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17213:56:0;;;;;;;;-1:-1:-1;17284:11:0;17293:2;17284:11;;:::i;:::-;;;17153:154;;59144:161;59220:4;59237:16;;;:11;;;:16;;;;;:24;;;59279:18;59237:3;59249;59279:13;:18::i;38766:555::-;38876:45;38903:4;38909:2;38913:7;38876:26;:45::i;:::-;-1:-1:-1;;;;;38938:18:0;;38934:187;;38973:40;39005:7;38973:31;:40::i;:::-;38934:187;;;39043:2;-1:-1:-1;;;;;39035:10:0;:4;-1:-1:-1;;;;;39035:10:0;;39031:90;;39062:47;39095:4;39101:7;39062:32;:47::i;:::-;-1:-1:-1;;;;;39135:16:0;;39131:183;;39168:45;39205:7;39168:36;:45::i;:::-;39131:183;;;39241:4;-1:-1:-1;;;;;39235:10:0;:2;-1:-1:-1;;;;;39235:10:0;;39231:83;;39262:40;39290:2;39294:7;39262:27;:40::i;51607:129::-;51680:4;51704:19;;;:12;;;;;:19;;;;;;:24;;;51607:129::o;52733:125::-;52803:4;52827:23;52832:3;52844:5;52827:4;:23::i;40044:164::-;40148:10;:17;;40121:24;;;;:15;:24;;;;;:44;;;40176:24;;;;;;;;;;;;40044:164::o;40835:988::-;41101:22;41151:1;41126:22;41143:4;41126:16;:22::i;:::-;:26;;;;:::i;:::-;41163:18;41184:26;;;:17;:26;;;;;;41101:51;;-1:-1:-1;41317:28:0;;;41313:328;;-1:-1:-1;;;;;41384:18:0;;41362:19;41384:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41435:30;;;;;;:44;;;41552:30;;:17;:30;;;;;:43;;;41313:328;-1:-1:-1;41737:26:0;;;;:17;:26;;;;;;;;41730:33;;;-1:-1:-1;;;;;41781:18:0;;;;;:12;:18;;;;;:34;;;;;;;41774:41;40835:988::o;42118:1079::-;42396:10;:17;42371:22;;42396:21;;42416:1;;42396:21;:::i;:::-;42428:18;42449:24;;;:15;:24;;;;;;42822:10;:26;;42371:46;;-1:-1:-1;42449:24:0;;42371:46;;42822:26;;;;-1:-1:-1;;;42822:26:0;;;;;;;;;;;;;;;;;42800:48;;42886:11;42861:10;42872;42861:22;;;;;;-1:-1:-1;;;42861:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42966:28;;;:15;:28;;;;;;;:41;;;43138:24;;;;;43131:31;43173:10;:16;;;;;-1:-1:-1;;;43173:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42118:1079;;;;:::o;39622:221::-;39707:14;39724:20;39741:2;39724:16;:20::i;:::-;-1:-1:-1;;;;;39755:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39800:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39622:221:0:o;49378:414::-;49441:4;49463:21;49473:3;49478:5;49463:9;:21::i;:::-;49458:327;;-1:-1:-1;49501:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;49684:18;;49662:19;;;:12;;;:19;;;;;;:40;;;;49717:11;;49458:327;-1:-1:-1;49768:5:0;49761:12;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:233;;904:3;897:4;889:6;885:17;881:27;871:2;;926:5;919;912:20;871:2;952:81;1029:3;1020:6;1007:20;1000:4;992:6;988:17;952:81;:::i;1044:198::-;;1156:2;1144:9;1135:7;1131:23;1127:32;1124:2;;;1177:6;1169;1162:22;1124:2;1205:31;1226:9;1205:31;:::i;1247:274::-;;;1376:2;1364:9;1355:7;1351:23;1347:32;1344:2;;;1397:6;1389;1382:22;1344:2;1425:31;1446:9;1425:31;:::i;:::-;1415:41;;1475:40;1511:2;1500:9;1496:18;1475:40;:::i;:::-;1465:50;;1334:187;;;;;:::o;1526:342::-;;;;1672:2;1660:9;1651:7;1647:23;1643:32;1640:2;;;1693:6;1685;1678:22;1640:2;1721:31;1742:9;1721:31;:::i;:::-;1711:41;;1771:40;1807:2;1796:9;1792:18;1771:40;:::i;:::-;1761:50;;1858:2;1847:9;1843:18;1830:32;1820:42;;1630:238;;;;;:::o;1873:702::-;;;;;2045:3;2033:9;2024:7;2020:23;2016:33;2013:2;;;2067:6;2059;2052:22;2013:2;2095:31;2116:9;2095:31;:::i;:::-;2085:41;;2145:40;2181:2;2170:9;2166:18;2145:40;:::i;:::-;2135:50;;2232:2;2221:9;2217:18;2204:32;2194:42;;2287:2;2276:9;2272:18;2259:32;2314:18;2306:6;2303:30;2300:2;;;2351:6;2343;2336:22;2300:2;2379:22;;2432:4;2424:13;;2420:27;-1:-1:-1;2410:2:1;;2466:6;2458;2451:22;2410:2;2494:75;2561:7;2556:2;2543:16;2538:2;2534;2530:11;2494:75;:::i;:::-;2484:85;;;2003:572;;;;;;;:::o;2580:369::-;;;2706:2;2694:9;2685:7;2681:23;2677:32;2674:2;;;2727:6;2719;2712:22;2674:2;2755:31;2776:9;2755:31;:::i;:::-;2745:41;;2836:2;2825:9;2821:18;2808:32;2883:5;2876:13;2869:21;2862:5;2859:32;2849:2;;2910:6;2902;2895:22;2849:2;2938:5;2928:15;;;2664:285;;;;;:::o;2954:420::-;;;3093:2;3081:9;3072:7;3068:23;3064:32;3061:2;;;3114:6;3106;3099:22;3061:2;3142:31;3163:9;3142:31;:::i;:::-;3132:41;;3224:2;3213:9;3209:18;3196:32;3251:18;3243:6;3240:30;3237:2;;;3288:6;3280;3273:22;3237:2;3316:52;3360:7;3351:6;3340:9;3336:22;3316:52;:::i;:::-;3306:62;;;3051:323;;;;;:::o;3379:496::-;;;;3535:2;3523:9;3514:7;3510:23;3506:32;3503:2;;;3556:6;3548;3541:22;3503:2;3584:31;3605:9;3584:31;:::i;:::-;3574:41;;3666:2;3655:9;3651:18;3638:32;3693:18;3685:6;3682:30;3679:2;;;3730:6;3722;3715:22;3679:2;3758:52;3802:7;3793:6;3782:9;3778:22;3758:52;:::i;:::-;3748:62;;;3829:40;3865:2;3854:9;3850:18;3829:40;:::i;:::-;3819:50;;3493:382;;;;;:::o;3880:266::-;;;4009:2;3997:9;3988:7;3984:23;3980:32;3977:2;;;4030:6;4022;4015:22;3977:2;4058:31;4079:9;4058:31;:::i;:::-;4048:41;4136:2;4121:18;;;;4108:32;;-1:-1:-1;;;3967:179:1:o;4151:257::-;;4262:2;4250:9;4241:7;4237:23;4233:32;4230:2;;;4283:6;4275;4268:22;4230:2;4327:9;4314:23;4346:32;4372:5;4346:32;:::i;4413:261::-;;4535:2;4523:9;4514:7;4510:23;4506:32;4503:2;;;4556:6;4548;4541:22;4503:2;4593:9;4587:16;4612:32;4638:5;4612:32;:::i;4679:190::-;;4791:2;4779:9;4770:7;4766:23;4762:32;4759:2;;;4812:6;4804;4797:22;4759:2;-1:-1:-1;4840:23:1;;4749:120;-1:-1:-1;4749:120:1:o;4874:259::-;;4955:5;4949:12;4982:6;4977:3;4970:19;4998:63;5054:6;5047:4;5042:3;5038:14;5031:4;5024:5;5020:16;4998:63;:::i;:::-;5115:2;5094:15;-1:-1:-1;;5090:29:1;5081:39;;;;5122:4;5077:50;;4925:208;-1:-1:-1;;4925:208:1:o;5138:470::-;;5355:6;5349:13;5371:53;5417:6;5412:3;5405:4;5397:6;5393:17;5371:53;:::i;:::-;5487:13;;5446:16;;;;5509:57;5487:13;5446:16;5543:4;5531:17;;5509:57;:::i;:::-;5582:20;;5325:283;-1:-1:-1;;;;5325:283:1:o;5613:203::-;-1:-1:-1;;;;;5777:32:1;;;;5759:51;;5747:2;5732:18;;5714:102::o;5821:490::-;-1:-1:-1;;;;;6090:15:1;;;6072:34;;6142:15;;6137:2;6122:18;;6115:43;6189:2;6174:18;;6167:34;;;6237:3;6232:2;6217:18;;6210:31;;;5821:490;;6258:47;;6285:19;;6277:6;6258:47;:::i;:::-;6250:55;6024:287;-1:-1:-1;;;;;;6024:287:1:o;6316:187::-;6481:14;;6474:22;6456:41;;6444:2;6429:18;;6411:92::o;6508:221::-;;6657:2;6646:9;6639:21;6677:46;6719:2;6708:9;6704:18;6696:6;6677:46;:::i;6734:407::-;6936:2;6918:21;;;6975:2;6955:18;;;6948:30;7014:34;7009:2;6994:18;;6987:62;-1:-1:-1;;;7080:2:1;7065:18;;7058:41;7131:3;7116:19;;6908:233::o;7146:344::-;7348:2;7330:21;;;7387:2;7367:18;;;7360:30;-1:-1:-1;;;7421:2:1;7406:18;;7399:50;7481:2;7466:18;;7320:170::o;7495:343::-;7697:2;7679:21;;;7736:2;7716:18;;;7709:30;-1:-1:-1;;;7770:2:1;7755:18;;7748:49;7829:2;7814:18;;7669:169::o;7843:407::-;8045:2;8027:21;;;8084:2;8064:18;;;8057:30;8123:34;8118:2;8103:18;;8096:62;-1:-1:-1;;;8189:2:1;8174:18;;8167:41;8240:3;8225:19;;8017:233::o;8255:414::-;8457:2;8439:21;;;8496:2;8476:18;;;8469:30;8535:34;8530:2;8515:18;;8508:62;-1:-1:-1;;;8601:2:1;8586:18;;8579:48;8659:3;8644:19;;8429:240::o;8674:402::-;8876:2;8858:21;;;8915:2;8895:18;;;8888:30;8954:34;8949:2;8934:18;;8927:62;-1:-1:-1;;;9020:2:1;9005:18;;8998:36;9066:3;9051:19;;8848:228::o;9081:352::-;9283:2;9265:21;;;9322:2;9302:18;;;9295:30;9361;9356:2;9341:18;;9334:58;9424:2;9409:18;;9255:178::o;9438:400::-;9640:2;9622:21;;;9679:2;9659:18;;;9652:30;9718:34;9713:2;9698:18;;9691:62;-1:-1:-1;;;9784:2:1;9769:18;;9762:34;9828:3;9813:19;;9612:226::o;9843:349::-;10045:2;10027:21;;;10084:2;10064:18;;;10057:30;10123:27;10118:2;10103:18;;10096:55;10183:2;10168:18;;10017:175::o;10197:408::-;10399:2;10381:21;;;10438:2;10418:18;;;10411:30;10477:34;10472:2;10457:18;;10450:62;-1:-1:-1;;;10543:2:1;10528:18;;10521:42;10595:3;10580:19;;10371:234::o;10610:340::-;10812:2;10794:21;;;10851:2;10831:18;;;10824:30;-1:-1:-1;;;10885:2:1;10870:18;;10863:46;10941:2;10926:18;;10784:166::o;10955:420::-;11157:2;11139:21;;;11196:2;11176:18;;;11169:30;11235:34;11230:2;11215:18;;11208:62;11306:26;11301:2;11286:18;;11279:54;11365:3;11350:19;;11129:246::o;11380:406::-;11582:2;11564:21;;;11621:2;11601:18;;;11594:30;11660:34;11655:2;11640:18;;11633:62;-1:-1:-1;;;11726:2:1;11711:18;;11704:40;11776:3;11761:19;;11554:232::o;11791:405::-;11993:2;11975:21;;;12032:2;12012:18;;;12005:30;12071:34;12066:2;12051:18;;12044:62;-1:-1:-1;;;12137:2:1;12122:18;;12115:39;12186:3;12171:19;;11965:231::o;12201:410::-;12403:2;12385:21;;;12442:2;12422:18;;;12415:30;12481:34;12476:2;12461:18;;12454:62;-1:-1:-1;;;12547:2:1;12532:18;;12525:44;12601:3;12586:19;;12375:236::o;12616:356::-;12818:2;12800:21;;;12837:18;;;12830:30;12896:34;12891:2;12876:18;;12869:62;12963:2;12948:18;;12790:182::o;12977:413::-;13179:2;13161:21;;;13218:2;13198:18;;;13191:30;13257:34;13252:2;13237:18;;13230:62;-1:-1:-1;;;13323:2:1;13308:18;;13301:47;13380:3;13365:19;;13151:239::o;13395:408::-;13597:2;13579:21;;;13636:2;13616:18;;;13609:30;13675:34;13670:2;13655:18;;13648:62;-1:-1:-1;;;13741:2:1;13726:18;;13719:42;13793:3;13778:19;;13569:234::o;13808:356::-;14010:2;13992:21;;;14029:18;;;14022:30;14088:34;14083:2;14068:18;;14061:62;14155:2;14140:18;;13982:182::o;14169:405::-;14371:2;14353:21;;;14410:2;14390:18;;;14383:30;14449:34;14444:2;14429:18;;14422:62;-1:-1:-1;;;14515:2:1;14500:18;;14493:39;14564:3;14549:19;;14343:231::o;14579:411::-;14781:2;14763:21;;;14820:2;14800:18;;;14793:30;14859:34;14854:2;14839:18;;14832:62;-1:-1:-1;;;14925:2:1;14910:18;;14903:45;14980:3;14965:19;;14753:237::o;14995:345::-;15197:2;15179:21;;;15236:2;15216:18;;;15209:30;-1:-1:-1;;;15270:2:1;15255:18;;15248:51;15331:2;15316:18;;15169:171::o;15345:397::-;15547:2;15529:21;;;15586:2;15566:18;;;15559:30;15625:34;15620:2;15605:18;;15598:62;-1:-1:-1;;;15691:2:1;15676:18;;15669:31;15732:3;15717:19;;15519:223::o;15747:413::-;15949:2;15931:21;;;15988:2;15968:18;;;15961:30;16027:34;16022:2;16007:18;;16000:62;-1:-1:-1;;;16093:2:1;16078:18;;16071:47;16150:3;16135:19;;15921:239::o;16165:347::-;16367:2;16349:21;;;16406:2;16386:18;;;16379:30;16445:25;16440:2;16425:18;;16418:53;16503:2;16488:18;;16339:173::o;16517:408::-;16719:2;16701:21;;;16758:2;16738:18;;;16731:30;16797:34;16792:2;16777:18;;16770:62;-1:-1:-1;;;16863:2:1;16848:18;;16841:42;16915:3;16900:19;;16691:234::o;16930:354::-;17132:2;17114:21;;;17171:2;17151:18;;;17144:30;17210:32;17205:2;17190:18;;17183:60;17275:2;17260:18;;17104:180::o;17289:412::-;17491:2;17473:21;;;17530:2;17510:18;;;17503:30;17569:34;17564:2;17549:18;;17542:62;-1:-1:-1;;;17635:2:1;17620:18;;17613:46;17691:3;17676:19;;17463:238::o;17706:177::-;17852:25;;;17840:2;17825:18;;17807:76::o;17888:128::-;;17959:1;17955:6;17952:1;17949:13;17946:2;;;17965:18;;:::i;:::-;-1:-1:-1;18001:9:1;;17936:80::o;18021:120::-;;18087:1;18077:2;;18092:18;;:::i;:::-;-1:-1:-1;18126:9:1;;18067:74::o;18146:125::-;;18214:1;18211;18208:8;18205:2;;;18219:18;;:::i;:::-;-1:-1:-1;18256:9:1;;18195:76::o;18276:258::-;18348:1;18358:113;18372:6;18369:1;18366:13;18358:113;;;18448:11;;;18442:18;18429:11;;;18422:39;18394:2;18387:10;18358:113;;;18489:6;18486:1;18483:13;18480:2;;;-1:-1:-1;;18524:1:1;18506:16;;18499:27;18329:205::o;18539:380::-;18624:1;18614:12;;18671:1;18661:12;;;18682:2;;18736:4;18728:6;18724:17;18714:27;;18682:2;18789;18781:6;18778:14;18758:18;18755:38;18752:2;;;18835:10;18830:3;18826:20;18823:1;18816:31;18870:4;18867:1;18860:15;18898:4;18895:1;18888:15;18752:2;;18594:325;;;:::o;18924:135::-;;-1:-1:-1;;18984:17:1;;18981:2;;;19004:18;;:::i;:::-;-1:-1:-1;19051:1:1;19040:13;;18971:88::o;19064:112::-;;19122:1;19112:2;;19127:18;;:::i;:::-;-1:-1:-1;19161:9:1;;19102:74::o;19181:127::-;19242:10;19237:3;19233:20;19230:1;19223:31;19273:4;19270:1;19263:15;19297:4;19294:1;19287:15;19313:127;19374:10;19369:3;19365:20;19362:1;19355:31;19405:4;19402:1;19395:15;19429:4;19426:1;19419:15;19445:127;19506:10;19501:3;19497:20;19494:1;19487:31;19537:4;19534:1;19527:15;19561:4;19558:1;19551:15;19577:133;-1:-1:-1;;;;;;19653:32:1;;19643:43;;19633:2;;19700:1;19697;19690:12

Swarm Source

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