ETH Price: $2,678.34 (+1.63%)
Gas: 1 Gwei

Token

Authencity. (AUTH)
 

Overview

Max Total Supply

6,836 AUTH

Holders

2,976

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zkclodoc.eth
Balance
1 AUTH
0x42ab133871fa8b4af29efc4d1daadc14818df661
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Personal on-chain identity backed by Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC721Preset

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-19
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Type
    mapping(uint256 => string) private _tokenType;
    
    // Data
    mapping(uint256 => string) private _tokenData;
    
    // Key
    mapping(uint256 => string) private _tokenKey;
    
    // Database key
    mapping(uint256 => string) private _databaseKey;

    // 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: address zero is not a valid owner");
        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: invalid token ID");
        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 Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);
        return _tokenURIs[tokenId];

    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Returns an TokenType for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function getTokenType(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: TokenType query for nonexistent token");
        return _tokenType[tokenId];
    }

    /**
     * @dev Internal function to set the token Type for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its Type
     * @param tokenType string Type to assign
     */
    function _setTokenType(uint256 tokenId, string memory tokenType) internal {
        require(_exists(tokenId), "ERC721Metadata: TokenType set of nonexistent token");
        _tokenType[tokenId] = tokenType;
    }
    
    /**
     * @dev Returns an TokenData for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function getTokenData(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: TokenData query for nonexistent token");
        return _tokenData[tokenId];
    }

    /**
     * @dev Internal function to set the token Data for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its Data
     * @param tokenData string Data to assign
     */
    function _setTokenData(uint256 tokenId, string memory tokenData) internal {
        require(_exists(tokenId), "ERC721Metadata: TokenData set of nonexistent token");
        _tokenData[tokenId] = tokenData;
    }
    
    /**
     * @dev Returns an TokenKey for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function getTokenKey(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: TokenKey query for nonexistent token");
        return _tokenKey[tokenId];
    }

    /**
     * @dev Internal function to set the token Key for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its Key
     * @param tokenKey string Key to assign
     */
    function _setTokenKey(uint256 tokenId, string memory tokenKey) internal {
        require(_exists(tokenId), "ERC721Metadata: TokenKey set of nonexistent token");
        _tokenKey[tokenId] = tokenKey;
    }
    
    /**
     * @dev Returns an DatabaseKey for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function getDatabaseKey(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: DatabaseKey query for nonexistent token");
        return _databaseKey[tokenId];
    }

    /**
     * @dev Internal function to set the DatabaseKey for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its Key
     * @param databaseKey string Key to assign
     */
    function _setDatabaseKey(uint256 tokenId, string memory databaseKey) internal {
        require(_exists(tokenId), "ERC721Metadata: DatabaseKey set of nonexistent token");
        _databaseKey[tokenId] = databaseKey;
    }


    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * 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
        delete _tokenApprovals[tokenId];

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

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

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be 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), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol)

pragma solidity ^0.8.0;

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ERC721Preset is
    Context,
    ERC721Enumerable,
    ERC721Burnable
{

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(
        string memory name,
        string memory symbol
    ) ERC721(name, symbol) { }

    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted tokens.
     * @param tokenId The token id to mint.
     * @param tokenURI The token URI of the minted token.
     * @param tokenType The token URI of the minted token.
     * @param tokenData The token URI of the minted token.
     * @param tokenKey The token URI of the minted token.
     * @param databaseKey The token databaseKey of the minted token.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintWithTokenObjectData(
        address to,
        uint256 tokenId,
        string memory tokenURI,
        string memory tokenType,
        string memory tokenData,
        string memory tokenKey,
        string memory databaseKey
        ) public returns (bool) {
        _mint(to, tokenId);
        _setTokenURI(tokenId, tokenURI);
        _setTokenType(tokenId, tokenType);
        _setTokenData(tokenId, tokenData);
        _setTokenKey(tokenId, tokenKey);
        _setDatabaseKey(tokenId, databaseKey);
        return true;
    }

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

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getDatabaseKey","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenKey","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenType","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"string","name":"tokenType","type":"string"},{"internalType":"string","name":"tokenData","type":"string"},{"internalType":"string","name":"tokenKey","type":"string"},{"internalType":"string","name":"databaseKey","type":"string"}],"name":"mintWithTokenObjectData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e6938038062003e698339818101604052810190620000379190620001a3565b818181600090805190602001906200005192919062000075565b5080600190805190602001906200006a92919062000075565b5050505050620003ac565b8280546200008390620002bd565b90600052602060002090601f016020900481019282620000a75760008555620000f3565b82601f10620000c257805160ff1916838001178555620000f3565b82800160010185558215620000f3579182015b82811115620000f2578251825591602001919060010190620000d5565b5b50905062000102919062000106565b5090565b5b808211156200012157600081600090555060010162000107565b5090565b60006200013c620001368462000251565b62000228565b9050828152602081018484840111156200015b576200015a6200038c565b5b6200016884828562000287565b509392505050565b600082601f83011262000188576200018762000387565b5b81516200019a84826020860162000125565b91505092915050565b60008060408385031215620001bd57620001bc62000396565b5b600083015167ffffffffffffffff811115620001de57620001dd62000391565b5b620001ec8582860162000170565b925050602083015167ffffffffffffffff81111562000210576200020f62000391565b5b6200021e8582860162000170565b9150509250929050565b60006200023462000247565b9050620002428282620002f3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200026f576200026e62000358565b5b6200027a826200039b565b9050602081019050919050565b60005b83811015620002a75780820151818401526020810190506200028a565b83811115620002b7576000848401525b50505050565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec62000329565b5b50919050565b620002fe826200039b565b810181811067ffffffffffffffff8211171562000320576200031f62000358565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613aad80620003bc6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063b09afec11161007c578063b09afec1146103ad578063b1d4a3dd146103dd578063b37c96061461040d578063b88d4fde1461043d578063c87b56dd14610459578063e985e9c51461048957610142565b80636352211e146102e357806370a082311461031357806376aed2e11461034357806395d89b4114610373578063a22cb4651461039157610142565b806318160ddd1161010a57806318160ddd1461021157806323b872dd1461022f5780632f745c591461024b57806342842e0e1461027b57806342966c68146102975780634f6ccce7146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806317580069146101e1575b600080fd5b610161600480360381019061015c91906128d0565b6104b9565b60405161016e9190612d5f565b60405180910390f35b61017f6104cb565b60405161018c9190612d7a565b60405180910390f35b6101af60048036038101906101aa919061292a565b61055d565b6040516101bc9190612cf8565b60405180910390f35b6101df60048036038101906101da9190612762565b6105a3565b005b6101fb60048036038101906101f691906127a2565b6106bb565b6040516102089190612d5f565b60405180910390f35b610219610708565b604051610226919061305c565b60405180910390f35b6102496004803603810190610244919061264c565b610715565b005b61026560048036038101906102609190612762565b610775565b604051610272919061305c565b60405180910390f35b6102956004803603810190610290919061264c565b61081a565b005b6102b160048036038101906102ac919061292a565b61083a565b005b6102cd60048036038101906102c8919061292a565b610896565b6040516102da919061305c565b60405180910390f35b6102fd60048036038101906102f8919061292a565b610907565b60405161030a9190612cf8565b60405180910390f35b61032d600480360381019061032891906125df565b6109b9565b60405161033a919061305c565b60405180910390f35b61035d6004803603810190610358919061292a565b610a71565b60405161036a9190612d7a565b60405180910390f35b61037b610b5e565b6040516103889190612d7a565b60405180910390f35b6103ab60048036038101906103a69190612722565b610bf0565b005b6103c760048036038101906103c2919061292a565b610c06565b6040516103d49190612d7a565b60405180910390f35b6103f760048036038101906103f2919061292a565b610cf3565b6040516104049190612d7a565b60405180910390f35b6104276004803603810190610422919061292a565b610de0565b6040516104349190612d7a565b60405180910390f35b6104576004803603810190610452919061269f565b610ecd565b005b610473600480360381019061046e919061292a565b610f2f565b6040516104809190612d7a565b60405180910390f35b6104a3600480360381019061049e919061260c565b610fdd565b6040516104b09190612d5f565b60405180910390f35b60006104c482611071565b9050919050565b6060600080546104da90613276565b80601f016020809104026020016040519081016040528092919081815260200182805461050690613276565b80156105535780601f1061052857610100808354040283529160200191610553565b820191906000526020600020905b81548152906001019060200180831161053657829003601f168201915b5050505050905090565b6000610568826110eb565b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ae82610907565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690612f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063e611136565b73ffffffffffffffffffffffffffffffffffffffff16148061066d575061066c81610667611136565b610fdd565b5b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390612f9c565b60405180910390fd5b6106b6838361113e565b505050565b60006106c788886111f7565b6106d187876113d1565b6106db8786611445565b6106e587856114b9565b6106ef878461152d565b6106f987836115a1565b60019050979650505050505050565b6000600d80549050905090565b610726610720611136565b82611615565b610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075c90612d9c565b60405180910390fd5b6107708383836116aa565b505050565b6000610780836109b9565b82106107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890612dbc565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61083583838360405180602001604052806000815250610ecd565b505050565b61084b610845611136565b82611615565b61088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612d9c565b60405180910390fd5b6108938161193c565b50565b60006108a0610708565b82106108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612fdc565b60405180910390fd5b600d82815481106108f5576108f4613366565b5b90600052602060002001549050919050565b6000806007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612f3c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612ebc565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610a7c82611a84565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290612f7c565b60405180910390fd5b600360008381526020019081526020016000208054610ad990613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590613276565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b50505050509050919050565b606060018054610b6d90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9990613276565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b610c02610bfb611136565b8383611af0565b5050565b6060610c1182611a84565b610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790612f1c565b60405180910390fd5b600460008381526020019081526020016000208054610c6e90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90613276565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b50505050509050919050565b6060610cfe82611a84565b610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490612fbc565b60405180910390fd5b600660008381526020019081526020016000208054610d5b90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790613276565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b50505050509050919050565b6060610deb82611a84565b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061301c565b60405180910390fd5b600560008381526020019081526020016000208054610e4890613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7490613276565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b50505050509050919050565b610ede610ed8611136565b83611615565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612d9c565b60405180910390fd5b610f2984848484611c5d565b50505050565b6060610f3a826110eb565b600260008381526020019081526020016000208054610f5890613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8490613276565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b50505050509050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110e457506110e382611cb9565b5b9050919050565b6110f481611a84565b611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612f3c565b60405180910390fd5b50565b600033905090565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111b183610907565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612edc565b60405180910390fd5b61127081611a84565b156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612e1c565b60405180910390fd5b6112bc60008383611d9b565b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130c9190613136565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113cd60008383611dab565b5050565b6113da82611a84565b611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090612efc565b60405180910390fd5b806002600084815260200190815260200160002090805190602001906114409291906123f3565b505050565b61144e82611a84565b61148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612e3c565b60405180910390fd5b806003600084815260200190815260200160002090805190602001906114b49291906123f3565b505050565b6114c282611a84565b611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061303c565b60405180910390fd5b806004600084815260200190815260200160002090805190602001906115289291906123f3565b505050565b61153682611a84565b611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90612ffc565b60405180910390fd5b8060056000848152602001908152602001600020908051906020019061159c9291906123f3565b505050565b6115aa82611a84565b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612e9c565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906116109291906123f3565b505050565b60008061162183610907565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166357506116628185610fdd565b5b806116a157508373ffffffffffffffffffffffffffffffffffffffff166116898461055d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ca82610907565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790612dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790612e5c565b60405180910390fd5b61179b838383611d9b565b6009600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611821919061318c565b925050819055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118789190613136565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611937838383611dab565b505050565b600061194782610907565b905061195581600084611d9b565b6009600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119db919061318c565b925050819055506007600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a8081600084611dab565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612e7c565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c509190612d5f565b60405180910390a3505050565b611c688484846116aa565b611c7484848484611db0565b611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90612ddc565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d945750611d9382611f47565b5b9050919050565b611da6838383611fb1565b505050565b505050565b6000611dd18473ffffffffffffffffffffffffffffffffffffffff166120c5565b15611f3a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dfa611136565b8786866040518563ffffffff1660e01b8152600401611e1c9493929190612d13565b602060405180830381600087803b158015611e3657600080fd5b505af1925050508015611e6757506040513d601f19601f82011682018060405250810190611e6491906128fd565b60015b611eea573d8060008114611e97576040519150601f19603f3d011682016040523d82523d6000602084013e611e9c565b606091505b50600081511415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990612ddc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f3f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fbc8383836120e8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fff57611ffa816120ed565b61203e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203d5761203c8382612136565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120815761207c816122a3565b6120c0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146120bf576120be8282612374565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600d80549050600e600083815260200190815260200160002081905550600d81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612143846109b9565b61214d919061318c565b90506000600c6000848152602001908152602001600020549050818114612232576000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600c600083815260200190815260200160002081905550505b600c600084815260200190815260200160002060009055600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600d805490506122b7919061318c565b90506000600e60008481526020019081526020016000205490506000600d83815481106122e7576122e6613366565b5b9060005260206000200154905080600d838154811061230957612308613366565b5b906000526020600020018190555081600e600083815260200190815260200160002081905550600e600085815260200190815260200160002060009055600d80548061235857612357613337565b5b6001900381819060005260206000200160009055905550505050565b600061237f836109b9565b905081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600c600084815260200190815260200160002081905550505050565b8280546123ff90613276565b90600052602060002090601f0160209004810192826124215760008555612468565b82601f1061243a57805160ff1916838001178555612468565b82800160010185558215612468579182015b8281111561246757825182559160200191906001019061244c565b5b5090506124759190612479565b5090565b5b8082111561249257600081600090555060010161247a565b5090565b60006124a96124a48461309c565b613077565b9050828152602081018484840111156124c5576124c46133c9565b5b6124d0848285613234565b509392505050565b60006124eb6124e6846130cd565b613077565b905082815260208101848484011115612507576125066133c9565b5b612512848285613234565b509392505050565b60008135905061252981613a1b565b92915050565b60008135905061253e81613a32565b92915050565b60008135905061255381613a49565b92915050565b60008151905061256881613a49565b92915050565b600082601f830112612583576125826133c4565b5b8135612593848260208601612496565b91505092915050565b600082601f8301126125b1576125b06133c4565b5b81356125c18482602086016124d8565b91505092915050565b6000813590506125d981613a60565b92915050565b6000602082840312156125f5576125f46133d3565b5b60006126038482850161251a565b91505092915050565b60008060408385031215612623576126226133d3565b5b60006126318582860161251a565b92505060206126428582860161251a565b9150509250929050565b600080600060608486031215612665576126646133d3565b5b60006126738682870161251a565b93505060206126848682870161251a565b9250506040612695868287016125ca565b9150509250925092565b600080600080608085870312156126b9576126b86133d3565b5b60006126c78782880161251a565b94505060206126d88782880161251a565b93505060406126e9878288016125ca565b925050606085013567ffffffffffffffff81111561270a576127096133ce565b5b6127168782880161256e565b91505092959194509250565b60008060408385031215612739576127386133d3565b5b60006127478582860161251a565b92505060206127588582860161252f565b9150509250929050565b60008060408385031215612779576127786133d3565b5b60006127878582860161251a565b9250506020612798858286016125ca565b9150509250929050565b600080600080600080600060e0888a0312156127c1576127c06133d3565b5b60006127cf8a828b0161251a565b97505060206127e08a828b016125ca565b965050604088013567ffffffffffffffff811115612801576128006133ce565b5b61280d8a828b0161259c565b955050606088013567ffffffffffffffff81111561282e5761282d6133ce565b5b61283a8a828b0161259c565b945050608088013567ffffffffffffffff81111561285b5761285a6133ce565b5b6128678a828b0161259c565b93505060a088013567ffffffffffffffff811115612888576128876133ce565b5b6128948a828b0161259c565b92505060c088013567ffffffffffffffff8111156128b5576128b46133ce565b5b6128c18a828b0161259c565b91505092959891949750929550565b6000602082840312156128e6576128e56133d3565b5b60006128f484828501612544565b91505092915050565b600060208284031215612913576129126133d3565b5b600061292184828501612559565b91505092915050565b6000602082840312156129405761293f6133d3565b5b600061294e848285016125ca565b91505092915050565b612960816131c0565b82525050565b61296f816131d2565b82525050565b6000612980826130fe565b61298a8185613114565b935061299a818560208601613243565b6129a3816133d8565b840191505092915050565b60006129b982613109565b6129c38185613125565b93506129d3818560208601613243565b6129dc816133d8565b840191505092915050565b60006129f4602d83613125565b91506129ff826133e9565b604082019050919050565b6000612a17602b83613125565b9150612a2282613438565b604082019050919050565b6000612a3a603283613125565b9150612a4582613487565b604082019050919050565b6000612a5d602583613125565b9150612a68826134d6565b604082019050919050565b6000612a80601c83613125565b9150612a8b82613525565b602082019050919050565b6000612aa3603283613125565b9150612aae8261354e565b604082019050919050565b6000612ac6602483613125565b9150612ad18261359d565b604082019050919050565b6000612ae9601983613125565b9150612af4826135ec565b602082019050919050565b6000612b0c603483613125565b9150612b1782613615565b604082019050919050565b6000612b2f602983613125565b9150612b3a82613664565b604082019050919050565b6000612b52602083613125565b9150612b5d826136b3565b602082019050919050565b6000612b75602c83613125565b9150612b80826136dc565b604082019050919050565b6000612b98603583613125565b9150612ba38261372b565b604082019050919050565b6000612bbb601883613125565b9150612bc68261377a565b602082019050919050565b6000612bde602183613125565b9150612be9826137a3565b604082019050919050565b6000612c01603583613125565b9150612c0c826137f2565b604082019050919050565b6000612c24603d83613125565b9150612c2f82613841565b604082019050919050565b6000612c47603783613125565b9150612c5282613890565b604082019050919050565b6000612c6a602c83613125565b9150612c75826138df565b604082019050919050565b6000612c8d603183613125565b9150612c988261392e565b604082019050919050565b6000612cb0603483613125565b9150612cbb8261397d565b604082019050919050565b6000612cd3603283613125565b9150612cde826139cc565b604082019050919050565b612cf28161322a565b82525050565b6000602082019050612d0d6000830184612957565b92915050565b6000608082019050612d286000830187612957565b612d356020830186612957565b612d426040830185612ce9565b8181036060830152612d548184612975565b905095945050505050565b6000602082019050612d746000830184612966565b92915050565b60006020820190508181036000830152612d9481846129ae565b905092915050565b60006020820190508181036000830152612db5816129e7565b9050919050565b60006020820190508181036000830152612dd581612a0a565b9050919050565b60006020820190508181036000830152612df581612a2d565b9050919050565b60006020820190508181036000830152612e1581612a50565b9050919050565b60006020820190508181036000830152612e3581612a73565b9050919050565b60006020820190508181036000830152612e5581612a96565b9050919050565b60006020820190508181036000830152612e7581612ab9565b9050919050565b60006020820190508181036000830152612e9581612adc565b9050919050565b60006020820190508181036000830152612eb581612aff565b9050919050565b60006020820190508181036000830152612ed581612b22565b9050919050565b60006020820190508181036000830152612ef581612b45565b9050919050565b60006020820190508181036000830152612f1581612b68565b9050919050565b60006020820190508181036000830152612f3581612b8b565b9050919050565b60006020820190508181036000830152612f5581612bae565b9050919050565b60006020820190508181036000830152612f7581612bd1565b9050919050565b60006020820190508181036000830152612f9581612bf4565b9050919050565b60006020820190508181036000830152612fb581612c17565b9050919050565b60006020820190508181036000830152612fd581612c3a565b9050919050565b60006020820190508181036000830152612ff581612c5d565b9050919050565b6000602082019050818103600083015261301581612c80565b9050919050565b6000602082019050818103600083015261303581612ca3565b9050919050565b6000602082019050818103600083015261305581612cc6565b9050919050565b60006020820190506130716000830184612ce9565b92915050565b6000613081613092565b905061308d82826132a8565b919050565b6000604051905090565b600067ffffffffffffffff8211156130b7576130b6613395565b5b6130c0826133d8565b9050602081019050919050565b600067ffffffffffffffff8211156130e8576130e7613395565b5b6130f1826133d8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006131418261322a565b915061314c8361322a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613181576131806132d9565b5b828201905092915050565b60006131978261322a565b91506131a28361322a565b9250828210156131b5576131b46132d9565b5b828203905092915050565b60006131cb8261320a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613261578082015181840152602081019050613246565b83811115613270576000848401525b50505050565b6000600282049050600182168061328e57607f821691505b602082108114156132a2576132a1613308565b5b50919050565b6132b1826133d8565b810181811067ffffffffffffffff821117156132d0576132cf613395565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20546f6b656e5479706520736574206f6660008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732314d657461646174613a2044617461626173654b6579207365742060008201527f6f66206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e446174612071756572792060008201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e547970652071756572792060008201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f4552433732314d657461646174613a2044617461626173654b6579207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4b657920736574206f662060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4b6579207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4461746120736574206f6660008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b613a24816131c0565b8114613a2f57600080fd5b50565b613a3b816131d2565b8114613a4657600080fd5b50565b613a52816131de565b8114613a5d57600080fd5b50565b613a698161322a565b8114613a7457600080fd5b5056fea264697066735822122000a02870131bc6babc4aa2f355b344747d7980852a75883d025a565fa109d22664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b41757468656e636974792e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044155544800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063b09afec11161007c578063b09afec1146103ad578063b1d4a3dd146103dd578063b37c96061461040d578063b88d4fde1461043d578063c87b56dd14610459578063e985e9c51461048957610142565b80636352211e146102e357806370a082311461031357806376aed2e11461034357806395d89b4114610373578063a22cb4651461039157610142565b806318160ddd1161010a57806318160ddd1461021157806323b872dd1461022f5780632f745c591461024b57806342842e0e1461027b57806342966c68146102975780634f6ccce7146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806317580069146101e1575b600080fd5b610161600480360381019061015c91906128d0565b6104b9565b60405161016e9190612d5f565b60405180910390f35b61017f6104cb565b60405161018c9190612d7a565b60405180910390f35b6101af60048036038101906101aa919061292a565b61055d565b6040516101bc9190612cf8565b60405180910390f35b6101df60048036038101906101da9190612762565b6105a3565b005b6101fb60048036038101906101f691906127a2565b6106bb565b6040516102089190612d5f565b60405180910390f35b610219610708565b604051610226919061305c565b60405180910390f35b6102496004803603810190610244919061264c565b610715565b005b61026560048036038101906102609190612762565b610775565b604051610272919061305c565b60405180910390f35b6102956004803603810190610290919061264c565b61081a565b005b6102b160048036038101906102ac919061292a565b61083a565b005b6102cd60048036038101906102c8919061292a565b610896565b6040516102da919061305c565b60405180910390f35b6102fd60048036038101906102f8919061292a565b610907565b60405161030a9190612cf8565b60405180910390f35b61032d600480360381019061032891906125df565b6109b9565b60405161033a919061305c565b60405180910390f35b61035d6004803603810190610358919061292a565b610a71565b60405161036a9190612d7a565b60405180910390f35b61037b610b5e565b6040516103889190612d7a565b60405180910390f35b6103ab60048036038101906103a69190612722565b610bf0565b005b6103c760048036038101906103c2919061292a565b610c06565b6040516103d49190612d7a565b60405180910390f35b6103f760048036038101906103f2919061292a565b610cf3565b6040516104049190612d7a565b60405180910390f35b6104276004803603810190610422919061292a565b610de0565b6040516104349190612d7a565b60405180910390f35b6104576004803603810190610452919061269f565b610ecd565b005b610473600480360381019061046e919061292a565b610f2f565b6040516104809190612d7a565b60405180910390f35b6104a3600480360381019061049e919061260c565b610fdd565b6040516104b09190612d5f565b60405180910390f35b60006104c482611071565b9050919050565b6060600080546104da90613276565b80601f016020809104026020016040519081016040528092919081815260200182805461050690613276565b80156105535780601f1061052857610100808354040283529160200191610553565b820191906000526020600020905b81548152906001019060200180831161053657829003601f168201915b5050505050905090565b6000610568826110eb565b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ae82610907565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690612f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063e611136565b73ffffffffffffffffffffffffffffffffffffffff16148061066d575061066c81610667611136565b610fdd565b5b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390612f9c565b60405180910390fd5b6106b6838361113e565b505050565b60006106c788886111f7565b6106d187876113d1565b6106db8786611445565b6106e587856114b9565b6106ef878461152d565b6106f987836115a1565b60019050979650505050505050565b6000600d80549050905090565b610726610720611136565b82611615565b610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075c90612d9c565b60405180910390fd5b6107708383836116aa565b505050565b6000610780836109b9565b82106107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890612dbc565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61083583838360405180602001604052806000815250610ecd565b505050565b61084b610845611136565b82611615565b61088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612d9c565b60405180910390fd5b6108938161193c565b50565b60006108a0610708565b82106108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612fdc565b60405180910390fd5b600d82815481106108f5576108f4613366565b5b90600052602060002001549050919050565b6000806007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612f3c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612ebc565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610a7c82611a84565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290612f7c565b60405180910390fd5b600360008381526020019081526020016000208054610ad990613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590613276565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b50505050509050919050565b606060018054610b6d90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9990613276565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b610c02610bfb611136565b8383611af0565b5050565b6060610c1182611a84565b610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790612f1c565b60405180910390fd5b600460008381526020019081526020016000208054610c6e90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90613276565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b50505050509050919050565b6060610cfe82611a84565b610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490612fbc565b60405180910390fd5b600660008381526020019081526020016000208054610d5b90613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8790613276565b8015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b50505050509050919050565b6060610deb82611a84565b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061301c565b60405180910390fd5b600560008381526020019081526020016000208054610e4890613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7490613276565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b50505050509050919050565b610ede610ed8611136565b83611615565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612d9c565b60405180910390fd5b610f2984848484611c5d565b50505050565b6060610f3a826110eb565b600260008381526020019081526020016000208054610f5890613276565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8490613276565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b50505050509050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110e457506110e382611cb9565b5b9050919050565b6110f481611a84565b611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612f3c565b60405180910390fd5b50565b600033905090565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111b183610907565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612edc565b60405180910390fd5b61127081611a84565b156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790612e1c565b60405180910390fd5b6112bc60008383611d9b565b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130c9190613136565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113cd60008383611dab565b5050565b6113da82611a84565b611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090612efc565b60405180910390fd5b806002600084815260200190815260200160002090805190602001906114409291906123f3565b505050565b61144e82611a84565b61148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612e3c565b60405180910390fd5b806003600084815260200190815260200160002090805190602001906114b49291906123f3565b505050565b6114c282611a84565b611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061303c565b60405180910390fd5b806004600084815260200190815260200160002090805190602001906115289291906123f3565b505050565b61153682611a84565b611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90612ffc565b60405180910390fd5b8060056000848152602001908152602001600020908051906020019061159c9291906123f3565b505050565b6115aa82611a84565b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612e9c565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906116109291906123f3565b505050565b60008061162183610907565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166357506116628185610fdd565b5b806116a157508373ffffffffffffffffffffffffffffffffffffffff166116898461055d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ca82610907565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790612dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790612e5c565b60405180910390fd5b61179b838383611d9b565b6009600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611821919061318c565b925050819055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118789190613136565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611937838383611dab565b505050565b600061194782610907565b905061195581600084611d9b565b6009600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119db919061318c565b925050819055506007600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a8081600084611dab565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612e7c565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c509190612d5f565b60405180910390a3505050565b611c688484846116aa565b611c7484848484611db0565b611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90612ddc565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d945750611d9382611f47565b5b9050919050565b611da6838383611fb1565b505050565b505050565b6000611dd18473ffffffffffffffffffffffffffffffffffffffff166120c5565b15611f3a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dfa611136565b8786866040518563ffffffff1660e01b8152600401611e1c9493929190612d13565b602060405180830381600087803b158015611e3657600080fd5b505af1925050508015611e6757506040513d601f19601f82011682018060405250810190611e6491906128fd565b60015b611eea573d8060008114611e97576040519150601f19603f3d011682016040523d82523d6000602084013e611e9c565b606091505b50600081511415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990612ddc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f3f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fbc8383836120e8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fff57611ffa816120ed565b61203e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203d5761203c8382612136565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120815761207c816122a3565b6120c0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146120bf576120be8282612374565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600d80549050600e600083815260200190815260200160002081905550600d81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612143846109b9565b61214d919061318c565b90506000600c6000848152602001908152602001600020549050818114612232576000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600c600083815260200190815260200160002081905550505b600c600084815260200190815260200160002060009055600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600d805490506122b7919061318c565b90506000600e60008481526020019081526020016000205490506000600d83815481106122e7576122e6613366565b5b9060005260206000200154905080600d838154811061230957612308613366565b5b906000526020600020018190555081600e600083815260200190815260200160002081905550600e600085815260200190815260200160002060009055600d80548061235857612357613337565b5b6001900381819060005260206000200160009055905550505050565b600061237f836109b9565b905081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600c600084815260200190815260200160002081905550505050565b8280546123ff90613276565b90600052602060002090601f0160209004810192826124215760008555612468565b82601f1061243a57805160ff1916838001178555612468565b82800160010185558215612468579182015b8281111561246757825182559160200191906001019061244c565b5b5090506124759190612479565b5090565b5b8082111561249257600081600090555060010161247a565b5090565b60006124a96124a48461309c565b613077565b9050828152602081018484840111156124c5576124c46133c9565b5b6124d0848285613234565b509392505050565b60006124eb6124e6846130cd565b613077565b905082815260208101848484011115612507576125066133c9565b5b612512848285613234565b509392505050565b60008135905061252981613a1b565b92915050565b60008135905061253e81613a32565b92915050565b60008135905061255381613a49565b92915050565b60008151905061256881613a49565b92915050565b600082601f830112612583576125826133c4565b5b8135612593848260208601612496565b91505092915050565b600082601f8301126125b1576125b06133c4565b5b81356125c18482602086016124d8565b91505092915050565b6000813590506125d981613a60565b92915050565b6000602082840312156125f5576125f46133d3565b5b60006126038482850161251a565b91505092915050565b60008060408385031215612623576126226133d3565b5b60006126318582860161251a565b92505060206126428582860161251a565b9150509250929050565b600080600060608486031215612665576126646133d3565b5b60006126738682870161251a565b93505060206126848682870161251a565b9250506040612695868287016125ca565b9150509250925092565b600080600080608085870312156126b9576126b86133d3565b5b60006126c78782880161251a565b94505060206126d88782880161251a565b93505060406126e9878288016125ca565b925050606085013567ffffffffffffffff81111561270a576127096133ce565b5b6127168782880161256e565b91505092959194509250565b60008060408385031215612739576127386133d3565b5b60006127478582860161251a565b92505060206127588582860161252f565b9150509250929050565b60008060408385031215612779576127786133d3565b5b60006127878582860161251a565b9250506020612798858286016125ca565b9150509250929050565b600080600080600080600060e0888a0312156127c1576127c06133d3565b5b60006127cf8a828b0161251a565b97505060206127e08a828b016125ca565b965050604088013567ffffffffffffffff811115612801576128006133ce565b5b61280d8a828b0161259c565b955050606088013567ffffffffffffffff81111561282e5761282d6133ce565b5b61283a8a828b0161259c565b945050608088013567ffffffffffffffff81111561285b5761285a6133ce565b5b6128678a828b0161259c565b93505060a088013567ffffffffffffffff811115612888576128876133ce565b5b6128948a828b0161259c565b92505060c088013567ffffffffffffffff8111156128b5576128b46133ce565b5b6128c18a828b0161259c565b91505092959891949750929550565b6000602082840312156128e6576128e56133d3565b5b60006128f484828501612544565b91505092915050565b600060208284031215612913576129126133d3565b5b600061292184828501612559565b91505092915050565b6000602082840312156129405761293f6133d3565b5b600061294e848285016125ca565b91505092915050565b612960816131c0565b82525050565b61296f816131d2565b82525050565b6000612980826130fe565b61298a8185613114565b935061299a818560208601613243565b6129a3816133d8565b840191505092915050565b60006129b982613109565b6129c38185613125565b93506129d3818560208601613243565b6129dc816133d8565b840191505092915050565b60006129f4602d83613125565b91506129ff826133e9565b604082019050919050565b6000612a17602b83613125565b9150612a2282613438565b604082019050919050565b6000612a3a603283613125565b9150612a4582613487565b604082019050919050565b6000612a5d602583613125565b9150612a68826134d6565b604082019050919050565b6000612a80601c83613125565b9150612a8b82613525565b602082019050919050565b6000612aa3603283613125565b9150612aae8261354e565b604082019050919050565b6000612ac6602483613125565b9150612ad18261359d565b604082019050919050565b6000612ae9601983613125565b9150612af4826135ec565b602082019050919050565b6000612b0c603483613125565b9150612b1782613615565b604082019050919050565b6000612b2f602983613125565b9150612b3a82613664565b604082019050919050565b6000612b52602083613125565b9150612b5d826136b3565b602082019050919050565b6000612b75602c83613125565b9150612b80826136dc565b604082019050919050565b6000612b98603583613125565b9150612ba38261372b565b604082019050919050565b6000612bbb601883613125565b9150612bc68261377a565b602082019050919050565b6000612bde602183613125565b9150612be9826137a3565b604082019050919050565b6000612c01603583613125565b9150612c0c826137f2565b604082019050919050565b6000612c24603d83613125565b9150612c2f82613841565b604082019050919050565b6000612c47603783613125565b9150612c5282613890565b604082019050919050565b6000612c6a602c83613125565b9150612c75826138df565b604082019050919050565b6000612c8d603183613125565b9150612c988261392e565b604082019050919050565b6000612cb0603483613125565b9150612cbb8261397d565b604082019050919050565b6000612cd3603283613125565b9150612cde826139cc565b604082019050919050565b612cf28161322a565b82525050565b6000602082019050612d0d6000830184612957565b92915050565b6000608082019050612d286000830187612957565b612d356020830186612957565b612d426040830185612ce9565b8181036060830152612d548184612975565b905095945050505050565b6000602082019050612d746000830184612966565b92915050565b60006020820190508181036000830152612d9481846129ae565b905092915050565b60006020820190508181036000830152612db5816129e7565b9050919050565b60006020820190508181036000830152612dd581612a0a565b9050919050565b60006020820190508181036000830152612df581612a2d565b9050919050565b60006020820190508181036000830152612e1581612a50565b9050919050565b60006020820190508181036000830152612e3581612a73565b9050919050565b60006020820190508181036000830152612e5581612a96565b9050919050565b60006020820190508181036000830152612e7581612ab9565b9050919050565b60006020820190508181036000830152612e9581612adc565b9050919050565b60006020820190508181036000830152612eb581612aff565b9050919050565b60006020820190508181036000830152612ed581612b22565b9050919050565b60006020820190508181036000830152612ef581612b45565b9050919050565b60006020820190508181036000830152612f1581612b68565b9050919050565b60006020820190508181036000830152612f3581612b8b565b9050919050565b60006020820190508181036000830152612f5581612bae565b9050919050565b60006020820190508181036000830152612f7581612bd1565b9050919050565b60006020820190508181036000830152612f9581612bf4565b9050919050565b60006020820190508181036000830152612fb581612c17565b9050919050565b60006020820190508181036000830152612fd581612c3a565b9050919050565b60006020820190508181036000830152612ff581612c5d565b9050919050565b6000602082019050818103600083015261301581612c80565b9050919050565b6000602082019050818103600083015261303581612ca3565b9050919050565b6000602082019050818103600083015261305581612cc6565b9050919050565b60006020820190506130716000830184612ce9565b92915050565b6000613081613092565b905061308d82826132a8565b919050565b6000604051905090565b600067ffffffffffffffff8211156130b7576130b6613395565b5b6130c0826133d8565b9050602081019050919050565b600067ffffffffffffffff8211156130e8576130e7613395565b5b6130f1826133d8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006131418261322a565b915061314c8361322a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613181576131806132d9565b5b828201905092915050565b60006131978261322a565b91506131a28361322a565b9250828210156131b5576131b46132d9565b5b828203905092915050565b60006131cb8261320a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613261578082015181840152602081019050613246565b83811115613270576000848401525b50505050565b6000600282049050600182168061328e57607f821691505b602082108114156132a2576132a1613308565b5b50919050565b6132b1826133d8565b810181811067ffffffffffffffff821117156132d0576132cf613395565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20546f6b656e5479706520736574206f6660008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732314d657461646174613a2044617461626173654b6579207365742060008201527f6f66206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e446174612071756572792060008201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e547970652071756572792060008201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f4552433732314d657461646174613a2044617461626173654b6579207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4b657920736574206f662060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4b6579207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b7f4552433732314d657461646174613a20546f6b656e4461746120736574206f6660008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b613a24816131c0565b8114613a2f57600080fd5b50565b613a3b816131d2565b8114613a4657600080fd5b50565b613a52816131de565b8114613a5d57600080fd5b50565b613a698161322a565b8114613a7457600080fd5b5056fea264697066735822122000a02870131bc6babc4aa2f355b344747d7980852a75883d025a565fa109d22664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b41757468656e636974792e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044155544800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Authencity.
Arg [1] : symbol (string): AUTH

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 41757468656e636974792e000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4155544800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51109:2112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52989:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25053:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26589:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26107:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52124:562;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44057:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27289:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43725:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27695:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50018:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44247:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24764:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24495:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32766:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25222:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26832:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33668:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35461:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34569:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27951:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25533:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27058:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52989:229;53145:4;53174:36;53198:11;53174:23;:36::i;:::-;53167:43;;52989:229;;;:::o;25053:100::-;25107:13;25140:5;25133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25053:100;:::o;26589:171::-;26665:7;26685:23;26700:7;26685:14;:23::i;:::-;26728:15;:24;26744:7;26728:24;;;;;;;;;;;;;;;;;;;;;26721:31;;26589:171;;;:::o;26107:416::-;26188:13;26204:23;26219:7;26204:14;:23::i;:::-;26188:39;;26252:5;26246:11;;:2;:11;;;;26238:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26346:5;26330:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26355:37;26372:5;26379:12;:10;:12::i;:::-;26355:16;:37::i;:::-;26330:62;26308:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;26494:21;26503:2;26507:7;26494:8;:21::i;:::-;26177:346;26107:416;;:::o;52124:562::-;52401:4;52418:18;52424:2;52428:7;52418:5;:18::i;:::-;52447:31;52460:7;52469:8;52447:12;:31::i;:::-;52489:33;52503:7;52512:9;52489:13;:33::i;:::-;52533;52547:7;52556:9;52533:13;:33::i;:::-;52577:31;52590:7;52599:8;52577:12;:31::i;:::-;52619:37;52635:7;52644:11;52619:15;:37::i;:::-;52674:4;52667:11;;52124:562;;;;;;;;;:::o;44057:113::-;44118:7;44145:10;:17;;;;44138:24;;44057:113;:::o;27289:335::-;27484:41;27503:12;:10;:12::i;:::-;27517:7;27484:18;:41::i;:::-;27476:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;27588:28;27598:4;27604:2;27608:7;27588:9;:28::i;:::-;27289:335;;;:::o;43725:256::-;43822:7;43858:23;43875:5;43858:16;:23::i;:::-;43850:5;:31;43842:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43947:12;:19;43960:5;43947:19;;;;;;;;;;;;;;;:26;43967:5;43947:26;;;;;;;;;;;;43940:33;;43725:256;;;;:::o;27695:185::-;27833:39;27850:4;27856:2;27860:7;27833:39;;;;;;;;;;;;:16;:39::i;:::-;27695:185;;;:::o;50018:242::-;50136:41;50155:12;:10;:12::i;:::-;50169:7;50136:18;:41::i;:::-;50128:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;50238:14;50244:7;50238:5;:14::i;:::-;50018:242;:::o;44247:233::-;44322:7;44358:30;:28;:30::i;:::-;44350:5;:38;44342:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44455:10;44466:5;44455:17;;;;;;;;:::i;:::-;;;;;;;;;;44448:24;;44247:233;;;:::o;24764:222::-;24836:7;24856:13;24872:7;:16;24880:7;24872:16;;;;;;;;;;;;;;;;;;;;;24856:32;;24924:1;24907:19;;:5;:19;;;;24899:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;24973:5;24966:12;;;24764:222;;;:::o;24495:207::-;24567:7;24612:1;24595:19;;:5;:19;;;;24587:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24678:9;:16;24688:5;24678:16;;;;;;;;;;;;;;;;24671:23;;24495:207;;;:::o;32766:215::-;32828:13;32862:16;32870:7;32862;:16::i;:::-;32854:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;32954:10;:19;32965:7;32954:19;;;;;;;;;;;32947:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32766:215;;;:::o;25222:104::-;25278:13;25311:7;25304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25222:104;:::o;26832:155::-;26927:52;26946:12;:10;:12::i;:::-;26960:8;26970;26927:18;:52::i;:::-;26832:155;;:::o;33668:215::-;33730:13;33764:16;33772:7;33764;:16::i;:::-;33756:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;33856:10;:19;33867:7;33856:19;;;;;;;;;;;33849:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33668:215;;;:::o;35461:221::-;35525:13;35559:16;35567:7;35559;:16::i;:::-;35551:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;35653:12;:21;35666:7;35653:21;;;;;;;;;;;35646:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35461:221;;;:::o;34569:212::-;34630:13;34664:16;34672:7;34664;:16::i;:::-;34656:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34755:9;:18;34765:7;34755:18;;;;;;;;;;;34748:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34569:212;;;:::o;27951:322::-;28125:41;28144:12;:10;:12::i;:::-;28158:7;28125:18;:41::i;:::-;28117:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;28227:38;28241:4;28247:2;28251:7;28260:4;28227:13;:38::i;:::-;27951:322;;;;:::o;25533:169::-;25606:13;25632:23;25647:7;25632:14;:23::i;:::-;25673:10;:19;25684:7;25673:19;;;;;;;;;;;25666:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25533:169;;;:::o;27058:164::-;27155:4;27179:18;:25;27198:5;27179:25;;;;;;;;;;;;;;;:35;27205:8;27179:35;;;;;;;;;;;;;;;;;;;;;;;;;27172:42;;27058:164;;;;:::o;43417:224::-;43519:4;43558:35;43543:50;;;:11;:50;;;;:90;;;;43597:36;43621:11;43597:23;:36::i;:::-;43543:90;43536:97;;43417:224;;;:::o;38730:135::-;38812:16;38820:7;38812;:16::i;:::-;38804:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;38730:135;:::o;17394:98::-;17447:7;17474:10;17467:17;;17394:98;:::o;38009:174::-;38111:2;38084:15;:24;38100:7;38084:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38167:7;38163:2;38129:46;;38138:23;38153:7;38138:14;:23::i;:::-;38129:46;;;;;;;;;;;;38009:174;;:::o;31672:439::-;31766:1;31752:16;;:2;:16;;;;31744:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31825:16;31833:7;31825;:16::i;:::-;31824:17;31816:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31887:45;31916:1;31920:2;31924:7;31887:20;:45::i;:::-;31962:1;31945:9;:13;31955:2;31945:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31993:2;31974:7;:16;31982:7;31974:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32038:7;32034:2;32013:33;;32030:1;32013:33;;;;;;;;;;;;32059:44;32087:1;32091:2;32095:7;32059:19;:44::i;:::-;31672:439;;:::o;32358:195::-;32444:16;32452:7;32444;:16::i;:::-;32436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32542:3;32520:10;:19;32531:7;32520:19;;;;;;;;;;;:25;;;;;;;;;;;;:::i;:::-;;32358:195;;:::o;33237:214::-;33330:16;33338:7;33330;:16::i;:::-;33322:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;33434:9;33412:10;:19;33423:7;33412:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;33237:214;;:::o;34139:::-;34232:16;34240:7;34232;:16::i;:::-;34224:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;34336:9;34314:10;:19;34325:7;34314:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;34139:214;;:::o;35033:209::-;35124:16;35132:7;35124;:16::i;:::-;35116:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;35226:8;35205:9;:18;35215:7;35205:18;;;;;;;;;;;:29;;;;;;;;;;;;:::i;:::-;;35033:209;;:::o;35939:224::-;36036:16;36044:7;36036;:16::i;:::-;36028:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36144:11;36120:12;:21;36133:7;36120:21;;;;;;;;;;;:35;;;;;;;;;;;;:::i;:::-;;35939:224;;:::o;30074:264::-;30167:4;30184:13;30200:23;30215:7;30200:14;:23::i;:::-;30184:39;;30253:5;30242:16;;:7;:16;;;:52;;;;30262:32;30279:5;30286:7;30262:16;:32::i;:::-;30242:52;:87;;;;30322:7;30298:31;;:20;30310:7;30298:11;:20::i;:::-;:31;;;30242:87;30234:96;;;30074:264;;;;:::o;37263:627::-;37422:4;37395:31;;:23;37410:7;37395:14;:23::i;:::-;:31;;;37387:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37501:1;37487:16;;:2;:16;;;;37479:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37557:39;37578:4;37584:2;37588:7;37557:20;:39::i;:::-;37668:15;:24;37684:7;37668:24;;;;;;;;;;;;37661:31;;;;;;;;;;;37724:1;37705:9;:15;37715:4;37705:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37753:1;37736:9;:13;37746:2;37736:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37784:2;37765:7;:16;37773:7;37765:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37823:7;37819:2;37804:27;;37813:4;37804:27;;;;;;;;;;;;37844:38;37864:4;37870:2;37874:7;37844:19;:38::i;:::-;37263:627;;;:::o;36504:422::-;36564:13;36580:23;36595:7;36580:14;:23::i;:::-;36564:39;;36616:48;36637:5;36652:1;36656:7;36616:20;:48::i;:::-;36712:15;:24;36728:7;36712:24;;;;;;;;;;;;36705:31;;;;;;;;;;;36769:1;36749:9;:16;36759:5;36749:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;36788:7;:16;36796:7;36788:16;;;;;;;;;;;;36781:23;;;;;;;;;;;36850:7;36846:1;36822:36;;36831:5;36822:36;;;;;;;;;;;;36871:47;36891:5;36906:1;36910:7;36871:19;:47::i;:::-;36553:373;36504:422;:::o;29780:127::-;29845:4;29897:1;29869:30;;:7;:16;29877:7;29869:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29862:37;;29780:127;;;:::o;38326:315::-;38481:8;38472:17;;:5;:17;;;;38464:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38568:8;38530:18;:25;38549:5;38530:25;;;;;;;;;;;;;;;:35;38556:8;38530:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38614:8;38592:41;;38607:5;38592:41;;;38624:8;38592:41;;;;;;:::i;:::-;;;;;;;;38326:315;;;:::o;29154:313::-;29310:28;29320:4;29326:2;29330:7;29310:9;:28::i;:::-;29357:47;29380:4;29386:2;29390:7;29399:4;29357:22;:47::i;:::-;29349:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29154:313;;;;:::o;24126:305::-;24228:4;24280:25;24265:40;;;:11;:40;;;;:105;;;;24337:33;24322:48;;;:11;:48;;;;24265:105;:158;;;;24387:36;24411:11;24387:23;:36::i;:::-;24265:158;24245:178;;24126:305;;;:::o;52694:223::-;52864:45;52891:4;52897:2;52901:7;52864:26;:45::i;:::-;52694:223;;;:::o;41365:125::-;;;;:::o;39429:853::-;39583:4;39604:15;:2;:13;;;:15::i;:::-;39600:675;;;39656:2;39640:36;;;39677:12;:10;:12::i;:::-;39691:4;39697:7;39706:4;39640:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39636:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39898:1;39881:6;:13;:18;39877:328;;;39924:60;;;;;;;;;;:::i;:::-;;;;;;;;39877:328;40155:6;40149:13;40140:6;40136:2;40132:15;40125:38;39636:584;39772:41;;;39762:51;;;:6;:51;;;;39755:58;;;;;39600:675;40259:4;40252:11;;39429:853;;;;;;;:::o;22249:157::-;22334:4;22373:25;22358:40;;;:11;:40;;;;22351:47;;22249:157;;;:::o;45093:589::-;45237:45;45264:4;45270:2;45274:7;45237:26;:45::i;:::-;45315:1;45299:18;;:4;:18;;;45295:187;;;45334:40;45366:7;45334:31;:40::i;:::-;45295:187;;;45404:2;45396:10;;:4;:10;;;45392:90;;45423:47;45456:4;45462:7;45423:32;:47::i;:::-;45392:90;45295:187;45510:1;45496:16;;:2;:16;;;45492:183;;;45529:45;45566:7;45529:36;:45::i;:::-;45492:183;;;45602:4;45596:10;;:2;:10;;;45592:83;;45623:40;45651:2;45655:7;45623:27;:40::i;:::-;45592:83;45492:183;45093:589;;;:::o;8576:326::-;8636:4;8893:1;8871:7;:19;;;:23;8864:30;;8576:326;;;:::o;40854:126::-;;;;:::o;46405:164::-;46509:10;:17;;;;46482:15;:24;46498:7;46482:24;;;;;;;;;;;:44;;;;46537:10;46553:7;46537:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46405:164;:::o;47196:988::-;47462:22;47512:1;47487:22;47504:4;47487:16;:22::i;:::-;:26;;;;:::i;:::-;47462:51;;47524:18;47545:17;:26;47563:7;47545:26;;;;;;;;;;;;47524:47;;47692:14;47678:10;:28;47674:328;;47723:19;47745:12;:18;47758:4;47745:18;;;;;;;;;;;;;;;:34;47764:14;47745:34;;;;;;;;;;;;47723:56;;47829:11;47796:12;:18;47809:4;47796:18;;;;;;;;;;;;;;;:30;47815:10;47796:30;;;;;;;;;;;:44;;;;47946:10;47913:17;:30;47931:11;47913:30;;;;;;;;;;;:43;;;;47708:294;47674:328;48098:17;:26;48116:7;48098:26;;;;;;;;;;;48091:33;;;48142:12;:18;48155:4;48142:18;;;;;;;;;;;;;;;:34;48161:14;48142:34;;;;;;;;;;;48135:41;;;47277:907;;47196:988;;:::o;48479:1079::-;48732:22;48777:1;48757:10;:17;;;;:21;;;;:::i;:::-;48732:46;;48789:18;48810:15;:24;48826:7;48810:24;;;;;;;;;;;;48789:45;;49161:19;49183:10;49194:14;49183:26;;;;;;;;:::i;:::-;;;;;;;;;;49161:48;;49247:11;49222:10;49233;49222:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;49358:10;49327:15;:28;49343:11;49327:28;;;;;;;;;;;:41;;;;49499:15;:24;49515:7;49499:24;;;;;;;;;;;49492:31;;;49534:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48550:1008;;;48479:1079;:::o;45983:221::-;46068:14;46085:20;46102:2;46085:16;:20::i;:::-;46068:37;;46143:7;46116:12;:16;46129:2;46116:16;;;;;;;;;;;;;;;:24;46133:6;46116:24;;;;;;;;;;;:34;;;;46190:6;46161:17;:26;46179:7;46161:26;;;;;;;;;;;:35;;;;46057:147;45983:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:2103::-;5783:6;5791;5799;5807;5815;5823;5831;5880:3;5868:9;5859:7;5855:23;5851:33;5848:120;;;5887:79;;:::i;:::-;5848:120;6007:1;6032:53;6077:7;6068:6;6057:9;6053:22;6032:53;:::i;:::-;6022:63;;5978:117;6134:2;6160:53;6205:7;6196:6;6185:9;6181:22;6160:53;:::i;:::-;6150:63;;6105:118;6290:2;6279:9;6275:18;6262:32;6321:18;6313:6;6310:30;6307:117;;;6343:79;;:::i;:::-;6307:117;6448:63;6503:7;6494:6;6483:9;6479:22;6448:63;:::i;:::-;6438:73;;6233:288;6588:2;6577:9;6573:18;6560:32;6619:18;6611:6;6608:30;6605:117;;;6641:79;;:::i;:::-;6605:117;6746:63;6801:7;6792:6;6781:9;6777:22;6746:63;:::i;:::-;6736:73;;6531:288;6886:3;6875:9;6871:19;6858:33;6918:18;6910:6;6907:30;6904:117;;;6940:79;;:::i;:::-;6904:117;7045:63;7100:7;7091:6;7080:9;7076:22;7045:63;:::i;:::-;7035:73;;6829:289;7185:3;7174:9;7170:19;7157:33;7217:18;7209:6;7206:30;7203:117;;;7239:79;;:::i;:::-;7203:117;7344:63;7399:7;7390:6;7379:9;7375:22;7344:63;:::i;:::-;7334:73;;7128:289;7484:3;7473:9;7469:19;7456:33;7516:18;7508:6;7505:30;7502:117;;;7538:79;;:::i;:::-;7502:117;7643:63;7698:7;7689:6;7678:9;7674:22;7643:63;:::i;:::-;7633:73;;7427:289;5620:2103;;;;;;;;;;:::o;7729:327::-;7787:6;7836:2;7824:9;7815:7;7811:23;7807:32;7804:119;;;7842:79;;:::i;:::-;7804:119;7962:1;7987:52;8031:7;8022:6;8011:9;8007:22;7987:52;:::i;:::-;7977:62;;7933:116;7729:327;;;;:::o;8062:349::-;8131:6;8180:2;8168:9;8159:7;8155:23;8151:32;8148:119;;;8186:79;;:::i;:::-;8148:119;8306:1;8331:63;8386:7;8377:6;8366:9;8362:22;8331:63;:::i;:::-;8321:73;;8277:127;8062:349;;;;:::o;8417:329::-;8476:6;8525:2;8513:9;8504:7;8500:23;8496:32;8493:119;;;8531:79;;:::i;:::-;8493:119;8651:1;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8622:117;8417:329;;;;:::o;8752:118::-;8839:24;8857:5;8839:24;:::i;:::-;8834:3;8827:37;8752:118;;:::o;8876:109::-;8957:21;8972:5;8957:21;:::i;:::-;8952:3;8945:34;8876:109;;:::o;8991:360::-;9077:3;9105:38;9137:5;9105:38;:::i;:::-;9159:70;9222:6;9217:3;9159:70;:::i;:::-;9152:77;;9238:52;9283:6;9278:3;9271:4;9264:5;9260:16;9238:52;:::i;:::-;9315:29;9337:6;9315:29;:::i;:::-;9310:3;9306:39;9299:46;;9081:270;8991:360;;;;:::o;9357:364::-;9445:3;9473:39;9506:5;9473:39;:::i;:::-;9528:71;9592:6;9587:3;9528:71;:::i;:::-;9521:78;;9608:52;9653:6;9648:3;9641:4;9634:5;9630:16;9608:52;:::i;:::-;9685:29;9707:6;9685:29;:::i;:::-;9680:3;9676:39;9669:46;;9449:272;9357:364;;;;:::o;9727:366::-;9869:3;9890:67;9954:2;9949:3;9890:67;:::i;:::-;9883:74;;9966:93;10055:3;9966:93;:::i;:::-;10084:2;10079:3;10075:12;10068:19;;9727:366;;;:::o;10099:::-;10241:3;10262:67;10326:2;10321:3;10262:67;:::i;:::-;10255:74;;10338:93;10427:3;10338:93;:::i;:::-;10456:2;10451:3;10447:12;10440:19;;10099:366;;;:::o;10471:::-;10613:3;10634:67;10698:2;10693:3;10634:67;:::i;:::-;10627:74;;10710:93;10799:3;10710:93;:::i;:::-;10828:2;10823:3;10819:12;10812:19;;10471:366;;;:::o;10843:::-;10985:3;11006:67;11070:2;11065:3;11006:67;:::i;:::-;10999:74;;11082:93;11171:3;11082:93;:::i;:::-;11200:2;11195:3;11191:12;11184:19;;10843:366;;;:::o;11215:::-;11357:3;11378:67;11442:2;11437:3;11378:67;:::i;:::-;11371:74;;11454:93;11543:3;11454:93;:::i;:::-;11572:2;11567:3;11563:12;11556:19;;11215:366;;;:::o;11587:::-;11729:3;11750:67;11814:2;11809:3;11750:67;:::i;:::-;11743:74;;11826:93;11915:3;11826:93;:::i;:::-;11944:2;11939:3;11935:12;11928:19;;11587:366;;;:::o;11959:::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:::-;12473:3;12494:67;12558:2;12553:3;12494:67;:::i;:::-;12487:74;;12570:93;12659:3;12570:93;:::i;:::-;12688:2;12683:3;12679:12;12672:19;;12331:366;;;:::o;12703:::-;12845:3;12866:67;12930:2;12925:3;12866:67;:::i;:::-;12859:74;;12942:93;13031:3;12942:93;:::i;:::-;13060:2;13055:3;13051:12;13044:19;;12703:366;;;:::o;13075:::-;13217:3;13238:67;13302:2;13297:3;13238:67;:::i;:::-;13231:74;;13314:93;13403:3;13314:93;:::i;:::-;13432:2;13427:3;13423:12;13416:19;;13075:366;;;:::o;13447:::-;13589:3;13610:67;13674:2;13669:3;13610:67;:::i;:::-;13603:74;;13686:93;13775:3;13686:93;:::i;:::-;13804:2;13799:3;13795:12;13788:19;;13447:366;;;:::o;13819:::-;13961:3;13982:67;14046:2;14041:3;13982:67;:::i;:::-;13975:74;;14058:93;14147:3;14058:93;:::i;:::-;14176:2;14171:3;14167:12;14160:19;;13819:366;;;:::o;14191:::-;14333:3;14354:67;14418:2;14413:3;14354:67;:::i;:::-;14347:74;;14430:93;14519:3;14430:93;:::i;:::-;14548:2;14543:3;14539:12;14532:19;;14191:366;;;:::o;14563:::-;14705:3;14726:67;14790:2;14785:3;14726:67;:::i;:::-;14719:74;;14802:93;14891:3;14802:93;:::i;:::-;14920:2;14915:3;14911:12;14904:19;;14563:366;;;:::o;14935:::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:::-;15449:3;15470:67;15534:2;15529:3;15470:67;:::i;:::-;15463:74;;15546:93;15635:3;15546:93;:::i;:::-;15664:2;15659:3;15655:12;15648:19;;15307:366;;;:::o;15679:::-;15821:3;15842:67;15906:2;15901:3;15842:67;:::i;:::-;15835:74;;15918:93;16007:3;15918:93;:::i;:::-;16036:2;16031:3;16027:12;16020:19;;15679:366;;;:::o;16051:::-;16193:3;16214:67;16278:2;16273:3;16214:67;:::i;:::-;16207:74;;16290:93;16379:3;16290:93;:::i;:::-;16408:2;16403:3;16399:12;16392:19;;16051:366;;;:::o;16423:::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:::-;16937:3;16958:67;17022:2;17017:3;16958:67;:::i;:::-;16951:74;;17034:93;17123:3;17034:93;:::i;:::-;17152:2;17147:3;17143:12;17136:19;;16795:366;;;:::o;17167:::-;17309:3;17330:67;17394:2;17389:3;17330:67;:::i;:::-;17323:74;;17406:93;17495:3;17406:93;:::i;:::-;17524:2;17519:3;17515:12;17508:19;;17167:366;;;:::o;17539:::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:118::-;17998:24;18016:5;17998:24;:::i;:::-;17993:3;17986:37;17911:118;;:::o;18035:222::-;18128:4;18166:2;18155:9;18151:18;18143:26;;18179:71;18247:1;18236:9;18232:17;18223:6;18179:71;:::i;:::-;18035:222;;;;:::o;18263:640::-;18458:4;18496:3;18485:9;18481:19;18473:27;;18510:71;18578:1;18567:9;18563:17;18554:6;18510:71;:::i;:::-;18591:72;18659:2;18648:9;18644:18;18635:6;18591:72;:::i;:::-;18673;18741:2;18730:9;18726:18;18717:6;18673:72;:::i;:::-;18792:9;18786:4;18782:20;18777:2;18766:9;18762:18;18755:48;18820:76;18891:4;18882:6;18820:76;:::i;:::-;18812:84;;18263:640;;;;;;;:::o;18909:210::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19047:65;19109:1;19098:9;19094:17;19085:6;19047:65;:::i;:::-;18909:210;;;;:::o;19125:313::-;19238:4;19276:2;19265:9;19261:18;19253:26;;19325:9;19319:4;19315:20;19311:1;19300:9;19296:17;19289:47;19353:78;19426:4;19417:6;19353:78;:::i;:::-;19345:86;;19125:313;;;;:::o;19444:419::-;19610:4;19648:2;19637:9;19633:18;19625:26;;19697:9;19691:4;19687:20;19683:1;19672:9;19668:17;19661:47;19725:131;19851:4;19725:131;:::i;:::-;19717:139;;19444:419;;;:::o;19869:::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:::-;20460:4;20498:2;20487:9;20483:18;20475:26;;20547:9;20541:4;20537:20;20533:1;20522:9;20518:17;20511:47;20575:131;20701:4;20575:131;:::i;:::-;20567:139;;20294:419;;;:::o;20719:::-;20885:4;20923:2;20912:9;20908:18;20900:26;;20972:9;20966:4;20962:20;20958:1;20947:9;20943:17;20936:47;21000:131;21126:4;21000:131;:::i;:::-;20992:139;;20719:419;;;:::o;21144:::-;21310:4;21348:2;21337:9;21333:18;21325:26;;21397:9;21391:4;21387:20;21383:1;21372:9;21368:17;21361:47;21425:131;21551:4;21425:131;:::i;:::-;21417:139;;21144:419;;;:::o;21569:::-;21735:4;21773:2;21762:9;21758:18;21750:26;;21822:9;21816:4;21812:20;21808:1;21797:9;21793:17;21786:47;21850:131;21976:4;21850:131;:::i;:::-;21842:139;;21569:419;;;:::o;21994:::-;22160:4;22198:2;22187:9;22183:18;22175:26;;22247:9;22241:4;22237:20;22233:1;22222:9;22218:17;22211:47;22275:131;22401:4;22275:131;:::i;:::-;22267:139;;21994:419;;;:::o;22419:::-;22585:4;22623:2;22612:9;22608:18;22600:26;;22672:9;22666:4;22662:20;22658:1;22647:9;22643:17;22636:47;22700:131;22826:4;22700:131;:::i;:::-;22692:139;;22419:419;;;:::o;22844:::-;23010:4;23048:2;23037:9;23033:18;23025:26;;23097:9;23091:4;23087:20;23083:1;23072:9;23068:17;23061:47;23125:131;23251:4;23125:131;:::i;:::-;23117:139;;22844:419;;;:::o;23269:::-;23435:4;23473:2;23462:9;23458:18;23450:26;;23522:9;23516:4;23512:20;23508:1;23497:9;23493:17;23486:47;23550:131;23676:4;23550:131;:::i;:::-;23542:139;;23269:419;;;:::o;23694:::-;23860:4;23898:2;23887:9;23883:18;23875:26;;23947:9;23941:4;23937:20;23933:1;23922:9;23918:17;23911:47;23975:131;24101:4;23975:131;:::i;:::-;23967:139;;23694:419;;;:::o;24119:::-;24285:4;24323:2;24312:9;24308:18;24300:26;;24372:9;24366:4;24362:20;24358:1;24347:9;24343:17;24336:47;24400:131;24526:4;24400:131;:::i;:::-;24392:139;;24119:419;;;:::o;24544:::-;24710:4;24748:2;24737:9;24733:18;24725:26;;24797:9;24791:4;24787:20;24783:1;24772:9;24768:17;24761:47;24825:131;24951:4;24825:131;:::i;:::-;24817:139;;24544:419;;;:::o;24969:::-;25135:4;25173:2;25162:9;25158:18;25150:26;;25222:9;25216:4;25212:20;25208:1;25197:9;25193:17;25186:47;25250:131;25376:4;25250:131;:::i;:::-;25242:139;;24969:419;;;:::o;25394:::-;25560:4;25598:2;25587:9;25583:18;25575:26;;25647:9;25641:4;25637:20;25633:1;25622:9;25618:17;25611:47;25675:131;25801:4;25675:131;:::i;:::-;25667:139;;25394:419;;;:::o;25819:::-;25985:4;26023:2;26012:9;26008:18;26000:26;;26072:9;26066:4;26062:20;26058:1;26047:9;26043:17;26036:47;26100:131;26226:4;26100:131;:::i;:::-;26092:139;;25819:419;;;:::o;26244:::-;26410:4;26448:2;26437:9;26433:18;26425:26;;26497:9;26491:4;26487:20;26483:1;26472:9;26468:17;26461:47;26525:131;26651:4;26525:131;:::i;:::-;26517:139;;26244:419;;;:::o;26669:::-;26835:4;26873:2;26862:9;26858:18;26850:26;;26922:9;26916:4;26912:20;26908:1;26897:9;26893:17;26886:47;26950:131;27076:4;26950:131;:::i;:::-;26942:139;;26669:419;;;:::o;27094:::-;27260:4;27298:2;27287:9;27283:18;27275:26;;27347:9;27341:4;27337:20;27333:1;27322:9;27318:17;27311:47;27375:131;27501:4;27375:131;:::i;:::-;27367:139;;27094:419;;;:::o;27519:::-;27685:4;27723:2;27712:9;27708:18;27700:26;;27772:9;27766:4;27762:20;27758:1;27747:9;27743:17;27736:47;27800:131;27926:4;27800:131;:::i;:::-;27792:139;;27519:419;;;:::o;27944:::-;28110:4;28148:2;28137:9;28133:18;28125:26;;28197:9;28191:4;28187:20;28183:1;28172:9;28168:17;28161:47;28225:131;28351:4;28225:131;:::i;:::-;28217:139;;27944:419;;;:::o;28369:::-;28535:4;28573:2;28562:9;28558:18;28550:26;;28622:9;28616:4;28612:20;28608:1;28597:9;28593:17;28586:47;28650:131;28776:4;28650:131;:::i;:::-;28642:139;;28369:419;;;:::o;28794:222::-;28887:4;28925:2;28914:9;28910:18;28902:26;;28938:71;29006:1;28995:9;28991:17;28982:6;28938:71;:::i;:::-;28794:222;;;;:::o;29022:129::-;29056:6;29083:20;;:::i;:::-;29073:30;;29112:33;29140:4;29132:6;29112:33;:::i;:::-;29022:129;;;:::o;29157:75::-;29190:6;29223:2;29217:9;29207:19;;29157:75;:::o;29238:307::-;29299:4;29389:18;29381:6;29378:30;29375:56;;;29411:18;;:::i;:::-;29375:56;29449:29;29471:6;29449:29;:::i;:::-;29441:37;;29533:4;29527;29523:15;29515:23;;29238:307;;;:::o;29551:308::-;29613:4;29703:18;29695:6;29692:30;29689:56;;;29725:18;;:::i;:::-;29689:56;29763:29;29785:6;29763:29;:::i;:::-;29755:37;;29847:4;29841;29837:15;29829:23;;29551:308;;;:::o;29865:98::-;29916:6;29950:5;29944:12;29934:22;;29865:98;;;:::o;29969:99::-;30021:6;30055:5;30049:12;30039:22;;29969:99;;;:::o;30074:168::-;30157:11;30191:6;30186:3;30179:19;30231:4;30226:3;30222:14;30207:29;;30074:168;;;;:::o;30248:169::-;30332:11;30366:6;30361:3;30354:19;30406:4;30401:3;30397:14;30382:29;;30248:169;;;;:::o;30423:305::-;30463:3;30482:20;30500:1;30482:20;:::i;:::-;30477:25;;30516:20;30534:1;30516:20;:::i;:::-;30511:25;;30670:1;30602:66;30598:74;30595:1;30592:81;30589:107;;;30676:18;;:::i;:::-;30589:107;30720:1;30717;30713:9;30706:16;;30423:305;;;;:::o;30734:191::-;30774:4;30794:20;30812:1;30794:20;:::i;:::-;30789:25;;30828:20;30846:1;30828:20;:::i;:::-;30823:25;;30867:1;30864;30861:8;30858:34;;;30872:18;;:::i;:::-;30858:34;30917:1;30914;30910:9;30902:17;;30734:191;;;;:::o;30931:96::-;30968:7;30997:24;31015:5;30997:24;:::i;:::-;30986:35;;30931:96;;;:::o;31033:90::-;31067:7;31110:5;31103:13;31096:21;31085:32;;31033:90;;;:::o;31129:149::-;31165:7;31205:66;31198:5;31194:78;31183:89;;31129:149;;;:::o;31284:126::-;31321:7;31361:42;31354:5;31350:54;31339:65;;31284:126;;;:::o;31416:77::-;31453:7;31482:5;31471:16;;31416:77;;;:::o;31499:154::-;31583:6;31578:3;31573;31560:30;31645:1;31636:6;31631:3;31627:16;31620:27;31499:154;;;:::o;31659:307::-;31727:1;31737:113;31751:6;31748:1;31745:13;31737:113;;;31836:1;31831:3;31827:11;31821:18;31817:1;31812:3;31808:11;31801:39;31773:2;31770:1;31766:10;31761:15;;31737:113;;;31868:6;31865:1;31862:13;31859:101;;;31948:1;31939:6;31934:3;31930:16;31923:27;31859:101;31708:258;31659:307;;;:::o;31972:320::-;32016:6;32053:1;32047:4;32043:12;32033:22;;32100:1;32094:4;32090:12;32121:18;32111:81;;32177:4;32169:6;32165:17;32155:27;;32111:81;32239:2;32231:6;32228:14;32208:18;32205:38;32202:84;;;32258:18;;:::i;:::-;32202:84;32023:269;31972:320;;;:::o;32298:281::-;32381:27;32403:4;32381:27;:::i;:::-;32373:6;32369:40;32511:6;32499:10;32496:22;32475:18;32463:10;32460:34;32457:62;32454:88;;;32522:18;;:::i;:::-;32454:88;32562:10;32558:2;32551:22;32341:238;32298:281;;:::o;32585:180::-;32633:77;32630:1;32623:88;32730:4;32727:1;32720:15;32754:4;32751:1;32744:15;32771:180;32819:77;32816:1;32809:88;32916:4;32913:1;32906:15;32940:4;32937:1;32930:15;32957:180;33005:77;33002:1;32995:88;33102:4;33099:1;33092:15;33126:4;33123:1;33116:15;33143:180;33191:77;33188:1;33181:88;33288:4;33285:1;33278:15;33312:4;33309:1;33302:15;33329:180;33377:77;33374:1;33367:88;33474:4;33471:1;33464:15;33498:4;33495:1;33488:15;33515:117;33624:1;33621;33614:12;33638:117;33747:1;33744;33737:12;33761:117;33870:1;33867;33860:12;33884:117;33993:1;33990;33983:12;34007:102;34048:6;34099:2;34095:7;34090:2;34083:5;34079:14;34075:28;34065:38;;34007:102;;;:::o;34115:232::-;34255:34;34251:1;34243:6;34239:14;34232:58;34324:15;34319:2;34311:6;34307:15;34300:40;34115:232;:::o;34353:230::-;34493:34;34489:1;34481:6;34477:14;34470:58;34562:13;34557:2;34549:6;34545:15;34538:38;34353:230;:::o;34589:237::-;34729:34;34725:1;34717:6;34713:14;34706:58;34798:20;34793:2;34785:6;34781:15;34774:45;34589:237;:::o;34832:224::-;34972:34;34968:1;34960:6;34956:14;34949:58;35041:7;35036:2;35028:6;35024:15;35017:32;34832:224;:::o;35062:178::-;35202:30;35198:1;35190:6;35186:14;35179:54;35062:178;:::o;35246:237::-;35386:34;35382:1;35374:6;35370:14;35363:58;35455:20;35450:2;35442:6;35438:15;35431:45;35246:237;:::o;35489:223::-;35629:34;35625:1;35617:6;35613:14;35606:58;35698:6;35693:2;35685:6;35681:15;35674:31;35489:223;:::o;35718:175::-;35858:27;35854:1;35846:6;35842:14;35835:51;35718:175;:::o;35899:239::-;36039:34;36035:1;36027:6;36023:14;36016:58;36108:22;36103:2;36095:6;36091:15;36084:47;35899:239;:::o;36144:228::-;36284:34;36280:1;36272:6;36268:14;36261:58;36353:11;36348:2;36340:6;36336:15;36329:36;36144:228;:::o;36378:182::-;36518:34;36514:1;36506:6;36502:14;36495:58;36378:182;:::o;36566:231::-;36706:34;36702:1;36694:6;36690:14;36683:58;36775:14;36770:2;36762:6;36758:15;36751:39;36566:231;:::o;36803:240::-;36943:34;36939:1;36931:6;36927:14;36920:58;37012:23;37007:2;36999:6;36995:15;36988:48;36803:240;:::o;37049:174::-;37189:26;37185:1;37177:6;37173:14;37166:50;37049:174;:::o;37229:220::-;37369:34;37365:1;37357:6;37353:14;37346:58;37438:3;37433:2;37425:6;37421:15;37414:28;37229:220;:::o;37455:240::-;37595:34;37591:1;37583:6;37579:14;37572:58;37664:23;37659:2;37651:6;37647:15;37640:48;37455:240;:::o;37701:248::-;37841:34;37837:1;37829:6;37825:14;37818:58;37910:31;37905:2;37897:6;37893:15;37886:56;37701:248;:::o;37955:242::-;38095:34;38091:1;38083:6;38079:14;38072:58;38164:25;38159:2;38151:6;38147:15;38140:50;37955:242;:::o;38203:231::-;38343:34;38339:1;38331:6;38327:14;38320:58;38412:14;38407:2;38399:6;38395:15;38388:39;38203:231;:::o;38440:236::-;38580:34;38576:1;38568:6;38564:14;38557:58;38649:19;38644:2;38636:6;38632:15;38625:44;38440:236;:::o;38682:239::-;38822:34;38818:1;38810:6;38806:14;38799:58;38891:22;38886:2;38878:6;38874:15;38867:47;38682:239;:::o;38927:237::-;39067:34;39063:1;39055:6;39051:14;39044:58;39136:20;39131:2;39123:6;39119:15;39112:45;38927:237;:::o;39170:122::-;39243:24;39261:5;39243:24;:::i;:::-;39236:5;39233:35;39223:63;;39282:1;39279;39272:12;39223:63;39170:122;:::o;39298:116::-;39368:21;39383:5;39368:21;:::i;:::-;39361:5;39358:32;39348:60;;39404:1;39401;39394:12;39348:60;39298:116;:::o;39420:120::-;39492:23;39509:5;39492:23;:::i;:::-;39485:5;39482:34;39472:62;;39530:1;39527;39520:12;39472:62;39420:120;:::o;39546:122::-;39619:24;39637:5;39619:24;:::i;:::-;39612:5;39609:35;39599:63;;39658:1;39655;39648:12;39599:63;39546:122;:::o

Swarm Source

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