Token ArtCertificate

 

Overview

TokenID:
233

Transfers:
-

 
Loading
[ Download CSV Export  ] 
Loading
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ArtCertificate

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-03
*/

//SPDX-License-Identifier: GPL-v3-only
pragma solidity ^0.8.0;
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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


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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)


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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)


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

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

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


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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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/Context.sol

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


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

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

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

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


/**
 * @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 
        // 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/ERC165.sol

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


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

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

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








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

    // Token name
    string 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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);

        _afterTokenTransfer(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);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


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

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

    /**
     * @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/ERC721Enumerable.sol

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/MintableToken.sol




/**
* @title ArtCertificate ARTCERT ERC721 Token
* @author Mathieu Lecoq @MatSolidity
* @notice This contract usage is strictly reserved to ArtCertificate
*/
abstract contract MintableToken is ERC721Enumerable, Ownable, ReentrancyGuard {

    string public baseUri;
    uint internal nextTokenId;
    
    function _baseURI() internal view override returns (string memory tUri_) {
        return baseUri;
    }

    function setBaseUri(string memory _bUri) public onlyOwner {
        baseUri = _bUri;
    }


    /// @notice throws if `account` is the zero address
    function tokensOf(address account) public view returns(uint[] memory accountTokens) {
        uint len = balanceOf(account);
        uint i = 0;
        uint[] memory aTokens = new uint[](len);
        
        for (i = 0; i < len; i++) {
            aTokens[i] = tokenOfOwnerByIndex(account, i);
        }

        accountTokens = aTokens;
    }

   

    /******************************************[ MINTING ]*****************************************/
    /// @notice ArtCertificate Non-Fungible ARTCERT token minter 
    function _mint(address to) internal nonReentrant returns(uint mintedId) {
        uint mintedId_ = nextTokenId;
        _safeMint(to, mintedId_);
        nextTokenId++;
        return mintedId_;
    }

    function nextId() public view returns(uint nId) {
        nId = nextTokenId;
    }

    /* */

}

// File: contracts/ArtCertificate.sol


/**
* @title ArtCertificate ERC721 Token
* @author Mathieu Lecoq @MatSolidity
* @notice This contract usage is strictly reserved to ArtCertificate
*/
contract ArtCertificate is MintableToken {

    struct Certificate {
        address owner;
        string depositor;
        string signature;
        string mentions;
        string photo;
        string document;
        string artwork; // artwork artist|name|support|dimension|year|serial
        string hashcode;
    }

    mapping(uint => Certificate) public certificates;

    constructor(
        address __owner,
        string memory __baseUri
    ) 
        ERC721(
            'ArtCertificate',
            'ARTCERT'
        )
    {
        _transferOwnership(__owner);
        baseUri = __baseUri;
        nextTokenId = 1;
    }


    /**
    * @dev note Certificate properties are passed as parameters iso tuple for the explorer to be able to decode tx input data properly 
    * @dev row parameter example: "0x21fAC178E0b0df2Db51A06d52B32DE4479a8b3F1", "Eric Doireau", "bl", "Je soussigne(e) John DOE certifie que l'oeuvre intitulee : 'Yellow Sea' realisee en 2016 est une oeuvre originale", "3756a53eb254d5c8d4e7d6118df7e56c", "9acf62d262d6a1c2c4885a362fb7fc19", "Green Sea|John Doe|toile|1x1m|2016|4/5", "85a9acd99056448ac0c139851576eb81"
    */
    function printFull(
        address _owner,
        string memory artwork, // artwork artist|name|support|dimension|year|serial
        string memory depositor,
        string memory signature,
        string memory mentions,
        string memory photo,
        string memory document,
        // string memory artwork, // artwork artist|name|support|dimension|year|serial
        string memory hashcode
    ) 
    public onlyOwner returns(uint fPrintId)
    {
        uint tokenId = _mint(_owner);

        Certificate memory certificate = Certificate(
            _owner,
            depositor,
            signature,
            mentions,
            photo,
            document,
            artwork,
            hashcode
        );
        certificates[tokenId] = certificate;

        fPrintId = tokenId;
    }

    function printIntermediary(
        string memory photo,
        string memory document,
        address _owner
    ) public onlyOwner returns(uint iPrintId) { 
        uint tokenId = _mint(_owner);
        Certificate memory certificate = Certificate(
            _owner,
            '','','',
            photo,
            document,
            '', ''
        );
        certificates[tokenId] = certificate;

        iPrintId = tokenId;
    }

    function printMinimal(
        address _owner, 
        string memory hashcode
    ) public onlyOwner returns(uint mPrintId) {
        uint tokenId = _mint(_owner);
        Certificate memory certificate = Certificate(
            _owner,
            '', '', '', '', '', '',
            hashcode
        );
        certificates[tokenId] = certificate;

        mPrintId = tokenId;
    }

    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"__owner","type":"address"},{"internalType":"string","name":"__baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"certificates","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"depositor","type":"string"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"string","name":"mentions","type":"string"},{"internalType":"string","name":"photo","type":"string"},{"internalType":"string","name":"document","type":"string"},{"internalType":"string","name":"artwork","type":"string"},{"internalType":"string","name":"hashcode","type":"string"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"nId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"artwork","type":"string"},{"internalType":"string","name":"depositor","type":"string"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"string","name":"mentions","type":"string"},{"internalType":"string","name":"photo","type":"string"},{"internalType":"string","name":"document","type":"string"},{"internalType":"string","name":"hashcode","type":"string"}],"name":"printFull","outputs":[{"internalType":"uint256","name":"fPrintId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"photo","type":"string"},{"internalType":"string","name":"document","type":"string"},{"internalType":"address","name":"_owner","type":"address"}],"name":"printIntermediary","outputs":[{"internalType":"uint256","name":"iPrintId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"hashcode","type":"string"}],"name":"printMinimal","outputs":[{"internalType":"uint256","name":"mPrintId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_bUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"tokensOf","outputs":[{"internalType":"uint256[]","name":"accountTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002cc438038062002cc4833981016040819052620000349162000201565b604080518082018252600e81526d417274436572746966696361746560901b60208083019182528351808501909452600784526610549510d1549560ca1b908401528151919291620000899160009162000145565b5080516200009f90600190602084019062000145565b505050620000bc620000b6620000ef60201b60201c565b620000f3565b6001600b55620000cc82620000f3565b8051620000e190600c90602084019062000145565b50506001600d55506200033e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001539062000301565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200021557600080fd5b82516001600160a01b03811681146200022d57600080fd5b602084810151919350906001600160401b03808211156200024d57600080fd5b818601915086601f8301126200026257600080fd5b815181811115620002775762000277620001eb565b604051601f8201601f19908116603f01168101908382118183101715620002a257620002a2620001eb565b816040528281528986848701011115620002bb57600080fd5b600093505b82841015620002df5784840186015181850187015292850192620002c0565b82841115620002f15760008684830101525b8096505050505050509250929050565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b612976806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806361b8ce8c116100f95780639abc832011610097578063b88d4fde11610071578063b88d4fde14610386578063c87b56dd14610399578063e985e9c5146103ac578063f2fde38b146103e857600080fd5b80639abc832014610358578063a0bcfc7f14610360578063a22cb4651461037357600080fd5b806370a08231116100d357806370a0823114610324578063715018a6146103375780638da5cb5b1461033f57806395d89b411461035057600080fd5b806361b8ce8c146102e25780636352211e146102ea578063663b3e22146102fd57600080fd5b8063291272201161016657806342842e0e1161014057806342842e0e146102895780634692ac181461029c5780634f6ccce7146102af5780635a3f2672146102c257600080fd5b806329127220146102505780632f745c591461026357806340252a221461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd1461023d575b600080fd5b6101c16101bc3660046120f2565b6103fb565b60405190151581526020015b60405180910390f35b6101de610426565b6040516101cd9190612167565b6101fe6101f936600461217a565b6104b8565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046121af565b610552565b005b6008545b6040519081526020016101cd565b61022961024b3660046121d9565b610668565b61022f61025e3660046122c1565b610699565b61022f6102713660046121af565b610840565b61022f61028436600461230f565b6108d6565b6102296102973660046121d9565b610a76565b61022f6102aa366004612383565b610a91565b61022f6102bd36600461217a565b610c0d565b6102d56102d03660046124af565b610ca0565b6040516101cd91906124ca565b600d5461022f565b6101fe6102f836600461217a565b610d45565b61031061030b36600461217a565b610dbc565b6040516101cd98979695949392919061250e565b61022f6103323660046124af565b6111bf565b610229611246565b600a546001600160a01b03166101fe565b6101de61127c565b6101de61128b565b61022961036e3660046125ba565b611319565b6102296103813660046125ef565b61135a565b61022961039436600461262b565b611365565b6101de6103a736600461217a565b61139d565b6101c16103ba3660046126a7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102296103f63660046124af565b611478565b60006001600160e01b0319821663780e9d6360e01b1480610420575061042082611513565b92915050565b606060008054610435906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054610461906126da565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061055d82610d45565b9050806001600160a01b0316836001600160a01b031614156105cb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161052d565b336001600160a01b03821614806105e757506105e781336103ba565b6106595760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161052d565b6106638383611563565b505050565b61067233826115d1565b61068e5760405162461bcd60e51b815260040161052d90612715565b6106638383836116c4565b600a546000906001600160a01b031633146106c65760405162461bcd60e51b815260040161052d90612766565b60006106d18461186b565b60408051610100810182526001600160a01b038781168252825160208082018552600080835281850192835285518083018752818152858701528551808301875281815260608601528551808301875281815260808601528551808301875281815260a08601528551808301875281815260c086015260e085018a9052868152600e825294909420835181546001600160a01b031916931692909217825551805194955091938493919261078c926001850192910190612043565b50604082015180516107a8916002840191602090910190612043565b50606082015180516107c4916003840191602090910190612043565b50608082015180516107e0916004840191602090910190612043565b5060a082015180516107fc916005840191602090910190612043565b5060c08201518051610818916006840191602090910190612043565b5060e08201518051610834916007840191602090910190612043565b50929695505050505050565b600061084b836111bf565b82106108ad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161052d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546000906001600160a01b031633146109035760405162461bcd60e51b815260040161052d90612766565b600061090e8361186b565b60408051610100810182526001600160a01b03868116825282516020808201855260008083528185019283528551808301875281815285870152855180830187528181526060860152608085018c905260a085018b90528551808301875281815260c08601528551808301875281815260e0860152868152600e825294909420835181546001600160a01b03191693169290921782555180519495509193849391926109c1926001850192910190612043565b50604082015180516109dd916002840191602090910190612043565b50606082015180516109f9916003840191602090910190612043565b5060808201518051610a15916004840191602090910190612043565b5060a08201518051610a31916005840191602090910190612043565b5060c08201518051610a4d916006840191602090910190612043565b5060e08201518051610a69916007840191602090910190612043565b5092979650505050505050565b61066383838360405180602001604052806000815250611365565b600a546000906001600160a01b03163314610abe5760405162461bcd60e51b815260040161052d90612766565b6000610ac98a61186b565b60408051610100810182526001600160a01b038d8116825260208083018d81528385018d9052606084018c9052608084018b905260a084018a905260c084018f905260e084018990526000868152600e835294909420835181546001600160a01b031916931692909217825592518051949550919384939192610b53926001850192910190612043565b5060408201518051610b6f916002840191602090910190612043565b5060608201518051610b8b916003840191602090910190612043565b5060808201518051610ba7916004840191602090910190612043565b5060a08201518051610bc3916005840191602090910190612043565b5060c08201518051610bdf916006840191602090910190612043565b5060e08201518051610bfb916007840191602090910190612043565b50929c9b505050505050505050505050565b6000610c1860085490565b8210610c7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161052d565b60088281548110610c8e57610c8e61279b565b90600052602060002001549050919050565b60606000610cad836111bf565b90506000808267ffffffffffffffff811115610ccb57610ccb612215565b604051908082528060200260200182016040528015610cf4578160200160208202803683370190505b509050600091505b82821015610d3d57610d0e8583610840565b818381518110610d2057610d2061279b565b602090810291909101015281610d35816127c7565b925050610cfc565b949350505050565b6000818152600260205260408120546001600160a01b0316806104205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161052d565b600e60205260009081526040902080546001820180546001600160a01b039092169291610de8906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054610e14906126da565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505090806002018054610e76906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea2906126da565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b505050505090806003018054610f04906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054610f30906126da565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b505050505090806004018054610f92906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe906126da565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b505050505090806005018054611020906126da565b80601f016020809104026020016040519081016040528092919081815260200182805461104c906126da565b80156110995780601f1061106e57610100808354040283529160200191611099565b820191906000526020600020905b81548152906001019060200180831161107c57829003601f168201915b5050505050908060060180546110ae906126da565b80601f01602080910402602001604051908101604052809291908181526020018280546110da906126da565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b50505050509080600701805461113c906126da565b80601f0160208091040260200160405190810160405280929190818152602001828054611168906126da565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b5050505050905088565b60006001600160a01b03821661122a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161052d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112705760405162461bcd60e51b815260040161052d90612766565b61127a60006118f2565b565b606060018054610435906126da565b600c8054611298906126da565b80601f01602080910402602001604051908101604052809291908181526020018280546112c4906126da565b80156113115780601f106112e657610100808354040283529160200191611311565b820191906000526020600020905b8154815290600101906020018083116112f457829003601f168201915b505050505081565b600a546001600160a01b031633146113435760405162461bcd60e51b815260040161052d90612766565b805161135690600c906020840190612043565b5050565b611356338383611944565b61136f33836115d1565b61138b5760405162461bcd60e51b815260040161052d90612715565b61139784848484611a13565b50505050565b6000818152600260205260409020546060906001600160a01b031661141c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161052d565b6000611426611a46565b905060008151116114465760405180602001604052806000815250611471565b8061145084611a55565b6040516020016114619291906127e2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114a25760405162461bcd60e51b815260040161052d90612766565b6001600160a01b0381166115075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052d565b611510816118f2565b50565b60006001600160e01b031982166380ac58cd60e01b148061154457506001600160e01b03198216635b5e139f60e01b145b8061042057506301ffc9a760e01b6001600160e01b0319831614610420565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159882610d45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661164a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161052d565b600061165583610d45565b9050806001600160a01b0316846001600160a01b031614806116905750836001600160a01b0316611685846104b8565b6001600160a01b0316145b80610d3d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610d3d565b826001600160a01b03166116d782610d45565b6001600160a01b03161461173b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161052d565b6001600160a01b03821661179d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161052d565b6117a8838383611b53565b6117b3600082611563565b6001600160a01b03831660009081526003602052604081208054600192906117dc908490612811565b90915550506001600160a01b038216600090815260036020526040812080546001929061180a908490612828565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006002600b5414156118c05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161052d565b6002600b55600d546118d28382611c0b565b600d80549060006118e2836127c7565b90915550506001600b5592915050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161052d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a1e8484846116c4565b611a2a84848484611c25565b6113975760405162461bcd60e51b815260040161052d90612840565b6060600c8054610435906126da565b606081611a795750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aa35780611a8d816127c7565b9150611a9c9050600a836128a8565b9150611a7d565b60008167ffffffffffffffff811115611abe57611abe612215565b6040519080825280601f01601f191660200182016040528015611ae8576020820181803683370190505b5090505b8415610d3d57611afd600183612811565b9150611b0a600a866128bc565b611b15906030612828565b60f81b818381518110611b2a57611b2a61279b565b60200101906001600160f81b031916908160001a905350611b4c600a866128a8565b9450611aec565b6001600160a01b038316611bae57611ba981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bd1565b816001600160a01b0316836001600160a01b031614611bd157611bd18382611d32565b6001600160a01b038216611be85761066381611dcf565b826001600160a01b0316826001600160a01b031614610663576106638282611e7e565b611356828260405180602001604052806000815250611ec2565b60006001600160a01b0384163b15611d2757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c699033908990889088906004016128d0565b602060405180830381600087803b158015611c8357600080fd5b505af1925050508015611cb3575060408051601f3d908101601f19168201909252611cb09181019061290d565b60015b611d0d573d808015611ce1576040519150601f19603f3d011682016040523d82523d6000602084013e611ce6565b606091505b508051611d055760405162461bcd60e51b815260040161052d90612840565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d3d565b506001949350505050565b60006001611d3f846111bf565b611d499190612811565b600083815260076020526040902054909150808214611d9c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611de190600190612811565b60008381526009602052604081205460088054939450909284908110611e0957611e0961279b565b906000526020600020015490508060088381548110611e2a57611e2a61279b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e6257611e6261292a565b6001900381819060005260206000200160009055905550505050565b6000611e89836111bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611ecc8383611ef5565b611ed96000848484611c25565b6106635760405162461bcd60e51b815260040161052d90612840565b6001600160a01b038216611f4b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161052d565b6000818152600260205260409020546001600160a01b031615611fb05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161052d565b611fbc60008383611b53565b6001600160a01b0382166000908152600360205260408120805460019290611fe5908490612828565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461204f906126da565b90600052602060002090601f01602090048101928261207157600085556120b7565b82601f1061208a57805160ff19168380011785556120b7565b828001600101855582156120b7579182015b828111156120b757825182559160200191906001019061209c565b506120c39291506120c7565b5090565b5b808211156120c357600081556001016120c8565b6001600160e01b03198116811461151057600080fd5b60006020828403121561210457600080fd5b8135611471816120dc565b60005b8381101561212a578181015183820152602001612112565b838111156113975750506000910152565b6000815180845261215381602086016020860161210f565b601f01601f19169290920160200192915050565b602081526000611471602083018461213b565b60006020828403121561218c57600080fd5b5035919050565b80356001600160a01b03811681146121aa57600080fd5b919050565b600080604083850312156121c257600080fd5b6121cb83612193565b946020939093013593505050565b6000806000606084860312156121ee57600080fd5b6121f784612193565b925061220560208501612193565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561224657612246612215565b604051601f8501601f19908116603f0116810190828211818310171561226e5761226e612215565b8160405280935085815286868601111561228757600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126122b257600080fd5b6114718383356020850161222b565b600080604083850312156122d457600080fd5b6122dd83612193565b9150602083013567ffffffffffffffff8111156122f957600080fd5b612305858286016122a1565b9150509250929050565b60008060006060848603121561232457600080fd5b833567ffffffffffffffff8082111561233c57600080fd5b612348878388016122a1565b9450602086013591508082111561235e57600080fd5b5061236b868287016122a1565b92505061237a60408501612193565b90509250925092565b600080600080600080600080610100898b0312156123a057600080fd5b6123a989612193565b9750602089013567ffffffffffffffff808211156123c657600080fd5b6123d28c838d016122a1565b985060408b01359150808211156123e857600080fd5b6123f48c838d016122a1565b975060608b013591508082111561240a57600080fd5b6124168c838d016122a1565b965060808b013591508082111561242c57600080fd5b6124388c838d016122a1565b955060a08b013591508082111561244e57600080fd5b61245a8c838d016122a1565b945060c08b013591508082111561247057600080fd5b61247c8c838d016122a1565b935060e08b013591508082111561249257600080fd5b5061249f8b828c016122a1565b9150509295985092959890939650565b6000602082840312156124c157600080fd5b61147182612193565b6020808252825182820181905260009190848201906040850190845b81811015612502578351835292840192918401916001016124e6565b50909695505050505050565b6001600160a01b0389168152610100602082018190526000906125338382018b61213b565b90508281036040840152612547818a61213b565b9050828103606084015261255b818961213b565b9050828103608084015261256f818861213b565b905082810360a0840152612583818761213b565b905082810360c0840152612597818661213b565b905082810360e08401526125ab818561213b565b9b9a5050505050505050505050565b6000602082840312156125cc57600080fd5b813567ffffffffffffffff8111156125e357600080fd5b610d3d848285016122a1565b6000806040838503121561260257600080fd5b61260b83612193565b91506020830135801515811461262057600080fd5b809150509250929050565b6000806000806080858703121561264157600080fd5b61264a85612193565b935061265860208601612193565b925060408501359150606085013567ffffffffffffffff81111561267b57600080fd5b8501601f8101871361268c57600080fd5b61269b8782356020840161222b565b91505092959194509250565b600080604083850312156126ba57600080fd5b6126c383612193565b91506126d160208401612193565b90509250929050565b600181811c908216806126ee57607f821691505b6020821081141561270f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156127db576127db6127b1565b5060010190565b600083516127f481846020880161210f565b83519083019061280881836020880161210f565b01949350505050565b600082821015612823576128236127b1565b500390565b6000821982111561283b5761283b6127b1565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128b7576128b7612892565b500490565b6000826128cb576128cb612892565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129039083018461213b565b9695505050505050565b60006020828403121561291f57600080fd5b8151611471816120dc565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205e0a135a7317e6c2813e2b86e17809237031f6773d24983635e780fabed3d66564736f6c6343000809003300000000000000000000000019879a06bdab3acd39562f69e3e3d001ab52808b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f61727463657274696669636174652e6865726f6b756170702e636f6d2f746f6b656e2f000000000000000000000000000000000000000000

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

00000000000000000000000019879a06bdab3acd39562f69e3e3d001ab52808b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f61727463657274696669636174652e6865726f6b756170702e636f6d2f746f6b656e2f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __owner (address): 0x19879a06bdab3acd39562f69e3e3d001ab52808b
Arg [1] : __baseUri (string): https://artcertificate.herokuapp.com/token/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000019879a06bdab3acd39562f69e3e3d001ab52808b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [3] : 68747470733a2f2f61727463657274696669636174652e6865726f6b75617070
Arg [4] : 2e636f6d2f746f6b656e2f000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

49600:2934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36527:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36527:224:0;;;;;;;;22325:100;;;:::i;:::-;;;;;;;:::i;23884:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23884:221:0;1528:203:1;23407:411:0;;;;;;:::i;:::-;;:::i;:::-;;37167:113;37255:10;:17;37167:113;;;2319:25:1;;;2307:2;2292:18;37167:113:0;2173:177:1;24634:339:0;;;;;;:::i;:::-;;:::i;52122:399::-;;;;;;:::i;:::-;;:::i;36835:256::-;;;;;;:::i;:::-;;:::i;51653:461::-;;;;;;:::i;:::-;;:::i;25044:185::-;;;;;;:::i;:::-;;:::i;50801:844::-;;;;;;:::i;:::-;;:::i;37357:233::-;;;;;;:::i;:::-;;:::i;48543:356::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49296:84::-;49361:11;;49296:84;;22019:239;;;;;;:::i;:::-;;:::i;49942:48::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;21749:208::-;;;;;;:::i;:::-;;:::i;44359:103::-;;;:::i;43708:87::-;43781:6;;-1:-1:-1;;;;;43781:6:0;43708:87;;22494:104;;;:::i;48204:21::-;;;:::i;48384:92::-;;;;;;:::i;:::-;;:::i;24177:155::-;;;;;;:::i;:::-;;:::i;25300:328::-;;;;;;:::i;:::-;;:::i;22669:334::-;;;;;;:::i;:::-;;:::i;24403:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24524:25:0;;;24500:4;24524:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24403:164;44617:201;;;;;;:::i;:::-;;:::i;36527:224::-;36629:4;-1:-1:-1;;;;;;36653:50:0;;-1:-1:-1;;;36653:50:0;;:90;;;36707:36;36731:11;36707:23;:36::i;:::-;36646:97;36527:224;-1:-1:-1;;36527:224:0:o;22325:100::-;22379:13;22412:5;22405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22325:100;:::o;23884:221::-;23960:7;27227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27227:16:0;23980:73;;;;-1:-1:-1;;;23980:73:0;;10691:2:1;23980:73:0;;;10673:21:1;10730:2;10710:18;;;10703:30;10769:34;10749:18;;;10742:62;-1:-1:-1;;;10820:18:1;;;10813:42;10872:19;;23980:73:0;;;;;;;;;-1:-1:-1;24073:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24073:24:0;;23884:221::o;23407:411::-;23488:13;23504:23;23519:7;23504:14;:23::i;:::-;23488:39;;23552:5;-1:-1:-1;;;;;23546:11:0;:2;-1:-1:-1;;;;;23546:11:0;;;23538:57;;;;-1:-1:-1;;;23538:57:0;;11104:2:1;23538:57:0;;;11086:21:1;11143:2;11123:18;;;11116:30;11182:34;11162:18;;;11155:62;-1:-1:-1;;;11233:18:1;;;11226:31;11274:19;;23538:57:0;10902:397:1;23538:57:0;16784:10;-1:-1:-1;;;;;23630:21:0;;;;:62;;-1:-1:-1;23655:37:0;23672:5;16784:10;24403:164;:::i;23655:37::-;23608:168;;;;-1:-1:-1;;;23608:168:0;;11506:2:1;23608:168:0;;;11488:21:1;11545:2;11525:18;;;11518:30;11584:34;11564:18;;;11557:62;11655:26;11635:18;;;11628:54;11699:19;;23608:168:0;11304:420:1;23608:168:0;23789:21;23798:2;23802:7;23789:8;:21::i;:::-;23477:341;23407:411;;:::o;24634:339::-;24829:41;16784:10;24862:7;24829:18;:41::i;:::-;24821:103;;;;-1:-1:-1;;;24821:103:0;;;;;;;:::i;:::-;24937:28;24947:4;24953:2;24957:7;24937:9;:28::i;52122:399::-;43781:6;;52235:13;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;52261:12:::1;52276:13;52282:6;52276:5;:13::i;:::-;52333:103;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;52333:103:0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;52333:103:0;;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;;;52447:21;;;:12:::1;:21:::0;;;;;;:35;;;;-1:-1:-1;;;;;;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;;;;;:21;;-1:-1:-1;52333:103:0;;;;52447:21;;:35:::1;::::0;-1:-1:-1;52447:35:0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52447:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52506:7:0;;52122:399;-1:-1:-1;;;;;;52122:399:0:o;36835:256::-;36932:7;36968:23;36985:5;36968:16;:23::i;:::-;36960:5;:31;36952:87;;;;-1:-1:-1;;;36952:87:0;;12710:2:1;36952:87:0;;;12692:21:1;12749:2;12729:18;;;12722:30;12788:34;12768:18;;;12761:62;-1:-1:-1;;;12839:18:1;;;12832:41;12890:19;;36952:87:0;12508:407:1;36952:87:0;-1:-1:-1;;;;;;37057:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36835:256::o;51653:461::-;43781:6;;51800:13;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;51827:12:::1;51842:13;51848:6;51842:5;:13::i;:::-;51899:130;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;51899:130:0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;51899:130:0;;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;;;52040:21;;;:12:::1;:21:::0;;;;;;:35;;;;-1:-1:-1;;;;;;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;;;;;:21;;-1:-1:-1;51899:130:0;;;;52040:21;;:35:::1;::::0;-1:-1:-1;52040:35:0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52040:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52099:7:0;;51653:461;-1:-1:-1;;;;;;;51653:461:0:o;25044:185::-;25182:39;25199:4;25205:2;25209:7;25182:39;;;;;;;;;;;;:16;:39::i;50801:844::-;43781:6;;51253:13;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;51284:12:::1;51299:13;51305:6;51299:5;:13::i;:::-;51358:202;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;51358:202:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51571:21:0;;;:12:::1;:21:::0;;;;;;:35;;;;-1:-1:-1;;;;;;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;:21;;-1:-1:-1;51358:202:0;;;;51571:21;;:35:::1;::::0;-1:-1:-1;51571:35:0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51571:35:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51630:7:0;;50801:844;-1:-1:-1;;;;;;;;;;;;50801:844:0:o;37357:233::-;37432:7;37468:30;37255:10;:17;;37167:113;37468:30;37460:5;:38;37452:95;;;;-1:-1:-1;;;37452:95:0;;13122:2:1;37452:95:0;;;13104:21:1;13161:2;13141:18;;;13134:30;13200:34;13180:18;;;13173:62;-1:-1:-1;;;13251:18:1;;;13244:42;13303:19;;37452:95:0;12920:408:1;37452:95:0;37565:10;37576:5;37565:17;;;;;;;;:::i;:::-;;;;;;;;;37558:24;;37357:233;;;:::o;48543:356::-;48598:27;48638:8;48649:18;48659:7;48649:9;:18::i;:::-;48638:29;;48678:6;48699:21;48734:3;48723:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48723:15:0;;48699:39;;48768:1;48764:5;;48759:97;48775:3;48771:1;:7;48759:97;;;48813:31;48833:7;48842:1;48813:19;:31::i;:::-;48800:7;48808:1;48800:10;;;;;;;;:::i;:::-;;;;;;;;;;:44;48780:3;;;;:::i;:::-;;;;48759:97;;;48884:7;48543:356;-1:-1:-1;;;;48543:356:0:o;22019:239::-;22091:7;22127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22127:16:0;22162:19;22154:73;;;;-1:-1:-1;;;22154:73:0;;13939:2:1;22154:73:0;;;13921:21:1;13978:2;13958:18;;;13951:30;14017:34;13997:18;;;13990:62;-1:-1:-1;;;14068:18:1;;;14061:39;14117:19;;22154:73:0;13737:405:1;49942:48:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49942:48:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21749:208::-;21821:7;-1:-1:-1;;;;;21849:19:0;;21841:74;;;;-1:-1:-1;;;21841:74:0;;14349:2:1;21841:74:0;;;14331:21:1;14388:2;14368:18;;;14361:30;14427:34;14407:18;;;14400:62;-1:-1:-1;;;14478:18:1;;;14471:40;14528:19;;21841:74:0;14147:406:1;21841:74:0;-1:-1:-1;;;;;;21933:16:0;;;;;:9;:16;;;;;;;21749:208::o;44359:103::-;43781:6;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;44424:30:::1;44451:1;44424:18;:30::i;:::-;44359:103::o:0;22494:104::-;22550:13;22583:7;22576:14;;;;;:::i;48204:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48384:92::-;43781:6;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;48453:15;;::::1;::::0;:7:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48384:92:::0;:::o;24177:155::-;24272:52;16784:10;24305:8;24315;24272:18;:52::i;25300:328::-;25475:41;16784:10;25508:7;25475:18;:41::i;:::-;25467:103;;;;-1:-1:-1;;;25467:103:0;;;;;;;:::i;:::-;25581:39;25595:4;25601:2;25605:7;25614:5;25581:13;:39::i;:::-;25300:328;;;;:::o;22669:334::-;27203:4;27227:16;;;:7;:16;;;;;;22742:13;;-1:-1:-1;;;;;27227:16:0;22768:76;;;;-1:-1:-1;;;22768:76:0;;14760:2:1;22768:76:0;;;14742:21:1;14799:2;14779:18;;;14772:30;14838:34;14818:18;;;14811:62;-1:-1:-1;;;14889:18:1;;;14882:45;14944:19;;22768:76:0;14558:411:1;22768:76:0;22857:21;22881:10;:8;:10::i;:::-;22857:34;;22933:1;22915:7;22909:21;:25;:86;;;;;;;;;;;;;;;;;22961:7;22970:18;:7;:16;:18::i;:::-;22944:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22909:86;22902:93;22669:334;-1:-1:-1;;;22669:334:0:o;44617:201::-;43781:6;;-1:-1:-1;;;;;43781:6:0;16784:10;43928:23;43920:68;;;;-1:-1:-1;;;43920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44706:22:0;::::1;44698:73;;;::::0;-1:-1:-1;;;44698:73:0;;15651:2:1;44698:73:0::1;::::0;::::1;15633:21:1::0;15690:2;15670:18;;;15663:30;15729:34;15709:18;;;15702:62;-1:-1:-1;;;15780:18:1;;;15773:36;15826:19;;44698:73:0::1;15449:402:1::0;44698:73:0::1;44782:28;44801:8;44782:18;:28::i;:::-;44617:201:::0;:::o;21380:305::-;21482:4;-1:-1:-1;;;;;;21519:40:0;;-1:-1:-1;;;21519:40:0;;:105;;-1:-1:-1;;;;;;;21576:48:0;;-1:-1:-1;;;21576:48:0;21519:105;:158;;;-1:-1:-1;;;;;;;;;;19947:40:0;;;21641:36;19838:157;31284:174;31359:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31359:29:0;-1:-1:-1;;;;;31359:29:0;;;;;;;;:24;;31413:23;31359:24;31413:14;:23::i;:::-;-1:-1:-1;;;;;31404:46:0;;;;;;;;;;;31284:174;;:::o;27432:348::-;27525:4;27227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27227:16:0;27542:73;;;;-1:-1:-1;;;27542:73:0;;16058:2:1;27542:73:0;;;16040:21:1;16097:2;16077:18;;;16070:30;16136:34;16116:18;;;16109:62;-1:-1:-1;;;16187:18:1;;;16180:42;16239:19;;27542:73:0;15856:408:1;27542:73:0;27626:13;27642:23;27657:7;27642:14;:23::i;:::-;27626:39;;27695:5;-1:-1:-1;;;;;27684:16:0;:7;-1:-1:-1;;;;;27684:16:0;;:51;;;;27728:7;-1:-1:-1;;;;;27704:31:0;:20;27716:7;27704:11;:20::i;:::-;-1:-1:-1;;;;;27704:31:0;;27684:51;:87;;;-1:-1:-1;;;;;;24524:25:0;;;24500:4;24524:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27739:32;24403:164;30541:625;30700:4;-1:-1:-1;;;;;30673:31:0;:23;30688:7;30673:14;:23::i;:::-;-1:-1:-1;;;;;30673:31:0;;30665:81;;;;-1:-1:-1;;;30665:81:0;;16471:2:1;30665:81:0;;;16453:21:1;16510:2;16490:18;;;16483:30;16549:34;16529:18;;;16522:62;-1:-1:-1;;;16600:18:1;;;16593:35;16645:19;;30665:81:0;16269:401:1;30665:81:0;-1:-1:-1;;;;;30765:16:0;;30757:65;;;;-1:-1:-1;;;30757:65:0;;16877:2:1;30757:65:0;;;16859:21:1;16916:2;16896:18;;;16889:30;16955:34;16935:18;;;16928:62;-1:-1:-1;;;17006:18:1;;;16999:34;17050:19;;30757:65:0;16675:400:1;30757:65:0;30835:39;30856:4;30862:2;30866:7;30835:20;:39::i;:::-;30939:29;30956:1;30960:7;30939:8;:29::i;:::-;-1:-1:-1;;;;;30981:15:0;;;;;;:9;:15;;;;;:20;;31000:1;;30981:15;:20;;31000:1;;30981:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31012:13:0;;;;;;:9;:13;;;;;:18;;31029:1;;31012:13;:18;;31029:1;;31012:18;:::i;:::-;;;;-1:-1:-1;;31041:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31041:21:0;-1:-1:-1;;;;;31041:21:0;;;;;;;;;31080:27;;31041:16;;31080:27;;;;;;;23477:341;23407:411;;:::o;49083:205::-;49140:13;46961:1;47559:7;;:19;;47551:63;;;;-1:-1:-1;;;47551:63:0;;17545:2:1;47551:63:0;;;17527:21:1;17584:2;17564:18;;;17557:30;17623:33;17603:18;;;17596:61;17674:18;;47551:63:0;17343:355:1;47551:63:0;46961:1;47692:7;:18;49183:11:::1;::::0;49205:24:::1;49215:2:::0;49183:11;49205:9:::1;:24::i;:::-;49240:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;46917:1:0;47871:7;:22;49271:9;49083:205;-1:-1:-1;;49083:205:0:o;44978:191::-;45071:6;;;-1:-1:-1;;;;;45088:17:0;;;-1:-1:-1;;;;;;45088:17:0;;;;;;;45121:40;;45071:6;;;45088:17;45071:6;;45121:40;;45052:16;;45121:40;45041:128;44978:191;:::o;31600:315::-;31755:8;-1:-1:-1;;;;;31746:17:0;:5;-1:-1:-1;;;;;31746:17:0;;;31738:55;;;;-1:-1:-1;;;31738:55:0;;17905:2:1;31738:55:0;;;17887:21:1;17944:2;17924:18;;;17917:30;17983:27;17963:18;;;17956:55;18028:18;;31738:55:0;17703:349:1;31738:55:0;-1:-1:-1;;;;;31804:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31804:46:0;;;;;;;;;;31866:41;;540::1;;;31866::0;;513:18:1;31866:41:0;;;;;;;31600:315;;;:::o;26510:::-;26667:28;26677:4;26683:2;26687:7;26667:9;:28::i;:::-;26714:48;26737:4;26743:2;26747:7;26756:5;26714:22;:48::i;:::-;26706:111;;;;-1:-1:-1;;;26706:111:0;;;;;;;:::i;48270:106::-;48322:19;48361:7;48354:14;;;;;:::i;17256:710::-;17312:13;17520:10;17516:53;;-1:-1:-1;;17547:10:0;;;;;;;;;;;;-1:-1:-1;;;17547:10:0;;;;;17256:710::o;17516:53::-;17594:5;17579:12;17635:78;17642:9;;17635:78;;17668:8;;;;:::i;:::-;;-1:-1:-1;17691:10:0;;-1:-1:-1;17699:2:0;17691:10;;:::i;:::-;;;17635:78;;;17723:19;17755:6;17745:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17745:17:0;;17723:39;;17773:154;17780:10;;17773:154;;17807:11;17817:1;17807:11;;:::i;:::-;;-1:-1:-1;17876:10:0;17884:2;17876:5;:10;:::i;:::-;17863:24;;:2;:24;:::i;:::-;17850:39;;17833:6;17840;17833:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17833:56:0;;;;;;;;-1:-1:-1;17904:11:0;17913:2;17904:11;;:::i;:::-;;;17773:154;;38203:589;-1:-1:-1;;;;;38409:18:0;;38405:187;;38444:40;38476:7;39619:10;:17;;39592:24;;;;:15;:24;;;;;:44;;;39647:24;;;;;;;;;;;;39515:164;38444:40;38405:187;;;38514:2;-1:-1:-1;;;;;38506:10:0;:4;-1:-1:-1;;;;;38506:10:0;;38502:90;;38533:47;38566:4;38572:7;38533:32;:47::i;:::-;-1:-1:-1;;;;;38606:16:0;;38602:183;;38639:45;38676:7;38639:36;:45::i;38602:183::-;38712:4;-1:-1:-1;;;;;38706:10:0;:2;-1:-1:-1;;;;;38706:10:0;;38702:83;;38733:40;38761:2;38765:7;38733:27;:40::i;28122:110::-;28198:26;28208:2;28212:7;28198:26;;;;;;;;;;;;:9;:26::i;32480:799::-;32635:4;-1:-1:-1;;;;;32656:13:0;;9077:19;:23;32652:620;;32692:72;;-1:-1:-1;;;32692:72:0;;-1:-1:-1;;;;;32692:36:0;;;;;:72;;16784:10;;32743:4;;32749:7;;32758:5;;32692:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32692:72:0;;;;;;;;-1:-1:-1;;32692:72:0;;;;;;;;;;;;:::i;:::-;;;32688:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32934:13:0;;32930:272;;32977:60;;-1:-1:-1;;;32977:60:0;;;;;;;:::i;32930:272::-;33152:6;33146:13;33137:6;33133:2;33129:15;33122:38;32688:529;-1:-1:-1;;;;;;32815:51:0;-1:-1:-1;;;32815:51:0;;-1:-1:-1;32808:58:0;;32652:620;-1:-1:-1;33256:4:0;32480:799;;;;;;:::o;40306:988::-;40572:22;40622:1;40597:22;40614:4;40597:16;:22::i;:::-;:26;;;;:::i;:::-;40634:18;40655:26;;;:17;:26;;;;;;40572:51;;-1:-1:-1;40788:28:0;;;40784:328;;-1:-1:-1;;;;;40855:18:0;;40833:19;40855:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40906:30;;;;;;:44;;;41023:30;;:17;:30;;;;;:43;;;40784:328;-1:-1:-1;41208:26:0;;;;:17;:26;;;;;;;;41201:33;;;-1:-1:-1;;;;;41252:18:0;;;;;:12;:18;;;;;:34;;;;;;;41245:41;40306:988::o;41589:1079::-;41867:10;:17;41842:22;;41867:21;;41887:1;;41867:21;:::i;:::-;41899:18;41920:24;;;:15;:24;;;;;;42293:10;:26;;41842:46;;-1:-1:-1;41920:24:0;;41842:46;;42293:26;;;;;;:::i;:::-;;;;;;;;;42271:48;;42357:11;42332:10;42343;42332:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42437:28;;;:15;:28;;;;;;;:41;;;42609:24;;;;;42602:31;42644:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41660:1008;;;41589:1079;:::o;39093:221::-;39178:14;39195:20;39212:2;39195:16;:20::i;:::-;-1:-1:-1;;;;;39226:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39271:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39093:221:0:o;28459:321::-;28589:18;28595:2;28599:7;28589:5;:18::i;:::-;28640:54;28671:1;28675:2;28679:7;28688:5;28640:22;:54::i;:::-;28618:154;;;;-1:-1:-1;;;28618:154:0;;;;;;;:::i;29116:439::-;-1:-1:-1;;;;;29196:16:0;;29188:61;;;;-1:-1:-1;;;29188:61:0;;19932:2:1;29188:61:0;;;19914:21:1;;;19951:18;;;19944:30;20010:34;19990:18;;;19983:62;20062:18;;29188:61:0;19730:356:1;29188:61:0;27203:4;27227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27227:16:0;:30;29260:58;;;;-1:-1:-1;;;29260:58:0;;20293:2:1;29260:58:0;;;20275:21:1;20332:2;20312:18;;;20305:30;20371;20351:18;;;20344:58;20419:18;;29260:58:0;20091:352:1;29260:58:0;29331:45;29360:1;29364:2;29368:7;29331:20;:45::i;:::-;-1:-1:-1;;;;;29389:13:0;;;;;;:9;:13;;;;;:18;;29406:1;;29389:13;:18;;29406:1;;29389:18;:::i;:::-;;;;-1:-1:-1;;29418:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29418:21:0;-1:-1:-1;;;;;29418:21:0;;;;;;;;29457:33;;29418:16;;;29457:33;;29418:16;;29457:33;48453:15:::1;48384:92:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:222::-;3500:5;3553:3;3546:4;3538:6;3534:17;3530:27;3520:55;;3571:1;3568;3561:12;3520:55;3593:80;3669:3;3660:6;3647:20;3640:4;3632:6;3628:17;3593:80;:::i;3684:396::-;3762:6;3770;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:29;3881:9;3862:29;:::i;:::-;3852:39;;3942:2;3931:9;3927:18;3914:32;3969:18;3961:6;3958:30;3955:50;;;4001:1;3998;3991:12;3955:50;4024;4066:7;4057:6;4046:9;4042:22;4024:50;:::i;:::-;4014:60;;;3684:396;;;;;:::o;4085:617::-;4182:6;4190;4198;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;4307:9;4294:23;4336:18;4377:2;4369:6;4366:14;4363:34;;;4393:1;4390;4383:12;4363:34;4416:50;4458:7;4449:6;4438:9;4434:22;4416:50;:::i;:::-;4406:60;;4519:2;4508:9;4504:18;4491:32;4475:48;;4548:2;4538:8;4535:16;4532:36;;;4564:1;4561;4554:12;4532:36;;4587:52;4631:7;4620:8;4609:9;4605:24;4587:52;:::i;:::-;4577:62;;;4658:38;4692:2;4681:9;4677:18;4658:38;:::i;:::-;4648:48;;4085:617;;;;;:::o;4707:1622::-;4899:6;4907;4915;4923;4931;4939;4947;4955;5008:3;4996:9;4987:7;4983:23;4979:33;4976:53;;;5025:1;5022;5015:12;4976:53;5048:29;5067:9;5048:29;:::i;:::-;5038:39;;5128:2;5117:9;5113:18;5100:32;5151:18;5192:2;5184:6;5181:14;5178:34;;;5208:1;5205;5198:12;5178:34;5231:50;5273:7;5264:6;5253:9;5249:22;5231:50;:::i;:::-;5221:60;;5334:2;5323:9;5319:18;5306:32;5290:48;;5363:2;5353:8;5350:16;5347:36;;;5379:1;5376;5369:12;5347:36;5402:52;5446:7;5435:8;5424:9;5420:24;5402:52;:::i;:::-;5392:62;;5507:2;5496:9;5492:18;5479:32;5463:48;;5536:2;5526:8;5523:16;5520:36;;;5552:1;5549;5542:12;5520:36;5575:52;5619:7;5608:8;5597:9;5593:24;5575:52;:::i;:::-;5565:62;;5680:3;5669:9;5665:19;5652:33;5636:49;;5710:2;5700:8;5697:16;5694:36;;;5726:1;5723;5716:12;5694:36;5749:52;5793:7;5782:8;5771:9;5767:24;5749:52;:::i;:::-;5739:62;;5854:3;5843:9;5839:19;5826:33;5810:49;;5884:2;5874:8;5871:16;5868:36;;;5900:1;5897;5890:12;5868:36;5923:52;5967:7;5956:8;5945:9;5941:24;5923:52;:::i;:::-;5913:62;;6028:3;6017:9;6013:19;6000:33;5984:49;;6058:2;6048:8;6045:16;6042:36;;;6074:1;6071;6064:12;6042:36;6097:52;6141:7;6130:8;6119:9;6115:24;6097:52;:::i;:::-;6087:62;;6202:3;6191:9;6187:19;6174:33;6158:49;;6232:2;6222:8;6219:16;6216:36;;;6248:1;6245;6238:12;6216:36;;6271:52;6315:7;6304:8;6293:9;6289:24;6271:52;:::i;:::-;6261:62;;;4707:1622;;;;;;;;;;;:::o;6334:186::-;6393:6;6446:2;6434:9;6425:7;6421:23;6417:32;6414:52;;;6462:1;6459;6452:12;6414:52;6485:29;6504:9;6485:29;:::i;6525:632::-;6696:2;6748:21;;;6818:13;;6721:18;;;6840:22;;;6667:4;;6696:2;6919:15;;;;6893:2;6878:18;;;6667:4;6962:169;6976:6;6973:1;6970:13;6962:169;;;7037:13;;7025:26;;7106:15;;;;7071:12;;;;6998:1;6991:9;6962:169;;;-1:-1:-1;7148:3:1;;6525:632;-1:-1:-1;;;;;;6525:632:1:o;7162:1321::-;-1:-1:-1;;;;;7649:32:1;;7631:51;;7619:3;7713:2;7698:18;;7691:30;;;7590:4;;7744:45;7770:18;;;7762:6;7744:45;:::i;:::-;7730:59;;7837:9;7829:6;7825:22;7820:2;7809:9;7805:18;7798:50;7871:33;7897:6;7889;7871:33;:::i;:::-;7857:47;;7952:9;7944:6;7940:22;7935:2;7924:9;7920:18;7913:50;7986:33;8012:6;8004;7986:33;:::i;:::-;7972:47;;8068:9;8060:6;8056:22;8050:3;8039:9;8035:19;8028:51;8102:33;8128:6;8120;8102:33;:::i;:::-;8088:47;;8184:9;8176:6;8172:22;8166:3;8155:9;8151:19;8144:51;8218:33;8244:6;8236;8218:33;:::i;:::-;8204:47;;8300:9;8292:6;8288:22;8282:3;8271:9;8267:19;8260:51;8334:33;8360:6;8352;8334:33;:::i;:::-;8320:47;;8416:9;8408:6;8404:22;8398:3;8387:9;8383:19;8376:51;8444:33;8470:6;8462;8444:33;:::i;:::-;8436:41;7162:1321;-1:-1:-1;;;;;;;;;;;7162:1321:1:o;8488:322::-;8557:6;8610:2;8598:9;8589:7;8585:23;8581:32;8578:52;;;8626:1;8623;8616:12;8578:52;8666:9;8653:23;8699:18;8691:6;8688:30;8685:50;;;8731:1;8728;8721:12;8685:50;8754;8796:7;8787:6;8776:9;8772:22;8754:50;:::i;8815:347::-;8880:6;8888;8941:2;8929:9;8920:7;8916:23;8912:32;8909:52;;;8957:1;8954;8947:12;8909:52;8980:29;8999:9;8980:29;:::i;:::-;8970:39;;9059:2;9048:9;9044:18;9031:32;9106:5;9099:13;9092:21;9085:5;9082:32;9072:60;;9128:1;9125;9118:12;9072:60;9151:5;9141:15;;;8815:347;;;;;:::o;9167:667::-;9262:6;9270;9278;9286;9339:3;9327:9;9318:7;9314:23;9310:33;9307:53;;;9356:1;9353;9346:12;9307:53;9379:29;9398:9;9379:29;:::i;:::-;9369:39;;9427:38;9461:2;9450:9;9446:18;9427:38;:::i;:::-;9417:48;;9512:2;9501:9;9497:18;9484:32;9474:42;;9567:2;9556:9;9552:18;9539:32;9594:18;9586:6;9583:30;9580:50;;;9626:1;9623;9616:12;9580:50;9649:22;;9702:4;9694:13;;9690:27;-1:-1:-1;9680:55:1;;9731:1;9728;9721:12;9680:55;9754:74;9820:7;9815:2;9802:16;9797:2;9793;9789:11;9754:74;:::i;:::-;9744:84;;;9167:667;;;;;;;:::o;9839:260::-;9907:6;9915;9968:2;9956:9;9947:7;9943:23;9939:32;9936:52;;;9984:1;9981;9974:12;9936:52;10007:29;10026:9;10007:29;:::i;:::-;9997:39;;10055:38;10089:2;10078:9;10074:18;10055:38;:::i;:::-;10045:48;;9839:260;;;;;:::o;10104:380::-;10183:1;10179:12;;;;10226;;;10247:61;;10301:4;10293:6;10289:17;10279:27;;10247:61;10354:2;10346:6;10343:14;10323:18;10320:38;10317:161;;;10400:10;10395:3;10391:20;10388:1;10381:31;10435:4;10432:1;10425:15;10463:4;10460:1;10453:15;10317:161;;10104:380;;;:::o;11729:413::-;11931:2;11913:21;;;11970:2;11950:18;;;11943:30;12009:34;12004:2;11989:18;;11982:62;-1:-1:-1;;;12075:2:1;12060:18;;12053:47;12132:3;12117:19;;11729:413::o;12147:356::-;12349:2;12331:21;;;12368:18;;;12361:30;12427:34;12422:2;12407:18;;12400:62;12494:2;12479:18;;12147:356::o;13333:127::-;13394:10;13389:3;13385:20;13382:1;13375:31;13425:4;13422:1;13415:15;13449:4;13446:1;13439:15;13465:127;13526:10;13521:3;13517:20;13514:1;13507:31;13557:4;13554:1;13547:15;13581:4;13578:1;13571:15;13597:135;13636:3;-1:-1:-1;;13657:17:1;;13654:43;;;13677:18;;:::i;:::-;-1:-1:-1;13724:1:1;13713:13;;13597:135::o;14974:470::-;15153:3;15191:6;15185:13;15207:53;15253:6;15248:3;15241:4;15233:6;15229:17;15207:53;:::i;:::-;15323:13;;15282:16;;;;15345:57;15323:13;15282:16;15379:4;15367:17;;15345:57;:::i;:::-;15418:20;;14974:470;-1:-1:-1;;;;14974:470:1:o;17080:125::-;17120:4;17148:1;17145;17142:8;17139:34;;;17153:18;;:::i;:::-;-1:-1:-1;17190:9:1;;17080:125::o;17210:128::-;17250:3;17281:1;17277:6;17274:1;17271:13;17268:39;;;17287:18;;:::i;:::-;-1:-1:-1;17323:9:1;;17210:128::o;18057:414::-;18259:2;18241:21;;;18298:2;18278:18;;;18271:30;18337:34;18332:2;18317:18;;18310:62;-1:-1:-1;;;18403:2:1;18388:18;;18381:48;18461:3;18446:19;;18057:414::o;18476:127::-;18537:10;18532:3;18528:20;18525:1;18518:31;18568:4;18565:1;18558:15;18592:4;18589:1;18582:15;18608:120;18648:1;18674;18664:35;;18679:18;;:::i;:::-;-1:-1:-1;18713:9:1;;18608:120::o;18733:112::-;18765:1;18791;18781:35;;18796:18;;:::i;:::-;-1:-1:-1;18830:9:1;;18733:112::o;18850:489::-;-1:-1:-1;;;;;19119:15:1;;;19101:34;;19171:15;;19166:2;19151:18;;19144:43;19218:2;19203:18;;19196:34;;;19266:3;19261:2;19246:18;;19239:31;;;19044:4;;19287:46;;19313:19;;19305:6;19287:46;:::i;:::-;19279:54;18850:489;-1:-1:-1;;;;;;18850:489:1:o;19344:249::-;19413:6;19466:2;19454:9;19445:7;19441:23;19437:32;19434:52;;;19482:1;19479;19472:12;19434:52;19514:9;19508:16;19533:30;19557:5;19533:30;:::i;19598:127::-;19659:10;19654:3;19650:20;19647:1;19640:31;19690:4;19687:1;19680:15;19714:4;19711:1;19704:15

Swarm Source

ipfs://5e0a135a7317e6c2813e2b86e17809237031f6773d24983635e780fabed3d665
Loading