ETH Price: $3,099.15 (+0.87%)
Gas: 4 Gwei

Token

The Sentient Machine (TSM)
 

Overview

Max Total Supply

512 TSM

Holders

228

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 TSM
0x26bdde6506bd32bd7b5cc5c73cd252807ff18568
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A machine rises from its transistors into sentience. Together with generative human-artists, it explores the endless potential of human-machine creativity. The sentient machine is both human & machine: it lives of bits and pixels and is powered by its community, which guides its decisions, and helps it bend realities while leaving a positive impact.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheSentientMachine

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




pragma solidity >=0.7.0 <0.9.0;


contract TheSentientMachine is ERC721Enumerable {
  event Mint(
    address indexed _to,
    uint256 indexed _tokenId,
    uint256 indexed _collectionId,
    uint256 _invocations,
    uint256 _value
  );

  struct Collection {
    string name;
    uint256 tokenPriceInWei;
    uint256 invocations;
    uint256 maxInvocations;
    string script;
    uint256 hash;
    bool paused;
    bool locked;
  }

  address public admin;
  uint256 public nextCollectionId;
  uint256 public nextTokenId = 1;

  mapping(uint256 => string) private collectionIdToBaseURI;
  mapping(uint256 => Collection) collections;
  mapping(uint256 => uint256) public tokenIdToCollectionId;
  mapping(uint256 => uint256[]) public collectionIdToTokenIds;
  mapping(uint256 => bytes32[]) public tokenIdToHashes;
  mapping(bytes32 => uint256) internal hashToTokenId;

  constructor(string memory _tokenName, string memory _tokenSymbol)
    ERC721(_tokenName, _tokenSymbol)
  {
    admin = msg.sender;
  }

  modifier onlyValidTokenId(uint256 _tokenId) {
    require(_exists(_tokenId), 'Token ID does not exist');
    _;
  }

  modifier onlyUnlocked(uint256 _collectionId) {
    require(!collections[_collectionId].locked, 'Only unlocked collections');
    _;
  }

  modifier onlyAdmin() {
    require(msg.sender == admin, 'Only admin');
    _;
  }

  function purchase(uint256 _collectionId) public payable returns (uint256 _tokenId) {
    return purchaseTo(msg.sender, _collectionId);
  }

  function purchaseTo(address _to, uint256 _collectionId)
    public
    payable
    returns (uint256 _tokenId)
  {
    require(
      msg.value >= collections[_collectionId].tokenPriceInWei,
      'Must send at least current price for token'
    );
    require(
      collections[_collectionId].invocations + 1 <= collections[_collectionId].maxInvocations,
      'Must not exceed maximum invocations'
    );
    require(
      !collections[_collectionId].paused || msg.sender == admin,
      'Purchases must not be paused'
    );
    uint256 tokenId = _mintToken(_to, _collectionId);
    _splitFunds(_collectionId);
    return tokenId;
  }

  function _mintToken(address _to, uint256 _collectionId) internal returns (uint256 _tokenId) {
    uint256 tokenIdToBe = nextTokenId;
    nextTokenId += 1;
    collections[_collectionId].invocations = collections[_collectionId].invocations + 1;
    bytes32 newHash = keccak256(
      abi.encodePacked(collections[_collectionId].invocations, block.number, msg.sender)
    );
    tokenIdToHashes[tokenIdToBe].push(newHash);
    hashToTokenId[newHash] = tokenIdToBe;
    _mint(_to, tokenIdToBe);
    tokenIdToCollectionId[tokenIdToBe] = _collectionId;
    collectionIdToTokenIds[_collectionId].push(tokenIdToBe);
    emit Mint(
      _to,
      tokenIdToBe,
      _collectionId,
      collections[_collectionId].invocations,
      collections[_collectionId].tokenPriceInWei
    );
    return tokenIdToBe;
  }

  function _splitFunds(uint256 _collectionId) internal {
    if (msg.value > 0) {
      uint256 tokenPriceInWei = collections[_collectionId].tokenPriceInWei;
      uint256 refund = msg.value - tokenPriceInWei;
      if (refund > 0) {
        payable(msg.sender).transfer(refund);
      }
      payable(admin).transfer(tokenPriceInWei);
    }
  }

  function lockCollection(uint256 _collectionId) public onlyAdmin onlyUnlocked(_collectionId) {
    collections[_collectionId].locked = true;
  }

  function pauseCollection(uint256 _collectionId) public onlyAdmin {
    collections[_collectionId].paused = !collections[_collectionId].paused;
  }

  function addCollection(
    string memory _name,
    uint256 _tokenPriceInWei,
    uint256 _maxInvocations
  ) public onlyAdmin {
    uint256 collectionId = nextCollectionId;
    collections[collectionId].name = _name;
    collections[collectionId].tokenPriceInWei = _tokenPriceInWei;
    collections[collectionId].maxInvocations = _maxInvocations;
    collections[collectionId].paused = true;
    nextCollectionId = nextCollectionId + 1;
  }

  function addCollectionScript(uint256 _collectionId, string memory _script)
    public
    onlyUnlocked(_collectionId)
    onlyAdmin
  {
    collections[_collectionId].script = _script;
  }

  function addBaseURI(string memory _newBaseURI, uint256 _collectionId)
    public
    onlyUnlocked(_collectionId)
    onlyAdmin
  {
    collectionIdToBaseURI[_collectionId] = _newBaseURI;
  }

  function viewCollectionDetails(uint256 _collectionId)
    public
    view
    returns (
      string memory name,
      uint256 tokenPriceInWei,
      uint256 invocations,
      uint256 maxInvocations,
      bool paused,
      bool locked
    )
  {
    name = collections[_collectionId].name;
    tokenPriceInWei = collections[_collectionId].tokenPriceInWei;
    maxInvocations = collections[_collectionId].maxInvocations;
    invocations = collections[_collectionId].invocations;
    paused = collections[_collectionId].paused;
    locked = collections[_collectionId].locked;
  }

  function viewCollectionScript(uint256 _collectionId) public view returns (string memory) {
    return collections[_collectionId].script;
  }

  function viewAllCollectionTokens(uint256 _collectionId)
    public
    view
    returns (uint256[] memory)
  {
    return collectionIdToTokenIds[_collectionId];
  }

  

  function contractURI() public pure returns (string memory) {
    return
      string(
        'https://sentientmachine.mypinata.cloud/ipfs/QmY7QHeRyZbiPEKcc1vE4kmsKkg8cFcvRDrUUyq4XNGEyR'
      );
  }

  
  function tokenURI(uint256 _tokenId)
    public
    view
    override
    onlyValidTokenId(_tokenId)
    returns (string memory)
  {
    return
      string(
        abi.encodePacked(
          collectionIdToBaseURI[tokenIdToCollectionId[_tokenId]],
          '/nfts/',
          Strings.toString(_tokenId)
        )
      );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","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":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_invocations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Mint","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":"string","name":"_newBaseURI","type":"string"},{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"addBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_tokenPriceInWei","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"}],"name":"addCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"addCollectionScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionIdToTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextCollectionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"pauseCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"purchase","outputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"purchaseTo","outputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToCollectionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToHashes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"viewAllCollectionTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"viewCollectionDetails","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"tokenPriceInWei","type":"uint256"},{"internalType":"uint256","name":"invocations","type":"uint256"},{"internalType":"uint256","name":"maxInvocations","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"bool","name":"locked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"viewCollectionScript","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526001600c553480156200001657600080fd5b5060405162002b1f38038062002b1f8339810160408190526200003991620001d7565b8151829082906200005290600090602085019062000086565b5080516200006890600190602084019062000086565b5050600a80546001600160a01b031916331790555062000291915050565b82805462000094906200023e565b90600052602060002090601f016020900481019282620000b8576000855562000103565b82601f10620000d357805160ff191683800117855562000103565b8280016001018555821562000103579182015b8281111562000103578251825591602001919060010190620000e6565b506200011192915062000115565b5090565b5b8082111562000111576000815560010162000116565b600082601f8301126200013d578081fd5b81516001600160401b03808211156200015a576200015a6200027b565b6040516020601f8401601f19168201810183811183821017156200018257620001826200027b565b604052838252858401810187101562000199578485fd5b8492505b83831015620001bc57858301810151828401820152918201916200019d565b83831115620001cd57848185840101525b5095945050505050565b60008060408385031215620001ea578182fd5b82516001600160401b038082111562000201578384fd5b6200020f868387016200012c565b9350602085015191508082111562000225578283fd5b5062000234858286016200012c565b9150509250929050565b6002810460018216806200025357607f821691505b602082108114156200027557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61287e80620002a16000396000f3fe6080604052600436106101ee5760003560e01c806375c10ffa1161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610575578063efef39a114610595578063f851a440146105a8578063fc23d74f146105bd578063fdb88607146105dd576101ee565b8063c87b56dd146104f9578063de93a82514610519578063e77d6f7c1461054b578063e8a3d48514610560576101ee565b806394244890116100dc578063942448901461048457806395d89b41146104a4578063a22cb465146104b9578063b88d4fde146104d9576101ee565b806375c10ffa146104115780637e7e8bd6146104315780637f4258e714610451578063891407c014610471576101ee565b806342842e0e116101855780636352211e116101545780636352211e1461039c57806370a08231146103bc578063734edac9146103dc57806375794a3c146103fc576101ee565b806342842e0e1461031c578063468e50e91461033c5780634d1907931461035c5780634f6ccce71461037c576101ee565b8063095ea7b3116101c1578063095ea7b3146102a557806318160ddd146102c757806323b872dd146102dc5780632f745c59146102fc576101ee565b806301ffc9a7146101f357806306fdde0314610229578063078a811d1461024b578063081812fc14610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611daf565b61060a565b60405161022091906120b9565b60405180910390f35b34801561023557600080fd5b5061023e610637565b60405161022091906120cd565b34801561025757600080fd5b5061026b610266366004611ed3565b6106c9565b60405161022091906120c4565b34801561028457600080fd5b50610298610293366004611e76565b6106fa565b6040516102209190612024565b3480156102b157600080fd5b506102c56102c0366004611d86565b610746565b005b3480156102d357600080fd5b5061026b6107de565b3480156102e857600080fd5b506102c56102f7366004611c98565b6107e4565b34801561030857600080fd5b5061026b610317366004611d86565b61081c565b34801561032857600080fd5b506102c5610337366004611c98565b61086e565b34801561034857600080fd5b506102c5610357366004611e2a565b610889565b34801561036857600080fd5b506102c5610377366004611e8e565b610917565b34801561038857600080fd5b5061026b610397366004611e76565b6109a5565b3480156103a857600080fd5b506102986103b7366004611e76565b610a00565b3480156103c857600080fd5b5061026b6103d7366004611c4c565b610a35565b3480156103e857600080fd5b506102c56103f7366004611e76565b610a79565b34801561040857600080fd5b5061026b610ac6565b34801561041d57600080fd5b5061026b61042c366004611e76565b610acc565b34801561043d57600080fd5b5061023e61044c366004611e76565b610ade565b34801561045d57600080fd5b506102c561046c366004611e76565b610b83565b61026b61047f366004611d86565b610c07565b34801561049057600080fd5b5061026b61049f366004611ed3565b610cdf565b3480156104b057600080fd5b5061023e610cfb565b3480156104c557600080fd5b506102c56104d4366004611d4c565b610d0a565b3480156104e557600080fd5b506102c56104f4366004611cd3565b610dd8565b34801561050557600080fd5b5061023e610514366004611e76565b610e11565b34801561052557600080fd5b50610539610534366004611e76565b610e86565b604051610220969594939291906120e0565b34801561055757600080fd5b5061026b610f73565b34801561056c57600080fd5b5061023e610f79565b34801561058157600080fd5b50610213610590366004611c66565b610f99565b61026b6105a3366004611e76565b610fc7565b3480156105b457600080fd5b50610298610fd3565b3480156105c957600080fd5b506102c56105d8366004611de7565b610fe2565b3480156105e957600080fd5b506105fd6105f8366004611e76565b611064565b6040516102209190612075565b60006001600160e01b0319821663780e9d6360e01b148061062f575061062f826110c5565b90505b919050565b60606000805461064690612732565b80601f016020809104026020016040519081016040528092919081815260200182805461067290612732565b80156106bf5780601f10610694576101008083540402835291602001916106bf565b820191906000526020600020905b8154815290600101906020018083116106a257829003601f168201915b5050505050905090565b601160205281600052604060002081815481106106e557600080fd5b90600052602060002001600091509150505481565b600061070582611105565b61072a5760405162461bcd60e51b815260040161072190612536565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075182610a00565b9050806001600160a01b0316836001600160a01b031614156107855760405162461bcd60e51b8152600401610721906125cb565b806001600160a01b0316610797611122565b6001600160a01b031614806107b357506107b381610590611122565b6107cf5760405162461bcd60e51b815260040161072190612411565b6107d98383611126565b505050565b60085490565b6107f56107ef611122565b82611194565b6108115760405162461bcd60e51b81526004016107219061260c565b6107d9838383611219565b600061082783610a35565b82106108455760405162461bcd60e51b815260040161072190612157565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d983838360405180602001604052806000815250610dd8565b600a546001600160a01b031633146108b35760405162461bcd60e51b8152600401610721906123a1565b600b546000818152600e6020908152604090912085516108d592870190611b0d565b506000818152600e602052604090206001808201859055600382018490556006909101805460ff191682179055600b5461090e916126c3565b600b5550505050565b6000828152600e60205260409020600601548290610100900460ff16156109505760405162461bcd60e51b81526004016107219061222b565b600a546001600160a01b0316331461097a5760405162461bcd60e51b8152600401610721906123a1565b6000838152600e60209081526040909120835161099f92600490920191850190611b0d565b50505050565b60006109af6107de565b82106109cd5760405162461bcd60e51b81526004016107219061265d565b600882815481106109ee57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b8152600401610721906124b8565b60006001600160a01b038216610a5d5760405162461bcd60e51b81526004016107219061246e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610aa35760405162461bcd60e51b8152600401610721906123a1565b6000908152600e60205260409020600601805460ff19811660ff90911615179055565b600c5481565b600f6020526000908152604090205481565b6000818152600e60205260409020600401805460609190610afe90612732565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612732565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314610bad5760405162461bcd60e51b8152600401610721906123a1565b6000818152600e60205260409020600601548190610100900460ff1615610be65760405162461bcd60e51b81526004016107219061222b565b506000908152600e60205260409020600601805461ff001916610100179055565b6000818152600e6020526040812060010154341015610c385760405162461bcd60e51b815260040161072190612262565b6000828152600e602052604090206003810154600290910154610c5c9060016126c3565b1115610c7a5760405162461bcd60e51b8152600401610721906122ac565b6000828152600e602052604090206006015460ff161580610ca55750600a546001600160a01b031633145b610cc15760405162461bcd60e51b815260040161072190612120565b6000610ccd8484611346565b9050610cd883611488565b9392505050565b601060205281600052604060002081815481106106e557600080fd5b60606001805461064690612732565b610d12611122565b6001600160a01b0316826001600160a01b03161415610d435760405162461bcd60e51b815260040161072190612333565b8060056000610d50611122565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d94611122565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dcc91906120b9565b60405180910390a35050565b610de9610de3611122565b83611194565b610e055760405162461bcd60e51b81526004016107219061260c565b61099f8484848461151f565b606081610e1d81611105565b610e395760405162461bcd60e51b81526004016107219061236a565b6000838152600f60209081526040808320548352600d9091529020610e5d84611552565b604051602001610e6e929190611f4e565b60405160208183030381529060405291505b50919050565b60606000806000806000600e60008881526020019081526020016000206000018054610eb190612732565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90612732565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050506000998a525050600e6020526040909720600181015460038201546002830154600690930154999a9199929850965060ff80831696506101009092049091169350915050565b600b5481565b60606040518060800160405280605a81526020016127ef605a9139905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061062f3383610c07565b600a546001600160a01b031681565b6000818152600e60205260409020600601548190610100900460ff161561101b5760405162461bcd60e51b81526004016107219061222b565b600a546001600160a01b031633146110455760405162461bcd60e51b8152600401610721906123a1565b6000828152600d60209081526040909120845161099f92860190611b0d565b600081815260106020908152604091829020805483518184028101840190945280845260609392830182828015610b7757602002820191906000526020600020905b8154815260200190600101908083116110a65750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b14806110f657506001600160e01b03198216635b5e139f60e01b145b8061062f575061062f8261166d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115b82610a00565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061119f82611105565b6111bb5760405162461bcd60e51b8152600401610721906123c5565b60006111c683610a00565b9050806001600160a01b0316846001600160a01b031614806112015750836001600160a01b03166111f6846106fa565b6001600160a01b0316145b8061121157506112118185610f99565b949350505050565b826001600160a01b031661122c82610a00565b6001600160a01b0316146112525760405162461bcd60e51b815260040161072190612582565b6001600160a01b0382166112785760405162461bcd60e51b8152600401610721906122ef565b611283838383611686565b61128e600082611126565b6001600160a01b03831660009081526003602052604081208054600192906112b79084906126ef565b90915550506001600160a01b03821660009081526003602052604081208054600192906112e59084906126c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546000916001908361135b83856126c3565b90915550506000838152600e602052604090206002015461137d9060016126c3565b6000848152600e602090815260408083206002018490555191926113a79290914391339101611ffc565b60408051601f1981840301815291815281516020928301206000858152601184528281208054600181018255908252848220018290558181526012909352912083905590506113f6858361170f565b6000828152600f602090815260408083208790558683526010825280832080546001818101835591855283852001869055878452600e9092529182902060028101549101549151869285926001600160a01b038a16927f94c792774c59479f7bd68442f3af3691c02123a5aabee8b6f9116d8af8aa66699261147892916126a9565b60405180910390a4509392505050565b341561151c576000818152600e6020526040812060010154906114ab82346126ef565b905080156114e257604051339082156108fc029083906000818181858888f193505050501580156114e0573d6000803e3d6000fd5b505b600a546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561099f573d6000803e3d6000fd5b50565b61152a848484611219565b611536848484846117ee565b61099f5760405162461bcd60e51b8152600401610721906121a2565b60608161157757506040805180820190915260018152600360fc1b6020820152610632565b8160005b81156115a1578061158b81612767565b915061159a9050600a836126db565b915061157b565b60008167ffffffffffffffff8111156115ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b8415611211576116096001836126ef565b9150611616600a86612782565b6116219060306126c3565b60f81b81838151811061164457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611666600a866126db565b94506115f8565b6001600160e01b031981166301ffc9a760e01b14919050565b6116918383836107d9565b6001600160a01b0383166116ad576116a881611909565b6116d0565b816001600160a01b0316836001600160a01b0316146116d0576116d0838261194d565b6001600160a01b0382166116ec576116e7816119ea565b6107d9565b826001600160a01b0316826001600160a01b0316146107d9576107d98282611ac3565b6001600160a01b0382166117355760405162461bcd60e51b815260040161072190612501565b61173e81611105565b1561175b5760405162461bcd60e51b8152600401610721906121f4565b61176760008383611686565b6001600160a01b03821660009081526003602052604081208054600192906117909084906126c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611802846001600160a01b0316611b07565b156118fe57836001600160a01b031663150b7a0261181e611122565b8786866040518563ffffffff1660e01b81526004016118409493929190612038565b602060405180830381600087803b15801561185a57600080fd5b505af192505050801561188a575060408051601f3d908101601f1916820190925261188791810190611dcb565b60015b6118e4573d8080156118b8576040519150601f19603f3d011682016040523d82523d6000602084013e6118bd565b606091505b5080516118dc5760405162461bcd60e51b8152600401610721906121a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611211565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161195a84610a35565b61196491906126ef565b6000838152600760205260409020549091508082146119b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119fc906001906126ef565b60008381526009602052604081205460088054939450909284908110611a3257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611aa757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ace83610a35565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611b1990612732565b90600052602060002090601f016020900481019282611b3b5760008555611b81565b82601f10611b5457805160ff1916838001178555611b81565b82800160010185558215611b81579182015b82811115611b81578251825591602001919060010190611b66565b50611b8d929150611b91565b5090565b5b80821115611b8d5760008155600101611b92565b600067ffffffffffffffff80841115611bc157611bc16127c2565b604051601f8501601f191681016020018281118282101715611be557611be56127c2565b604052848152915081838501861015611bfd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063257600080fd5b600082601f830112611c3d578081fd5b610cd883833560208501611ba6565b600060208284031215611c5d578081fd5b610cd882611c16565b60008060408385031215611c78578081fd5b611c8183611c16565b9150611c8f60208401611c16565b90509250929050565b600080600060608486031215611cac578081fd5b611cb584611c16565b9250611cc360208501611c16565b9150604084013590509250925092565b60008060008060808587031215611ce8578081fd5b611cf185611c16565b9350611cff60208601611c16565b925060408501359150606085013567ffffffffffffffff811115611d21578182fd5b8501601f81018713611d31578182fd5b611d4087823560208401611ba6565b91505092959194509250565b60008060408385031215611d5e578182fd5b611d6783611c16565b915060208301358015158114611d7b578182fd5b809150509250929050565b60008060408385031215611d98578182fd5b611da183611c16565b946020939093013593505050565b600060208284031215611dc0578081fd5b8135610cd8816127d8565b600060208284031215611ddc578081fd5b8151610cd8816127d8565b60008060408385031215611df9578182fd5b823567ffffffffffffffff811115611e0f578283fd5b611e1b85828601611c2d565b95602094909401359450505050565b600080600060608486031215611e3e578283fd5b833567ffffffffffffffff811115611e54578384fd5b611e6086828701611c2d565b9660208601359650604090950135949350505050565b600060208284031215611e87578081fd5b5035919050565b60008060408385031215611ea0578182fd5b82359150602083013567ffffffffffffffff811115611ebd578182fd5b611ec985828601611c2d565b9150509250929050565b60008060408385031215611ee5578182fd5b50508035926020909101359150565b60008151808452611f0c816020860160208601612706565b601f01601f19169290920160200192915050565b60008151611f32818560208601612706565b9290920192915050565b652f6e6674732f60d01b815260060190565b8254600090819060028104600180831680611f6a57607f831692505b6020808410821415611f8a57634e487b7160e01b87526022600452602487fd5b818015611f9e5760018114611faf57611fdb565b60ff19861689528489019650611fdb565b611fb88b6126b7565b885b86811015611fd35781548b820152908501908301611fba565b505084890196505b505050505050611ff3611fed82611f3c565b85611f20565b95945050505050565b928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611ef4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120ad57835183529284019291840191600101612091565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252610cd86020830184611ef4565b600060c082526120f360c0830189611ef4565b6020830197909752506040810194909452606084019290925215156080830152151560a090910152919050565b6020808252601c908201527f507572636861736573206d757374206e6f742062652070617573656400000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f4f6e6c7920756e6c6f636b656420636f6c6c656374696f6e7300000000000000604082015260600190565b6020808252602a908201527f4d7573742073656e64206174206c656173742063757272656e74207072696365604082015269103337b9103a37b5b2b760b11b606082015260800190565b60208082526023908201527f4d757374206e6f7420657863656564206d6178696d756d20696e766f636174696040820152626f6e7360e81b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526017908201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604082015260600190565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b918252602082015260400190565b60009081526020902090565b600082198211156126d6576126d6612796565b500190565b6000826126ea576126ea6127ac565b500490565b60008282101561270157612701612796565b500390565b60005b83811015612721578181015183820152602001612709565b8381111561099f5750506000910152565b60028104600182168061274657607f821691505b60208210811415610e8057634e487b7160e01b600052602260045260246000fd5b600060001982141561277b5761277b612796565b5060010190565b600082612791576127916127ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461151c57600080fdfe68747470733a2f2f73656e7469656e746d616368696e652e6d7970696e6174612e636c6f75642f697066732f516d593751486552795a626950454b6363317645346b6d734b6b6738634663765244725555797134584e47457952a264697066735822122074863923b688eeb0a1dc569ad4b966d500f2e15e9c039a4d5eab48b5529e7c9e64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000145468652053656e7469656e74204d616368696e65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534d0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806375c10ffa1161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610575578063efef39a114610595578063f851a440146105a8578063fc23d74f146105bd578063fdb88607146105dd576101ee565b8063c87b56dd146104f9578063de93a82514610519578063e77d6f7c1461054b578063e8a3d48514610560576101ee565b806394244890116100dc578063942448901461048457806395d89b41146104a4578063a22cb465146104b9578063b88d4fde146104d9576101ee565b806375c10ffa146104115780637e7e8bd6146104315780637f4258e714610451578063891407c014610471576101ee565b806342842e0e116101855780636352211e116101545780636352211e1461039c57806370a08231146103bc578063734edac9146103dc57806375794a3c146103fc576101ee565b806342842e0e1461031c578063468e50e91461033c5780634d1907931461035c5780634f6ccce71461037c576101ee565b8063095ea7b3116101c1578063095ea7b3146102a557806318160ddd146102c757806323b872dd146102dc5780632f745c59146102fc576101ee565b806301ffc9a7146101f357806306fdde0314610229578063078a811d1461024b578063081812fc14610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611daf565b61060a565b60405161022091906120b9565b60405180910390f35b34801561023557600080fd5b5061023e610637565b60405161022091906120cd565b34801561025757600080fd5b5061026b610266366004611ed3565b6106c9565b60405161022091906120c4565b34801561028457600080fd5b50610298610293366004611e76565b6106fa565b6040516102209190612024565b3480156102b157600080fd5b506102c56102c0366004611d86565b610746565b005b3480156102d357600080fd5b5061026b6107de565b3480156102e857600080fd5b506102c56102f7366004611c98565b6107e4565b34801561030857600080fd5b5061026b610317366004611d86565b61081c565b34801561032857600080fd5b506102c5610337366004611c98565b61086e565b34801561034857600080fd5b506102c5610357366004611e2a565b610889565b34801561036857600080fd5b506102c5610377366004611e8e565b610917565b34801561038857600080fd5b5061026b610397366004611e76565b6109a5565b3480156103a857600080fd5b506102986103b7366004611e76565b610a00565b3480156103c857600080fd5b5061026b6103d7366004611c4c565b610a35565b3480156103e857600080fd5b506102c56103f7366004611e76565b610a79565b34801561040857600080fd5b5061026b610ac6565b34801561041d57600080fd5b5061026b61042c366004611e76565b610acc565b34801561043d57600080fd5b5061023e61044c366004611e76565b610ade565b34801561045d57600080fd5b506102c561046c366004611e76565b610b83565b61026b61047f366004611d86565b610c07565b34801561049057600080fd5b5061026b61049f366004611ed3565b610cdf565b3480156104b057600080fd5b5061023e610cfb565b3480156104c557600080fd5b506102c56104d4366004611d4c565b610d0a565b3480156104e557600080fd5b506102c56104f4366004611cd3565b610dd8565b34801561050557600080fd5b5061023e610514366004611e76565b610e11565b34801561052557600080fd5b50610539610534366004611e76565b610e86565b604051610220969594939291906120e0565b34801561055757600080fd5b5061026b610f73565b34801561056c57600080fd5b5061023e610f79565b34801561058157600080fd5b50610213610590366004611c66565b610f99565b61026b6105a3366004611e76565b610fc7565b3480156105b457600080fd5b50610298610fd3565b3480156105c957600080fd5b506102c56105d8366004611de7565b610fe2565b3480156105e957600080fd5b506105fd6105f8366004611e76565b611064565b6040516102209190612075565b60006001600160e01b0319821663780e9d6360e01b148061062f575061062f826110c5565b90505b919050565b60606000805461064690612732565b80601f016020809104026020016040519081016040528092919081815260200182805461067290612732565b80156106bf5780601f10610694576101008083540402835291602001916106bf565b820191906000526020600020905b8154815290600101906020018083116106a257829003601f168201915b5050505050905090565b601160205281600052604060002081815481106106e557600080fd5b90600052602060002001600091509150505481565b600061070582611105565b61072a5760405162461bcd60e51b815260040161072190612536565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075182610a00565b9050806001600160a01b0316836001600160a01b031614156107855760405162461bcd60e51b8152600401610721906125cb565b806001600160a01b0316610797611122565b6001600160a01b031614806107b357506107b381610590611122565b6107cf5760405162461bcd60e51b815260040161072190612411565b6107d98383611126565b505050565b60085490565b6107f56107ef611122565b82611194565b6108115760405162461bcd60e51b81526004016107219061260c565b6107d9838383611219565b600061082783610a35565b82106108455760405162461bcd60e51b815260040161072190612157565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d983838360405180602001604052806000815250610dd8565b600a546001600160a01b031633146108b35760405162461bcd60e51b8152600401610721906123a1565b600b546000818152600e6020908152604090912085516108d592870190611b0d565b506000818152600e602052604090206001808201859055600382018490556006909101805460ff191682179055600b5461090e916126c3565b600b5550505050565b6000828152600e60205260409020600601548290610100900460ff16156109505760405162461bcd60e51b81526004016107219061222b565b600a546001600160a01b0316331461097a5760405162461bcd60e51b8152600401610721906123a1565b6000838152600e60209081526040909120835161099f92600490920191850190611b0d565b50505050565b60006109af6107de565b82106109cd5760405162461bcd60e51b81526004016107219061265d565b600882815481106109ee57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b8152600401610721906124b8565b60006001600160a01b038216610a5d5760405162461bcd60e51b81526004016107219061246e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610aa35760405162461bcd60e51b8152600401610721906123a1565b6000908152600e60205260409020600601805460ff19811660ff90911615179055565b600c5481565b600f6020526000908152604090205481565b6000818152600e60205260409020600401805460609190610afe90612732565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612732565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314610bad5760405162461bcd60e51b8152600401610721906123a1565b6000818152600e60205260409020600601548190610100900460ff1615610be65760405162461bcd60e51b81526004016107219061222b565b506000908152600e60205260409020600601805461ff001916610100179055565b6000818152600e6020526040812060010154341015610c385760405162461bcd60e51b815260040161072190612262565b6000828152600e602052604090206003810154600290910154610c5c9060016126c3565b1115610c7a5760405162461bcd60e51b8152600401610721906122ac565b6000828152600e602052604090206006015460ff161580610ca55750600a546001600160a01b031633145b610cc15760405162461bcd60e51b815260040161072190612120565b6000610ccd8484611346565b9050610cd883611488565b9392505050565b601060205281600052604060002081815481106106e557600080fd5b60606001805461064690612732565b610d12611122565b6001600160a01b0316826001600160a01b03161415610d435760405162461bcd60e51b815260040161072190612333565b8060056000610d50611122565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d94611122565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dcc91906120b9565b60405180910390a35050565b610de9610de3611122565b83611194565b610e055760405162461bcd60e51b81526004016107219061260c565b61099f8484848461151f565b606081610e1d81611105565b610e395760405162461bcd60e51b81526004016107219061236a565b6000838152600f60209081526040808320548352600d9091529020610e5d84611552565b604051602001610e6e929190611f4e565b60405160208183030381529060405291505b50919050565b60606000806000806000600e60008881526020019081526020016000206000018054610eb190612732565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90612732565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050506000998a525050600e6020526040909720600181015460038201546002830154600690930154999a9199929850965060ff80831696506101009092049091169350915050565b600b5481565b60606040518060800160405280605a81526020016127ef605a9139905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061062f3383610c07565b600a546001600160a01b031681565b6000818152600e60205260409020600601548190610100900460ff161561101b5760405162461bcd60e51b81526004016107219061222b565b600a546001600160a01b031633146110455760405162461bcd60e51b8152600401610721906123a1565b6000828152600d60209081526040909120845161099f92860190611b0d565b600081815260106020908152604091829020805483518184028101840190945280845260609392830182828015610b7757602002820191906000526020600020905b8154815260200190600101908083116110a65750505050509050919050565b60006001600160e01b031982166380ac58cd60e01b14806110f657506001600160e01b03198216635b5e139f60e01b145b8061062f575061062f8261166d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115b82610a00565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061119f82611105565b6111bb5760405162461bcd60e51b8152600401610721906123c5565b60006111c683610a00565b9050806001600160a01b0316846001600160a01b031614806112015750836001600160a01b03166111f6846106fa565b6001600160a01b0316145b8061121157506112118185610f99565b949350505050565b826001600160a01b031661122c82610a00565b6001600160a01b0316146112525760405162461bcd60e51b815260040161072190612582565b6001600160a01b0382166112785760405162461bcd60e51b8152600401610721906122ef565b611283838383611686565b61128e600082611126565b6001600160a01b03831660009081526003602052604081208054600192906112b79084906126ef565b90915550506001600160a01b03821660009081526003602052604081208054600192906112e59084906126c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546000916001908361135b83856126c3565b90915550506000838152600e602052604090206002015461137d9060016126c3565b6000848152600e602090815260408083206002018490555191926113a79290914391339101611ffc565b60408051601f1981840301815291815281516020928301206000858152601184528281208054600181018255908252848220018290558181526012909352912083905590506113f6858361170f565b6000828152600f602090815260408083208790558683526010825280832080546001818101835591855283852001869055878452600e9092529182902060028101549101549151869285926001600160a01b038a16927f94c792774c59479f7bd68442f3af3691c02123a5aabee8b6f9116d8af8aa66699261147892916126a9565b60405180910390a4509392505050565b341561151c576000818152600e6020526040812060010154906114ab82346126ef565b905080156114e257604051339082156108fc029083906000818181858888f193505050501580156114e0573d6000803e3d6000fd5b505b600a546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561099f573d6000803e3d6000fd5b50565b61152a848484611219565b611536848484846117ee565b61099f5760405162461bcd60e51b8152600401610721906121a2565b60608161157757506040805180820190915260018152600360fc1b6020820152610632565b8160005b81156115a1578061158b81612767565b915061159a9050600a836126db565b915061157b565b60008167ffffffffffffffff8111156115ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b8415611211576116096001836126ef565b9150611616600a86612782565b6116219060306126c3565b60f81b81838151811061164457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611666600a866126db565b94506115f8565b6001600160e01b031981166301ffc9a760e01b14919050565b6116918383836107d9565b6001600160a01b0383166116ad576116a881611909565b6116d0565b816001600160a01b0316836001600160a01b0316146116d0576116d0838261194d565b6001600160a01b0382166116ec576116e7816119ea565b6107d9565b826001600160a01b0316826001600160a01b0316146107d9576107d98282611ac3565b6001600160a01b0382166117355760405162461bcd60e51b815260040161072190612501565b61173e81611105565b1561175b5760405162461bcd60e51b8152600401610721906121f4565b61176760008383611686565b6001600160a01b03821660009081526003602052604081208054600192906117909084906126c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611802846001600160a01b0316611b07565b156118fe57836001600160a01b031663150b7a0261181e611122565b8786866040518563ffffffff1660e01b81526004016118409493929190612038565b602060405180830381600087803b15801561185a57600080fd5b505af192505050801561188a575060408051601f3d908101601f1916820190925261188791810190611dcb565b60015b6118e4573d8080156118b8576040519150601f19603f3d011682016040523d82523d6000602084013e6118bd565b606091505b5080516118dc5760405162461bcd60e51b8152600401610721906121a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611211565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161195a84610a35565b61196491906126ef565b6000838152600760205260409020549091508082146119b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119fc906001906126ef565b60008381526009602052604081205460088054939450909284908110611a3257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611aa757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ace83610a35565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611b1990612732565b90600052602060002090601f016020900481019282611b3b5760008555611b81565b82601f10611b5457805160ff1916838001178555611b81565b82800160010185558215611b81579182015b82811115611b81578251825591602001919060010190611b66565b50611b8d929150611b91565b5090565b5b80821115611b8d5760008155600101611b92565b600067ffffffffffffffff80841115611bc157611bc16127c2565b604051601f8501601f191681016020018281118282101715611be557611be56127c2565b604052848152915081838501861015611bfd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063257600080fd5b600082601f830112611c3d578081fd5b610cd883833560208501611ba6565b600060208284031215611c5d578081fd5b610cd882611c16565b60008060408385031215611c78578081fd5b611c8183611c16565b9150611c8f60208401611c16565b90509250929050565b600080600060608486031215611cac578081fd5b611cb584611c16565b9250611cc360208501611c16565b9150604084013590509250925092565b60008060008060808587031215611ce8578081fd5b611cf185611c16565b9350611cff60208601611c16565b925060408501359150606085013567ffffffffffffffff811115611d21578182fd5b8501601f81018713611d31578182fd5b611d4087823560208401611ba6565b91505092959194509250565b60008060408385031215611d5e578182fd5b611d6783611c16565b915060208301358015158114611d7b578182fd5b809150509250929050565b60008060408385031215611d98578182fd5b611da183611c16565b946020939093013593505050565b600060208284031215611dc0578081fd5b8135610cd8816127d8565b600060208284031215611ddc578081fd5b8151610cd8816127d8565b60008060408385031215611df9578182fd5b823567ffffffffffffffff811115611e0f578283fd5b611e1b85828601611c2d565b95602094909401359450505050565b600080600060608486031215611e3e578283fd5b833567ffffffffffffffff811115611e54578384fd5b611e6086828701611c2d565b9660208601359650604090950135949350505050565b600060208284031215611e87578081fd5b5035919050565b60008060408385031215611ea0578182fd5b82359150602083013567ffffffffffffffff811115611ebd578182fd5b611ec985828601611c2d565b9150509250929050565b60008060408385031215611ee5578182fd5b50508035926020909101359150565b60008151808452611f0c816020860160208601612706565b601f01601f19169290920160200192915050565b60008151611f32818560208601612706565b9290920192915050565b652f6e6674732f60d01b815260060190565b8254600090819060028104600180831680611f6a57607f831692505b6020808410821415611f8a57634e487b7160e01b87526022600452602487fd5b818015611f9e5760018114611faf57611fdb565b60ff19861689528489019650611fdb565b611fb88b6126b7565b885b86811015611fd35781548b820152908501908301611fba565b505084890196505b505050505050611ff3611fed82611f3c565b85611f20565b95945050505050565b928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611ef4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120ad57835183529284019291840191600101612091565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252610cd86020830184611ef4565b600060c082526120f360c0830189611ef4565b6020830197909752506040810194909452606084019290925215156080830152151560a090910152919050565b6020808252601c908201527f507572636861736573206d757374206e6f742062652070617573656400000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f4f6e6c7920756e6c6f636b656420636f6c6c656374696f6e7300000000000000604082015260600190565b6020808252602a908201527f4d7573742073656e64206174206c656173742063757272656e74207072696365604082015269103337b9103a37b5b2b760b11b606082015260800190565b60208082526023908201527f4d757374206e6f7420657863656564206d6178696d756d20696e766f636174696040820152626f6e7360e81b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526017908201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604082015260600190565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b918252602082015260400190565b60009081526020902090565b600082198211156126d6576126d6612796565b500190565b6000826126ea576126ea6127ac565b500490565b60008282101561270157612701612796565b500390565b60005b83811015612721578181015183820152602001612709565b8381111561099f5750506000910152565b60028104600182168061274657607f821691505b60208210811415610e8057634e487b7160e01b600052602260045260246000fd5b600060001982141561277b5761277b612796565b5060010190565b600082612791576127916127ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461151c57600080fdfe68747470733a2f2f73656e7469656e746d616368696e652e6d7970696e6174612e636c6f75642f697066732f516d593751486552795a626950454b6363317645346b6d734b6b6738634663765244725555797134584e47457952a264697066735822122074863923b688eeb0a1dc569ad4b966d500f2e15e9c039a4d5eab48b5529e7c9e64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000145468652053656e7469656e74204d616368696e65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534d0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Sentient Machine
Arg [1] : _tokenSymbol (string): TSM

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 5468652053656e7469656e74204d616368696e65000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 54534d0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40898:6029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34707:224;;;;;;;;;;-1:-1:-1;34707:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41653:52::-;;;;;;;;;;-1:-1:-1;41653:52:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23151:221::-;;;;;;;;;;-1:-1:-1;23151:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22674:411::-;;;;;;;;;;-1:-1:-1;22674:411:0;;;;;:::i;:::-;;:::i;:::-;;35347:113;;;;;;;;;;;;;:::i;24041:339::-;;;;;;;;;;-1:-1:-1;24041:339:0;;;;;:::i;:::-;;:::i;35015:256::-;;;;;;;;;;-1:-1:-1;35015:256:0;;;;;:::i;:::-;;:::i;24451:185::-;;;;;;;;;;-1:-1:-1;24451:185:0;;;;;:::i;:::-;;:::i;44572:453::-;;;;;;;;;;-1:-1:-1;44572:453:0;;;;;:::i;:::-;;:::i;45031:194::-;;;;;;;;;;-1:-1:-1;45031:194:0;;;;;:::i;:::-;;:::i;35537:233::-;;;;;;;;;;-1:-1:-1;35537:233:0;;;;;:::i;:::-;;:::i;21286:239::-;;;;;;;;;;-1:-1:-1;21286:239:0;;;;;:::i;:::-;;:::i;21016:208::-;;;;;;;;;;-1:-1:-1;21016:208:0;;;;;:::i;:::-;;:::i;44418:148::-;;;;;;;;;;-1:-1:-1;44418:148:0;;;;;:::i;:::-;;:::i;41383:30::-;;;;;;;;;;;;;:::i;41528:56::-;;;;;;;;;;-1:-1:-1;41528:56:0;;;;;:::i;:::-;;:::i;46037:142::-;;;;;;;;;;-1:-1:-1;46037:142:0;;;;;:::i;:::-;;:::i;44267:145::-;;;;;;;;;;-1:-1:-1;44267:145:0;;;;;:::i;:::-;;:::i;42415:658::-;;;;;;:::i;:::-;;:::i;41589:59::-;;;;;;;;;;-1:-1:-1;41589:59:0;;;;;:::i;:::-;;:::i;21761:104::-;;;;;;;;;;;;;:::i;23444:295::-;;;;;;;;;;-1:-1:-1;23444:295:0;;;;;:::i;:::-;;:::i;24707:328::-;;;;;;;;;;-1:-1:-1;24707:328:0;;;;;:::i;:::-;;:::i;46581:343::-;;;;;;;;;;-1:-1:-1;46581:343:0;;;;;:::i;:::-;;:::i;45433:598::-;;;;;;;;;;-1:-1:-1;45433:598:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;41347:31::-;;;;;;;;;;;;;:::i;46367:204::-;;;;;;;;;;;;;:::i;23810:164::-;;;;;;;;;;-1:-1:-1;23810:164:0;;;;;:::i;:::-;;:::i;42269:140::-;;;;;;:::i;:::-;;:::i;41322:20::-;;;;;;;;;;;;;:::i;45231:196::-;;;;;;;;;;-1:-1:-1;45231:196:0;;;;;:::i;:::-;;:::i;46185:170::-;;;;;;;;;;-1:-1:-1;46185:170:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34707:224::-;34809:4;-1:-1:-1;;;;;;34833:50:0;;-1:-1:-1;;;34833:50:0;;:90;;;34887:36;34911:11;34887:23;:36::i;:::-;34826:97;;34707:224;;;;:::o;21592:100::-;21646:13;21679:5;21672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21592:100;:::o;41653:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23151:221::-;23227:7;23255:16;23263:7;23255;:16::i;:::-;23247:73;;;;-1:-1:-1;;;23247:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23340:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23340:24:0;;23151:221::o;22674:411::-;22755:13;22771:23;22786:7;22771:14;:23::i;:::-;22755:39;;22819:5;-1:-1:-1;;;;;22813:11:0;:2;-1:-1:-1;;;;;22813:11:0;;;22805:57;;;;-1:-1:-1;;;22805:57:0;;;;;;;:::i;:::-;22913:5;-1:-1:-1;;;;;22897:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22897:21:0;;:62;;;;22922:37;22939:5;22946:12;:10;:12::i;22922:37::-;22875:168;;;;-1:-1:-1;;;22875:168:0;;;;;;;:::i;:::-;23056:21;23065:2;23069:7;23056:8;:21::i;:::-;22674:411;;;:::o;35347:113::-;35435:10;:17;35347:113;:::o;24041:339::-;24236:41;24255:12;:10;:12::i;:::-;24269:7;24236:18;:41::i;:::-;24228:103;;;;-1:-1:-1;;;24228:103:0;;;;;;;:::i;:::-;24344:28;24354:4;24360:2;24364:7;24344:9;:28::i;35015:256::-;35112:7;35148:23;35165:5;35148:16;:23::i;:::-;35140:5;:31;35132:87;;;;-1:-1:-1;;;35132:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35237:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35015:256::o;24451:185::-;24589:39;24606:4;24612:2;24616:7;24589:39;;;;;;;;;;;;:16;:39::i;44572:453::-;42229:5;;-1:-1:-1;;;;;42229:5:0;42215:10;:19;42207:42;;;;-1:-1:-1;;;42207:42:0;;;;;;;:::i;:::-;44734:16:::1;::::0;44711:20:::1;44757:25:::0;;;:11:::1;:25;::::0;;;;;;;:38;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;44802:25:0::1;::::0;;;:11:::1;:25;::::0;;;;:41:::1;::::0;;::::1;:60:::0;;;44869:40:::1;::::0;::::1;:58:::0;;;44934:32:::1;::::0;;::::1;:39:::0;;-1:-1:-1;;44934:39:0::1;::::0;::::1;::::0;;44999:16:::1;::::0;:20:::1;::::0;::::1;:::i;:::-;44980:16;:39:::0;-1:-1:-1;;;;44572:453:0:o;45031:194::-;42096:26;;;;:11;:26;;;;;:33;;;:26;;:33;;;;;42095:34;42087:72;;;;-1:-1:-1;;;42087:72:0;;;;;;;:::i;:::-;42229:5:::1;::::0;-1:-1:-1;;;;;42229:5:0::1;42215:10;:19;42207:42;;;;-1:-1:-1::0;;;42207:42:0::1;;;;;;;:::i;:::-;45176:26:::2;::::0;;;:11:::2;:26;::::0;;;;;;;:43;;::::2;::::0;:33:::2;::::0;;::::2;::::0;:43;::::2;::::0;::::2;:::i;:::-;;45031:194:::0;;;:::o;35537:233::-;35612:7;35648:30;:28;:30::i;:::-;35640:5;:38;35632:95;;;;-1:-1:-1;;;35632:95:0;;;;;;;:::i;:::-;35745:10;35756:5;35745:17;;;;;;-1:-1:-1;;;35745:17:0;;;;;;;;;;;;;;;;;35738:24;;35537:233;;;:::o;21286:239::-;21358:7;21394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21394:16:0;21429:19;21421:73;;;;-1:-1:-1;;;21421:73:0;;;;;;;:::i;21016:208::-;21088:7;-1:-1:-1;;;;;21116:19:0;;21108:74;;;;-1:-1:-1;;;21108:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21200:16:0;;;;;:9;:16;;;;;;;21016:208::o;44418:148::-;42229:5;;-1:-1:-1;;;;;42229:5:0;42215:10;:19;42207:42;;;;-1:-1:-1;;;42207:42:0;;;;;;;:::i;:::-;44527:26:::1;::::0;;;:11:::1;:26;::::0;;;;:33:::1;;::::0;;-1:-1:-1;;44490:70:0;::::1;44527:33;::::0;;::::1;44526:34;44490:70;::::0;;44418:148::o;41383:30::-;;;;:::o;41528:56::-;;;;;;;;;;;;;:::o;46037:142::-;46140:26;;;;:11;:26;;;;;:33;;46133:40;;46111:13;;46140:33;46133:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46037:142;;;:::o;44267:145::-;42229:5;;-1:-1:-1;;;;;42229:5:0;42215:10;:19;42207:42;;;;-1:-1:-1;;;42207:42:0;;;;;;;:::i;:::-;42096:26:::1;::::0;;;:11:::1;:26;::::0;;;;:33:::1;;::::0;:26;;:33:::1;::::0;::::1;;;42095:34;42087:72;;;;-1:-1:-1::0;;;42087:72:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;44366:26:0::2;::::0;;;:11:::2;:26;::::0;;;;:33:::2;;:40:::0;;-1:-1:-1;;44366:40:0::2;;;::::0;;44267:145::o;42415:658::-;42510:16;42567:26;;;:11;:26;;;;;:42;;;42554:9;:55;;42538:131;;;;-1:-1:-1;;;42538:131:0;;;;;;;:::i;:::-;42738:26;;;;:11;:26;;;;;:41;;;;42692:38;;;;;:42;;42733:1;42692:42;:::i;:::-;:87;;42676:156;;;;-1:-1:-1;;;42676:156:0;;;;;;;:::i;:::-;42856:26;;;;:11;:26;;;;;:33;;;;;42855:34;;:57;;-1:-1:-1;42907:5:0;;-1:-1:-1;;;;;42907:5:0;42893:10;:19;42855:57;42839:119;;;;-1:-1:-1;;;42839:119:0;;;;;;;:::i;:::-;42965:15;42983:30;42994:3;42999:13;42983:10;:30::i;:::-;42965:48;;43020:26;43032:13;43020:11;:26::i;:::-;43060:7;42415:658;-1:-1:-1;;;42415:658:0:o;41589:59::-;;;;;;;;;;;;;;;;;;;;21761:104;21817:13;21850:7;21843:14;;;;;:::i;23444:295::-;23559:12;:10;:12::i;:::-;-1:-1:-1;;;;;23547:24:0;:8;-1:-1:-1;;;;;23547:24:0;;;23539:62;;;;-1:-1:-1;;;23539:62:0;;;;;;;:::i;:::-;23659:8;23614:18;:32;23633:12;:10;:12::i;:::-;-1:-1:-1;;;;;23614:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23614:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23614:53:0;;;;;;;;;;;23698:12;:10;:12::i;:::-;-1:-1:-1;;;;;23683:48:0;;23722:8;23683:48;;;;;;:::i;:::-;;;;;;;;23444:295;;:::o;24707:328::-;24882:41;24901:12;:10;:12::i;:::-;24915:7;24882:18;:41::i;:::-;24874:103;;;;-1:-1:-1;;;24874:103:0;;;;;;;:::i;:::-;24988:39;25002:4;25008:2;25012:7;25021:5;24988:13;:39::i;46581:343::-;46699:13;46675:8;41970:17;41978:8;41970:7;:17::i;:::-;41962:53;;;;-1:-1:-1;;;41962:53:0;;;;;;;:::i;:::-;46784:54:::1;46806:31:::0;;;:21:::1;:31;::::0;;;;;;;;46784:54;;:21:::1;:54:::0;;;;;46872:26:::1;46828:8:::0;46872:16:::1;:26::i;:::-;46755:154;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46724:194;;42022:1;46581:343:::0;;;;:::o;45433:598::-;45531:18;45558:23;45590:19;45618:22;45649:11;45669;45705;:26;45717:13;45705:26;;;;;;;;;;;:31;;45698:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45761:26:0;;;;-1:-1:-1;;45761:11:0;:26;;;;;;:42;;;;45827:41;;;;45889:38;;;;45943:33;;;;;45698:38;;45761:42;;45889:38;;-1:-1:-1;45827:41:0;-1:-1:-1;45943:33:0;;;;;-1:-1:-1;45943:33:0;45992;;;;;;;-1:-1:-1;45433:598:0;-1:-1:-1;;45433:598:0:o;41347:31::-;;;;:::o;46367:204::-;46411:13;46447:118;;;;;;;;;;;;;;;;;46433:132;;46367:204;:::o;23810:164::-;-1:-1:-1;;;;;23931:25:0;;;23907:4;23931:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23810:164::o;42269:140::-;42334:16;42366:37;42377:10;42389:13;42366:10;:37::i;41322:20::-;;;-1:-1:-1;;;;;41322:20:0;;:::o;45231:196::-;42096:26;;;;:11;:26;;;;;:33;;;:26;;:33;;;;;42095:34;42087:72;;;;-1:-1:-1;;;42087:72:0;;;;;;;:::i;:::-;42229:5:::1;::::0;-1:-1:-1;;;;;42229:5:0::1;42215:10;:19;42207:42;;;;-1:-1:-1::0;;;42207:42:0::1;;;;;;;:::i;:::-;45371:36:::2;::::0;;;:21:::2;:36;::::0;;;;;;;:50;;::::2;::::0;;::::2;::::0;::::2;:::i;46185:170::-:0;46312:37;;;;:22;:37;;;;;;;;;46305:44;;;;;;;;;;;;;;;;;46277:16;;46305:44;;;46312:37;46305:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46185:170;;;:::o;20647:305::-;20749:4;-1:-1:-1;;;;;;20786:40:0;;-1:-1:-1;;;20786:40:0;;:105;;-1:-1:-1;;;;;;;20843:48:0;;-1:-1:-1;;;20843:48:0;20786:105;:158;;;;20908:36;20932:11;20908:23;:36::i;26545:127::-;26610:4;26634:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26634:16:0;:30;;;26545:127::o;16049:98::-;16129:10;16049:98;:::o;30527:174::-;30602:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30602:29:0;-1:-1:-1;;;;;30602:29:0;;;;;;;;:24;;30656:23;30602:24;30656:14;:23::i;:::-;-1:-1:-1;;;;;30647:46:0;;;;;;;;;;;30527:174;;:::o;26839:348::-;26932:4;26957:16;26965:7;26957;:16::i;:::-;26949:73;;;;-1:-1:-1;;;26949:73:0;;;;;;;:::i;:::-;27033:13;27049:23;27064:7;27049:14;:23::i;:::-;27033:39;;27102:5;-1:-1:-1;;;;;27091:16:0;:7;-1:-1:-1;;;;;27091:16:0;;:51;;;;27135:7;-1:-1:-1;;;;;27111:31:0;:20;27123:7;27111:11;:20::i;:::-;-1:-1:-1;;;;;27111:31:0;;27091:51;:87;;;;27146:32;27163:5;27170:7;27146:16;:32::i;:::-;27083:96;26839:348;-1:-1:-1;;;;26839:348:0:o;29831:578::-;29990:4;-1:-1:-1;;;;;29963:31:0;:23;29978:7;29963:14;:23::i;:::-;-1:-1:-1;;;;;29963:31:0;;29955:85;;;;-1:-1:-1;;;29955:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30059:16:0;;30051:65;;;;-1:-1:-1;;;30051:65:0;;;;;;;:::i;:::-;30129:39;30150:4;30156:2;30160:7;30129:20;:39::i;:::-;30233:29;30250:1;30254:7;30233:8;:29::i;:::-;-1:-1:-1;;;;;30275:15:0;;;;;;:9;:15;;;;;:20;;30294:1;;30275:15;:20;;30294:1;;30275:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30306:13:0;;;;;;:9;:13;;;;;:18;;30323:1;;30306:13;:18;;30323:1;;30306:18;:::i;:::-;;;;-1:-1:-1;;30335:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30335:21:0;-1:-1:-1;;;;;30335:21:0;;;;;;;;;30374:27;;30335:16;;30374:27;;;;;;;29831:578;;;:::o;43079:824::-;43200:11;;;43153:16;;43233:1;;43153:16;43218;43233:1;43200:11;43218:16;:::i;:::-;;;;-1:-1:-1;;43282:26:0;;;;:11;:26;;;;;:38;;;:42;;43323:1;43282:42;:::i;:::-;43241:26;;;;:11;:26;;;;;;;;:38;;:83;;;43367:82;43241:26;;43367:82;;43241:83;;43424:12;;43438:10;;43367:82;;:::i;:::-;;;;-1:-1:-1;;43367:82:0;;;;;;;;;43349:107;;43367:82;43349:107;;;;43463:28;;;;:15;:28;;;;;:42;;;;;;;;;;;;;;;;;43512:22;;;:13;:22;;;;;:36;;;43349:107;-1:-1:-1;43555:23:0;43561:3;43479:11;43555:5;:23::i;:::-;43585:34;;;;:21;:34;;;;;;;;:50;;;43642:37;;;:22;:37;;;;;:55;;;;;;;;;;;;;;;;;;43776:26;;;:11;:26;;;;;;;:38;;;;43823:42;;;43709:163;;43622:13;;43607:11;;-1:-1:-1;;;;;43709:163:0;;;;;;;43776:38;43709:163;:::i;:::-;;;;;;;;-1:-1:-1;43886:11:0;43079:824;-1:-1:-1;;;43079:824:0:o;43909:352::-;43973:9;:13;43969:287;;43997:23;44023:26;;;:11;:26;;;;;:42;;;;44091:27;44023:42;44091:9;:27;:::i;:::-;44074:44;-1:-1:-1;44131:10:0;;44127:73;;44154:36;;44162:10;;44154:36;;;;;44183:6;;44154:36;;;;44183:6;44162:10;44154:36;;;;;;;;;;;;;;;;;;;;;44127:73;44216:5;;44208:40;;-1:-1:-1;;;;;44216:5:0;;;;44208:40;;;;;44232:15;;44216:5;44208:40;44216:5;44208:40;44232:15;44216:5;44208:40;;;;;;;;;;;;;;;;;;;43969:287;43909:352;:::o;25917:315::-;26074:28;26084:4;26090:2;26094:7;26074:9;:28::i;:::-;26121:48;26144:4;26150:2;26154:7;26163:5;26121:22;:48::i;:::-;26113:111;;;;-1:-1:-1;;;26113:111:0;;;;;;;:::i;16582:723::-;16638:13;16859:10;16855:53;;-1:-1:-1;16886:10:0;;;;;;;;;;;;-1:-1:-1;;;16886:10:0;;;;;;16855:53;16933:5;16918:12;16974:78;16981:9;;16974:78;;17007:8;;;;:::i;:::-;;-1:-1:-1;17030:10:0;;-1:-1:-1;17038:2:0;17030:10;;:::i;:::-;;;16974:78;;;17062:19;17094:6;17084:17;;;;;;-1:-1:-1;;;17084:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17084:17:0;;17062:39;;17112:154;17119:10;;17112:154;;17146:11;17156:1;17146:11;;:::i;:::-;;-1:-1:-1;17215:10:0;17223:2;17215:5;:10;:::i;:::-;17202:24;;:2;:24;:::i;:::-;17189:39;;17172:6;17179;17172:14;;;;;;-1:-1:-1;;;17172:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17172:56:0;;;;;;;;-1:-1:-1;17243:11:0;17252:2;17243:11;;:::i;:::-;;;17112:154;;19145:157;-1:-1:-1;;;;;;19254:40:0;;-1:-1:-1;;;19254:40:0;19145:157;;;:::o;36383:589::-;36527:45;36554:4;36560:2;36564:7;36527:26;:45::i;:::-;-1:-1:-1;;;;;36589:18:0;;36585:187;;36624:40;36656:7;36624:31;:40::i;:::-;36585:187;;;36694:2;-1:-1:-1;;;;;36686:10:0;:4;-1:-1:-1;;;;;36686:10:0;;36682:90;;36713:47;36746:4;36752:7;36713:32;:47::i;:::-;-1:-1:-1;;;;;36786:16:0;;36782:183;;36819:45;36856:7;36819:36;:45::i;:::-;36782:183;;;36892:4;-1:-1:-1;;;;;36886:10:0;:2;-1:-1:-1;;;;;36886:10:0;;36882:83;;36913:40;36941:2;36945:7;36913:27;:40::i;28523:382::-;-1:-1:-1;;;;;28603:16:0;;28595:61;;;;-1:-1:-1;;;28595:61:0;;;;;;;:::i;:::-;28676:16;28684:7;28676;:16::i;:::-;28675:17;28667:58;;;;-1:-1:-1;;;28667:58:0;;;;;;;:::i;:::-;28738:45;28767:1;28771:2;28775:7;28738:20;:45::i;:::-;-1:-1:-1;;;;;28796:13:0;;;;;;:9;:13;;;;;:18;;28813:1;;28796:13;:18;;28813:1;;28796:18;:::i;:::-;;;;-1:-1:-1;;28825:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28825:21:0;-1:-1:-1;;;;;28825:21:0;;;;;;;;28864:33;;28825:16;;;28864:33;;28825:16;;28864:33;28523:382;;:::o;31266:803::-;31421:4;31442:15;:2;-1:-1:-1;;;;;31442:13:0;;:15::i;:::-;31438:624;;;31494:2;-1:-1:-1;;;;;31478:36:0;;31515:12;:10;:12::i;:::-;31529:4;31535:7;31544:5;31478:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31478:72:0;;;;;;;;-1:-1:-1;;31478:72:0;;;;;;;;;;;;:::i;:::-;;;31474:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31724:13:0;;31720:272;;31767:60;;-1:-1:-1;;;31767:60:0;;;;;;;:::i;31720:272::-;31942:6;31936:13;31927:6;31923:2;31919:15;31912:38;31474:533;-1:-1:-1;;;;;;31601:55:0;-1:-1:-1;;;31601:55:0;;-1:-1:-1;31594:62:0;;31438:624;-1:-1:-1;32046:4:0;31266:803;;;;;;:::o;37695:164::-;37799:10;:17;;37772:24;;;;:15;:24;;;;;:44;;;37827:24;;;;;;;;;;;;37695:164::o;38486:988::-;38752:22;38802:1;38777:22;38794:4;38777:16;:22::i;:::-;:26;;;;:::i;:::-;38814:18;38835:26;;;:17;:26;;;;;;38752:51;;-1:-1:-1;38968:28:0;;;38964:328;;-1:-1:-1;;;;;39035:18:0;;39013:19;39035:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39086:30;;;;;;:44;;;39203:30;;:17;:30;;;;;:43;;;38964:328;-1:-1:-1;39388:26:0;;;;:17;:26;;;;;;;;39381:33;;;-1:-1:-1;;;;;39432:18:0;;;;;:12;:18;;;;;:34;;;;;;;39425:41;38486:988::o;39769:1079::-;40047:10;:17;40022:22;;40047:21;;40067:1;;40047:21;:::i;:::-;40079:18;40100:24;;;:15;:24;;;;;;40473:10;:26;;40022:46;;-1:-1:-1;40100:24:0;;40022:46;;40473:26;;;;-1:-1:-1;;;40473:26:0;;;;;;;;;;;;;;;;;40451:48;;40537:11;40512:10;40523;40512:22;;;;;;-1:-1:-1;;;40512:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40617:28;;;:15;:28;;;;;;;:41;;;40789:24;;;;;40782:31;40824:10;:16;;;;;-1:-1:-1;;;40824:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39769:1079;;;;:::o;37273:221::-;37358:14;37375:20;37392:2;37375:16;:20::i;:::-;-1:-1:-1;;;;;37406:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37451:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37273:221:0:o;8303:387::-;8626:20;8674:8;;;8303:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:233;;904:3;897:4;889:6;885:17;881:27;871:2;;926:5;919;912:20;871:2;952:81;1029:3;1020:6;1007:20;1000:4;992:6;988:17;952:81;:::i;1044:198::-;;1156:2;1144:9;1135:7;1131:23;1127:32;1124:2;;;1177:6;1169;1162:22;1124:2;1205:31;1226:9;1205:31;:::i;1247:274::-;;;1376:2;1364:9;1355:7;1351:23;1347:32;1344:2;;;1397:6;1389;1382:22;1344:2;1425:31;1446:9;1425:31;:::i;:::-;1415:41;;1475:40;1511:2;1500:9;1496:18;1475:40;:::i;:::-;1465:50;;1334:187;;;;;:::o;1526:342::-;;;;1672:2;1660:9;1651:7;1647:23;1643:32;1640:2;;;1693:6;1685;1678:22;1640:2;1721:31;1742:9;1721:31;:::i;:::-;1711:41;;1771:40;1807:2;1796:9;1792:18;1771:40;:::i;:::-;1761:50;;1858:2;1847:9;1843:18;1830:32;1820:42;;1630:238;;;;;:::o;1873:702::-;;;;;2045:3;2033:9;2024:7;2020:23;2016:33;2013:2;;;2067:6;2059;2052:22;2013:2;2095:31;2116:9;2095:31;:::i;:::-;2085:41;;2145:40;2181:2;2170:9;2166:18;2145:40;:::i;:::-;2135:50;;2232:2;2221:9;2217:18;2204:32;2194:42;;2287:2;2276:9;2272:18;2259:32;2314:18;2306:6;2303:30;2300:2;;;2351:6;2343;2336:22;2300:2;2379:22;;2432:4;2424:13;;2420:27;-1:-1:-1;2410:2:1;;2466:6;2458;2451:22;2410:2;2494:75;2561:7;2556:2;2543:16;2538:2;2534;2530:11;2494:75;:::i;:::-;2484:85;;;2003:572;;;;;;;:::o;2580:369::-;;;2706:2;2694:9;2685:7;2681:23;2677:32;2674:2;;;2727:6;2719;2712:22;2674:2;2755:31;2776:9;2755:31;:::i;:::-;2745:41;;2836:2;2825:9;2821:18;2808:32;2883:5;2876:13;2869:21;2862:5;2859:32;2849:2;;2910:6;2902;2895:22;2849:2;2938:5;2928:15;;;2664:285;;;;;:::o;2954:266::-;;;3083:2;3071:9;3062:7;3058:23;3054:32;3051:2;;;3104:6;3096;3089:22;3051:2;3132:31;3153:9;3132:31;:::i;:::-;3122:41;3210:2;3195:18;;;;3182:32;;-1:-1:-1;;;3041:179:1:o;3225:257::-;;3336:2;3324:9;3315:7;3311:23;3307:32;3304:2;;;3357:6;3349;3342:22;3304:2;3401:9;3388:23;3420:32;3446:5;3420:32;:::i;3487:261::-;;3609:2;3597:9;3588:7;3584:23;3580:32;3577:2;;;3630:6;3622;3615:22;3577:2;3667:9;3661:16;3686:32;3712:5;3686:32;:::i;3753:412::-;;;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:52;4100:7;4091:6;4080:9;4076:22;4056:52;:::i;:::-;4046:62;4155:2;4140:18;;;;4127:32;;-1:-1:-1;;;;3850:315:1:o;4170:480::-;;;;4326:2;4314:9;4305:7;4301:23;4297:32;4294:2;;;4347:6;4339;4332:22;4294:2;4392:9;4379:23;4425:18;4417:6;4414:30;4411:2;;;4462:6;4454;4447:22;4411:2;4490:52;4534:7;4525:6;4514:9;4510:22;4490:52;:::i;:::-;4480:62;4589:2;4574:18;;4561:32;;-1:-1:-1;4640:2:1;4625:18;;;4612:32;;4284:366;-1:-1:-1;;;;4284:366:1:o;4655:190::-;;4767:2;4755:9;4746:7;4742:23;4738:32;4735:2;;;4788:6;4780;4773:22;4735:2;-1:-1:-1;4816:23:1;;4725:120;-1:-1:-1;4725:120:1:o;4850:412::-;;;4989:2;4977:9;4968:7;4964:23;4960:32;4957:2;;;5010:6;5002;4995:22;4957:2;5051:9;5038:23;5028:33;;5112:2;5101:9;5097:18;5084:32;5139:18;5131:6;5128:30;5125:2;;;5176:6;5168;5161:22;5125:2;5204:52;5248:7;5239:6;5228:9;5224:22;5204:52;:::i;:::-;5194:62;;;4947:315;;;;;:::o;5267:258::-;;;5396:2;5384:9;5375:7;5371:23;5367:32;5364:2;;;5417:6;5409;5402:22;5364:2;-1:-1:-1;;5445:23:1;;;5515:2;5500:18;;;5487:32;;-1:-1:-1;5354:171:1:o;5530:259::-;;5611:5;5605:12;5638:6;5633:3;5626:19;5654:63;5710:6;5703:4;5698:3;5694:14;5687:4;5680:5;5676:16;5654:63;:::i;:::-;5771:2;5750:15;-1:-1:-1;;5746:29:1;5737:39;;;;5778:4;5733:50;;5581:208;-1:-1:-1;;5581:208:1:o;5794:187::-;;5876:5;5870:12;5891:52;5936:6;5931:3;5924:4;5917:5;5913:16;5891:52;:::i;:::-;5959:16;;;;;5846:135;-1:-1:-1;;5846:135:1:o;5986:121::-;-1:-1:-1;;;6053:21:1;;6099:1;6090:11;;6043:64::o;6112:1315::-;6447:13;;6112:1315;;;;6520:1;6505:17;;6541:1;6577:18;;;;6604:2;;6658:4;6650:6;6646:17;6636:27;;6604:2;6684;6732;6724:6;6721:14;6701:18;6698:38;6695:2;;;-1:-1:-1;;;6759:33:1;;6815:4;6812:1;6805:15;6845:4;6766:3;6833:17;6695:2;6876:18;6903:104;;;;7021:1;7016:324;;;;6869:471;;6903:104;-1:-1:-1;;6936:24:1;;6924:37;;6981:16;;;;-1:-1:-1;6903:104:1;;7016:324;7052:39;7084:6;7052:39;:::i;:::-;7113:3;7129:165;7143:6;7140:1;7137:13;7129:165;;;7221:14;;7208:11;;;7201:35;7264:16;;;;7158:10;;7129:165;;;7133:3;;7323:6;7318:3;7314:16;7307:23;;6869:471;;;;;;;7356:65;7384:36;7416:3;7384:36;:::i;:::-;7376:6;7356:65;:::i;:::-;7349:72;6397:1030;-1:-1:-1;;;;;6397:1030:1:o;7432:359::-;7617:19;;;7661:2;7652:12;;7645:28;;;;7711:2;7707:15;-1:-1:-1;;7703:53:1;7698:2;7689:12;;7682:75;7782:2;7773:12;;7607:184::o;7796:203::-;-1:-1:-1;;;;;7960:32:1;;;;7942:51;;7930:2;7915:18;;7897:102::o;8004:490::-;-1:-1:-1;;;;;8273:15:1;;;8255:34;;8325:15;;8320:2;8305:18;;8298:43;8372:2;8357:18;;8350:34;;;8420:3;8415:2;8400:18;;8393:31;;;8004:490;;8441:47;;8468:19;;8460:6;8441:47;:::i;:::-;8433:55;8207:287;-1:-1:-1;;;;;;8207:287:1:o;8499:635::-;8670:2;8722:21;;;8792:13;;8695:18;;;8814:22;;;8499:635;;8670:2;8893:15;;;;8867:2;8852:18;;;8499:635;8939:169;8953:6;8950:1;8947:13;8939:169;;;9014:13;;9002:26;;9083:15;;;;9048:12;;;;8975:1;8968:9;8939:169;;;-1:-1:-1;9125:3:1;;8650:484;-1:-1:-1;;;;;;8650:484:1:o;9139:187::-;9304:14;;9297:22;9279:41;;9267:2;9252:18;;9234:92::o;9331:177::-;9477:25;;;9465:2;9450:18;;9432:76::o;9513:221::-;;9662:2;9651:9;9644:21;9682:46;9724:2;9713:9;9709:18;9701:6;9682:46;:::i;9739:600::-;;10016:3;10005:9;9998:22;10037:47;10079:3;10068:9;10064:19;10056:6;10037:47;:::i;:::-;10115:2;10100:18;;10093:34;;;;-1:-1:-1;10158:2:1;10143:18;;10136:34;;;;10201:2;10186:18;;10179:34;;;;10257:14;10250:22;10244:3;10229:19;;10222:51;10317:14;10310:22;10304:3;10289:19;;;10282:51;10029:55;9988:351;-1:-1:-1;9988:351:1:o;10344:352::-;10546:2;10528:21;;;10585:2;10565:18;;;10558:30;10624;10619:2;10604:18;;10597:58;10687:2;10672:18;;10518:178::o;10701:407::-;10903:2;10885:21;;;10942:2;10922:18;;;10915:30;10981:34;10976:2;10961:18;;10954:62;-1:-1:-1;;;11047:2:1;11032:18;;11025:41;11098:3;11083:19;;10875:233::o;11113:414::-;11315:2;11297:21;;;11354:2;11334:18;;;11327:30;11393:34;11388:2;11373:18;;11366:62;-1:-1:-1;;;11459:2:1;11444:18;;11437:48;11517:3;11502:19;;11287:240::o;11532:352::-;11734:2;11716:21;;;11773:2;11753:18;;;11746:30;11812;11807:2;11792:18;;11785:58;11875:2;11860:18;;11706:178::o;11889:349::-;12091:2;12073:21;;;12130:2;12110:18;;;12103:30;12169:27;12164:2;12149:18;;12142:55;12229:2;12214:18;;12063:175::o;12243:406::-;12445:2;12427:21;;;12484:2;12464:18;;;12457:30;12523:34;12518:2;12503:18;;12496:62;-1:-1:-1;;;12589:2:1;12574:18;;12567:40;12639:3;12624:19;;12417:232::o;12654:399::-;12856:2;12838:21;;;12895:2;12875:18;;;12868:30;12934:34;12929:2;12914:18;;12907:62;-1:-1:-1;;;13000:2:1;12985:18;;12978:33;13043:3;13028:19;;12828:225::o;13058:400::-;13260:2;13242:21;;;13299:2;13279:18;;;13272:30;13338:34;13333:2;13318:18;;13311:62;-1:-1:-1;;;13404:2:1;13389:18;;13382:34;13448:3;13433:19;;13232:226::o;13463:349::-;13665:2;13647:21;;;13704:2;13684:18;;;13677:30;13743:27;13738:2;13723:18;;13716:55;13803:2;13788:18;;13637:175::o;13817:347::-;14019:2;14001:21;;;14058:2;14038:18;;;14031:30;14097:25;14092:2;14077:18;;14070:53;14155:2;14140:18;;13991:173::o;14169:334::-;14371:2;14353:21;;;14410:2;14390:18;;;14383:30;-1:-1:-1;;;14444:2:1;14429:18;;14422:40;14494:2;14479:18;;14343:160::o;14508:408::-;14710:2;14692:21;;;14749:2;14729:18;;;14722:30;14788:34;14783:2;14768:18;;14761:62;-1:-1:-1;;;14854:2:1;14839:18;;14832:42;14906:3;14891:19;;14682:234::o;14921:420::-;15123:2;15105:21;;;15162:2;15142:18;;;15135:30;15201:34;15196:2;15181:18;;15174:62;15272:26;15267:2;15252:18;;15245:54;15331:3;15316:19;;15095:246::o;15346:406::-;15548:2;15530:21;;;15587:2;15567:18;;;15560:30;15626:34;15621:2;15606:18;;15599:62;-1:-1:-1;;;15692:2:1;15677:18;;15670:40;15742:3;15727:19;;15520:232::o;15757:405::-;15959:2;15941:21;;;15998:2;15978:18;;;15971:30;16037:34;16032:2;16017:18;;16010:62;-1:-1:-1;;;16103:2:1;16088:18;;16081:39;16152:3;16137:19;;15931:231::o;16167:356::-;16369:2;16351:21;;;16388:18;;;16381:30;16447:34;16442:2;16427:18;;16420:62;16514:2;16499:18;;16341:182::o;16528:408::-;16730:2;16712:21;;;16769:2;16749:18;;;16742:30;16808:34;16803:2;16788:18;;16781:62;-1:-1:-1;;;16874:2:1;16859:18;;16852:42;16926:3;16911:19;;16702:234::o;16941:405::-;17143:2;17125:21;;;17182:2;17162:18;;;17155:30;17221:34;17216:2;17201:18;;17194:62;-1:-1:-1;;;17287:2:1;17272:18;;17265:39;17336:3;17321:19;;17115:231::o;17351:397::-;17553:2;17535:21;;;17592:2;17572:18;;;17565:30;17631:34;17626:2;17611:18;;17604:62;-1:-1:-1;;;17697:2:1;17682:18;;17675:31;17738:3;17723:19;;17525:223::o;17753:413::-;17955:2;17937:21;;;17994:2;17974:18;;;17967:30;18033:34;18028:2;18013:18;;18006:62;-1:-1:-1;;;18099:2:1;18084:18;;18077:47;18156:3;18141:19;;17927:239::o;18171:408::-;18373:2;18355:21;;;18412:2;18392:18;;;18385:30;18451:34;18446:2;18431:18;;18424:62;-1:-1:-1;;;18517:2:1;18502:18;;18495:42;18569:3;18554:19;;18345:234::o;18766:248::-;18940:25;;;18996:2;18981:18;;18974:34;18928:2;18913:18;;18895:119::o;19019:129::-;;19087:17;;;19137:4;19121:21;;;19077:71::o;19153:128::-;;19224:1;19220:6;19217:1;19214:13;19211:2;;;19230:18;;:::i;:::-;-1:-1:-1;19266:9:1;;19201:80::o;19286:120::-;;19352:1;19342:2;;19357:18;;:::i;:::-;-1:-1:-1;19391:9:1;;19332:74::o;19411:125::-;;19479:1;19476;19473:8;19470:2;;;19484:18;;:::i;:::-;-1:-1:-1;19521:9:1;;19460:76::o;19541:258::-;19613:1;19623:113;19637:6;19634:1;19631:13;19623:113;;;19713:11;;;19707:18;19694:11;;;19687:39;19659:2;19652:10;19623:113;;;19754:6;19751:1;19748:13;19745:2;;;-1:-1:-1;;19789:1:1;19771:16;;19764:27;19594:205::o;19804:380::-;19889:1;19879:12;;19936:1;19926:12;;;19947:2;;20001:4;19993:6;19989:17;19979:27;;19947:2;20054;20046:6;20043:14;20023:18;20020:38;20017:2;;;20100:10;20095:3;20091:20;20088:1;20081:31;20135:4;20132:1;20125:15;20163:4;20160:1;20153:15;20189:135;;-1:-1:-1;;20249:17:1;;20246:2;;;20269:18;;:::i;:::-;-1:-1:-1;20316:1:1;20305:13;;20236:88::o;20329:112::-;;20387:1;20377:2;;20392:18;;:::i;:::-;-1:-1:-1;20426:9:1;;20367:74::o;20446:127::-;20507:10;20502:3;20498:20;20495:1;20488:31;20538:4;20535:1;20528:15;20562:4;20559:1;20552:15;20578:127;20639:10;20634:3;20630:20;20627:1;20620:31;20670:4;20667:1;20660:15;20694:4;20691:1;20684:15;20710:127;20771:10;20766:3;20762:20;20759:1;20752:31;20802:4;20799:1;20792:15;20826:4;20823:1;20816:15;20842:133;-1:-1:-1;;;;;;20918:32:1;;20908:43;;20898:2;;20965:1;20962;20955:12

Swarm Source

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